ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 MIMIC
Holders
45
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000031435093804665 MIMICValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MIMIC
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-27 */ // SPDX-License-Identifier: MIT 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: WHB.sol pragma solidity ^0.8.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } contract MIMIC is ERC20, Ownable { using SafeMath for uint256; address private mainAddress = 0x5f6D0544c7ac7995608e6eEdB2B4928f77E1dd05; constructor() ERC20("MIMIC", "MIMIC") { _mint(mainAddress, 1000000000000000 * 10 ** decimals()); } function _transfer( address sender, address recipient, uint256 amount ) internal override { super._transfer(sender, recipient, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"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":"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"}]
Contract Creation Code
6080604052600680546001600160a01b031916735f6d0544c7ac7995608e6eedb2b4928f77e1dd051790553480156200003757600080fd5b506040805180820182526005808252644d494d494360d81b602080840182815285518087019096529285528401528151919291620000789160039162000234565b5080516200008e90600490602084019062000234565b505050620000ab620000a5620000f260201b60201c565b620000f6565b600654620000ec906001600160a01b0316620000c662000148565b620000d390600a62000382565b620000e69066038d7ea4c680006200047a565b6200014d565b620004ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601290565b6001600160a01b0382166200017f5760405162461bcd60e51b81526004016200017690620002da565b60405180910390fd5b6200018d600083836200022f565b8060026000828254620001a191906200031a565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d09084906200031a565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200021590859062000311565b60405180910390a36200022b600083836200022f565b5050565b505050565b82805462000242906200049c565b90600052602060002090601f016020900481019282620002665760008555620002b1565b82601f106200028157805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b157825182559160200191906001019062000294565b50620002bf929150620002c3565b5090565b5b80821115620002bf5760008155600101620002c4565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003305762000330620004d9565b500190565b80825b600180861162000349575062000379565b8187048211156200035e576200035e620004d9565b808616156200036c57918102915b9490941c93800262000338565b94509492505050565b60006200039660001960ff8516846200039d565b9392505050565b600082620003ae5750600162000396565b81620003bd5750600062000396565b8160018114620003d65760028114620003e15762000415565b600191505062000396565b60ff841115620003f557620003f5620004d9565b6001841b9150848211156200040e576200040e620004d9565b5062000396565b5060208310610133831016604e8410600b84101617156200044d575081810a83811115620004475762000447620004d9565b62000396565b6200045c848484600162000335565b808604821115620004715762000471620004d9565b02949350505050565b6000816000190483118215151615620004975762000497620004d9565b500290565b600281046001821680620004b157607f821691505b60208210811415620004d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610b6880620004ff6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b604051610104919061081e565b60405180910390f35b61012061011b3660046107d6565b610295565b6040516101049190610813565b6101356102b7565b6040516101049190610abc565b61012061015036600461079b565b6102bd565b61015d6102eb565b6040516101049190610ac5565b6101206101783660046107d6565b6102f0565b61013561018b366004610748565b61031c565b61019861033b565b005b6101a261038f565b60405161010491906107ff565b6100f761039e565b6101206101c53660046107d6565b6103ad565b6101206101d83660046107d6565b6103f5565b6101356101eb366004610769565b61040d565b6101986101fe366004610748565b610438565b60606003805461021290610af7565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610af7565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104a9565b90506102ad8185856104ad565b5060019392505050565b60025490565b6000806102c86104a9565b90506102d5858285610561565b6102e08585856105ab565b506001949350505050565b601290565b6000806102fb6104a9565b90506102ad81858561030d858961040d565b6103179190610ad3565b6104ad565b6001600160a01b0381166000908152602081905260409020545b919050565b6103436104a9565b6001600160a01b031661035461038f565b6001600160a01b0316146103835760405162461bcd60e51b815260040161037a906109b9565b60405180910390fd5b61038d60006105bb565b565b6005546001600160a01b031690565b60606004805461021290610af7565b6000806103b86104a9565b905060006103c6828661040d565b9050838110156103e85760405162461bcd60e51b815260040161037a90610a77565b6102e082868684036104ad565b6000806104006104a9565b90506102ad8185856105ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104406104a9565b6001600160a01b031661045161038f565b6001600160a01b0316146104775760405162461bcd60e51b815260040161037a906109b9565b6001600160a01b03811661049d5760405162461bcd60e51b815260040161037a906108b4565b6104a6816105bb565b50565b3390565b6001600160a01b0383166104d35760405162461bcd60e51b815260040161037a90610a33565b6001600160a01b0382166104f95760405162461bcd60e51b815260040161037a906108fa565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610554908590610abc565b60405180910390a3505050565b600061056d848461040d565b905060001981146105a557818110156105985760405162461bcd60e51b815260040161037a9061093c565b6105a584848484036104ad565b50505050565b6105b683838361060d565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166106335760405162461bcd60e51b815260040161037a906109ee565b6001600160a01b0382166106595760405162461bcd60e51b815260040161037a90610871565b6106648383836105b6565b6001600160a01b0383166000908152602081905260409020548181101561069d5760405162461bcd60e51b815260040161037a90610973565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106d4908490610ad3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161071e9190610abc565b60405180910390a36105a58484846105b6565b80356001600160a01b038116811461033657600080fd5b600060208284031215610759578081fd5b61076282610731565b9392505050565b6000806040838503121561077b578081fd5b61078483610731565b915061079260208401610731565b90509250929050565b6000806000606084860312156107af578081fd5b6107b884610731565b92506107c660208501610731565b9150604084013590509250925092565b600080604083850312156107e8578182fd5b6107f183610731565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561084a5785810183015185820160400152820161082e565b8181111561085b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610af257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610b0b57607f821691505b60208210811415610b2c57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201a0c7efc3796f8fb21cc16e88e291b1f049e52673e3b4e46c94d44fb8d4d6f0164736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b604051610104919061081e565b60405180910390f35b61012061011b3660046107d6565b610295565b6040516101049190610813565b6101356102b7565b6040516101049190610abc565b61012061015036600461079b565b6102bd565b61015d6102eb565b6040516101049190610ac5565b6101206101783660046107d6565b6102f0565b61013561018b366004610748565b61031c565b61019861033b565b005b6101a261038f565b60405161010491906107ff565b6100f761039e565b6101206101c53660046107d6565b6103ad565b6101206101d83660046107d6565b6103f5565b6101356101eb366004610769565b61040d565b6101986101fe366004610748565b610438565b60606003805461021290610af7565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610af7565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104a9565b90506102ad8185856104ad565b5060019392505050565b60025490565b6000806102c86104a9565b90506102d5858285610561565b6102e08585856105ab565b506001949350505050565b601290565b6000806102fb6104a9565b90506102ad81858561030d858961040d565b6103179190610ad3565b6104ad565b6001600160a01b0381166000908152602081905260409020545b919050565b6103436104a9565b6001600160a01b031661035461038f565b6001600160a01b0316146103835760405162461bcd60e51b815260040161037a906109b9565b60405180910390fd5b61038d60006105bb565b565b6005546001600160a01b031690565b60606004805461021290610af7565b6000806103b86104a9565b905060006103c6828661040d565b9050838110156103e85760405162461bcd60e51b815260040161037a90610a77565b6102e082868684036104ad565b6000806104006104a9565b90506102ad8185856105ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104406104a9565b6001600160a01b031661045161038f565b6001600160a01b0316146104775760405162461bcd60e51b815260040161037a906109b9565b6001600160a01b03811661049d5760405162461bcd60e51b815260040161037a906108b4565b6104a6816105bb565b50565b3390565b6001600160a01b0383166104d35760405162461bcd60e51b815260040161037a90610a33565b6001600160a01b0382166104f95760405162461bcd60e51b815260040161037a906108fa565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610554908590610abc565b60405180910390a3505050565b600061056d848461040d565b905060001981146105a557818110156105985760405162461bcd60e51b815260040161037a9061093c565b6105a584848484036104ad565b50505050565b6105b683838361060d565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166106335760405162461bcd60e51b815260040161037a906109ee565b6001600160a01b0382166106595760405162461bcd60e51b815260040161037a90610871565b6106648383836105b6565b6001600160a01b0383166000908152602081905260409020548181101561069d5760405162461bcd60e51b815260040161037a90610973565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106d4908490610ad3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161071e9190610abc565b60405180910390a36105a58484846105b6565b80356001600160a01b038116811461033657600080fd5b600060208284031215610759578081fd5b61076282610731565b9392505050565b6000806040838503121561077b578081fd5b61078483610731565b915061079260208401610731565b90509250929050565b6000806000606084860312156107af578081fd5b6107b884610731565b92506107c660208501610731565b9150604084013590509250925092565b600080604083850312156107e8578182fd5b6107f183610731565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561084a5785810183015185820160400152820161082e565b8181111561085b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610af257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610b0b57607f821691505b60208210811415610b2c57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201a0c7efc3796f8fb21cc16e88e291b1f049e52673e3b4e46c94d44fb8d4d6f0164736f6c63430008000033
Deployed Bytecode Sourcemap
21103:486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9108:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11459:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10228:108::-;;;:::i;:::-;;;;;;;:::i;12240:295::-;;;;;;:::i;:::-;;:::i;10070:93::-;;;:::i;:::-;;;;;;;:::i;12944:238::-;;;;;;:::i;:::-;;:::i;10399:127::-;;;;;;:::i;:::-;;:::i;2531:103::-;;;:::i;:::-;;1880:87;;;:::i;:::-;;;;;;;:::i;9327:104::-;;;:::i;13685:436::-;;;;;;:::i;:::-;;:::i;10732:193::-;;;;;;:::i;:::-;;:::i;10988:151::-;;;;;;:::i;:::-;;:::i;2789:201::-;;;;;;:::i;:::-;;:::i;9108:100::-;9162:13;9195:5;9188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9108:100;:::o;11459:201::-;11542:4;11559:13;11575:12;:10;:12::i;:::-;11559:28;;11598:32;11607:5;11614:7;11623:6;11598:8;:32::i;:::-;-1:-1:-1;11648:4:0;;11459:201;-1:-1:-1;;;11459:201:0:o;10228:108::-;10316:12;;10228:108;:::o;12240:295::-;12371:4;12388:15;12406:12;:10;:12::i;:::-;12388:30;;12429:38;12445:4;12451:7;12460:6;12429:15;:38::i;:::-;12478:27;12488:4;12494:2;12498:6;12478:9;:27::i;:::-;-1:-1:-1;12523:4:0;;12240:295;-1:-1:-1;;;;12240:295:0:o;10070:93::-;10153:2;10070:93;:::o;12944:238::-;13032:4;13049:13;13065:12;:10;:12::i;:::-;13049:28;;13088:64;13097:5;13104:7;13141:10;13113:25;13123:5;13130:7;13113:9;:25::i;:::-;:38;;;;:::i;:::-;13088:8;:64::i;10399:127::-;-1:-1:-1;;;;;10500:18:0;;10473:7;10500:18;;;;;;;;;;;10399:127;;;;:::o;2531:103::-;2111:12;:10;:12::i;:::-;-1:-1:-1;;;;;2100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2100:23:0;;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;;;;;;;;;2596:30:::1;2623:1;2596:18;:30::i;:::-;2531:103::o:0;1880:87::-;1953:6;;-1:-1:-1;;;;;1953:6:0;1880:87;:::o;9327:104::-;9383:13;9416:7;9409:14;;;;;:::i;13685:436::-;13778:4;13795:13;13811:12;:10;:12::i;:::-;13795:28;;13834:24;13861:25;13871:5;13878:7;13861:9;:25::i;:::-;13834:52;;13925:15;13905:16;:35;;13897:85;;;;-1:-1:-1;;;13897:85:0;;;;;;;:::i;:::-;14018:60;14027:5;14034:7;14062:15;14043:16;:34;14018:8;:60::i;10732:193::-;10811:4;10828:13;10844:12;:10;:12::i;:::-;10828:28;;10867;10877:5;10884:2;10888:6;10867:9;:28::i;10988:151::-;-1:-1:-1;;;;;11104:18:0;;;11077:7;11104:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10988:151::o;2789:201::-;2111:12;:10;:12::i;:::-;-1:-1:-1;;;;;2100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2100:23:0;;2092:68;;;;-1:-1:-1;;;2092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2878:22:0;::::1;2870:73;;;;-1:-1:-1::0;;;2870:73:0::1;;;;;;;:::i;:::-;2954:28;2973:8;2954:18;:28::i;:::-;2789:201:::0;:::o;604:98::-;684:10;604:98;:::o;17319:380::-;-1:-1:-1;;;;;17455:19:0;;17447:68;;;;-1:-1:-1;;;17447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17534:21:0;;17526:68;;;;-1:-1:-1;;;17526:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17607:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17659:32;;;;;17637:6;;17659:32;:::i;:::-;;;;;;;;17319:380;;;:::o;17990:453::-;18125:24;18152:25;18162:5;18169:7;18152:9;:25::i;:::-;18125:52;;-1:-1:-1;;18192:16:0;:37;18188:248;;18274:6;18254:16;:26;;18246:68;;;;-1:-1:-1;;;18246:68:0;;;;;;;:::i;:::-;18358:51;18367:5;18374:7;18402:6;18383:16;:25;18358:8;:51::i;:::-;17990:453;;;;:::o;21390:192::-;21532:42;21548:6;21556:9;21567:6;21532:15;:42::i;:::-;21390:192;;;:::o;3150:191::-;3243:6;;;-1:-1:-1;;;;;3260:17:0;;;-1:-1:-1;;;;;;3260:17:0;;;;;;;3293:40;;3243:6;;;3260:17;3243:6;;3293:40;;3224:16;;3293:40;3150:191;;:::o;14600:671::-;-1:-1:-1;;;;;14731:18:0;;14723:68;;;;-1:-1:-1;;;14723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14810:16:0;;14802:64;;;;-1:-1:-1;;;14802:64:0;;;;;;;:::i;:::-;14879:38;14900:4;14906:2;14910:6;14879:20;:38::i;:::-;-1:-1:-1;;;;;14952:15:0;;14930:19;14952:15;;;;;;;;;;;14986:21;;;;14978:72;;;;-1:-1:-1;;;14978:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15086:15:0;;;:9;:15;;;;;;;;;;;15104:20;;;15086:38;;15146:13;;;;;;;;:23;;15118:6;;15086:9;15146:23;;15118:6;;15146:23;:::i;:::-;;;;;;;;15202:2;-1:-1:-1;;;;;15187:26:0;15196:4;-1:-1:-1;;;;;15187:26:0;;15206:6;15187:26;;;;;;:::i;:::-;;;;;;;;15226:37;15246:4;15252:2;15256:6;15226:19;:37::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:353::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:31;3791:2;3776:18;;3769:59;3860:2;3845:18;;3690:179::o;3874:402::-;4076:2;4058:21;;;4115:2;4095:18;;;4088:30;4154:34;4149:2;4134:18;;4127:62;-1:-1:-1;;;4220:2:1;4205:18;;4198:36;4266:3;4251:19;;4048:228::o;4281:356::-;4483:2;4465:21;;;4502:18;;;4495:30;4561:34;4556:2;4541:18;;4534:62;4628:2;4613:18;;4455:182::o;4642:401::-;4844:2;4826:21;;;4883:2;4863:18;;;4856:30;4922:34;4917:2;4902:18;;4895:62;-1:-1:-1;;;4988:2:1;4973:18;;4966:35;5033:3;5018:19;;4816:227::o;5048:400::-;5250:2;5232:21;;;5289:2;5269:18;;;5262:30;5328:34;5323:2;5308:18;;5301:62;-1:-1:-1;;;5394:2:1;5379:18;;5372:34;5438:3;5423:19;;5222:226::o;5453:401::-;5655:2;5637:21;;;5694:2;5674:18;;;5667:30;5733:34;5728:2;5713:18;;5706:62;-1:-1:-1;;;5799:2:1;5784:18;;5777:35;5844:3;5829:19;;5627:227::o;5859:177::-;6005:25;;;5993:2;5978:18;;5960:76::o;6041:184::-;6213:4;6201:17;;;;6183:36;;6171:2;6156:18;;6138:87::o;6230:229::-;;6301:1;6297:6;6294:1;6291:13;6288:2;;;-1:-1:-1;;;6327:33:1;;6383:4;6380:1;6373:15;6413:4;6334:3;6401:17;6288:2;-1:-1:-1;6444:9:1;;6278:181::o;6464:380::-;6549:1;6539:12;;6596:1;6586:12;;;6607:2;;6661:4;6653:6;6649:17;6639:27;;6607:2;6714;6706:6;6703:14;6683:18;6680:38;6677:2;;;6760:10;6755:3;6751:20;6748:1;6741:31;6795:4;6792:1;6785:15;6823:4;6820:1;6813:15;6677:2;;6519:325;;;:::o
Swarm Source
ipfs://1a0c7efc3796f8fb21cc16e88e291b1f049e52673e3b4e46c94d44fb8d4d6f01
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.