Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
MEME
Overview
Max Total Supply
404,000,000,000,000 HREK
Holders
372 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
111,159,680,017.605843887041491969 HREKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hrek
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-09 */ /* _____ __ ______ ________ ________ _________ __ ____ _ ________ / ___// / / / __ \/ ____/ //_/_ __/ / _/ ___/ / / / __ \ | / / ____/ \__ \/ /_/ / /_/ / __/ / ,< / / / / \__ \ / / / / / / | / / __/ ___/ / __ / _, _/ /___/ /| | / / _/ / ___/ / / /___/ /_/ /| |/ / /___ /____/_/ /_/_/ |_/_____/_/ |_|/_/ /___//____/ /_____/\____/ |___/_____/ */ 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; } } 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); } } 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); } 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); } 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} } pragma solidity ^0.8.0; contract Hrek is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; constructor(uint256 _totalSupply) ERC20("Hrek", "HREK") { _mint(msg.sender, _totalSupply); } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (limited) { if(from != owner()){ require(super.balanceOf(to) + amount < maxHoldingAmount, "Forbiden"); } } } function setRule(bool _limited, uint256 _maxHoldingAmount) external onlyOwner { limited = _limited; maxHoldingAmount = _maxHoldingAmount; } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
60806040523480156200001157600080fd5b506040516200133f3803806200133f83398101604081905262000034916200034f565b604051806040016040528060048152602001634872656b60e01b815250604051806040016040528060048152602001634852454b60e01b8152506200008862000082620000cf60201b60201c565b620000d3565b81516200009d906004906020850190620002a9565b508051620000b3906005906020840190620002a9565b505050620000c833826200012360201b60201c565b506200042c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001555760405162461bcd60e51b81526004016200014c906200038a565b60405180910390fd5b620001636000838362000205565b8060036000828254620001779190620003ca565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a6908490620003ca565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001eb908590620003c1565b60405180910390a362000201600083836200027a565b5050565b60065460ff16156200027a576200021b6200027f565b6001600160a01b0316836001600160a01b0316146200027a57600754816200024e846200028e60201b620004191760201c565b6200025a9190620003ca565b106200027a5760405162461bcd60e51b81526004016200014c9062000368565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620002b790620003ef565b90600052602060002090601f016020900481019282620002db576000855562000326565b82601f10620002f657805160ff191683800117855562000326565b8280016001018555821562000326579182015b828111156200032657825182559160200191906001019062000309565b506200033492915062000338565b5090565b5b8082111562000334576000815560010162000339565b60006020828403121562000361578081fd5b5051919050565b6020808252600890820152672337b93134b232b760c11b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003ea57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200040457607f821691505b602082108114156200042657634e487b7160e01b600052602260045260246000fd5b50919050565b610f03806200043c6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063d21079e61461022c578063dd62ed3e1461023f578063f2fde38b1461025257610116565b8063860a32ec146101d957806389f9a1d3146101e15780638da5cb5b146101e957806395d89b41146101fe57610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a957806370a08231146101be578063715018a6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610265565b6040516101309190610ae2565b60405180910390f35b61014c610147366004610a61565b6102f7565b6040516101309190610ad7565b610161610314565b6040516101309190610e36565b61014c61017c366004610a26565b61031a565b6101896103b3565b6040516101309190610e3f565b61014c6101a4366004610a61565b6103b8565b6101bc6101b7366004610aab565b61040c565b005b6101616101cc3660046109d3565b610419565b6101bc610438565b61014c610483565b61016161048c565b6101f1610492565b6040516101309190610ac3565b6101236104a1565b61014c610214366004610a61565b6104b0565b61014c610227366004610a61565b610529565b6101bc61023a366004610a8a565b61053d565b61016161024d3660046109f4565b610593565b6101bc6102603660046109d3565b6105be565b60606004805461027490610e7c565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090610e7c565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b600061030b61030461062c565b8484610630565b50600192915050565b60035490565b60006103278484846106e4565b6001600160a01b03841660009081526002602052604081208161034861062c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103945760405162461bcd60e51b815260040161038b90610c88565b60405180910390fd5b6103a8856103a061062c565b858403610630565b506001949350505050565b601290565b600061030b6103c561062c565b8484600260006103d361062c565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104079190610e4d565b610630565b610416338261080e565b50565b6001600160a01b0381166000908152600160205260409020545b919050565b61044061062c565b6001600160a01b0316610451610492565b6001600160a01b0316146104775760405162461bcd60e51b815260040161038b90610cd0565b6104816000610900565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461027490610e7c565b600080600260006104bf61062c565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561050b5760405162461bcd60e51b815260040161038b90610df1565b61051f61051661062c565b85858403610630565b5060019392505050565b600061030b61053661062c565b84846106e4565b61054561062c565b6001600160a01b0316610556610492565b6001600160a01b03161461057c5760405162461bcd60e51b815260040161038b90610cd0565b6006805460ff191692151592909217909155600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105c661062c565b6001600160a01b03166105d7610492565b6001600160a01b0316146105fd5760405162461bcd60e51b815260040161038b90610cd0565b6001600160a01b0381166106235760405162461bcd60e51b815260040161038b90610bba565b61041681610900565b3390565b6001600160a01b0383166106565760405162461bcd60e51b815260040161038b90610dad565b6001600160a01b03821661067c5760405162461bcd60e51b815260040161038b90610c00565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106d7908590610e36565b60405180910390a3505050565b6001600160a01b03831661070a5760405162461bcd60e51b815260040161038b90610d68565b6001600160a01b0382166107305760405162461bcd60e51b815260040161038b90610b35565b61073b83838361095d565b6001600160a01b038316600090815260016020526040902054818110156107745760405162461bcd60e51b815260040161038b90610c42565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107ab908490610e4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f59190610e36565b60405180910390a36108088484846108fb565b50505050565b6001600160a01b0382166108345760405162461bcd60e51b815260040161038b90610d27565b6108408260008361095d565b6001600160a01b038216600090815260016020526040902054818110156108795760405162461bcd60e51b815260040161038b90610b78565b6001600160a01b03831660009081526001602052604081208383039055600380548492906108a8908490610e65565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108eb908690610e36565b60405180910390a36108fb836000845b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065460ff16156108fb57610970610492565b6001600160a01b0316836001600160a01b0316146108fb576007548161099584610419565b61099f9190610e4d565b106108fb5760405162461bcd60e51b815260040161038b90610d05565b80356001600160a01b038116811461043357600080fd5b6000602082840312156109e4578081fd5b6109ed826109bc565b9392505050565b60008060408385031215610a06578081fd5b610a0f836109bc565b9150610a1d602084016109bc565b90509250929050565b600080600060608486031215610a3a578081fd5b610a43846109bc565b9250610a51602085016109bc565b9150604084013590509250925092565b60008060408385031215610a73578182fd5b610a7c836109bc565b946020939093013593505050565b60008060408385031215610a9c578182fd5b82358015158114610a7c578283fd5b600060208284031215610abc578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b0e57858101830151858201604001528201610af2565b81811115610b1f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600890820152672337b93134b232b760c11b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e6057610e60610eb7565b500190565b600082821015610e7757610e77610eb7565b500390565b600281046001821680610e9057607f821691505b60208210811415610eb157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220fede263b9172bff2ac2dbf4e4346e0546165ea5d1711ec9bff1b7363f080916464736f6c6343000800003300000000000000000000000000000000000013eb326778af308775ad00000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063d21079e61461022c578063dd62ed3e1461023f578063f2fde38b1461025257610116565b8063860a32ec146101d957806389f9a1d3146101e15780638da5cb5b146101e957806395d89b41146101fe57610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a957806370a08231146101be578063715018a6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610265565b6040516101309190610ae2565b60405180910390f35b61014c610147366004610a61565b6102f7565b6040516101309190610ad7565b610161610314565b6040516101309190610e36565b61014c61017c366004610a26565b61031a565b6101896103b3565b6040516101309190610e3f565b61014c6101a4366004610a61565b6103b8565b6101bc6101b7366004610aab565b61040c565b005b6101616101cc3660046109d3565b610419565b6101bc610438565b61014c610483565b61016161048c565b6101f1610492565b6040516101309190610ac3565b6101236104a1565b61014c610214366004610a61565b6104b0565b61014c610227366004610a61565b610529565b6101bc61023a366004610a8a565b61053d565b61016161024d3660046109f4565b610593565b6101bc6102603660046109d3565b6105be565b60606004805461027490610e7c565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090610e7c565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b600061030b61030461062c565b8484610630565b50600192915050565b60035490565b60006103278484846106e4565b6001600160a01b03841660009081526002602052604081208161034861062c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103945760405162461bcd60e51b815260040161038b90610c88565b60405180910390fd5b6103a8856103a061062c565b858403610630565b506001949350505050565b601290565b600061030b6103c561062c565b8484600260006103d361062c565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104079190610e4d565b610630565b610416338261080e565b50565b6001600160a01b0381166000908152600160205260409020545b919050565b61044061062c565b6001600160a01b0316610451610492565b6001600160a01b0316146104775760405162461bcd60e51b815260040161038b90610cd0565b6104816000610900565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461027490610e7c565b600080600260006104bf61062c565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561050b5760405162461bcd60e51b815260040161038b90610df1565b61051f61051661062c565b85858403610630565b5060019392505050565b600061030b61053661062c565b84846106e4565b61054561062c565b6001600160a01b0316610556610492565b6001600160a01b03161461057c5760405162461bcd60e51b815260040161038b90610cd0565b6006805460ff191692151592909217909155600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105c661062c565b6001600160a01b03166105d7610492565b6001600160a01b0316146105fd5760405162461bcd60e51b815260040161038b90610cd0565b6001600160a01b0381166106235760405162461bcd60e51b815260040161038b90610bba565b61041681610900565b3390565b6001600160a01b0383166106565760405162461bcd60e51b815260040161038b90610dad565b6001600160a01b03821661067c5760405162461bcd60e51b815260040161038b90610c00565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106d7908590610e36565b60405180910390a3505050565b6001600160a01b03831661070a5760405162461bcd60e51b815260040161038b90610d68565b6001600160a01b0382166107305760405162461bcd60e51b815260040161038b90610b35565b61073b83838361095d565b6001600160a01b038316600090815260016020526040902054818110156107745760405162461bcd60e51b815260040161038b90610c42565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107ab908490610e4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f59190610e36565b60405180910390a36108088484846108fb565b50505050565b6001600160a01b0382166108345760405162461bcd60e51b815260040161038b90610d27565b6108408260008361095d565b6001600160a01b038216600090815260016020526040902054818110156108795760405162461bcd60e51b815260040161038b90610b78565b6001600160a01b03831660009081526001602052604081208383039055600380548492906108a8908490610e65565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108eb908690610e36565b60405180910390a36108fb836000845b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065460ff16156108fb57610970610492565b6001600160a01b0316836001600160a01b0316146108fb576007548161099584610419565b61099f9190610e4d565b106108fb5760405162461bcd60e51b815260040161038b90610d05565b80356001600160a01b038116811461043357600080fd5b6000602082840312156109e4578081fd5b6109ed826109bc565b9392505050565b60008060408385031215610a06578081fd5b610a0f836109bc565b9150610a1d602084016109bc565b90509250929050565b600080600060608486031215610a3a578081fd5b610a43846109bc565b9250610a51602085016109bc565b9150604084013590509250925092565b60008060408385031215610a73578182fd5b610a7c836109bc565b946020939093013593505050565b60008060408385031215610a9c578182fd5b82358015158114610a7c578283fd5b600060208284031215610abc578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b0e57858101830151858201604001528201610af2565b81811115610b1f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600890820152672337b93134b232b760c11b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e6057610e60610eb7565b500190565b600082821015610e7757610e77610eb7565b500390565b600281046001821680610e9057607f821691505b60208210811415610eb157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220fede263b9172bff2ac2dbf4e4346e0546165ea5d1711ec9bff1b7363f080916464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000013eb326778af308775ad00000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 404000000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000013eb326778af308775ad00000000
Deployed Bytecode Sourcemap
18944:792:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8954:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11121:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10074:108::-;;;:::i;:::-;;;;;;;:::i;11772:492::-;;;;;;:::i;:::-;;:::i;9916:93::-;;;:::i;:::-;;;;;;;:::i;12673:215::-;;;;;;:::i;:::-;;:::i;19652:81::-;;;;;;:::i;:::-;;:::i;:::-;;10245:127;;;;;;:::i;:::-;;:::i;2781:103::-;;;:::i;18983:19::-;;;:::i;19009:31::-;;;:::i;2130:87::-;;;:::i;:::-;;;;;;;:::i;9173:104::-;;;:::i;13391:413::-;;;;;;:::i;:::-;;:::i;10585:175::-;;;;;;:::i;:::-;;:::i;19482:162::-;;;;;;:::i;:::-;;:::i;10823:151::-;;;;;;:::i;:::-;;:::i;3039:201::-;;;;;;:::i;:::-;;:::i;8954:100::-;9008:13;9041:5;9034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8954:100;:::o;11121:169::-;11204:4;11221:39;11230:12;:10;:12::i;:::-;11244:7;11253:6;11221:8;:39::i;:::-;-1:-1:-1;11278:4:0;11121:169;;;;:::o;10074:108::-;10162:12;;10074:108;:::o;11772:492::-;11912:4;11929:36;11939:6;11947:9;11958:6;11929:9;:36::i;:::-;-1:-1:-1;;;;;12005:19:0;;11978:24;12005:19;;;:11;:19;;;;;11978:24;12025:12;:10;:12::i;:::-;-1:-1:-1;;;;;12005:33:0;-1:-1:-1;;;;;12005:33:0;;;;;;;;;;;;;11978:60;;12077:6;12057:16;:26;;12049:79;;;;-1:-1:-1;;;12049:79:0;;;;;;;:::i;:::-;;;;;;;;;12164:57;12173:6;12181:12;:10;:12::i;:::-;12214:6;12195:16;:25;12164:8;:57::i;:::-;-1:-1:-1;12252:4:0;;11772:492;-1:-1:-1;;;;11772:492:0:o;9916:93::-;9999:2;9916:93;:::o;12673:215::-;12761:4;12778:80;12787:12;:10;:12::i;:::-;12801:7;12847:10;12810:11;:25;12822:12;:10;:12::i;:::-;-1:-1:-1;;;;;12810:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12810:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;12778:8;:80::i;19652:81::-;19701:24;19707:10;19719:5;19701;:24::i;:::-;19652:81;:::o;10245:127::-;-1:-1:-1;;;;;10346:18:0;;10319:7;10346:18;;;:9;:18;;;;;;10245:127;;;;:::o;2781:103::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;2846:30:::1;2873:1;2846:18;:30::i;:::-;2781:103::o:0;18983:19::-;;;;;;:::o;19009:31::-;;;;:::o;2130:87::-;2176:7;2203:6;-1:-1:-1;;;;;2203:6:0;2130:87;:::o;9173:104::-;9229:13;9262:7;9255:14;;;;;:::i;13391:413::-;13484:4;13501:24;13528:11;:25;13540:12;:10;:12::i;:::-;-1:-1:-1;;;;;13528:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13528:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13581:35:0;;;;13573:85;;;;-1:-1:-1;;;13573:85:0;;;;;;;:::i;:::-;13694:67;13703:12;:10;:12::i;:::-;13717:7;13745:15;13726:16;:34;13694:8;:67::i;:::-;-1:-1:-1;13792:4:0;;13391:413;-1:-1:-1;;;13391:413:0:o;10585:175::-;10671:4;10688:42;10698:12;:10;:12::i;:::-;10712:9;10723:6;10688:9;:42::i;19482:162::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;19571:7:::1;:18:::0;;-1:-1:-1;;19571:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19600:16:::1;:36:::0;19482:162::o;10823:151::-;-1:-1:-1;;;;;10939:18:0;;;10912:7;10939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10823:151::o;3039:201::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3128:22:0;::::1;3120:73;;;;-1:-1:-1::0;;;3120:73:0::1;;;;;;;:::i;:::-;3204:28;3223:8;3204:18;:28::i;970:98::-:0;1050:10;970:98;:::o;17075:380::-;-1:-1:-1;;;;;17211:19:0;;17203:68;;;;-1:-1:-1;;;17203:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17290:21:0;;17282:68;;;;-1:-1:-1;;;17282:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17363:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17415:32;;;;;17393:6;;17415:32;:::i;:::-;;;;;;;;17075:380;;;:::o;14294:733::-;-1:-1:-1;;;;;14434:20:0;;14426:70;;;;-1:-1:-1;;;14426:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14515:23:0;;14507:71;;;;-1:-1:-1;;;14507:71:0;;;;;;;:::i;:::-;14591:47;14612:6;14620:9;14631:6;14591:20;:47::i;:::-;-1:-1:-1;;;;;14675:17:0;;14651:21;14675:17;;;:9;:17;;;;;;14711:23;;;;14703:74;;;;-1:-1:-1;;;14703:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14813:17:0;;;;;;;:9;:17;;;;;;14833:22;;;14813:42;;14877:20;;;;;;;;:30;;14849:6;;14813:17;14877:30;;14849:6;;14877:30;:::i;:::-;;;;;;;;14942:9;-1:-1:-1;;;;;14925:35:0;14934:6;-1:-1:-1;;;;;14925:35:0;;14953:6;14925:35;;;;;;:::i;:::-;;;;;;;;14973:46;14993:6;15001:9;15012:6;14973:19;:46::i;:::-;14294:733;;;;:::o;16046:591::-;-1:-1:-1;;;;;16130:21:0;;16122:67;;;;-1:-1:-1;;;16122:67:0;;;;;;;:::i;:::-;16202:49;16223:7;16240:1;16244:6;16202:20;:49::i;:::-;-1:-1:-1;;;;;16289:18:0;;16264:22;16289:18;;;:9;:18;;;;;;16326:24;;;;16318:71;;;;-1:-1:-1;;;16318:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16425:18:0;;;;;;:9;:18;;;;;16446:23;;;16425:44;;16491:12;:22;;16463:6;;16425:18;16491:22;;16463:6;;16491:22;:::i;:::-;;;;-1:-1:-1;;16531:37:0;;16557:1;;-1:-1:-1;;;;;16531:37:0;;;;;;;16561:6;;16531:37;:::i;:::-;;;;;;;;16581:48;16601:7;16618:1;16622:6;16581:48;16046:591;;;:::o;3400:191::-;3474:16;3493:6;;-1:-1:-1;;;;;3510:17:0;;;-1:-1:-1;;3510:17:0;;;;;;3543:40;;3493:6;;;;;;;3543:40;;3474:16;3543:40;3400:191;;:::o;19163:311::-;19310:7;;;;19306:161;;;19345:7;:5;:7::i;:::-;-1:-1:-1;;;;;19337:15:0;:4;-1:-1:-1;;;;;19337:15:0;;19334:122;;19411:16;;19402:6;19380:19;19396:2;19380:15;:19::i;:::-;:28;;;;:::i;:::-;:47;19372:68;;;;-1:-1:-1;;;19372:68:0;;;;;;;:::i;14:198:1:-;84:20;;-1:-1:-1;;;;;133:54:1;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;:::-;368:41;287:128;-1:-1:-1;;;287:128:1:o;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:361::-;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1561:5;1554:13;1547:21;1540:5;1537:32;1527:2;;1588:6;1580;1573:22;1683:190;;1795:2;1783:9;1774:7;1770:23;1766:32;1763:2;;;1816:6;1808;1801:22;1763:2;-1:-1:-1;1844:23:1;;1753:120;-1:-1:-1;1753:120:1:o;1878:226::-;-1:-1:-1;;;;;2042:55:1;;;;2024:74;;2012:2;1997:18;;1979:125::o;2109:187::-;2274:14;;2267:22;2249:41;;2237:2;2222:18;;2204:92::o;2301:603::-;;2442:2;2471;2460:9;2453:21;2503:6;2497:13;2546:6;2541:2;2530:9;2526:18;2519:34;2571:4;2584:140;2598:6;2595:1;2592:13;2584:140;;;2693:14;;;2689:23;;2683:30;2659:17;;;2678:2;2655:26;2648:66;2613:10;;2584:140;;;2742:6;2739:1;2736:13;2733:2;;;2812:4;2807:2;2798:6;2787:9;2783:22;2779:31;2772:45;2733:2;-1:-1:-1;2888:2:1;2867:15;-1:-1:-1;;2863:29:1;2848:45;;;;2895:2;2844:54;;2422:482;-1:-1:-1;;;2422:482:1:o;2909:399::-;3111:2;3093:21;;;3150:2;3130:18;;;3123:30;3189:34;3184:2;3169:18;;3162:62;-1:-1:-1;;;3255:2:1;3240:18;;3233:33;3298:3;3283:19;;3083:225::o;3313:398::-;3515:2;3497:21;;;3554:2;3534:18;;;3527:30;3593:34;3588:2;3573:18;;3566:62;-1:-1:-1;;;3659:2:1;3644:18;;3637:32;3701:3;3686:19;;3487:224::o;3716:402::-;3918:2;3900:21;;;3957:2;3937:18;;;3930:30;3996:34;3991:2;3976:18;;3969:62;-1:-1:-1;;;4062:2:1;4047:18;;4040:36;4108:3;4093:19;;3890:228::o;4123:398::-;4325:2;4307:21;;;4364:2;4344:18;;;4337:30;4403:34;4398:2;4383:18;;4376:62;-1:-1:-1;;;4469:2:1;4454:18;;4447:32;4511:3;4496:19;;4297:224::o;4526:402::-;4728:2;4710:21;;;4767:2;4747:18;;;4740:30;4806:34;4801:2;4786:18;;4779:62;-1:-1:-1;;;4872:2:1;4857:18;;4850:36;4918:3;4903:19;;4700:228::o;4933:404::-;5135:2;5117:21;;;5174:2;5154:18;;;5147:30;5213:34;5208:2;5193:18;;5186:62;-1:-1:-1;;;5279:2:1;5264:18;;5257:38;5327:3;5312:19;;5107:230::o;5342:356::-;5544:2;5526:21;;;5563:18;;;5556:30;5622:34;5617:2;5602:18;;5595:62;5689:2;5674:18;;5516:182::o;5703:331::-;5905:2;5887:21;;;5944:1;5924:18;;;5917:29;-1:-1:-1;;;5977:2:1;5962:18;;5955:38;6025:2;6010:18;;5877:157::o;6039:397::-;6241:2;6223:21;;;6280:2;6260:18;;;6253:30;6319:34;6314:2;6299:18;;6292:62;-1:-1:-1;;;6385:2:1;6370:18;;6363:31;6426:3;6411:19;;6213:223::o;6441:401::-;6643:2;6625:21;;;6682:2;6662:18;;;6655:30;6721:34;6716:2;6701:18;;6694:62;-1:-1:-1;;;6787:2:1;6772:18;;6765:35;6832:3;6817:19;;6615:227::o;6847:400::-;7049:2;7031:21;;;7088:2;7068:18;;;7061:30;7127:34;7122:2;7107:18;;7100:62;-1:-1:-1;;;7193:2:1;7178:18;;7171:34;7237:3;7222:19;;7021:226::o;7252:401::-;7454:2;7436:21;;;7493:2;7473:18;;;7466:30;7532:34;7527:2;7512:18;;7505:62;-1:-1:-1;;;7598:2:1;7583:18;;7576:35;7643:3;7628:19;;7426:227::o;7658:177::-;7804:25;;;7792:2;7777:18;;7759:76::o;7840:184::-;8012:4;8000:17;;;;7982:36;;7970:2;7955:18;;7937:87::o;8029:128::-;;8100:1;8096:6;8093:1;8090:13;8087:2;;;8106:18;;:::i;:::-;-1:-1:-1;8142:9:1;;8077:80::o;8162:125::-;;8230:1;8227;8224:8;8221:2;;;8235:18;;:::i;:::-;-1:-1:-1;8272:9:1;;8211:76::o;8292:380::-;8377:1;8367:12;;8424:1;8414:12;;;8435:2;;8489:4;8481:6;8477:17;8467:27;;8435:2;8542;8534:6;8531:14;8511:18;8508:38;8505:2;;;8588:10;8583:3;8579:20;8576:1;8569:31;8623:4;8620:1;8613:15;8651:4;8648:1;8641:15;8505:2;;8347:325;;;:::o;8677:127::-;8738:10;8733:3;8729:20;8726:1;8719:31;8769:4;8766:1;8759:15;8793:4;8790:1;8783:15
Swarm Source
ipfs://fede263b9172bff2ac2dbf4e4346e0546165ea5d1711ec9bff1b7363f0809164
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.