ETH Price: $2,383.49 (+7.34%)

Token

NARUTO (NARUTO)
 

Overview

Max Total Supply

100,000,000,000 NARUTO

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,165,281,138.890528328639977435 NARUTO

Value
$0.00
0xacb319595796db91eddf1b78b20c774759ad676d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NARUTO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-09
*/

// 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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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: contracts/Naruto.sol


pragma solidity ^0.8.15;


contract NARUTO is ERC20{
    address public owner;
    modifier onlyOwner() {
        require(msg.sender == owner, "Only the contract owner can call this function.");
    _;}
    constructor() ERC20("NARUTO", "NARUTO") {
        _mint(msg.sender, 100000000000 * 10 ** 18);
    }
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Invalid address.");
        owner = newOwner;
    }
    function getTokenInfo() public view returns (string memory, string memory, uint256, uint8) {
        return (name(), symbol(), totalSupply(), decimals());
    }
    function getTotalSupply() public view returns (uint256) {
    return totalSupply();
    }
    function getSymbol() public view returns (string memory) {
    return symbol();
    }
    function getOwner() public view returns (address) {
    return owner;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSymbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenInfo","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f4e415255544f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e415255544f000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004ba565b508060049081620000a19190620004ba565b505050620000c3336c01431e0fae6d7217caa0000000620000c960201b60201c565b620006bc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200013b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001329062000602565b60405180910390fd5b6200014f600083836200023660201b60201c565b806002600082825462000163919062000653565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200021691906200069f565b60405180910390a362000232600083836200023b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c257607f821691505b602082108103620002d857620002d76200027a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000303565b6200034e868362000303565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039b620003956200038f8462000366565b62000370565b62000366565b9050919050565b6000819050919050565b620003b7836200037a565b620003cf620003c682620003a2565b84845462000310565b825550505050565b600090565b620003e6620003d7565b620003f3818484620003ac565b505050565b5b818110156200041b576200040f600082620003dc565b600181019050620003f9565b5050565b601f8211156200046a576200043481620002de565b6200043f84620002f3565b810160208510156200044f578190505b620004676200045e85620002f3565b830182620003f8565b50505b505050565b600082821c905092915050565b60006200048f600019846008026200046f565b1980831691505092915050565b6000620004aa83836200047c565b9150826002028217905092915050565b620004c58262000240565b67ffffffffffffffff811115620004e157620004e06200024b565b5b620004ed8254620002a9565b620004fa8282856200041f565b600060209050601f8311600181146200053257600084156200051d578287015190505b6200052985826200049c565b86555062000599565b601f1984166200054286620002de565b60005b828110156200056c5784890151825560018201915060208501945060208101905062000545565b868310156200058c578489015162000588601f8916826200047c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005ea601f83620005a1565b9150620005f782620005b2565b602082019050919050565b600060208201905081810360008301526200061d81620005db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006608262000366565b91506200066d8362000366565b925082820190508082111562000688576200068762000624565b5b92915050565b620006998162000366565b82525050565b6000602082019050620006b660008301846200068e565b92915050565b6116a680620006cc6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063893d20e8116100a2578063a9059cbb11610071578063a9059cbb146102d2578063abb1dc4414610302578063c4e41b2214610323578063dd62ed3e14610341578063f2fde38b146103715761010b565b8063893d20e8146102485780638da5cb5b1461026657806395d89b4114610284578063a457c2d7146102a25761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e857806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e578063150704011461015e57806318160ddd1461017c575b600080fd5b61011861038d565b6040516101259190610e08565b60405180910390f35b61014860048036038101906101439190610ec3565b61041f565b6040516101559190610f1e565b60405180910390f35b610166610442565b6040516101739190610e08565b60405180910390f35b610184610451565b6040516101919190610f48565b60405180910390f35b6101b460048036038101906101af9190610f63565b61045b565b6040516101c19190610f1e565b60405180910390f35b6101d261048a565b6040516101df9190610fd2565b60405180910390f35b61020260048036038101906101fd9190610ec3565b610493565b60405161020f9190610f1e565b60405180910390f35b610232600480360381019061022d9190610fed565b6104ca565b60405161023f9190610f48565b60405180910390f35b610250610512565b60405161025d9190611029565b60405180910390f35b61026e61053c565b60405161027b9190611029565b60405180910390f35b61028c610562565b6040516102999190610e08565b60405180910390f35b6102bc60048036038101906102b79190610ec3565b6105f4565b6040516102c99190610f1e565b60405180910390f35b6102ec60048036038101906102e79190610ec3565b61066b565b6040516102f99190610f1e565b60405180910390f35b61030a61068e565b60405161031a9493929190611044565b60405180910390f35b61032b6106c2565b6040516103389190610f48565b60405180910390f35b61035b60048036038101906103569190611097565b6106d1565b6040516103689190610f48565b60405180910390f35b61038b60048036038101906103869190610fed565b610758565b005b60606003805461039c90611106565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611106565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b60008061042a61089b565b90506104378185856108a3565b600191505092915050565b606061044c610562565b905090565b6000600254905090565b60008061046661089b565b9050610473858285610a6c565b61047e858585610af8565b60019150509392505050565b60006012905090565b60008061049e61089b565b90506104bf8185856104b085896106d1565b6104ba9190611166565b6108a3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461057190611106565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90611106565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000806105ff61089b565b9050600061060d82866106d1565b905083811015610652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106499061120c565b60405180910390fd5b61065f82868684036108a3565b60019250505092915050565b60008061067661089b565b9050610683818585610af8565b600191505092915050565b60608060008061069c61038d565b6106a4610562565b6106ac610451565b6106b461048a565b935093509350935090919293565b60006106cc610451565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df9061129e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e9061130a565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109099061139c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109789061142e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5f9190610f48565b60405180910390a3505050565b6000610a7884846106d1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af25781811015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb9061149a565b60405180910390fd5b610af184848484036108a3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061152c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906115be565b60405180910390fd5b610be1838383610d6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90611650565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d559190610f48565b60405180910390a3610d68848484610d73565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610db2578082015181840152602081019050610d97565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dda82610d78565b610de48185610d83565b9350610df4818560208601610d94565b610dfd81610dbe565b840191505092915050565b60006020820190508181036000830152610e228184610dcf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e5a82610e2f565b9050919050565b610e6a81610e4f565b8114610e7557600080fd5b50565b600081359050610e8781610e61565b92915050565b6000819050919050565b610ea081610e8d565b8114610eab57600080fd5b50565b600081359050610ebd81610e97565b92915050565b60008060408385031215610eda57610ed9610e2a565b5b6000610ee885828601610e78565b9250506020610ef985828601610eae565b9150509250929050565b60008115159050919050565b610f1881610f03565b82525050565b6000602082019050610f336000830184610f0f565b92915050565b610f4281610e8d565b82525050565b6000602082019050610f5d6000830184610f39565b92915050565b600080600060608486031215610f7c57610f7b610e2a565b5b6000610f8a86828701610e78565b9350506020610f9b86828701610e78565b9250506040610fac86828701610eae565b9150509250925092565b600060ff82169050919050565b610fcc81610fb6565b82525050565b6000602082019050610fe76000830184610fc3565b92915050565b60006020828403121561100357611002610e2a565b5b600061101184828501610e78565b91505092915050565b61102381610e4f565b82525050565b600060208201905061103e600083018461101a565b92915050565b6000608082019050818103600083015261105e8187610dcf565b905081810360208301526110728186610dcf565b90506110816040830185610f39565b61108e6060830184610fc3565b95945050505050565b600080604083850312156110ae576110ad610e2a565b5b60006110bc85828601610e78565b92505060206110cd85828601610e78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111e57607f821691505b602082108103611131576111306110d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061117182610e8d565b915061117c83610e8d565b925082820190508082111561119457611193611137565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111f6602583610d83565b91506112018261119a565b604082019050919050565b60006020820190508181036000830152611225816111e9565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60008201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b6000611288602f83610d83565b91506112938261122c565b604082019050919050565b600060208201905081810360008301526112b78161127b565b9050919050565b7f496e76616c696420616464726573732e00000000000000000000000000000000600082015250565b60006112f4601083610d83565b91506112ff826112be565b602082019050919050565b60006020820190508181036000830152611323816112e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611386602483610d83565b91506113918261132a565b604082019050919050565b600060208201905081810360008301526113b581611379565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611418602283610d83565b9150611423826113bc565b604082019050919050565b600060208201905081810360008301526114478161140b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611484601d83610d83565b915061148f8261144e565b602082019050919050565b600060208201905081810360008301526114b381611477565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611516602583610d83565b9150611521826114ba565b604082019050919050565b6000602082019050818103600083015261154581611509565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115a8602383610d83565b91506115b38261154c565b604082019050919050565b600060208201905081810360008301526115d78161159b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061163a602683610d83565b9150611645826115de565b604082019050919050565b600060208201905081810360008301526116698161162d565b905091905056fea264697066735822122092916d5dedb974f38b046573abaf199b295b7231fa451215070100db8bdb4d9264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063893d20e8116100a2578063a9059cbb11610071578063a9059cbb146102d2578063abb1dc4414610302578063c4e41b2214610323578063dd62ed3e14610341578063f2fde38b146103715761010b565b8063893d20e8146102485780638da5cb5b1461026657806395d89b4114610284578063a457c2d7146102a25761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e857806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e578063150704011461015e57806318160ddd1461017c575b600080fd5b61011861038d565b6040516101259190610e08565b60405180910390f35b61014860048036038101906101439190610ec3565b61041f565b6040516101559190610f1e565b60405180910390f35b610166610442565b6040516101739190610e08565b60405180910390f35b610184610451565b6040516101919190610f48565b60405180910390f35b6101b460048036038101906101af9190610f63565b61045b565b6040516101c19190610f1e565b60405180910390f35b6101d261048a565b6040516101df9190610fd2565b60405180910390f35b61020260048036038101906101fd9190610ec3565b610493565b60405161020f9190610f1e565b60405180910390f35b610232600480360381019061022d9190610fed565b6104ca565b60405161023f9190610f48565b60405180910390f35b610250610512565b60405161025d9190611029565b60405180910390f35b61026e61053c565b60405161027b9190611029565b60405180910390f35b61028c610562565b6040516102999190610e08565b60405180910390f35b6102bc60048036038101906102b79190610ec3565b6105f4565b6040516102c99190610f1e565b60405180910390f35b6102ec60048036038101906102e79190610ec3565b61066b565b6040516102f99190610f1e565b60405180910390f35b61030a61068e565b60405161031a9493929190611044565b60405180910390f35b61032b6106c2565b6040516103389190610f48565b60405180910390f35b61035b60048036038101906103569190611097565b6106d1565b6040516103689190610f48565b60405180910390f35b61038b60048036038101906103869190610fed565b610758565b005b60606003805461039c90611106565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611106565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b60008061042a61089b565b90506104378185856108a3565b600191505092915050565b606061044c610562565b905090565b6000600254905090565b60008061046661089b565b9050610473858285610a6c565b61047e858585610af8565b60019150509392505050565b60006012905090565b60008061049e61089b565b90506104bf8185856104b085896106d1565b6104ba9190611166565b6108a3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461057190611106565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90611106565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000806105ff61089b565b9050600061060d82866106d1565b905083811015610652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106499061120c565b60405180910390fd5b61065f82868684036108a3565b60019250505092915050565b60008061067661089b565b9050610683818585610af8565b600191505092915050565b60608060008061069c61038d565b6106a4610562565b6106ac610451565b6106b461048a565b935093509350935090919293565b60006106cc610451565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df9061129e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e9061130a565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109099061139c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109789061142e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5f9190610f48565b60405180910390a3505050565b6000610a7884846106d1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af25781811015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb9061149a565b60405180910390fd5b610af184848484036108a3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061152c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906115be565b60405180910390fd5b610be1838383610d6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90611650565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d559190610f48565b60405180910390a3610d68848484610d73565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610db2578082015181840152602081019050610d97565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dda82610d78565b610de48185610d83565b9350610df4818560208601610d94565b610dfd81610dbe565b840191505092915050565b60006020820190508181036000830152610e228184610dcf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e5a82610e2f565b9050919050565b610e6a81610e4f565b8114610e7557600080fd5b50565b600081359050610e8781610e61565b92915050565b6000819050919050565b610ea081610e8d565b8114610eab57600080fd5b50565b600081359050610ebd81610e97565b92915050565b60008060408385031215610eda57610ed9610e2a565b5b6000610ee885828601610e78565b9250506020610ef985828601610eae565b9150509250929050565b60008115159050919050565b610f1881610f03565b82525050565b6000602082019050610f336000830184610f0f565b92915050565b610f4281610e8d565b82525050565b6000602082019050610f5d6000830184610f39565b92915050565b600080600060608486031215610f7c57610f7b610e2a565b5b6000610f8a86828701610e78565b9350506020610f9b86828701610e78565b9250506040610fac86828701610eae565b9150509250925092565b600060ff82169050919050565b610fcc81610fb6565b82525050565b6000602082019050610fe76000830184610fc3565b92915050565b60006020828403121561100357611002610e2a565b5b600061101184828501610e78565b91505092915050565b61102381610e4f565b82525050565b600060208201905061103e600083018461101a565b92915050565b6000608082019050818103600083015261105e8187610dcf565b905081810360208301526110728186610dcf565b90506110816040830185610f39565b61108e6060830184610fc3565b95945050505050565b600080604083850312156110ae576110ad610e2a565b5b60006110bc85828601610e78565b92505060206110cd85828601610e78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111e57607f821691505b602082108103611131576111306110d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061117182610e8d565b915061117c83610e8d565b925082820190508082111561119457611193611137565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111f6602583610d83565b91506112018261119a565b604082019050919050565b60006020820190508181036000830152611225816111e9565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60008201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b6000611288602f83610d83565b91506112938261122c565b604082019050919050565b600060208201905081810360008301526112b78161127b565b9050919050565b7f496e76616c696420616464726573732e00000000000000000000000000000000600082015250565b60006112f4601083610d83565b91506112ff826112be565b602082019050919050565b60006020820190508181036000830152611323816112e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611386602483610d83565b91506113918261132a565b604082019050919050565b600060208201905081810360008301526113b581611379565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611418602283610d83565b9150611423826113bc565b604082019050919050565b600060208201905081810360008301526114478161140b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611484601d83610d83565b915061148f8261144e565b602082019050919050565b600060208201905081810360008301526114b381611477565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611516602583610d83565b9150611521826114ba565b604082019050919050565b6000602082019050818103600083015261154581611509565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115a8602383610d83565b91506115b38261154c565b604082019050919050565b600060208201905081810360008301526115d78161159b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061163a602683610d83565b9150611645826115de565b604082019050919050565b600060208201905081810360008301526116698161162d565b905091905056fea264697066735822122092916d5dedb974f38b046573abaf199b295b7231fa451215070100db8bdb4d9264736f6c63430008120033

Deployed Bytecode Sourcemap

17679:895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8981:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18401:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9762:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7592:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7921:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18494:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17710:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11173:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8254:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18136:162;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;18304:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8510:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17971:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6621:100;6675:13;6708:5;6701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;:::o;8981:201::-;9064:4;9081:13;9097:12;:10;:12::i;:::-;9081:28;;9120:32;9129:5;9136:7;9145:6;9120:8;:32::i;:::-;9170:4;9163:11;;;8981:201;;;;:::o;18401:87::-;18443:13;18472:8;:6;:8::i;:::-;18465:15;;18401:87;:::o;7750:108::-;7811:7;7838:12;;7831:19;;7750:108;:::o;9762:261::-;9859:4;9876:15;9894:12;:10;:12::i;:::-;9876:30;;9917:38;9933:4;9939:7;9948:6;9917:15;:38::i;:::-;9966:27;9976:4;9982:2;9986:6;9966:9;:27::i;:::-;10011:4;10004:11;;;9762:261;;;;;:::o;7592:93::-;7650:5;7675:2;7668:9;;7592:93;:::o;10432:238::-;10520:4;10537:13;10553:12;:10;:12::i;:::-;10537:28;;10576:64;10585:5;10592:7;10629:10;10601:25;10611:5;10618:7;10601:9;:25::i;:::-;:38;;;;:::i;:::-;10576:8;:64::i;:::-;10658:4;10651:11;;;10432:238;;;;:::o;7921:127::-;7995:7;8022:9;:18;8032:7;8022:18;;;;;;;;;;;;;;;;8015:25;;7921:127;;;:::o;18494:77::-;18535:7;18558:5;;;;;;;;;;;18551:12;;18494:77;:::o;17710:20::-;;;;;;;;;;;;;:::o;6840:104::-;6896:13;6929:7;6922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6840:104;:::o;11173:436::-;11266:4;11283:13;11299:12;:10;:12::i;:::-;11283:28;;11322:24;11349:25;11359:5;11366:7;11349:9;:25::i;:::-;11322:52;;11413:15;11393:16;:35;;11385:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11506:60;11515:5;11522:7;11550:15;11531:16;:34;11506:8;:60::i;:::-;11597:4;11590:11;;;;11173:436;;;;:::o;8254:193::-;8333:4;8350:13;8366:12;:10;:12::i;:::-;8350:28;;8389;8399:5;8406:2;8410:6;8389:9;:28::i;:::-;8435:4;8428:11;;;8254:193;;;;:::o;18136:162::-;18181:13;18196;18211:7;18220:5;18246:6;:4;:6::i;:::-;18254:8;:6;:8::i;:::-;18264:13;:11;:13::i;:::-;18279:10;:8;:10::i;:::-;18238:52;;;;;;;;18136:162;;;;:::o;18304:91::-;18351:7;18374:13;:11;:13::i;:::-;18367:20;;18304:91;:::o;8510:151::-;8599:7;8626:11;:18;8638:5;8626:18;;;;;;;;;;;;;;;:27;8645:7;8626:27;;;;;;;;;;;;;;;;8619:34;;8510:151;;;;:::o;17971:159::-;17791:5;;;;;;;;;;;17777:19;;:10;:19;;;17769:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18072:1:::1;18052:22;;:8;:22;;::::0;18044:51:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18114:8;18106:5;;:16;;;;;;;;;;;;;;;;;;17971:159:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;15166:346::-;15285:1;15268:19;;:5;:19;;;15260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15366:1;15347:21;;:7;:21;;;15339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15420:11;:18;15432:5;15420:18;;;;;;;;;;;;;;;:27;15439:7;15420:27;;;;;;;;;;;;;;;:36;;;;15488:7;15472:32;;15481:5;15472:32;;;15497:6;15472:32;;;;;;:::i;:::-;;;;;;;;15166:346;;;:::o;15803:419::-;15904:24;15931:25;15941:5;15948:7;15931:9;:25::i;:::-;15904:52;;15991:17;15971:16;:37;15967:248;;16053:6;16033:16;:26;;16025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16137:51;16146:5;16153:7;16181:6;16162:16;:25;16137:8;:51::i;:::-;15967:248;15893:329;15803:419;;;:::o;12079:806::-;12192:1;12176:18;;:4;:18;;;12168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12269:1;12255:16;;:2;:16;;;12247:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12324:38;12345:4;12351:2;12355:6;12324:20;:38::i;:::-;12375:19;12397:9;:15;12407:4;12397:15;;;;;;;;;;;;;;;;12375:37;;12446:6;12431:11;:21;;12423:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12563:6;12549:11;:20;12531:9;:15;12541:4;12531:15;;;;;;;;;;;;;;;:38;;;;12766:6;12749:9;:13;12759:2;12749:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12816:2;12801:26;;12810:4;12801:26;;;12820:6;12801:26;;;;;;:::i;:::-;;;;;;;;12840:37;12860:4;12866:2;12870:6;12840:19;:37::i;:::-;12157:728;12079:806;;;:::o;16822:91::-;;;;:::o;17517:90::-;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:727::-;5753:4;5791:3;5780:9;5776:19;5768:27;;5841:9;5835:4;5831:20;5827:1;5816:9;5812:17;5805:47;5869:78;5942:4;5933:6;5869:78;:::i;:::-;5861:86;;5994:9;5988:4;5984:20;5979:2;5968:9;5964:18;5957:48;6022:78;6095:4;6086:6;6022:78;:::i;:::-;6014:86;;6110:72;6178:2;6167:9;6163:18;6154:6;6110:72;:::i;:::-;6192:68;6256:2;6245:9;6241:18;6232:6;6192:68;:::i;:::-;5540:727;;;;;;;:::o;6273:474::-;6341:6;6349;6398:2;6386:9;6377:7;6373:23;6369:32;6366:119;;;6404:79;;:::i;:::-;6366:119;6524:1;6549:53;6594:7;6585:6;6574:9;6570:22;6549:53;:::i;:::-;6539:63;;6495:117;6651:2;6677:53;6722:7;6713:6;6702:9;6698:22;6677:53;:::i;:::-;6667:63;;6622:118;6273:474;;;;;:::o;6753:180::-;6801:77;6798:1;6791:88;6898:4;6895:1;6888:15;6922:4;6919:1;6912:15;6939:320;6983:6;7020:1;7014:4;7010:12;7000:22;;7067:1;7061:4;7057:12;7088:18;7078:81;;7144:4;7136:6;7132:17;7122:27;;7078:81;7206:2;7198:6;7195:14;7175:18;7172:38;7169:84;;7225:18;;:::i;:::-;7169:84;6990:269;6939:320;;;:::o;7265:180::-;7313:77;7310:1;7303:88;7410:4;7407:1;7400:15;7434:4;7431:1;7424:15;7451:191;7491:3;7510:20;7528:1;7510:20;:::i;:::-;7505:25;;7544:20;7562:1;7544:20;:::i;:::-;7539:25;;7587:1;7584;7580:9;7573:16;;7608:3;7605:1;7602:10;7599:36;;;7615:18;;:::i;:::-;7599:36;7451:191;;;;:::o;7648:224::-;7788:34;7784:1;7776:6;7772:14;7765:58;7857:7;7852:2;7844:6;7840:15;7833:32;7648:224;:::o;7878:366::-;8020:3;8041:67;8105:2;8100:3;8041:67;:::i;:::-;8034:74;;8117:93;8206:3;8117:93;:::i;:::-;8235:2;8230:3;8226:12;8219:19;;7878:366;;;:::o;8250:419::-;8416:4;8454:2;8443:9;8439:18;8431:26;;8503:9;8497:4;8493:20;8489:1;8478:9;8474:17;8467:47;8531:131;8657:4;8531:131;:::i;:::-;8523:139;;8250:419;;;:::o;8675:234::-;8815:34;8811:1;8803:6;8799:14;8792:58;8884:17;8879:2;8871:6;8867:15;8860:42;8675:234;:::o;8915:366::-;9057:3;9078:67;9142:2;9137:3;9078:67;:::i;:::-;9071:74;;9154:93;9243:3;9154:93;:::i;:::-;9272:2;9267:3;9263:12;9256:19;;8915:366;;;:::o;9287:419::-;9453:4;9491:2;9480:9;9476:18;9468:26;;9540:9;9534:4;9530:20;9526:1;9515:9;9511:17;9504:47;9568:131;9694:4;9568:131;:::i;:::-;9560:139;;9287:419;;;:::o;9712:166::-;9852:18;9848:1;9840:6;9836:14;9829:42;9712:166;:::o;9884:366::-;10026:3;10047:67;10111:2;10106:3;10047:67;:::i;:::-;10040:74;;10123:93;10212:3;10123:93;:::i;:::-;10241:2;10236:3;10232:12;10225:19;;9884:366;;;:::o;10256:419::-;10422:4;10460:2;10449:9;10445:18;10437:26;;10509:9;10503:4;10499:20;10495:1;10484:9;10480:17;10473:47;10537:131;10663:4;10537:131;:::i;:::-;10529:139;;10256:419;;;:::o;10681:223::-;10821:34;10817:1;10809:6;10805:14;10798:58;10890:6;10885:2;10877:6;10873:15;10866:31;10681:223;:::o;10910:366::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;10910:366;;;:::o;11282:419::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11535:9;11529:4;11525:20;11521:1;11510:9;11506:17;11499:47;11563:131;11689:4;11563:131;:::i;:::-;11555:139;;11282:419;;;:::o;11707:221::-;11847:34;11843:1;11835:6;11831:14;11824:58;11916:4;11911:2;11903:6;11899:15;11892:29;11707:221;:::o;11934:366::-;12076:3;12097:67;12161:2;12156:3;12097:67;:::i;:::-;12090:74;;12173:93;12262:3;12173:93;:::i;:::-;12291:2;12286:3;12282:12;12275:19;;11934:366;;;:::o;12306:419::-;12472:4;12510:2;12499:9;12495:18;12487:26;;12559:9;12553:4;12549:20;12545:1;12534:9;12530:17;12523:47;12587:131;12713:4;12587:131;:::i;:::-;12579:139;;12306:419;;;:::o;12731:179::-;12871:31;12867:1;12859:6;12855:14;12848:55;12731:179;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:419::-;13454:4;13492:2;13481:9;13477:18;13469:26;;13541:9;13535:4;13531:20;13527:1;13516:9;13512:17;13505:47;13569:131;13695:4;13569:131;:::i;:::-;13561:139;;13288:419;;;:::o;13713:224::-;13853:34;13849:1;13841:6;13837:14;13830:58;13922:7;13917:2;13909:6;13905:15;13898:32;13713:224;:::o;13943:366::-;14085:3;14106:67;14170:2;14165:3;14106:67;:::i;:::-;14099:74;;14182:93;14271:3;14182:93;:::i;:::-;14300:2;14295:3;14291:12;14284:19;;13943:366;;;:::o;14315:419::-;14481:4;14519:2;14508:9;14504:18;14496:26;;14568:9;14562:4;14558:20;14554:1;14543:9;14539:17;14532:47;14596:131;14722:4;14596:131;:::i;:::-;14588:139;;14315:419;;;:::o;14740:222::-;14880:34;14876:1;14868:6;14864:14;14857:58;14949:5;14944:2;14936:6;14932:15;14925:30;14740:222;:::o;14968:366::-;15110:3;15131:67;15195:2;15190:3;15131:67;:::i;:::-;15124:74;;15207:93;15296:3;15207:93;:::i;:::-;15325:2;15320:3;15316:12;15309:19;;14968:366;;;:::o;15340:419::-;15506:4;15544:2;15533:9;15529:18;15521:26;;15593:9;15587:4;15583:20;15579:1;15568:9;15564:17;15557:47;15621:131;15747:4;15621:131;:::i;:::-;15613:139;;15340:419;;;:::o;15765:225::-;15905:34;15901:1;15893:6;15889:14;15882:58;15974:8;15969:2;15961:6;15957:15;15950:33;15765:225;:::o;15996:366::-;16138:3;16159:67;16223:2;16218:3;16159:67;:::i;:::-;16152:74;;16235:93;16324:3;16235:93;:::i;:::-;16353:2;16348:3;16344:12;16337:19;;15996:366;;;:::o;16368:419::-;16534:4;16572:2;16561:9;16557:18;16549:26;;16621:9;16615:4;16611:20;16607:1;16596:9;16592:17;16585:47;16649:131;16775:4;16649:131;:::i;:::-;16641:139;;16368:419;;;:::o

Swarm Source

ipfs://92916d5dedb974f38b046573abaf199b295b7231fa451215070100db8bdb4d92
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.