ETH Price: $2,914.28 (-0.14%)
Gas: 8 Gwei

Token

NFTY Token (NFTY)
 

Overview

Max Total Supply

5,180,974.634441505293471375 NFTY

Holders

317 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH (-1.19%)

Onchain Market Cap

$7,638.73

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NFTY creates a quality validation layer for NFTs by introducing a new group between buyers and sellers. This community of advocates vets NFTs to reward excellence, earning a share of the proceeds, all powered by the NFTY token.

Market

Volume (24H):$630.86
Market Capitalization:$0.00
Circulating Supply:0.00 NFTY
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTYToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-09-21
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.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.
 */

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol



pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol


abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
    uint256[49] private __gap;
}

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol

interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @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-upgradeable/token/ERC20/IERC20Upgradeable.sol



pragma solidity ^0.8.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    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.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
        __Context_init_unchained();
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    uint256[45] private __gap;
}

// File: scripts/NFTYToken.sol


pragma solidity ^0.8.0;



contract NFTYToken is ERC20Upgradeable, OwnableUpgradeable {
    function initialize() public initializer {
        __ERC20_init("NFTY Token", "NFTY");
        __Ownable_init();
        _mint(owner(), 5000000 * 10**uint256(decimals()));
    }

    function mint(address account, uint256 amount) external onlyOwner {
        _mint(account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50612396806100206000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461028b578063a9059cbb146102bb578063dd62ed3e146102eb578063f2fde38b1461031b57610100565b8063715018a61461023b5780638129fc1c146102455780638da5cb5b1461024f57806395d89b411461026d57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610337565b60405161011a9190611ae9565b60405180910390f35b61013d6004803603810190610138919061187d565b6103c9565b60405161014a9190611ace565b60405180910390f35b61015b6103e7565b6040516101689190611c6b565b60405180910390f35b61018b6004803603810190610186919061182a565b6103f1565b6040516101989190611ace565b60405180910390f35b6101a96104e9565b6040516101b69190611c86565b60405180910390f35b6101d960048036038101906101d4919061187d565b6104f2565b6040516101e69190611ace565b60405180910390f35b6102096004803603810190610204919061187d565b61059e565b005b610225600480360381019061022091906117bd565b610628565b6040516102329190611c6b565b60405180910390f35b610243610671565b005b61024d6106f9565b005b610257610883565b6040516102649190611ab3565b60405180910390f35b6102756108ad565b6040516102829190611ae9565b60405180910390f35b6102a560048036038101906102a0919061187d565b61093f565b6040516102b29190611ace565b60405180910390f35b6102d560048036038101906102d0919061187d565b610a2a565b6040516102e29190611ace565b60405180910390f35b610305600480360381019061030091906117ea565b610a48565b6040516103129190611c6b565b60405180910390f35b610335600480360381019061033091906117bd565b610acf565b005b60606036805461034690611f66565b80601f016020809104026020016040519081016040528092919081815260200182805461037290611f66565b80156103bf5780601f10610394576101008083540402835291602001916103bf565b820191906000526020600020905b8154815290600101906020018083116103a257829003601f168201915b5050505050905090565b60006103dd6103d6610bc7565b8484610bcf565b6001905092915050565b6000603554905090565b60006103fe848484610d9a565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610449610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c090611bab565b60405180910390fd5b6104dd856104d5610bc7565b858403610bcf565b60019150509392505050565b60006012905090565b60006105946104ff610bc7565b84846034600061050d610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461058f9190611cbd565b610bcf565b6001905092915050565b6105a6610bc7565b73ffffffffffffffffffffffffffffffffffffffff166105c4610883565b73ffffffffffffffffffffffffffffffffffffffff161461061a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061190611bcb565b60405180910390fd5b610624828261101e565b5050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610679610bc7565b73ffffffffffffffffffffffffffffffffffffffff16610697610883565b73ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611bcb565b60405180910390fd5b6106f7600061117f565b565b600060019054906101000a900460ff168061071f575060008054906101000a900460ff16155b61075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156107ae576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6108226040518060400160405280600a81526020017f4e46545920546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e46545900000000000000000000000000000000000000000000000000000000815250611245565b61082a611332565b61085f610835610883565b61083d6104e9565b60ff16600a61084c9190611d66565b624c4b4061085a9190611e84565b61101e565b80156108805760008060016101000a81548160ff0219169083151502179055505b50565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060603780546108bc90611f66565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890611f66565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b6000806034600061094e610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290611c2b565b60405180910390fd5b610a1f610a16610bc7565b85858403610bcf565b600191505092915050565b6000610a3e610a37610bc7565b8484610d9a565b6001905092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad7610bc7565b73ffffffffffffffffffffffffffffffffffffffff16610af5610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290611bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b2b565b60405180910390fd5b610bc48161117f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611c0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611b4b565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d8d9190611c6b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190611beb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b0b565b60405180910390fd5b610e8583838361141b565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390611b6b565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa19190611cbd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110059190611c6b565b60405180910390a3611018848484611420565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590611c4b565b60405180910390fd5b61109a6000838361141b565b80603560008282546110ac9190611cbd565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611cbd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111679190611c6b565b60405180910390a361117b60008383611420565b5050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff168061126b575060008054906101000a900460ff16155b6112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156112fa576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611302611425565b61130c83836114fe565b801561132d5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680611358575060008054906101000a900460ff16155b611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113e7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113ef611425565b6113f7611607565b80156114185760008060016101000a81548160ff0219169083151502179055505b50565b505050565b505050565b600060019054906101000a900460ff168061144b575060008054906101000a900460ff16155b61148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114da576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156114fb5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611524575060008054906101000a900460ff16155b611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156115b3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82603690805190602001906115c99291906116f0565b5081603790805190602001906115e09291906116f0565b5080156116025760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff168061162d575060008054906101000a900460ff16155b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156116bc576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6116cc6116c7610bc7565b61117f565b80156116ed5760008060016101000a81548160ff0219169083151502179055505b50565b8280546116fc90611f66565b90600052602060002090601f01602090048101928261171e5760008555611765565b82601f1061173757805160ff1916838001178555611765565b82800160010185558215611765579182015b82811115611764578251825591602001919060010190611749565b5b5090506117729190611776565b5090565b5b8082111561178f576000816000905550600101611777565b5090565b6000813590506117a281612332565b92915050565b6000813590506117b781612349565b92915050565b6000602082840312156117d3576117d2611ff6565b5b60006117e184828501611793565b91505092915050565b6000806040838503121561180157611800611ff6565b5b600061180f85828601611793565b925050602061182085828601611793565b9150509250929050565b60008060006060848603121561184357611842611ff6565b5b600061185186828701611793565b935050602061186286828701611793565b9250506040611873868287016117a8565b9150509250925092565b6000806040838503121561189457611893611ff6565b5b60006118a285828601611793565b92505060206118b3858286016117a8565b9150509250929050565b6118c681611ede565b82525050565b6118d581611ef0565b82525050565b60006118e682611ca1565b6118f08185611cac565b9350611900818560208601611f33565b61190981611ffb565b840191505092915050565b6000611921602383611cac565b915061192c82612019565b604082019050919050565b6000611944602683611cac565b915061194f82612068565b604082019050919050565b6000611967602283611cac565b9150611972826120b7565b604082019050919050565b600061198a602683611cac565b915061199582612106565b604082019050919050565b60006119ad602e83611cac565b91506119b882612155565b604082019050919050565b60006119d0602883611cac565b91506119db826121a4565b604082019050919050565b60006119f3602083611cac565b91506119fe826121f3565b602082019050919050565b6000611a16602583611cac565b9150611a218261221c565b604082019050919050565b6000611a39602483611cac565b9150611a448261226b565b604082019050919050565b6000611a5c602583611cac565b9150611a67826122ba565b604082019050919050565b6000611a7f601f83611cac565b9150611a8a82612309565b602082019050919050565b611a9e81611f1c565b82525050565b611aad81611f26565b82525050565b6000602082019050611ac860008301846118bd565b92915050565b6000602082019050611ae360008301846118cc565b92915050565b60006020820190508181036000830152611b0381846118db565b905092915050565b60006020820190508181036000830152611b2481611914565b9050919050565b60006020820190508181036000830152611b4481611937565b9050919050565b60006020820190508181036000830152611b648161195a565b9050919050565b60006020820190508181036000830152611b848161197d565b9050919050565b60006020820190508181036000830152611ba4816119a0565b9050919050565b60006020820190508181036000830152611bc4816119c3565b9050919050565b60006020820190508181036000830152611be4816119e6565b9050919050565b60006020820190508181036000830152611c0481611a09565b9050919050565b60006020820190508181036000830152611c2481611a2c565b9050919050565b60006020820190508181036000830152611c4481611a4f565b9050919050565b60006020820190508181036000830152611c6481611a72565b9050919050565b6000602082019050611c806000830184611a95565b92915050565b6000602082019050611c9b6000830184611aa4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cc882611f1c565b9150611cd383611f1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d0857611d07611f98565b5b828201905092915050565b6000808291508390505b6001851115611d5d57808604811115611d3957611d38611f98565b5b6001851615611d485780820291505b8081029050611d568561200c565b9450611d1d565b94509492505050565b6000611d7182611f1c565b9150611d7c83611f1c565b9250611da97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611db1565b905092915050565b600082611dc15760019050611e7d565b81611dcf5760009050611e7d565b8160018114611de55760028114611def57611e1e565b6001915050611e7d565b60ff841115611e0157611e00611f98565b5b8360020a915084821115611e1857611e17611f98565b5b50611e7d565b5060208310610133831016604e8410600b8410161715611e535782820a905083811115611e4e57611e4d611f98565b5b611e7d565b611e608484846001611d13565b92509050818404811115611e7757611e76611f98565b5b81810290505b9392505050565b6000611e8f82611f1c565b9150611e9a83611f1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ed357611ed2611f98565b5b828202905092915050565b6000611ee982611efc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f51578082015181840152602081019050611f36565b83811115611f60576000848401525b50505050565b60006002820490506001821680611f7e57607f821691505b60208210811415611f9257611f91611fc7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61233b81611ede565b811461234657600080fd5b50565b61235281611f1c565b811461235d57600080fd5b5056fea2646970667358221220903eba564f1e4ae438f73a9a616d98fcdc65b2e41844a2afe40dd51ca92b5c1564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461028b578063a9059cbb146102bb578063dd62ed3e146102eb578063f2fde38b1461031b57610100565b8063715018a61461023b5780638129fc1c146102455780638da5cb5b1461024f57806395d89b411461026d57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610337565b60405161011a9190611ae9565b60405180910390f35b61013d6004803603810190610138919061187d565b6103c9565b60405161014a9190611ace565b60405180910390f35b61015b6103e7565b6040516101689190611c6b565b60405180910390f35b61018b6004803603810190610186919061182a565b6103f1565b6040516101989190611ace565b60405180910390f35b6101a96104e9565b6040516101b69190611c86565b60405180910390f35b6101d960048036038101906101d4919061187d565b6104f2565b6040516101e69190611ace565b60405180910390f35b6102096004803603810190610204919061187d565b61059e565b005b610225600480360381019061022091906117bd565b610628565b6040516102329190611c6b565b60405180910390f35b610243610671565b005b61024d6106f9565b005b610257610883565b6040516102649190611ab3565b60405180910390f35b6102756108ad565b6040516102829190611ae9565b60405180910390f35b6102a560048036038101906102a0919061187d565b61093f565b6040516102b29190611ace565b60405180910390f35b6102d560048036038101906102d0919061187d565b610a2a565b6040516102e29190611ace565b60405180910390f35b610305600480360381019061030091906117ea565b610a48565b6040516103129190611c6b565b60405180910390f35b610335600480360381019061033091906117bd565b610acf565b005b60606036805461034690611f66565b80601f016020809104026020016040519081016040528092919081815260200182805461037290611f66565b80156103bf5780601f10610394576101008083540402835291602001916103bf565b820191906000526020600020905b8154815290600101906020018083116103a257829003601f168201915b5050505050905090565b60006103dd6103d6610bc7565b8484610bcf565b6001905092915050565b6000603554905090565b60006103fe848484610d9a565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610449610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c090611bab565b60405180910390fd5b6104dd856104d5610bc7565b858403610bcf565b60019150509392505050565b60006012905090565b60006105946104ff610bc7565b84846034600061050d610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461058f9190611cbd565b610bcf565b6001905092915050565b6105a6610bc7565b73ffffffffffffffffffffffffffffffffffffffff166105c4610883565b73ffffffffffffffffffffffffffffffffffffffff161461061a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061190611bcb565b60405180910390fd5b610624828261101e565b5050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610679610bc7565b73ffffffffffffffffffffffffffffffffffffffff16610697610883565b73ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611bcb565b60405180910390fd5b6106f7600061117f565b565b600060019054906101000a900460ff168061071f575060008054906101000a900460ff16155b61075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156107ae576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6108226040518060400160405280600a81526020017f4e46545920546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e46545900000000000000000000000000000000000000000000000000000000815250611245565b61082a611332565b61085f610835610883565b61083d6104e9565b60ff16600a61084c9190611d66565b624c4b4061085a9190611e84565b61101e565b80156108805760008060016101000a81548160ff0219169083151502179055505b50565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060603780546108bc90611f66565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890611f66565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b6000806034600061094e610bc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290611c2b565b60405180910390fd5b610a1f610a16610bc7565b85858403610bcf565b600191505092915050565b6000610a3e610a37610bc7565b8484610d9a565b6001905092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad7610bc7565b73ffffffffffffffffffffffffffffffffffffffff16610af5610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290611bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b2b565b60405180910390fd5b610bc48161117f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611c0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611b4b565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d8d9190611c6b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190611beb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b0b565b60405180910390fd5b610e8583838361141b565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390611b6b565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa19190611cbd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110059190611c6b565b60405180910390a3611018848484611420565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590611c4b565b60405180910390fd5b61109a6000838361141b565b80603560008282546110ac9190611cbd565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611cbd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111679190611c6b565b60405180910390a361117b60008383611420565b5050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff168061126b575060008054906101000a900460ff16155b6112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156112fa576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611302611425565b61130c83836114fe565b801561132d5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680611358575060008054906101000a900460ff16155b611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113e7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113ef611425565b6113f7611607565b80156114185760008060016101000a81548160ff0219169083151502179055505b50565b505050565b505050565b600060019054906101000a900460ff168061144b575060008054906101000a900460ff16155b61148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114da576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156114fb5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611524575060008054906101000a900460ff16155b611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156115b3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82603690805190602001906115c99291906116f0565b5081603790805190602001906115e09291906116f0565b5080156116025760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff168061162d575060008054906101000a900460ff16155b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390611b8b565b60405180910390fd5b60008060019054906101000a900460ff1615905080156116bc576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6116cc6116c7610bc7565b61117f565b80156116ed5760008060016101000a81548160ff0219169083151502179055505b50565b8280546116fc90611f66565b90600052602060002090601f01602090048101928261171e5760008555611765565b82601f1061173757805160ff1916838001178555611765565b82800160010185558215611765579182015b82811115611764578251825591602001919060010190611749565b5b5090506117729190611776565b5090565b5b8082111561178f576000816000905550600101611777565b5090565b6000813590506117a281612332565b92915050565b6000813590506117b781612349565b92915050565b6000602082840312156117d3576117d2611ff6565b5b60006117e184828501611793565b91505092915050565b6000806040838503121561180157611800611ff6565b5b600061180f85828601611793565b925050602061182085828601611793565b9150509250929050565b60008060006060848603121561184357611842611ff6565b5b600061185186828701611793565b935050602061186286828701611793565b9250506040611873868287016117a8565b9150509250925092565b6000806040838503121561189457611893611ff6565b5b60006118a285828601611793565b92505060206118b3858286016117a8565b9150509250929050565b6118c681611ede565b82525050565b6118d581611ef0565b82525050565b60006118e682611ca1565b6118f08185611cac565b9350611900818560208601611f33565b61190981611ffb565b840191505092915050565b6000611921602383611cac565b915061192c82612019565b604082019050919050565b6000611944602683611cac565b915061194f82612068565b604082019050919050565b6000611967602283611cac565b9150611972826120b7565b604082019050919050565b600061198a602683611cac565b915061199582612106565b604082019050919050565b60006119ad602e83611cac565b91506119b882612155565b604082019050919050565b60006119d0602883611cac565b91506119db826121a4565b604082019050919050565b60006119f3602083611cac565b91506119fe826121f3565b602082019050919050565b6000611a16602583611cac565b9150611a218261221c565b604082019050919050565b6000611a39602483611cac565b9150611a448261226b565b604082019050919050565b6000611a5c602583611cac565b9150611a67826122ba565b604082019050919050565b6000611a7f601f83611cac565b9150611a8a82612309565b602082019050919050565b611a9e81611f1c565b82525050565b611aad81611f26565b82525050565b6000602082019050611ac860008301846118bd565b92915050565b6000602082019050611ae360008301846118cc565b92915050565b60006020820190508181036000830152611b0381846118db565b905092915050565b60006020820190508181036000830152611b2481611914565b9050919050565b60006020820190508181036000830152611b4481611937565b9050919050565b60006020820190508181036000830152611b648161195a565b9050919050565b60006020820190508181036000830152611b848161197d565b9050919050565b60006020820190508181036000830152611ba4816119a0565b9050919050565b60006020820190508181036000830152611bc4816119c3565b9050919050565b60006020820190508181036000830152611be4816119e6565b9050919050565b60006020820190508181036000830152611c0481611a09565b9050919050565b60006020820190508181036000830152611c2481611a2c565b9050919050565b60006020820190508181036000830152611c4481611a4f565b9050919050565b60006020820190508181036000830152611c6481611a72565b9050919050565b6000602082019050611c806000830184611a95565b92915050565b6000602082019050611c9b6000830184611aa4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cc882611f1c565b9150611cd383611f1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d0857611d07611f98565b5b828201905092915050565b6000808291508390505b6001851115611d5d57808604811115611d3957611d38611f98565b5b6001851615611d485780820291505b8081029050611d568561200c565b9450611d1d565b94509492505050565b6000611d7182611f1c565b9150611d7c83611f1c565b9250611da97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611db1565b905092915050565b600082611dc15760019050611e7d565b81611dcf5760009050611e7d565b8160018114611de55760028114611def57611e1e565b6001915050611e7d565b60ff841115611e0157611e00611f98565b5b8360020a915084821115611e1857611e17611f98565b5b50611e7d565b5060208310610133831016604e8410600b8410161715611e535782820a905083811115611e4e57611e4d611f98565b5b611e7d565b611e608484846001611d13565b92509050818404811115611e7757611e76611f98565b5b81810290505b9392505050565b6000611e8f82611f1c565b9150611e9a83611f1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ed357611ed2611f98565b5b828202905092915050565b6000611ee982611efc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f51578082015181840152602081019050611f36565b83811115611f60576000848401525b50505050565b60006002820490506001821680611f7e57607f821691505b60208210811415611f9257611f91611fc7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61233b81611ede565b811461234657600080fd5b50565b61235281611f1c565b811461235d57600080fd5b5056fea2646970667358221220903eba564f1e4ae438f73a9a616d98fcdc65b2e41844a2afe40dd51ca92b5c1564736f6c63430008070033

Deployed Bytecode Sourcemap

21539:365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11479:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13646:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12599:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14297:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12441:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15198:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21794:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12770:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4961:94;;;:::i;:::-;;21605:181;;;:::i;:::-;;4310:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15916:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13110:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13348:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5210:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11479:100;11533:13;11566:5;11559:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11479:100;:::o;13646:169::-;13729:4;13746:39;13755:12;:10;:12::i;:::-;13769:7;13778:6;13746:8;:39::i;:::-;13803:4;13796:11;;13646:169;;;;:::o;12599:108::-;12660:7;12687:12;;12680:19;;12599:108;:::o;14297:492::-;14437:4;14454:36;14464:6;14472:9;14483:6;14454:9;:36::i;:::-;14503:24;14530:11;:19;14542:6;14530:19;;;;;;;;;;;;;;;:33;14550:12;:10;:12::i;:::-;14530:33;;;;;;;;;;;;;;;;14503:60;;14602:6;14582:16;:26;;14574:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14689:57;14698:6;14706:12;:10;:12::i;:::-;14739:6;14720:16;:25;14689:8;:57::i;:::-;14777:4;14770:11;;;14297:492;;;;;:::o;12441:93::-;12499:5;12524:2;12517:9;;12441:93;:::o;15198:215::-;15286:4;15303:80;15312:12;:10;:12::i;:::-;15326:7;15372:10;15335:11;:25;15347:12;:10;:12::i;:::-;15335:25;;;;;;;;;;;;;;;:34;15361:7;15335:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15303:8;:80::i;:::-;15401:4;15394:11;;15198:215;;;;:::o;21794:107::-;4541:12;:10;:12::i;:::-;4530:23;;:7;:5;:7::i;:::-;:23;;;4522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21871:22:::1;21877:7;21886:6;21871:5;:22::i;:::-;21794:107:::0;;:::o;12770:127::-;12844:7;12871:9;:18;12881:7;12871:18;;;;;;;;;;;;;;;;12864:25;;12770:127;;;:::o;4961:94::-;4541:12;:10;:12::i;:::-;4530:23;;:7;:5;:7::i;:::-;:23;;;4522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5026:21:::1;5044:1;5026:9;:21::i;:::-;4961:94::o:0;21605:181::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;21657:34:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:34::i;:::-;21702:16;:14;:16::i;:::-;21729:49;21735:7;:5;:7::i;:::-;21766:10;:8;:10::i;:::-;21758:19;;21754:2;:23;;;;:::i;:::-;21744:7;:33;;;;:::i;:::-;21729:5;:49::i;:::-;2414:14:::0;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;21605:181::o;4310:87::-;4356:7;4383:6;;;;;;;;;;;4376:13;;4310:87;:::o;11698:104::-;11754:13;11787:7;11780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11698:104;:::o;15916:413::-;16009:4;16026:24;16053:11;:25;16065:12;:10;:12::i;:::-;16053:25;;;;;;;;;;;;;;;:34;16079:7;16053:34;;;;;;;;;;;;;;;;16026:61;;16126:15;16106:16;:35;;16098:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16219:67;16228:12;:10;:12::i;:::-;16242:7;16270:15;16251:16;:34;16219:8;:67::i;:::-;16317:4;16310:11;;;15916:413;;;;:::o;13110:175::-;13196:4;13213:42;13223:12;:10;:12::i;:::-;13237:9;13248:6;13213:9;:42::i;:::-;13273:4;13266:11;;13110:175;;;;:::o;13348:151::-;13437:7;13464:11;:18;13476:5;13464:18;;;;;;;;;;;;;;;:27;13483:7;13464:27;;;;;;;;;;;;;;;;13457:34;;13348:151;;;;:::o;5210:192::-;4541:12;:10;:12::i;:::-;4530:23;;:7;:5;:7::i;:::-;:23;;;4522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5319:1:::1;5299:22;;:8;:22;;;;5291:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5375:19;5385:8;5375:9;:19::i;:::-;5210:192:::0;:::o;3341:98::-;3394:7;3421:10;3414:17;;3341:98;:::o;19600:380::-;19753:1;19736:19;;:5;:19;;;;19728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19834:1;19815:21;;:7;:21;;;;19807:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19918:6;19888:11;:18;19900:5;19888:18;;;;;;;;;;;;;;;:27;19907:7;19888:27;;;;;;;;;;;;;;;:36;;;;19956:7;19940:32;;19949:5;19940:32;;;19965:6;19940:32;;;;;;:::i;:::-;;;;;;;;19600:380;;;:::o;16819:733::-;16977:1;16959:20;;:6;:20;;;;16951:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17061:1;17040:23;;:9;:23;;;;17032:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17116:47;17137:6;17145:9;17156:6;17116:20;:47::i;:::-;17176:21;17200:9;:17;17210:6;17200:17;;;;;;;;;;;;;;;;17176:41;;17253:6;17236:13;:23;;17228:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17374:6;17358:13;:22;17338:9;:17;17348:6;17338:17;;;;;;;;;;;;;;;:42;;;;17426:6;17402:9;:20;17412:9;17402:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17467:9;17450:35;;17459:6;17450:35;;;17478:6;17450:35;;;;;;:::i;:::-;;;;;;;;17498:46;17518:6;17526:9;17537:6;17498:19;:46::i;:::-;16940:612;16819:733;;;:::o;17839:399::-;17942:1;17923:21;;:7;:21;;;;17915:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17993:49;18022:1;18026:7;18035:6;17993:20;:49::i;:::-;18071:6;18055:12;;:22;;;;;;;:::i;:::-;;;;;;;;18110:6;18088:9;:18;18098:7;18088:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18153:7;18132:37;;18149:1;18132:37;;;18162:6;18132:37;;;;;;:::i;:::-;;;;;;;;18182:48;18210:1;18214:7;18223:6;18182:19;:48::i;:::-;17839:399;;:::o;5410:173::-;5466:16;5485:6;;;;;;;;;;;5466:25;;5511:8;5502:6;;:17;;;;;;;;;;;;;;;;;;5566:8;5535:40;;5556:8;5535:40;;;;;;;;;;;;5455:128;5410:173;:::o;11063:181::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;11161:26:::1;:24;:26::i;:::-;11198:38;11221:5;11228:7;11198:22;:38::i;:::-;2414:14:::0;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;11063:181;;:::o;3993:129::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;4051:26:::1;:24;:26::i;:::-;4088;:24;:26::i;:::-;2414:14:::0;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;3993:129::o;20580:125::-;;;;:::o;21309:124::-;;;;:::o;3270:65::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;2414:14;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;3270:65::o;11252:157::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;11368:5:::1;11360;:13;;;;;;;;;;;;:::i;:::-;;11394:7;11384;:17;;;;;;;;;;;;:::i;:::-;;2414:14:::0;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;11252:157;;:::o;4130:99::-;2142:13;;;;;;;;;;;:30;;;;2160:12;;;;;;;;;;2159:13;2142:30;2134:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2236:19;2259:13;;;;;;;;;;;2258:14;2236:36;;2287:14;2283:101;;;2334:4;2318:13;;:20;;;;;;;;;;;;;;;;;;2368:4;2353:12;;:19;;;;;;;;;;;;;;;;;;2283:101;4198:23:::1;4208:12;:10;:12::i;:::-;4198:9;:23::i;:::-;2414:14:::0;2410:68;;;2461:5;2445:13;;:21;;;;;;;;;;;;;;;;;;2410:68;2123:362;4130:99::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:118::-;7005:24;7023:5;7005:24;:::i;:::-;7000:3;6993:37;6918:118;;:::o;7042:112::-;7125:22;7141:5;7125:22;:::i;:::-;7120:3;7113:35;7042:112;;:::o;7160:222::-;7253:4;7291:2;7280:9;7276:18;7268:26;;7304:71;7372:1;7361:9;7357:17;7348:6;7304:71;:::i;:::-;7160:222;;;;:::o;7388:210::-;7475:4;7513:2;7502:9;7498:18;7490:26;;7526:65;7588:1;7577:9;7573:17;7564:6;7526:65;:::i;:::-;7388:210;;;;:::o;7604:313::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:78;7905:4;7896:6;7832:78;:::i;:::-;7824:86;;7604:313;;;;:::o;7923:419::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:131;8330:4;8204:131;:::i;:::-;8196:139;;7923:419;;;:::o;8348:::-;8514:4;8552:2;8541:9;8537:18;8529:26;;8601:9;8595:4;8591:20;8587:1;8576:9;8572:17;8565:47;8629:131;8755:4;8629:131;:::i;:::-;8621:139;;8348:419;;;:::o;8773:::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8773:419;;;:::o;9198:::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9451:9;9445:4;9441:20;9437:1;9426:9;9422:17;9415:47;9479:131;9605:4;9479:131;:::i;:::-;9471:139;;9198:419;;;:::o;9623:::-;9789:4;9827:2;9816:9;9812:18;9804:26;;9876:9;9870:4;9866:20;9862:1;9851:9;9847:17;9840:47;9904:131;10030:4;9904:131;:::i;:::-;9896:139;;9623:419;;;:::o;10048:::-;10214:4;10252:2;10241:9;10237:18;10229:26;;10301:9;10295:4;10291:20;10287:1;10276:9;10272:17;10265:47;10329:131;10455:4;10329:131;:::i;:::-;10321:139;;10048:419;;;:::o;10473:::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10473:419;;;:::o;10898:::-;11064:4;11102:2;11091:9;11087:18;11079:26;;11151:9;11145:4;11141:20;11137:1;11126:9;11122:17;11115:47;11179:131;11305:4;11179:131;:::i;:::-;11171:139;;10898:419;;;:::o;11323:::-;11489:4;11527:2;11516:9;11512:18;11504:26;;11576:9;11570:4;11566:20;11562:1;11551:9;11547:17;11540:47;11604:131;11730:4;11604:131;:::i;:::-;11596:139;;11323:419;;;:::o;11748:::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11748:419;;;:::o;12173:::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12173:419;;;:::o;12598:222::-;12691:4;12729:2;12718:9;12714:18;12706:26;;12742:71;12810:1;12799:9;12795:17;12786:6;12742:71;:::i;:::-;12598:222;;;;:::o;12826:214::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:67;13030:1;13019:9;13015:17;13006:6;12966:67;:::i;:::-;12826:214;;;;:::o;13127:99::-;13179:6;13213:5;13207:12;13197:22;;13127:99;;;:::o;13232:169::-;13316:11;13350:6;13345:3;13338:19;13390:4;13385:3;13381:14;13366:29;;13232:169;;;;:::o;13407:305::-;13447:3;13466:20;13484:1;13466:20;:::i;:::-;13461:25;;13500:20;13518:1;13500:20;:::i;:::-;13495:25;;13654:1;13586:66;13582:74;13579:1;13576:81;13573:107;;;13660:18;;:::i;:::-;13573:107;13704:1;13701;13697:9;13690:16;;13407:305;;;;:::o;13718:848::-;13779:5;13786:4;13810:6;13801:15;;13834:5;13825:14;;13848:712;13869:1;13859:8;13856:15;13848:712;;;13964:4;13959:3;13955:14;13949:4;13946:24;13943:50;;;13973:18;;:::i;:::-;13943:50;14023:1;14013:8;14009:16;14006:451;;;14438:4;14431:5;14427:16;14418:25;;14006:451;14488:4;14482;14478:15;14470:23;;14518:32;14541:8;14518:32;:::i;:::-;14506:44;;13848:712;;;13718:848;;;;;;;:::o;14572:285::-;14632:5;14656:23;14674:4;14656:23;:::i;:::-;14648:31;;14700:27;14718:8;14700:27;:::i;:::-;14688:39;;14746:104;14783:66;14773:8;14767:4;14746:104;:::i;:::-;14737:113;;14572:285;;;;:::o;14863:1073::-;14917:5;15108:8;15098:40;;15129:1;15120:10;;15131:5;;15098:40;15157:4;15147:36;;15174:1;15165:10;;15176:5;;15147:36;15243:4;15291:1;15286:27;;;;15327:1;15322:191;;;;15236:277;;15286:27;15304:1;15295:10;;15306:5;;;15322:191;15367:3;15357:8;15354:17;15351:43;;;15374:18;;:::i;:::-;15351:43;15423:8;15420:1;15416:16;15407:25;;15458:3;15451:5;15448:14;15445:40;;;15465:18;;:::i;:::-;15445:40;15498:5;;;15236:277;;15622:2;15612:8;15609:16;15603:3;15597:4;15594:13;15590:36;15572:2;15562:8;15559:16;15554:2;15548:4;15545:12;15541:35;15525:111;15522:246;;;15678:8;15672:4;15668:19;15659:28;;15713:3;15706:5;15703:14;15700:40;;;15720:18;;:::i;:::-;15700:40;15753:5;;15522:246;15793:42;15831:3;15821:8;15815:4;15812:1;15793:42;:::i;:::-;15778:57;;;;15867:4;15862:3;15858:14;15851:5;15848:25;15845:51;;;15876:18;;:::i;:::-;15845:51;15925:4;15918:5;15914:16;15905:25;;14863:1073;;;;;;:::o;15942:348::-;15982:7;16005:20;16023:1;16005:20;:::i;:::-;16000:25;;16039:20;16057:1;16039:20;:::i;:::-;16034:25;;16227:1;16159:66;16155:74;16152:1;16149:81;16144:1;16137:9;16130:17;16126:105;16123:131;;;16234:18;;:::i;:::-;16123:131;16282:1;16279;16275:9;16264:20;;15942:348;;;;:::o;16296:96::-;16333:7;16362:24;16380:5;16362:24;:::i;:::-;16351:35;;16296:96;;;:::o;16398:90::-;16432:7;16475:5;16468:13;16461:21;16450:32;;16398:90;;;:::o;16494:126::-;16531:7;16571:42;16564:5;16560:54;16549:65;;16494:126;;;:::o;16626:77::-;16663:7;16692:5;16681:16;;16626:77;;;:::o;16709:86::-;16744:7;16784:4;16777:5;16773:16;16762:27;;16709:86;;;:::o;16801:307::-;16869:1;16879:113;16893:6;16890:1;16887:13;16879:113;;;16978:1;16973:3;16969:11;16963:18;16959:1;16954:3;16950:11;16943:39;16915:2;16912:1;16908:10;16903:15;;16879:113;;;17010:6;17007:1;17004:13;17001:101;;;17090:1;17081:6;17076:3;17072:16;17065:27;17001:101;16850:258;16801:307;;;:::o;17114:320::-;17158:6;17195:1;17189:4;17185:12;17175:22;;17242:1;17236:4;17232:12;17263:18;17253:81;;17319:4;17311:6;17307:17;17297:27;;17253:81;17381:2;17373:6;17370:14;17350:18;17347:38;17344:84;;;17400:18;;:::i;:::-;17344:84;17165:269;17114:320;;;:::o;17440:180::-;17488:77;17485:1;17478:88;17585:4;17582:1;17575:15;17609:4;17606:1;17599:15;17626:180;17674:77;17671:1;17664:88;17771:4;17768:1;17761:15;17795:4;17792:1;17785:15;17935:117;18044:1;18041;18034:12;18058:102;18099:6;18150:2;18146:7;18141:2;18134:5;18130:14;18126:28;18116:38;;18058:102;;;:::o;18166:::-;18208:8;18255:5;18252:1;18248:13;18227:34;;18166:102;;;:::o;18274:222::-;18414:34;18410:1;18402:6;18398:14;18391:58;18483:5;18478:2;18470:6;18466:15;18459:30;18274:222;:::o;18502:225::-;18642:34;18638:1;18630:6;18626:14;18619:58;18711:8;18706:2;18698:6;18694:15;18687:33;18502:225;:::o;18733:221::-;18873:34;18869:1;18861:6;18857:14;18850:58;18942:4;18937:2;18929:6;18925:15;18918:29;18733:221;:::o;18960:225::-;19100:34;19096:1;19088:6;19084:14;19077:58;19169:8;19164:2;19156:6;19152:15;19145:33;18960:225;:::o;19191:233::-;19331:34;19327:1;19319:6;19315:14;19308:58;19400:16;19395:2;19387:6;19383:15;19376:41;19191:233;:::o;19430:227::-;19570:34;19566:1;19558:6;19554:14;19547:58;19639:10;19634:2;19626:6;19622:15;19615:35;19430:227;:::o;19663:182::-;19803:34;19799:1;19791:6;19787:14;19780:58;19663:182;:::o;19851:224::-;19991:34;19987:1;19979:6;19975:14;19968:58;20060:7;20055:2;20047:6;20043:15;20036:32;19851:224;:::o;20081:223::-;20221:34;20217:1;20209:6;20205:14;20198:58;20290:6;20285:2;20277:6;20273:15;20266:31;20081:223;:::o;20310:224::-;20450:34;20446:1;20438:6;20434:14;20427:58;20519:7;20514:2;20506:6;20502:15;20495:32;20310:224;:::o;20540:181::-;20680:33;20676:1;20668:6;20664:14;20657:57;20540:181;:::o;20727:122::-;20800:24;20818:5;20800:24;:::i;:::-;20793:5;20790:35;20780:63;;20839:1;20836;20829:12;20780:63;20727:122;:::o;20855:::-;20928:24;20946:5;20928:24;:::i;:::-;20921:5;20918:35;20908:63;;20967:1;20964;20957:12;20908:63;20855:122;:::o

Swarm Source

ipfs://903eba564f1e4ae438f73a9a616d98fcdc65b2e41844a2afe40dd51ca92b5c15
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.