ERC-20
MEME
Overview
Max Total Supply
1,000,000,000 GNOMY
Holders
508 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$33,460.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,238.392016575714395335 GNOMYValue
$0.28 ( ~0.00011539572628824 Eth) [0.0008%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Gnomy
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-09 */ // SPDX-License-Identifier: UNLICENSED // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); } // 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.8.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.openzeppelin.com/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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/GnomyToken.sol pragma solidity ^0.8.0; contract Gnomy is ERC20, ERC20Burnable, Ownable { uint256 private constant INITIAL_SUPPLY = 1000000000 * 10**18; constructor(address initialOwner) ERC20("Gnomy", "GNOMY") { transferOwnership(initialOwner); _mint(initialOwner, INITIAL_SUPPLY); } function distributeTokens(address distributionWallet) external onlyOwner { uint256 supply = balanceOf(msg.sender); require(supply == INITIAL_SUPPLY, "Tokens already distributed"); _transfer(msg.sender, distributionWallet, supply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"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
608060405234801561000f575f80fd5b506040516123e53803806123e5833981810160405281019061003191906104d8565b6040518060400160405280600581526020017f476e6f6d790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474e4f4d5900000000000000000000000000000000000000000000000000000081525081600390816100ac919061073d565b5080600490816100bc919061073d565b5050506100db6100d061010c60201b60201c565b61011360201b60201c565b6100ea816101d660201b60201c565b610106816b033b2e3c9fd0803ce800000061026460201b60201c565b50610a02565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6101e46103be60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102499061088c565b60405180910390fd5b6102618161011360201b60201c565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c9906108f4565b60405180910390fd5b6102e35f838361044860201b60201c565b8060025f8282546102f4919061093f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103a19190610981565b60405180910390a36103ba5f838361044d60201b60201c565b5050565b6103cc61010c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166103f061045260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043d906109e4565b60405180910390fd5b565b505050565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104a78261047e565b9050919050565b6104b78161049d565b81146104c1575f80fd5b50565b5f815190506104d2816104ae565b92915050565b5f602082840312156104ed576104ec61047a565b5b5f6104fa848285016104c4565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061057e57607f821691505b6020821081036105915761059061053a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105b8565b6105fd86836105b8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61064161063c61063784610615565b61061e565b610615565b9050919050565b5f819050919050565b61065a83610627565b61066e61066682610648565b8484546105c4565b825550505050565b5f90565b610682610676565b61068d818484610651565b505050565b5b818110156106b0576106a55f8261067a565b600181019050610693565b5050565b601f8211156106f5576106c681610597565b6106cf846105a9565b810160208510156106de578190505b6106f26106ea856105a9565b830182610692565b50505b505050565b5f82821c905092915050565b5f6107155f19846008026106fa565b1980831691505092915050565b5f61072d8383610706565b9150826002028217905092915050565b61074682610503565b67ffffffffffffffff81111561075f5761075e61050d565b5b6107698254610567565b6107748282856106b4565b5f60209050601f8311600181146107a5575f8415610793578287015190505b61079d8582610722565b865550610804565b601f1984166107b386610597565b5f5b828110156107da578489015182556001820191506020850194506020810190506107b5565b868310156107f757848901516107f3601f891682610706565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61087660268361080c565b91506108818261081c565b604082019050919050565b5f6020820190508181035f8301526108a38161086a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6108de601f8361080c565b91506108e9826108aa565b602082019050919050565b5f6020820190508181035f83015261090b816108d2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61094982610615565b915061095483610615565b925082820190508082111561096c5761096b610912565b5b92915050565b61097b81610615565b82525050565b5f6020820190506109945f830184610972565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6109ce60208361080c565b91506109d98261099a565b602082019050919050565b5f6020820190508181035f8301526109fb816109c2565b9050919050565b6119d680610a0f5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063b1d17c9814610305578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611023565b60405180910390f35b610145600480360381019061014091906110d4565b6103fd565b604051610152919061112c565b60405180910390f35b61016361041f565b6040516101709190611154565b60405180910390f35b610193600480360381019061018e919061116d565b610428565b6040516101a0919061112c565b60405180910390f35b6101b1610456565b6040516101be91906111d8565b60405180910390f35b6101e160048036038101906101dc91906110d4565b61045e565b6040516101ee919061112c565b60405180910390f35b610211600480360381019061020c91906111f1565b610494565b005b61022d6004803603810190610228919061121c565b6104a8565b60405161023a9190611154565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906110d4565b610500565b005b610271610520565b60405161027e9190611256565b60405180910390f35b61028f610548565b60405161029c9190611023565b60405180910390f35b6102bf60048036038101906102ba91906110d4565b6105d8565b6040516102cc919061112c565b60405180910390f35b6102ef60048036038101906102ea91906110d4565b61064d565b6040516102fc919061112c565b60405180910390f35b61031f600480360381019061031a919061121c565b61066f565b005b61033b6004803603810190610336919061126f565b6106e0565b6040516103489190611154565b60405180910390f35b61036b6004803603810190610366919061121c565b610762565b005b60606003805461037c906112da565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906112da565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f806104076107e4565b90506104148185856107eb565b600191505092915050565b5f600254905090565b5f806104326107e4565b905061043f8582856109ae565b61044a858585610a39565b60019150509392505050565b5f6012905090565b5f806104686107e4565b905061048981858561047a85896106e0565b6104849190611337565b6107eb565b600191505092915050565b6104a561049f6107e4565b82610ca5565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e68565b6104fe5f610ee6565b565b6105128261050c6107e4565b836109ae565b61051c8282610ca5565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610557906112da565b80601f0160208091040260200160405190810160405280929190818152602001828054610583906112da565b80156105ce5780601f106105a5576101008083540402835291602001916105ce565b820191905f5260205f20905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b5f806105e26107e4565b90505f6105ef82866106e0565b905083811015610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b906113da565b60405180910390fd5b61064182868684036107eb565b60019250505092915050565b5f806106576107e4565b9050610664818585610a39565b600191505092915050565b610677610e68565b5f610681336104a8565b90506b033b2e3c9fd0803ce800000081146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611442565b60405180910390fd5b6106dc338383610a39565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61076a610e68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906114d0565b60405180910390fd5b6107e181610ee6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061155e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906115ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a19190611154565b60405180910390a3505050565b5f6109b984846106e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a335781811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611654565b60405180910390fd5b610a3284848484036107eb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906116e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611770565b60405180910390fd5b610b20838383610fa9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906117fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8c9190611154565b60405180910390a3610c9f848484610fae565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061188c565b60405180910390fd5b610d1e825f83610fa9565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061191a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e509190611154565b60405180910390a3610e63835f84610fae565b505050565b610e706107e4565b73ffffffffffffffffffffffffffffffffffffffff16610e8e610520565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611982565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ff582610fb3565b610fff8185610fbd565b935061100f818560208601610fcd565b61101881610fdb565b840191505092915050565b5f6020820190508181035f83015261103b8184610feb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61107082611047565b9050919050565b61108081611066565b811461108a575f80fd5b50565b5f8135905061109b81611077565b92915050565b5f819050919050565b6110b3816110a1565b81146110bd575f80fd5b50565b5f813590506110ce816110aa565b92915050565b5f80604083850312156110ea576110e9611043565b5b5f6110f78582860161108d565b9250506020611108858286016110c0565b9150509250929050565b5f8115159050919050565b61112681611112565b82525050565b5f60208201905061113f5f83018461111d565b92915050565b61114e816110a1565b82525050565b5f6020820190506111675f830184611145565b92915050565b5f805f6060848603121561118457611183611043565b5b5f6111918682870161108d565b93505060206111a28682870161108d565b92505060406111b3868287016110c0565b9150509250925092565b5f60ff82169050919050565b6111d2816111bd565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f6020828403121561120657611205611043565b5b5f611213848285016110c0565b91505092915050565b5f6020828403121561123157611230611043565b5b5f61123e8482850161108d565b91505092915050565b61125081611066565b82525050565b5f6020820190506112695f830184611247565b92915050565b5f806040838503121561128557611284611043565b5b5f6112928582860161108d565b92505060206112a38582860161108d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112f157607f821691505b602082108103611304576113036112ad565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611341826110a1565b915061134c836110a1565b92508282019050808211156113645761136361130a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602583610fbd565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f546f6b656e7320616c72656164792064697374726962757465640000000000005f82015250565b5f61142c601a83610fbd565b9150611437826113f8565b602082019050919050565b5f6020820190508181035f83015261145981611420565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6114ba602683610fbd565b91506114c582611460565b604082019050919050565b5f6020820190508181035f8301526114e7816114ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611548602483610fbd565b9150611553826114ee565b604082019050919050565b5f6020820190508181035f8301526115758161153c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115d6602283610fbd565b91506115e18261157c565b604082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61163e601d83610fbd565b91506116498261160a565b602082019050919050565b5f6020820190508181035f83015261166b81611632565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116cc602583610fbd565b91506116d782611672565b604082019050919050565b5f6020820190508181035f8301526116f9816116c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61175a602383610fbd565b915061176582611700565b604082019050919050565b5f6020820190508181035f8301526117878161174e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e8602683610fbd565b91506117f38261178e565b604082019050919050565b5f6020820190508181035f830152611815816117dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611876602183610fbd565b91506118818261181c565b604082019050919050565b5f6020820190508181035f8301526118a38161186a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611904602283610fbd565b915061190f826118aa565b604082019050919050565b5f6020820190508181035f830152611931816118f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61196c602083610fbd565b915061197782611938565b602082019050919050565b5f6020820190508181035f83015261199981611960565b905091905056fea26469706673582212203f4a773c1fda78d8b7c91a12869bac9bbba498e499f4312ecf534256559f003b64736f6c634300081a0033000000000000000000000000642815c3a6aebd69edc17a0be2ac0ae45f551e98
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063b1d17c9814610305578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611023565b60405180910390f35b610145600480360381019061014091906110d4565b6103fd565b604051610152919061112c565b60405180910390f35b61016361041f565b6040516101709190611154565b60405180910390f35b610193600480360381019061018e919061116d565b610428565b6040516101a0919061112c565b60405180910390f35b6101b1610456565b6040516101be91906111d8565b60405180910390f35b6101e160048036038101906101dc91906110d4565b61045e565b6040516101ee919061112c565b60405180910390f35b610211600480360381019061020c91906111f1565b610494565b005b61022d6004803603810190610228919061121c565b6104a8565b60405161023a9190611154565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906110d4565b610500565b005b610271610520565b60405161027e9190611256565b60405180910390f35b61028f610548565b60405161029c9190611023565b60405180910390f35b6102bf60048036038101906102ba91906110d4565b6105d8565b6040516102cc919061112c565b60405180910390f35b6102ef60048036038101906102ea91906110d4565b61064d565b6040516102fc919061112c565b60405180910390f35b61031f600480360381019061031a919061121c565b61066f565b005b61033b6004803603810190610336919061126f565b6106e0565b6040516103489190611154565b60405180910390f35b61036b6004803603810190610366919061121c565b610762565b005b60606003805461037c906112da565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906112da565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f806104076107e4565b90506104148185856107eb565b600191505092915050565b5f600254905090565b5f806104326107e4565b905061043f8582856109ae565b61044a858585610a39565b60019150509392505050565b5f6012905090565b5f806104686107e4565b905061048981858561047a85896106e0565b6104849190611337565b6107eb565b600191505092915050565b6104a561049f6107e4565b82610ca5565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e68565b6104fe5f610ee6565b565b6105128261050c6107e4565b836109ae565b61051c8282610ca5565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610557906112da565b80601f0160208091040260200160405190810160405280929190818152602001828054610583906112da565b80156105ce5780601f106105a5576101008083540402835291602001916105ce565b820191905f5260205f20905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b5f806105e26107e4565b90505f6105ef82866106e0565b905083811015610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b906113da565b60405180910390fd5b61064182868684036107eb565b60019250505092915050565b5f806106576107e4565b9050610664818585610a39565b600191505092915050565b610677610e68565b5f610681336104a8565b90506b033b2e3c9fd0803ce800000081146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611442565b60405180910390fd5b6106dc338383610a39565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61076a610e68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906114d0565b60405180910390fd5b6107e181610ee6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061155e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906115ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a19190611154565b60405180910390a3505050565b5f6109b984846106e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a335781811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611654565b60405180910390fd5b610a3284848484036107eb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906116e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611770565b60405180910390fd5b610b20838383610fa9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906117fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8c9190611154565b60405180910390a3610c9f848484610fae565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061188c565b60405180910390fd5b610d1e825f83610fa9565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061191a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e509190611154565b60405180910390a3610e63835f84610fae565b505050565b610e706107e4565b73ffffffffffffffffffffffffffffffffffffffff16610e8e610520565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611982565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ff582610fb3565b610fff8185610fbd565b935061100f818560208601610fcd565b61101881610fdb565b840191505092915050565b5f6020820190508181035f83015261103b8184610feb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61107082611047565b9050919050565b61108081611066565b811461108a575f80fd5b50565b5f8135905061109b81611077565b92915050565b5f819050919050565b6110b3816110a1565b81146110bd575f80fd5b50565b5f813590506110ce816110aa565b92915050565b5f80604083850312156110ea576110e9611043565b5b5f6110f78582860161108d565b9250506020611108858286016110c0565b9150509250929050565b5f8115159050919050565b61112681611112565b82525050565b5f60208201905061113f5f83018461111d565b92915050565b61114e816110a1565b82525050565b5f6020820190506111675f830184611145565b92915050565b5f805f6060848603121561118457611183611043565b5b5f6111918682870161108d565b93505060206111a28682870161108d565b92505060406111b3868287016110c0565b9150509250925092565b5f60ff82169050919050565b6111d2816111bd565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f6020828403121561120657611205611043565b5b5f611213848285016110c0565b91505092915050565b5f6020828403121561123157611230611043565b5b5f61123e8482850161108d565b91505092915050565b61125081611066565b82525050565b5f6020820190506112695f830184611247565b92915050565b5f806040838503121561128557611284611043565b5b5f6112928582860161108d565b92505060206112a38582860161108d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112f157607f821691505b602082108103611304576113036112ad565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611341826110a1565b915061134c836110a1565b92508282019050808211156113645761136361130a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602583610fbd565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f546f6b656e7320616c72656164792064697374726962757465640000000000005f82015250565b5f61142c601a83610fbd565b9150611437826113f8565b602082019050919050565b5f6020820190508181035f83015261145981611420565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6114ba602683610fbd565b91506114c582611460565b604082019050919050565b5f6020820190508181035f8301526114e7816114ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611548602483610fbd565b9150611553826114ee565b604082019050919050565b5f6020820190508181035f8301526115758161153c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115d6602283610fbd565b91506115e18261157c565b604082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61163e601d83610fbd565b91506116498261160a565b602082019050919050565b5f6020820190508181035f83015261166b81611632565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116cc602583610fbd565b91506116d782611672565b604082019050919050565b5f6020820190508181035f8301526116f9816116c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61175a602383610fbd565b915061176582611700565b604082019050919050565b5f6020820190508181035f8301526117878161174e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e8602683610fbd565b91506117f38261178e565b604082019050919050565b5f6020820190508181035f830152611815816117dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611876602183610fbd565b91506118818261181c565b604082019050919050565b5f6020820190508181035f8301526118a38161186a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611904602283610fbd565b915061190f826118aa565b604082019050919050565b5f6020820190508181035f830152611931816118f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61196c602083610fbd565b915061197782611938565b602082019050919050565b5f6020820190508181035f83015261199981611960565b905091905056fea26469706673582212203f4a773c1fda78d8b7c91a12869bac9bbba498e499f4312ecf534256559f003b64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000642815c3a6aebd69edc17a0be2ac0ae45f551e98
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x642815c3a6aEBd69Edc17a0BE2AC0Ae45f551E98
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000642815c3a6aebd69edc17a0be2ac0ae45f551e98
Deployed Bytecode Sourcemap
21815:566:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9391:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11742:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10511:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12523:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10353:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13227:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21162:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10682:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2816:103;;;:::i;:::-;;21572:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2168:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9610:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13968:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11015:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22112:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11271:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3074:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9391:100;9445:13;9478:5;9471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9391:100;:::o;11742:201::-;11825:4;11842:13;11858:12;:10;:12::i;:::-;11842:28;;11881:32;11890:5;11897:7;11906:6;11881:8;:32::i;:::-;11931:4;11924:11;;;11742:201;;;;:::o;10511:108::-;10572:7;10599:12;;10592:19;;10511:108;:::o;12523:295::-;12654:4;12671:15;12689:12;:10;:12::i;:::-;12671:30;;12712:38;12728:4;12734:7;12743:6;12712:15;:38::i;:::-;12761:27;12771:4;12777:2;12781:6;12761:9;:27::i;:::-;12806:4;12799:11;;;12523:295;;;;;:::o;10353:93::-;10411:5;10436:2;10429:9;;10353:93;:::o;13227:238::-;13315:4;13332:13;13348:12;:10;:12::i;:::-;13332:28;;13371:64;13380:5;13387:7;13424:10;13396:25;13406:5;13413:7;13396:9;:25::i;:::-;:38;;;;:::i;:::-;13371:8;:64::i;:::-;13453:4;13446:11;;;13227:238;;;;:::o;21162:91::-;21218:27;21224:12;:10;:12::i;:::-;21238:6;21218:5;:27::i;:::-;21162:91;:::o;10682:127::-;10756:7;10783:9;:18;10793:7;10783:18;;;;;;;;;;;;;;;;10776:25;;10682:127;;;:::o;2816:103::-;2054:13;:11;:13::i;:::-;2881:30:::1;2908:1;2881:18;:30::i;:::-;2816:103::o:0;21572:164::-;21649:46;21665:7;21674:12;:10;:12::i;:::-;21688:6;21649:15;:46::i;:::-;21706:22;21712:7;21721:6;21706:5;:22::i;:::-;21572:164;;:::o;2168:87::-;2214:7;2241:6;;;;;;;;;;;2234:13;;2168:87;:::o;9610:104::-;9666:13;9699:7;9692:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9610:104;:::o;13968:436::-;14061:4;14078:13;14094:12;:10;:12::i;:::-;14078:28;;14117:24;14144:25;14154:5;14161:7;14144:9;:25::i;:::-;14117:52;;14208:15;14188:16;:35;;14180:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14301:60;14310:5;14317:7;14345:15;14326:16;:34;14301:8;:60::i;:::-;14392:4;14385:11;;;;13968:436;;;;:::o;11015:193::-;11094:4;11111:13;11127:12;:10;:12::i;:::-;11111:28;;11150;11160:5;11167:2;11171:6;11150:9;:28::i;:::-;11196:4;11189:11;;;11015:193;;;;:::o;22112:266::-;2054:13;:11;:13::i;:::-;22196:14:::1;22213:21;22223:10;22213:9;:21::i;:::-;22196:38;;21912:19;22253:6;:24;22245:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22321:49;22331:10;22343:18;22363:6;22321:9;:49::i;:::-;22185:193;22112:266:::0;:::o;11271:151::-;11360:7;11387:11;:18;11399:5;11387:18;;;;;;;;;;;;;;;:27;11406:7;11387:27;;;;;;;;;;;;;;;;11380:34;;11271:151;;;;:::o;3074:201::-;2054:13;:11;:13::i;:::-;3183:1:::1;3163:22;;:8;:22;;::::0;3155:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3239:28;3258:8;3239:18;:28::i;:::-;3074:201:::0;:::o;719:98::-;772:7;799:10;792:17;;719:98;:::o;17995:380::-;18148:1;18131:19;;:5;:19;;;18123:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18229:1;18210:21;;:7;:21;;;18202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18313:6;18283:11;:18;18295:5;18283:18;;;;;;;;;;;;;;;:27;18302:7;18283:27;;;;;;;;;;;;;;;:36;;;;18351:7;18335:32;;18344:5;18335:32;;;18360:6;18335:32;;;;;;:::i;:::-;;;;;;;;17995:380;;;:::o;18666:453::-;18801:24;18828:25;18838:5;18845:7;18828:9;:25::i;:::-;18801:52;;18888:17;18868:16;:37;18864:248;;18950:6;18930:16;:26;;18922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19034:51;19043:5;19050:7;19078:6;19059:16;:25;19034:8;:51::i;:::-;18864:248;18790:329;18666:453;;;:::o;14874:840::-;15021:1;15005:18;;:4;:18;;;14997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15098:1;15084:16;;:2;:16;;;15076:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15153:38;15174:4;15180:2;15184:6;15153:20;:38::i;:::-;15204:19;15226:9;:15;15236:4;15226:15;;;;;;;;;;;;;;;;15204:37;;15275:6;15260:11;:21;;15252:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15392:6;15378:11;:20;15360:9;:15;15370:4;15360:15;;;;;;;;;;;;;;;:38;;;;15595:6;15578:9;:13;15588:2;15578:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15645:2;15630:26;;15639:4;15630:26;;;15649:6;15630:26;;;;;;:::i;:::-;;;;;;;;15669:37;15689:4;15695:2;15699:6;15669:19;:37::i;:::-;14986:728;14874:840;;;:::o;16882:675::-;16985:1;16966:21;;:7;:21;;;16958:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17038:49;17059:7;17076:1;17080:6;17038:20;:49::i;:::-;17100:22;17125:9;:18;17135:7;17125:18;;;;;;;;;;;;;;;;17100:43;;17180:6;17162:14;:24;;17154:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17299:6;17282:14;:23;17261:9;:18;17271:7;17261:18;;;;;;;;;;;;;;;:44;;;;17416:6;17400:12;;:22;;;;;;;;;;;17477:1;17451:37;;17460:7;17451:37;;;17481:6;17451:37;;;;;;:::i;:::-;;;;;;;;17501:48;17521:7;17538:1;17542:6;17501:19;:48::i;:::-;16947:610;16882:675;;:::o;2333:132::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:132::o;3435:191::-;3509:16;3528:6;;;;;;;;;;;3509:25;;3554:8;3545:6;;:17;;;;;;;;;;;;;;;;;;3609:8;3578:40;;3599:8;3578:40;;;;;;;;;;;;3498:128;3435:191;:::o;19719:125::-;;;;:::o;20448:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:224::-;7283:34;7279:1;7271:6;7267:14;7260:58;7352:7;7347:2;7339:6;7335:15;7328:32;7143:224;:::o;7373:366::-;7515:3;7536:67;7600:2;7595:3;7536:67;:::i;:::-;7529:74;;7612:93;7701:3;7612:93;:::i;:::-;7730:2;7725:3;7721:12;7714:19;;7373:366;;;:::o;7745:419::-;7911:4;7949:2;7938:9;7934:18;7926:26;;7998:9;7992:4;7988:20;7984:1;7973:9;7969:17;7962:47;8026:131;8152:4;8026:131;:::i;:::-;8018:139;;7745:419;;;:::o;8170:176::-;8310:28;8306:1;8298:6;8294:14;8287:52;8170:176;:::o;8352:366::-;8494:3;8515:67;8579:2;8574:3;8515:67;:::i;:::-;8508:74;;8591:93;8680:3;8591:93;:::i;:::-;8709:2;8704:3;8700:12;8693:19;;8352:366;;;:::o;8724:419::-;8890:4;8928:2;8917:9;8913:18;8905:26;;8977:9;8971:4;8967:20;8963:1;8952:9;8948:17;8941:47;9005:131;9131:4;9005:131;:::i;:::-;8997:139;;8724:419;;;:::o;9149:225::-;9289:34;9285:1;9277:6;9273:14;9266:58;9358:8;9353:2;9345:6;9341:15;9334:33;9149:225;:::o;9380:366::-;9522:3;9543:67;9607:2;9602:3;9543:67;:::i;:::-;9536:74;;9619:93;9708:3;9619:93;:::i;:::-;9737:2;9732:3;9728:12;9721:19;;9380:366;;;:::o;9752:419::-;9918:4;9956:2;9945:9;9941:18;9933:26;;10005:9;9999:4;9995:20;9991:1;9980:9;9976:17;9969:47;10033:131;10159:4;10033:131;:::i;:::-;10025:139;;9752:419;;;:::o;10177:223::-;10317:34;10313:1;10305:6;10301:14;10294:58;10386:6;10381:2;10373:6;10369:15;10362:31;10177:223;:::o;10406:366::-;10548:3;10569:67;10633:2;10628:3;10569:67;:::i;:::-;10562:74;;10645:93;10734:3;10645:93;:::i;:::-;10763:2;10758:3;10754:12;10747:19;;10406:366;;;:::o;10778:419::-;10944:4;10982:2;10971:9;10967:18;10959:26;;11031:9;11025:4;11021:20;11017:1;11006:9;11002:17;10995:47;11059:131;11185:4;11059:131;:::i;:::-;11051:139;;10778:419;;;:::o;11203:221::-;11343:34;11339:1;11331:6;11327:14;11320:58;11412:4;11407:2;11399:6;11395:15;11388:29;11203:221;:::o;11430:366::-;11572:3;11593:67;11657:2;11652:3;11593:67;:::i;:::-;11586:74;;11669:93;11758:3;11669:93;:::i;:::-;11787:2;11782:3;11778:12;11771:19;;11430:366;;;:::o;11802:419::-;11968:4;12006:2;11995:9;11991:18;11983:26;;12055:9;12049:4;12045:20;12041:1;12030:9;12026:17;12019:47;12083:131;12209:4;12083:131;:::i;:::-;12075:139;;11802:419;;;:::o;12227:179::-;12367:31;12363:1;12355:6;12351:14;12344:55;12227:179;:::o;12412:366::-;12554:3;12575:67;12639:2;12634:3;12575:67;:::i;:::-;12568:74;;12651:93;12740:3;12651:93;:::i;:::-;12769:2;12764:3;12760:12;12753:19;;12412:366;;;:::o;12784:419::-;12950:4;12988:2;12977:9;12973:18;12965:26;;13037:9;13031:4;13027:20;13023:1;13012:9;13008:17;13001:47;13065:131;13191:4;13065:131;:::i;:::-;13057:139;;12784:419;;;:::o;13209:224::-;13349:34;13345:1;13337:6;13333:14;13326:58;13418:7;13413:2;13405:6;13401:15;13394:32;13209:224;:::o;13439:366::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:419::-;13977:4;14015:2;14004:9;14000:18;13992:26;;14064:9;14058:4;14054:20;14050:1;14039:9;14035:17;14028:47;14092:131;14218:4;14092:131;:::i;:::-;14084:139;;13811:419;;;:::o;14236:222::-;14376:34;14372:1;14364:6;14360:14;14353:58;14445:5;14440:2;14432:6;14428:15;14421:30;14236:222;:::o;14464:366::-;14606:3;14627:67;14691:2;14686:3;14627:67;:::i;:::-;14620:74;;14703:93;14792:3;14703:93;:::i;:::-;14821:2;14816:3;14812:12;14805:19;;14464:366;;;:::o;14836:419::-;15002:4;15040:2;15029:9;15025:18;15017:26;;15089:9;15083:4;15079:20;15075:1;15064:9;15060:17;15053:47;15117:131;15243:4;15117:131;:::i;:::-;15109:139;;14836:419;;;:::o;15261:225::-;15401:34;15397:1;15389:6;15385:14;15378:58;15470:8;15465:2;15457:6;15453:15;15446:33;15261:225;:::o;15492:366::-;15634:3;15655:67;15719:2;15714:3;15655:67;:::i;:::-;15648:74;;15731:93;15820:3;15731:93;:::i;:::-;15849:2;15844:3;15840:12;15833:19;;15492:366;;;:::o;15864:419::-;16030:4;16068:2;16057:9;16053:18;16045:26;;16117:9;16111:4;16107:20;16103:1;16092:9;16088:17;16081:47;16145:131;16271:4;16145:131;:::i;:::-;16137:139;;15864:419;;;:::o;16289:220::-;16429:34;16425:1;16417:6;16413:14;16406:58;16498:3;16493:2;16485:6;16481:15;16474:28;16289:220;:::o;16515:366::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:419::-;17053:4;17091:2;17080:9;17076:18;17068:26;;17140:9;17134:4;17130:20;17126:1;17115:9;17111:17;17104:47;17168:131;17294:4;17168:131;:::i;:::-;17160:139;;16887:419;;;:::o;17312:221::-;17452:34;17448:1;17440:6;17436:14;17429:58;17521:4;17516:2;17508:6;17504:15;17497:29;17312:221;:::o;17539:366::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:419::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:182::-;18476:34;18472:1;18464:6;18460:14;18453:58;18336:182;:::o;18524:366::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;18896:419;;;:::o
Swarm Source
ipfs://3f4a773c1fda78d8b7c91a12869bac9bbba498e499f4312ecf534256559f003b
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.