Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 3,289 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24636572 | 5 hrs ago | IN | 0 ETH | 0.00007075 | ||||
| Approve | 24635451 | 9 hrs ago | IN | 0 ETH | 0.00001256 | ||||
| Approve | 24635451 | 9 hrs ago | IN | 0 ETH | 0.00002058 | ||||
| Transfer | 24635449 | 9 hrs ago | IN | 0 ETH | 0.00008994 | ||||
| Transfer | 24635391 | 9 hrs ago | IN | 0 ETH | 0.0000211 | ||||
| Approve | 24635371 | 9 hrs ago | IN | 0 ETH | 0.0000191 | ||||
| Transfer | 24635356 | 9 hrs ago | IN | 0 ETH | 0.00011526 | ||||
| Transfer | 24635342 | 9 hrs ago | IN | 0 ETH | 0.00011526 | ||||
| Approve | 24631128 | 23 hrs ago | IN | 0 ETH | 0.00001931 | ||||
| Transfer | 24628908 | 31 hrs ago | IN | 0 ETH | 0.00014593 | ||||
| Transfer | 24628891 | 31 hrs ago | IN | 0 ETH | 0.00000529 | ||||
| Transfer | 24628891 | 31 hrs ago | IN | 0 ETH | 0.00000529 | ||||
| Transfer | 24628891 | 31 hrs ago | IN | 0 ETH | 0.00000529 | ||||
| Transfer | 24628891 | 31 hrs ago | IN | 0 ETH | 0.00000529 | ||||
| Transfer | 24628890 | 31 hrs ago | IN | 0 ETH | 0.00008267 | ||||
| Transfer | 24628516 | 32 hrs ago | IN | 0 ETH | 0.0000851 | ||||
| Transfer | 24628456 | 32 hrs ago | IN | 0 ETH | 0.00014593 | ||||
| Transfer | 24628249 | 33 hrs ago | IN | 0 ETH | 0.00007834 | ||||
| Transfer | 24620657 | 2 days ago | IN | 0 ETH | 0.00000664 | ||||
| Transfer | 24618416 | 2 days ago | IN | 0 ETH | 0.00000306 | ||||
| Transfer | 24618380 | 2 days ago | IN | 0 ETH | 0.00000316 | ||||
| Transfer | 24618371 | 2 days ago | IN | 0 ETH | 0.00000241 | ||||
| Transfer | 24613496 | 3 days ago | IN | 0 ETH | 0.00000222 | ||||
| Transfer | 24612343 | 3 days ago | IN | 0 ETH | 0.00000314 | ||||
| Transfer | 24610684 | 3 days ago | IN | 0 ETH | 0.00000227 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MEDIFAKT
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
//
// ____ ____ ________ ______ _____ ________ _ ___ ____ _________
// |_ \ / _| |_ __ | |_ _ `. |_ _| |_ __ | / \ |_ ||_ _| | _ _ |
// | \/ | | |_ \_| | | `. \ | | | |_ \_| / _ \ | |_/ / |_/ | | \_|
// | |\ /| | | _| _ | | | | | | | _| / ___ \ | __'. | |
// _| |_\/_| |_ _| |__/ | _| |_.' / _| |_ _| |_ _/ / \ \_ _| | \ \_ _| |_
// |_____||_____| |________| |______.' |_____| |_____| |____| |____| |____||____| |_____|
//
//
pragma solidity ^0.8.0;
import './Security.sol';
contract MEDIFAKT is Security {
string private _name;
string private _symbol;
uint256 private _decimals;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
constructor() {
_name = "MEDIFAKT";
_symbol = "FAKT";
_decimals = 18;
_mint(_msgSender(), 999999999 * 10 ** 18);
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the decimals of the token.
*/
function decimals() public view returns (uint256) {
return _decimals;
}
/**
* @dev Returns the total supply of the token.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev Returns the allowances.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev Mints the amount of tokens by owner.
*/
function mint(uint256 amount) public onlyOwner {
_mint(_msgSender(), amount);
}
/**
* @dev Burns the amount of tokens owned by caller.
*/
function burn(uint256 amount) public {
_burn(_msgSender(), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*/
function approve(address spender, uint256 amount) public whenNotPaused returns (bool) {
address owner = _msgSender();
require(!isBlackListed[owner], "FAKT: locked account");
_approve(owner, spender, amount);
return true;
}
/**
* @dev Increases the allowance of `spender` by `amount`.
*/
function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
address owner = _msgSender();
require(!isBlackListed[owner], "FAKT: locked account");
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Decreases the allowance of `spender` by `amount`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(!isBlackListed[owner], "FAKT: locked account");
require(currentAllowance >= subtractedValue, "FAKT: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*/
function transfer(address to, uint256 amount) public whenNotPaused returns (bool) {
address owner = _msgSender();
require(!isBlackListed[owner], "FAKT: locked account");
_transfer(owner, to, amount);
return true;
}
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*/
function transferFrom(address from, address to, uint256 amount) public whenNotPaused returns (bool) {
address spender = _msgSender();
require(!isBlackListed[from], "FAKT: locked account");
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/*////////////////////////////////////////////////
INTERNAL FUNCTIONS
////////////////////////////////////////////////*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "FAKT: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal {
require(account != address(0), "FAKT: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "FAKT: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "FAKT: approve from the zero address");
require(spender != address(0), "FAKT: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "FAKT: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
function _transfer(address from, address to, uint256 amount) internal {
require(from != address(0), "FAKT: transfer from the zero address");
require(to != address(0), "FAKT: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "FAKT: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal {}
function _afterTokenTransfer(address from, address to, uint256 amount) internal {}
/*////////////////////////////////////////////////
EVENTS
////////////////////////////////////////////////*/
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
contract Security is Ownable, Pausable {
mapping(address => bool) isBlackListed;
/**
* @dev Pauses the contract.
*/
function pause() public onlyOwner {
_pause();
}
/**
* @dev Unpause the contract.
*/
function unpause() public onlyOwner {
_unpause();
}
/**
* @dev Adds `account` to the blacklist.
*/
function lockUser(address account) external onlyOwner {
isBlackListed[account] = true;
emit LockedUser(account);
}
/**
@dev Removes `account` from the blacklist.
*/
function unlockUser(address account) external onlyOwner {
isBlackListed[account] = false;
emit UnlockedUser(account);
}
event LockedUser(address indexed account);
event UnlockedUser(address indexed account);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LockedUser","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnlockedUser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lockUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlockUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506200002662000020620000bf565b620000c3565b6000805460ff60a01b191690556040805180820190915260088082526713515112519052d560c21b60209092019182526200006491600291620001da565b5060408051808201909152600480825263119052d560e21b60209092019182526200009291600391620001da565b506012600455620000b9620000a6620000bf565b6b033b2e3c91efc989409c000062000113565b62000322565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001455760405162461bcd60e51b81526004016200013c9062000280565b60405180910390fd5b6200015360008383620001d5565b8060056000828254620001679190620002c0565b90915550506001600160a01b038216600081815260066020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001bb908590620002b7565b60405180910390a3620001d160008383620001d5565b5050565b505050565b828054620001e890620002e5565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b6020808252601e908201527f46414b543a206d696e7420746f20746865207a65726f20616464726573730000604082015260600190565b90815260200190565b60008219821115620002e057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002fa57607f821691505b602082108114156200031c57634e487b7160e01b600052602260045260246000fd5b50919050565b61119980620003326000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610235578063a9059cbb14610248578063bd1870a31461025b578063d79725801461026e578063dd62ed3e14610281578063f2fde38b1461029457610137565b8063715018a6146101f55780638456cb59146101fd5780638da5cb5b1461020557806395d89b411461021a578063a0712d681461022257610137565b806339509351116100ff57806339509351146101aa5780633f4ba83a146101bd57806342966c68146101c75780635c975abb146101da57806370a08231146101e257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017a57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102a7565b6040516101519190610d30565b60405180910390f35b61016d610168366004610cd0565b610339565b6040516101519190610d25565b6101826103a7565b60405161015191906110fb565b61016d61019d366004610c95565b6103ad565b61018261041e565b61016d6101b8366004610cd0565b610424565b6101c5610493565b005b6101c56101d5366004610cf9565b6104a5565b61016d6104b9565b6101826101f0366004610c42565b6104c9565b6101c56104e8565b6101c56104fa565b61020d61050a565b6040516101519190610d11565b610144610519565b6101c5610230366004610cf9565b610528565b61016d610243366004610cd0565b610541565b61016d610256366004610cd0565b6105cc565b6101c5610269366004610c42565b610627565b6101c561027c366004610c42565b610678565b61018261028f366004610c63565b6106cf565b6101c56102a2366004610c42565b6106fa565b6060600280546102b690611128565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290611128565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b6000610343610731565b600061034d610756565b6001600160a01b03811660009081526001602052604090205490915060ff16156103925760405162461bcd60e51b815260040161038990610eec565b60405180910390fd5b61039d81858561075a565b5060019392505050565b60055490565b60006103b7610731565b60006103c1610756565b6001600160a01b03861660009081526001602052604090205490915060ff16156103fd5760405162461bcd60e51b815260040161038990610eec565b61040885828561080e565b610413858585610858565b506001949350505050565b60045490565b600061042e610731565b6000610438610756565b6001600160a01b03811660009081526001602052604090205490915060ff16156104745760405162461bcd60e51b815260040161038990610eec565b61039d81858561048485896106cf565b61048e9190611104565b61075a565b61049b610959565b6104a3610998565b565b6104b66104b0610756565b826109ed565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600660205260409020545b919050565b6104f0610959565b6104a36000610ac5565b610502610959565b6104a3610b15565b6000546001600160a01b031690565b6060600380546102b690611128565b610530610959565b6104b661053b610756565b82610b59565b600061054b610731565b6000610555610756565b9050600061056382866106cf565b6001600160a01b03831660009081526001602052604090205490915060ff161561059f5760405162461bcd60e51b815260040161038990610eec565b838110156105bf5760405162461bcd60e51b815260040161038990611034565b610413828686840361075a565b60006105d6610731565b60006105e0610756565b6001600160a01b03811660009081526001602052604090205490915060ff161561061c5760405162461bcd60e51b815260040161038990610eec565b61039d818585610858565b61062f610959565b6001600160a01b038116600081815260016020526040808220805460ff19169055517f8d5e3920411fc347dab81dcc182c15ff615baaf5cbd9c59df59d1bdb84c6ca739190a250565b610680610959565b6001600160a01b0381166000818152600160208190526040808320805460ff1916909217909155517f33ba3c110047b40eb1520751067632b27ed335fef410dc257181c2cb8def7d9e9190a250565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610702610959565b6001600160a01b0381166107285760405162461bcd60e51b815260040161038990610de6565b6104b681610ac5565b6107396104b9565b156104a35760405162461bcd60e51b815260040161038990610f1a565b3390565b6001600160a01b0383166107805760405162461bcd60e51b815260040161038990610f44565b6001600160a01b0382166107a65760405162461bcd60e51b815260040161038990611078565b6001600160a01b0380841660008181526007602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108019085906110fb565b60405180910390a3505050565b600061081a84846106cf565b9050600019811461085257818110156108455760405162461bcd60e51b815260040161038990610ffd565b610852848484840361075a565b50505050565b6001600160a01b03831661087e5760405162461bcd60e51b815260040161038990610ea8565b6001600160a01b0382166108a45760405162461bcd60e51b8152600401610389906110b9565b6108af838383610ac0565b6001600160a01b038316600090815260066020526040902054818110156108e85760405162461bcd60e51b815260040161038990610e63565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109469086906110fb565b60405180910390a3610852848484610ac0565b610961610756565b6001600160a01b031661097261050a565b6001600160a01b0316146104a35760405162461bcd60e51b815260040161038990610fc8565b6109a0610c07565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109d6610756565b6040516109e39190610d11565b60405180910390a1565b6001600160a01b038216610a135760405162461bcd60e51b815260040161038990610db1565b610a1f82600083610ac0565b6001600160a01b03821660009081526006602052604090205481811015610a585760405162461bcd60e51b815260040161038990610f87565b6001600160a01b0383166000818152600660205260408082208585039055600580548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ab09086906110fb565b60405180910390a3610ac0836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b1d610731565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109d6610756565b6001600160a01b038216610b7f5760405162461bcd60e51b815260040161038990610e2c565b610b8b60008383610ac0565b8060056000828254610b9d9190611104565b90915550506001600160a01b038216600081815260066020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bef9085906110fb565b60405180910390a3610c0360008383610ac0565b5050565b610c0f6104b9565b6104a35760405162461bcd60e51b815260040161038990610d83565b80356001600160a01b03811681146104e357600080fd5b600060208284031215610c53578081fd5b610c5c82610c2b565b9392505050565b60008060408385031215610c75578081fd5b610c7e83610c2b565b9150610c8c60208401610c2b565b90509250929050565b600080600060608486031215610ca9578081fd5b610cb284610c2b565b9250610cc060208501610c2b565b9150604084013590509250925092565b60008060408385031215610ce2578182fd5b610ceb83610c2b565b946020939093013593505050565b600060208284031215610d0a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d5c57858101830151858201604001528201610d40565b81811115610d6d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252818101527f46414b543a206275726e2066726f6d20746865207a65726f2061646472657373604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f46414b543a206d696e7420746f20746865207a65726f20616464726573730000604082015260600190565b60208082526025908201527f46414b543a207472616e7366657220616d6f756e7420657863656564732062616040820152646c616e636560d81b606082015260800190565b60208082526024908201527f46414b543a207472616e736665722066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273119052d50e881b1bd8dad959081858d8dbdd5b9d60621b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526023908201527f46414b543a20617070726f76652066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526021908201527f46414b543a206275726e20616d6f756e7420657863656564732062616c616e636040820152606560f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f46414b543a20696e73756666696369656e7420616c6c6f77616e636500000000604082015260600190565b60208082526024908201527f46414b543a2064656372656173656420616c6c6f77616e63652062656c6f77206040820152637a65726f60e01b606082015260800190565b60208082526021908201527f46414b543a20617070726f766520746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f46414b543a207472616e7366657220746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b90815260200190565b6000821982111561112357634e487b7160e01b81526011600452602481fd5b500190565b60028104600182168061113c57607f821691505b6020821081141561115d57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212205515197d670defdce636d6e64ae5b49bef5c0f6eafcf2f41b18071bbce8ef97564736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610235578063a9059cbb14610248578063bd1870a31461025b578063d79725801461026e578063dd62ed3e14610281578063f2fde38b1461029457610137565b8063715018a6146101f55780638456cb59146101fd5780638da5cb5b1461020557806395d89b411461021a578063a0712d681461022257610137565b806339509351116100ff57806339509351146101aa5780633f4ba83a146101bd57806342966c68146101c75780635c975abb146101da57806370a08231146101e257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017a57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102a7565b6040516101519190610d30565b60405180910390f35b61016d610168366004610cd0565b610339565b6040516101519190610d25565b6101826103a7565b60405161015191906110fb565b61016d61019d366004610c95565b6103ad565b61018261041e565b61016d6101b8366004610cd0565b610424565b6101c5610493565b005b6101c56101d5366004610cf9565b6104a5565b61016d6104b9565b6101826101f0366004610c42565b6104c9565b6101c56104e8565b6101c56104fa565b61020d61050a565b6040516101519190610d11565b610144610519565b6101c5610230366004610cf9565b610528565b61016d610243366004610cd0565b610541565b61016d610256366004610cd0565b6105cc565b6101c5610269366004610c42565b610627565b6101c561027c366004610c42565b610678565b61018261028f366004610c63565b6106cf565b6101c56102a2366004610c42565b6106fa565b6060600280546102b690611128565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290611128565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b6000610343610731565b600061034d610756565b6001600160a01b03811660009081526001602052604090205490915060ff16156103925760405162461bcd60e51b815260040161038990610eec565b60405180910390fd5b61039d81858561075a565b5060019392505050565b60055490565b60006103b7610731565b60006103c1610756565b6001600160a01b03861660009081526001602052604090205490915060ff16156103fd5760405162461bcd60e51b815260040161038990610eec565b61040885828561080e565b610413858585610858565b506001949350505050565b60045490565b600061042e610731565b6000610438610756565b6001600160a01b03811660009081526001602052604090205490915060ff16156104745760405162461bcd60e51b815260040161038990610eec565b61039d81858561048485896106cf565b61048e9190611104565b61075a565b61049b610959565b6104a3610998565b565b6104b66104b0610756565b826109ed565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600660205260409020545b919050565b6104f0610959565b6104a36000610ac5565b610502610959565b6104a3610b15565b6000546001600160a01b031690565b6060600380546102b690611128565b610530610959565b6104b661053b610756565b82610b59565b600061054b610731565b6000610555610756565b9050600061056382866106cf565b6001600160a01b03831660009081526001602052604090205490915060ff161561059f5760405162461bcd60e51b815260040161038990610eec565b838110156105bf5760405162461bcd60e51b815260040161038990611034565b610413828686840361075a565b60006105d6610731565b60006105e0610756565b6001600160a01b03811660009081526001602052604090205490915060ff161561061c5760405162461bcd60e51b815260040161038990610eec565b61039d818585610858565b61062f610959565b6001600160a01b038116600081815260016020526040808220805460ff19169055517f8d5e3920411fc347dab81dcc182c15ff615baaf5cbd9c59df59d1bdb84c6ca739190a250565b610680610959565b6001600160a01b0381166000818152600160208190526040808320805460ff1916909217909155517f33ba3c110047b40eb1520751067632b27ed335fef410dc257181c2cb8def7d9e9190a250565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610702610959565b6001600160a01b0381166107285760405162461bcd60e51b815260040161038990610de6565b6104b681610ac5565b6107396104b9565b156104a35760405162461bcd60e51b815260040161038990610f1a565b3390565b6001600160a01b0383166107805760405162461bcd60e51b815260040161038990610f44565b6001600160a01b0382166107a65760405162461bcd60e51b815260040161038990611078565b6001600160a01b0380841660008181526007602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108019085906110fb565b60405180910390a3505050565b600061081a84846106cf565b9050600019811461085257818110156108455760405162461bcd60e51b815260040161038990610ffd565b610852848484840361075a565b50505050565b6001600160a01b03831661087e5760405162461bcd60e51b815260040161038990610ea8565b6001600160a01b0382166108a45760405162461bcd60e51b8152600401610389906110b9565b6108af838383610ac0565b6001600160a01b038316600090815260066020526040902054818110156108e85760405162461bcd60e51b815260040161038990610e63565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109469086906110fb565b60405180910390a3610852848484610ac0565b610961610756565b6001600160a01b031661097261050a565b6001600160a01b0316146104a35760405162461bcd60e51b815260040161038990610fc8565b6109a0610c07565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109d6610756565b6040516109e39190610d11565b60405180910390a1565b6001600160a01b038216610a135760405162461bcd60e51b815260040161038990610db1565b610a1f82600083610ac0565b6001600160a01b03821660009081526006602052604090205481811015610a585760405162461bcd60e51b815260040161038990610f87565b6001600160a01b0383166000818152600660205260408082208585039055600580548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ab09086906110fb565b60405180910390a3610ac0836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b1d610731565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109d6610756565b6001600160a01b038216610b7f5760405162461bcd60e51b815260040161038990610e2c565b610b8b60008383610ac0565b8060056000828254610b9d9190611104565b90915550506001600160a01b038216600081815260066020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bef9085906110fb565b60405180910390a3610c0360008383610ac0565b5050565b610c0f6104b9565b6104a35760405162461bcd60e51b815260040161038990610d83565b80356001600160a01b03811681146104e357600080fd5b600060208284031215610c53578081fd5b610c5c82610c2b565b9392505050565b60008060408385031215610c75578081fd5b610c7e83610c2b565b9150610c8c60208401610c2b565b90509250929050565b600080600060608486031215610ca9578081fd5b610cb284610c2b565b9250610cc060208501610c2b565b9150604084013590509250925092565b60008060408385031215610ce2578182fd5b610ceb83610c2b565b946020939093013593505050565b600060208284031215610d0a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d5c57858101830151858201604001528201610d40565b81811115610d6d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252818101527f46414b543a206275726e2066726f6d20746865207a65726f2061646472657373604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f46414b543a206d696e7420746f20746865207a65726f20616464726573730000604082015260600190565b60208082526025908201527f46414b543a207472616e7366657220616d6f756e7420657863656564732062616040820152646c616e636560d81b606082015260800190565b60208082526024908201527f46414b543a207472616e736665722066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273119052d50e881b1bd8dad959081858d8dbdd5b9d60621b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526023908201527f46414b543a20617070726f76652066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526021908201527f46414b543a206275726e20616d6f756e7420657863656564732062616c616e636040820152606560f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f46414b543a20696e73756666696369656e7420616c6c6f77616e636500000000604082015260600190565b60208082526024908201527f46414b543a2064656372656173656420616c6c6f77616e63652062656c6f77206040820152637a65726f60e01b606082015260800190565b60208082526021908201527f46414b543a20617070726f766520746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f46414b543a207472616e7366657220746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b90815260200190565b6000821982111561112357634e487b7160e01b81526011600452602481fd5b500190565b60028104600182168061113c57607f821691505b6020821081141561115d57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212205515197d670defdce636d6e64ae5b49bef5c0f6eafcf2f41b18071bbce8ef97564736f6c63430008000033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.