ETH Price: $3,377.65 (-1.93%)
Gas: 2 Gwei

Token

Metaverse Dog (MVDG)
 

Overview

Max Total Supply

100,000,000,000 MVDG

Holders

4,241 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Genesis Trading: OTC Desk 3
Balance
10,000 MVDG

Value
$0.00
0x6d21266dfcf5541bee9f67c4837aaa72b3bf9303
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Metaverse Dog is one-of-a-kind decentralised metaverse token that uses blockchain technology to simplify and standardise data. It aims to use blockchain technology to provide user-friendly, efficient, and secure crypto solutions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaverseDog

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-02
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
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);
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
contract MetaverseDog is ERC20, ERC20Burnable, Ownable {
    constructor() ERC20("Metaverse Dog", "MVDG") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }
}

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f4d657461766572736520446f67000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d5644470000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000373565b508060049080519060200190620000af92919062000373565b505050620000d2620000c66200011960201b60201c565b6200012160201b60201c565b6200011333620000e7620001e760201b60201c565b600a620000f591906200057e565b64174876e800620001079190620006bb565b620001f060201b60201c565b620007d4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a9062000476565b60405180910390fd5b62000277600083836200036960201b60201c565b80600260008282546200028b9190620004c6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e29190620004c6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000498565b60405180910390a362000365600083836200036e60201b60201c565b5050565b505050565b505050565b828054620003819062000733565b90600052602060002090601f016020900481019282620003a55760008555620003f1565b82601f10620003c057805160ff1916838001178555620003f1565b82800160010185558215620003f1579182015b82811115620003f0578251825591602001919060010190620003d3565b5b50905062000400919062000404565b5090565b5b808211156200041f57600081600090555060010162000405565b5090565b600062000432601f83620004b5565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000470816200071c565b82525050565b60006020820190508181036000830152620004918162000423565b9050919050565b6000602082019050620004af600083018462000465565b92915050565b600082825260208201905092915050565b6000620004d3826200071c565b9150620004e0836200071c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000518576200051762000769565b5b828201905092915050565b6000808291508390505b600185111562000575578086048111156200054d576200054c62000769565b5b60018516156200055d5780820291505b80810290506200056d85620007c7565b94506200052d565b94509492505050565b60006200058b826200071c565b9150620005988362000726565b9250620005c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005cf565b905092915050565b600082620005e15760019050620006b4565b81620005f15760009050620006b4565b81600181146200060a576002811462000615576200064b565b6001915050620006b4565b60ff8411156200062a576200062962000769565b5b8360020a91508482111562000644576200064362000769565b5b50620006b4565b5060208310610133831016604e8410600b8410161715620006855782820a9050838111156200067f576200067e62000769565b5b620006b4565b62000694848484600162000523565b92509050818404811115620006ae57620006ad62000769565b5b81810290505b9392505050565b6000620006c8826200071c565b9150620006d5836200071c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000711576200071062000769565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200074c57607f821691505b6020821081141562000763576200076262000798565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611e5a80620007e46000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611a2f565b60405180910390f35b6101486004803603810190610143919061143d565b610402565b6040516101559190611a14565b60405180910390f35b610166610420565b6040516101739190611bf1565b60405180910390f35b610196600480360381019061019191906113ee565b61042a565b6040516101a39190611a14565b60405180910390f35b6101b4610522565b6040516101c19190611c0c565b60405180910390f35b6101e460048036038101906101df919061143d565b61052b565b6040516101f19190611a14565b60405180910390f35b610214600480360381019061020f919061143d565b6105d7565b005b610230600480360381019061022b9190611479565b610661565b005b61024c60048036038101906102479190611389565b610675565b6040516102599190611bf1565b60405180910390f35b61026a6106bd565b005b6102866004803603810190610281919061143d565b610745565b005b6102906107c0565b60405161029d91906119f9565b60405180910390f35b6102ae6107ea565b6040516102bb9190611a2f565b60405180910390f35b6102de60048036038101906102d9919061143d565b61087c565b6040516102eb9190611a14565b60405180910390f35b61030e6004803603810190610309919061143d565b610967565b60405161031b9190611a14565b60405180910390f35b61033e600480360381019061033991906113b2565b610985565b60405161034b9190611bf1565b60405180910390f35b61036e60048036038101906103699190611389565b610a0c565b005b60606003805461037f90611d55565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d55565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610b04565b8484610b0c565b6001905092915050565b6000600254905090565b6000610437848484610cd7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610482610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f990611af1565b60405180910390fd5b6105168561050e610b04565b858403610b0c565b60019150509392505050565b60006012905090565b60006105cd610538610b04565b848460016000610546610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105c89190611c43565b610b0c565b6001905092915050565b6105df610b04565b73ffffffffffffffffffffffffffffffffffffffff166105fd6107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611b11565b60405180910390fd5b61065d8282610f58565b5050565b61067261066c610b04565b826110b8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c5610b04565b73ffffffffffffffffffffffffffffffffffffffff166106e36107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611b11565b60405180910390fd5b610743600061128f565b565b600061075883610753610b04565b610985565b90508181101561079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611b31565b60405180910390fd5b6107b1836107a9610b04565b848403610b0c565b6107bb83836110b8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107f990611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461082590611d55565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b6000806001600061088b610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611bb1565b60405180910390fd5b61095c610953610b04565b85858403610b0c565b600191505092915050565b600061097b610974610b04565b8484610cd7565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a14610b04565b73ffffffffffffffffffffffffffffffffffffffff16610a326107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90611a91565b60405180910390fd5b610b018161128f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611b91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ab1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cca9190611bf1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611b71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611a51565b60405180910390fd5b610dc2838383611355565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611ad1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edb9190611c43565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f9190611bf1565b60405180910390a3610f5284848461135a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90611bd1565b60405180910390fd5b610fd460008383611355565b8060026000828254610fe69190611c43565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461103b9190611c43565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110a09190611bf1565b60405180910390a36110b46000838361135a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90611b51565b60405180910390fd5b61113482600083611355565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190611a71565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112119190611c99565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112769190611bf1565b60405180910390a361128a8360008461135a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061136e81611df6565b92915050565b60008135905061138381611e0d565b92915050565b60006020828403121561139b57600080fd5b60006113a98482850161135f565b91505092915050565b600080604083850312156113c557600080fd5b60006113d38582860161135f565b92505060206113e48582860161135f565b9150509250929050565b60008060006060848603121561140357600080fd5b60006114118682870161135f565b93505060206114228682870161135f565b925050604061143386828701611374565b9150509250925092565b6000806040838503121561145057600080fd5b600061145e8582860161135f565b925050602061146f85828601611374565b9150509250929050565b60006020828403121561148b57600080fd5b600061149984828501611374565b91505092915050565b6114ab81611ccd565b82525050565b6114ba81611cdf565b82525050565b60006114cb82611c27565b6114d58185611c32565b93506114e5818560208601611d22565b6114ee81611de5565b840191505092915050565b6000611506602383611c32565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061156c602283611c32565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115d2602683611c32565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611638602283611c32565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061169e602683611c32565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611704602883611c32565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061176a602083611c32565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117aa602483611c32565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611810602183611c32565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611876602583611c32565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118dc602483611c32565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611942602583611c32565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119a8601f83611c32565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119e481611d0b565b82525050565b6119f381611d15565b82525050565b6000602082019050611a0e60008301846114a2565b92915050565b6000602082019050611a2960008301846114b1565b92915050565b60006020820190508181036000830152611a4981846114c0565b905092915050565b60006020820190508181036000830152611a6a816114f9565b9050919050565b60006020820190508181036000830152611a8a8161155f565b9050919050565b60006020820190508181036000830152611aaa816115c5565b9050919050565b60006020820190508181036000830152611aca8161162b565b9050919050565b60006020820190508181036000830152611aea81611691565b9050919050565b60006020820190508181036000830152611b0a816116f7565b9050919050565b60006020820190508181036000830152611b2a8161175d565b9050919050565b60006020820190508181036000830152611b4a8161179d565b9050919050565b60006020820190508181036000830152611b6a81611803565b9050919050565b60006020820190508181036000830152611b8a81611869565b9050919050565b60006020820190508181036000830152611baa816118cf565b9050919050565b60006020820190508181036000830152611bca81611935565b9050919050565b60006020820190508181036000830152611bea8161199b565b9050919050565b6000602082019050611c0660008301846119db565b92915050565b6000602082019050611c2160008301846119ea565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4e82611d0b565b9150611c5983611d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8e57611c8d611d87565b5b828201905092915050565b6000611ca482611d0b565b9150611caf83611d0b565b925082821015611cc257611cc1611d87565b5b828203905092915050565b6000611cd882611ceb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d40578082015181840152602081019050611d25565b83811115611d4f576000848401525b50505050565b60006002820490506001821680611d6d57607f821691505b60208210811415611d8157611d80611db6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611dff81611ccd565b8114611e0a57600080fd5b50565b611e1681611d0b565b8114611e2157600080fd5b5056fea2646970667358221220cbe7494e3ca88af5468309f4ced6581818c83acdc947b1c25991cf7045432aab64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611a2f565b60405180910390f35b6101486004803603810190610143919061143d565b610402565b6040516101559190611a14565b60405180910390f35b610166610420565b6040516101739190611bf1565b60405180910390f35b610196600480360381019061019191906113ee565b61042a565b6040516101a39190611a14565b60405180910390f35b6101b4610522565b6040516101c19190611c0c565b60405180910390f35b6101e460048036038101906101df919061143d565b61052b565b6040516101f19190611a14565b60405180910390f35b610214600480360381019061020f919061143d565b6105d7565b005b610230600480360381019061022b9190611479565b610661565b005b61024c60048036038101906102479190611389565b610675565b6040516102599190611bf1565b60405180910390f35b61026a6106bd565b005b6102866004803603810190610281919061143d565b610745565b005b6102906107c0565b60405161029d91906119f9565b60405180910390f35b6102ae6107ea565b6040516102bb9190611a2f565b60405180910390f35b6102de60048036038101906102d9919061143d565b61087c565b6040516102eb9190611a14565b60405180910390f35b61030e6004803603810190610309919061143d565b610967565b60405161031b9190611a14565b60405180910390f35b61033e600480360381019061033991906113b2565b610985565b60405161034b9190611bf1565b60405180910390f35b61036e60048036038101906103699190611389565b610a0c565b005b60606003805461037f90611d55565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d55565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610b04565b8484610b0c565b6001905092915050565b6000600254905090565b6000610437848484610cd7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610482610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f990611af1565b60405180910390fd5b6105168561050e610b04565b858403610b0c565b60019150509392505050565b60006012905090565b60006105cd610538610b04565b848460016000610546610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105c89190611c43565b610b0c565b6001905092915050565b6105df610b04565b73ffffffffffffffffffffffffffffffffffffffff166105fd6107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611b11565b60405180910390fd5b61065d8282610f58565b5050565b61067261066c610b04565b826110b8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c5610b04565b73ffffffffffffffffffffffffffffffffffffffff166106e36107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611b11565b60405180910390fd5b610743600061128f565b565b600061075883610753610b04565b610985565b90508181101561079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611b31565b60405180910390fd5b6107b1836107a9610b04565b848403610b0c565b6107bb83836110b8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107f990611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461082590611d55565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b6000806001600061088b610b04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611bb1565b60405180910390fd5b61095c610953610b04565b85858403610b0c565b600191505092915050565b600061097b610974610b04565b8484610cd7565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a14610b04565b73ffffffffffffffffffffffffffffffffffffffff16610a326107c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90611a91565b60405180910390fd5b610b018161128f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611b91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ab1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cca9190611bf1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611b71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611a51565b60405180910390fd5b610dc2838383611355565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611ad1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edb9190611c43565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f9190611bf1565b60405180910390a3610f5284848461135a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90611bd1565b60405180910390fd5b610fd460008383611355565b8060026000828254610fe69190611c43565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461103b9190611c43565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110a09190611bf1565b60405180910390a36110b46000838361135a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90611b51565b60405180910390fd5b61113482600083611355565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190611a71565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112119190611c99565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112769190611bf1565b60405180910390a361128a8360008461135a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061136e81611df6565b92915050565b60008135905061138381611e0d565b92915050565b60006020828403121561139b57600080fd5b60006113a98482850161135f565b91505092915050565b600080604083850312156113c557600080fd5b60006113d38582860161135f565b92505060206113e48582860161135f565b9150509250929050565b60008060006060848603121561140357600080fd5b60006114118682870161135f565b93505060206114228682870161135f565b925050604061143386828701611374565b9150509250925092565b6000806040838503121561145057600080fd5b600061145e8582860161135f565b925050602061146f85828601611374565b9150509250929050565b60006020828403121561148b57600080fd5b600061149984828501611374565b91505092915050565b6114ab81611ccd565b82525050565b6114ba81611cdf565b82525050565b60006114cb82611c27565b6114d58185611c32565b93506114e5818560208601611d22565b6114ee81611de5565b840191505092915050565b6000611506602383611c32565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061156c602283611c32565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115d2602683611c32565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611638602283611c32565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061169e602683611c32565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611704602883611c32565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061176a602083611c32565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117aa602483611c32565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611810602183611c32565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611876602583611c32565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118dc602483611c32565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611942602583611c32565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119a8601f83611c32565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119e481611d0b565b82525050565b6119f381611d15565b82525050565b6000602082019050611a0e60008301846114a2565b92915050565b6000602082019050611a2960008301846114b1565b92915050565b60006020820190508181036000830152611a4981846114c0565b905092915050565b60006020820190508181036000830152611a6a816114f9565b9050919050565b60006020820190508181036000830152611a8a8161155f565b9050919050565b60006020820190508181036000830152611aaa816115c5565b9050919050565b60006020820190508181036000830152611aca8161162b565b9050919050565b60006020820190508181036000830152611aea81611691565b9050919050565b60006020820190508181036000830152611b0a816116f7565b9050919050565b60006020820190508181036000830152611b2a8161175d565b9050919050565b60006020820190508181036000830152611b4a8161179d565b9050919050565b60006020820190508181036000830152611b6a81611803565b9050919050565b60006020820190508181036000830152611b8a81611869565b9050919050565b60006020820190508181036000830152611baa816118cf565b9050919050565b60006020820190508181036000830152611bca81611935565b9050919050565b60006020820190508181036000830152611bea8161199b565b9050919050565b6000602082019050611c0660008301846119db565b92915050565b6000602082019050611c2160008301846119ea565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4e82611d0b565b9150611c5983611d0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8e57611c8d611d87565b5b828201905092915050565b6000611ca482611d0b565b9150611caf83611d0b565b925082821015611cc257611cc1611d87565b5b828203905092915050565b6000611cd882611ceb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d40578082015181840152602081019050611d25565b83811115611d4f576000848401525b50505050565b60006002820490506001821680611d6d57607f821691505b60208210811415611d8157611d80611db6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611dff81611ccd565b8114611e0a57600080fd5b50565b611e1681611d0b565b8114611e2157600080fd5b5056fea2646970667358221220cbe7494e3ca88af5468309f4ced6581818c83acdc947b1c25991cf7045432aab64736f6c63430008000033

Deployed Bytecode Sourcemap

16963:282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4178:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6345:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5298:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5140:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7897:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17147:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14302:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5469:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16148:103;;;:::i;:::-;;14712:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15497:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4397:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8615:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5809:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6047:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16406:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4178:100;4232:13;4265:5;4258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4178:100;:::o;6345:169::-;6428:4;6445:39;6454:12;:10;:12::i;:::-;6468:7;6477:6;6445:8;:39::i;:::-;6502:4;6495:11;;6345:169;;;;:::o;5298:108::-;5359:7;5386:12;;5379:19;;5298:108;:::o;6996:492::-;7136:4;7153:36;7163:6;7171:9;7182:6;7153:9;:36::i;:::-;7202:24;7229:11;:19;7241:6;7229:19;;;;;;;;;;;;;;;:33;7249:12;:10;:12::i;:::-;7229:33;;;;;;;;;;;;;;;;7202:60;;7301:6;7281:16;:26;;7273:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7388:57;7397:6;7405:12;:10;:12::i;:::-;7438:6;7419:16;:25;7388:8;:57::i;:::-;7476:4;7469:11;;;6996:492;;;;;:::o;5140:93::-;5198:5;5223:2;5216:9;;5140:93;:::o;7897:215::-;7985:4;8002:80;8011:12;:10;:12::i;:::-;8025:7;8071:10;8034:11;:25;8046:12;:10;:12::i;:::-;8034:25;;;;;;;;;;;;;;;:34;8060:7;8034:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8002:8;:80::i;:::-;8100:4;8093:11;;7897:215;;;;:::o;17147:95::-;15728:12;:10;:12::i;:::-;15717:23;;:7;:5;:7::i;:::-;:23;;;15709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17217:17:::1;17223:2;17227:6;17217:5;:17::i;:::-;17147:95:::0;;:::o;14302:91::-;14358:27;14364:12;:10;:12::i;:::-;14378:6;14358:5;:27::i;:::-;14302:91;:::o;5469:127::-;5543:7;5570:9;:18;5580:7;5570:18;;;;;;;;;;;;;;;;5563:25;;5469:127;;;:::o;16148:103::-;15728:12;:10;:12::i;:::-;15717:23;;:7;:5;:7::i;:::-;:23;;;15709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16213:30:::1;16240:1;16213:18;:30::i;:::-;16148:103::o:0;14712:368::-;14789:24;14816:32;14826:7;14835:12;:10;:12::i;:::-;14816:9;:32::i;:::-;14789:59;;14887:6;14867:16;:26;;14859:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;14970:58;14979:7;14988:12;:10;:12::i;:::-;15021:6;15002:16;:25;14970:8;:58::i;:::-;15050:22;15056:7;15065:6;15050:5;:22::i;:::-;14712:368;;;:::o;15497:87::-;15543:7;15570:6;;;;;;;;;;;15563:13;;15497:87;:::o;4397:104::-;4453:13;4486:7;4479:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4397:104;:::o;8615:413::-;8708:4;8725:24;8752:11;:25;8764:12;:10;:12::i;:::-;8752:25;;;;;;;;;;;;;;;:34;8778:7;8752:34;;;;;;;;;;;;;;;;8725:61;;8825:15;8805:16;:35;;8797:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8918:67;8927:12;:10;:12::i;:::-;8941:7;8969:15;8950:16;:34;8918:8;:67::i;:::-;9016:4;9009:11;;;8615:413;;;;:::o;5809:175::-;5895:4;5912:42;5922:12;:10;:12::i;:::-;5936:9;5947:6;5912:9;:42::i;:::-;5972:4;5965:11;;5809:175;;;;:::o;6047:151::-;6136:7;6163:11;:18;6175:5;6163:18;;;;;;;;;;;;;;;:27;6182:7;6163:27;;;;;;;;;;;;;;;;6156:34;;6047:151;;;;:::o;16406:201::-;15728:12;:10;:12::i;:::-;15717:23;;:7;:5;:7::i;:::-;:23;;;15709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16515:1:::1;16495:22;;:8;:22;;;;16487:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16571:28;16590:8;16571:18;:28::i;:::-;16406:201:::0;:::o;3186:98::-;3239:7;3266:10;3259:17;;3186:98;:::o;12299:380::-;12452:1;12435:19;;:5;:19;;;;12427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12533:1;12514:21;;:7;:21;;;;12506:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12617:6;12587:11;:18;12599:5;12587:18;;;;;;;;;;;;;;;:27;12606:7;12587:27;;;;;;;;;;;;;;;:36;;;;12655:7;12639:32;;12648:5;12639:32;;;12664:6;12639:32;;;;;;:::i;:::-;;;;;;;;12299:380;;;:::o;9518:733::-;9676:1;9658:20;;:6;:20;;;;9650:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;9760:1;9739:23;;:9;:23;;;;9731:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9815:47;9836:6;9844:9;9855:6;9815:20;:47::i;:::-;9875:21;9899:9;:17;9909:6;9899:17;;;;;;;;;;;;;;;;9875:41;;9952:6;9935:13;:23;;9927:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10073:6;10057:13;:22;10037:9;:17;10047:6;10037:17;;;;;;;;;;;;;;;:42;;;;10125:6;10101:9;:20;10111:9;10101:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10166:9;10149:35;;10158:6;10149:35;;;10177:6;10149:35;;;;;;:::i;:::-;;;;;;;;10197:46;10217:6;10225:9;10236:6;10197:19;:46::i;:::-;9518:733;;;;:::o;10538:399::-;10641:1;10622:21;;:7;:21;;;;10614:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10692:49;10721:1;10725:7;10734:6;10692:20;:49::i;:::-;10770:6;10754:12;;:22;;;;;;;:::i;:::-;;;;;;;;10809:6;10787:9;:18;10797:7;10787:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;10852:7;10831:37;;10848:1;10831:37;;;10861:6;10831:37;;;;;;:::i;:::-;;;;;;;;10881:48;10909:1;10913:7;10922:6;10881:19;:48::i;:::-;10538:399;;:::o;11270:591::-;11373:1;11354:21;;:7;:21;;;;11346:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11426:49;11447:7;11464:1;11468:6;11426:20;:49::i;:::-;11488:22;11513:9;:18;11523:7;11513:18;;;;;;;;;;;;;;;;11488:43;;11568:6;11550:14;:24;;11542:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11687:6;11670:14;:23;11649:9;:18;11659:7;11649:18;;;;;;;;;;;;;;;:44;;;;11731:6;11715:12;;:22;;;;;;;:::i;:::-;;;;;;;;11781:1;11755:37;;11764:7;11755:37;;;11785:6;11755:37;;;;;;:::i;:::-;;;;;;;;11805:48;11825:7;11842:1;11846:6;11805:19;:48::i;:::-;11270:591;;;:::o;16767:191::-;16841:16;16860:6;;;;;;;;;;;16841:25;;16886:8;16877:6;;:17;;;;;;;;;;;;;;;;;;16941:8;16910:40;;16931:8;16910:40;;;;;;;;;;;;16767:191;;:::o;13279:125::-;;;;:::o;14008:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;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;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:368::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:6;5730:2;5725:3;5721:12;5714:28;5768:2;5763:3;5759:12;5752:19;;5555:222;;;:::o;5783:365::-;;5946:67;6010:2;6005:3;5946:67;:::i;:::-;5939:74;;6043:34;6039:1;6034:3;6030:11;6023:55;6109:3;6104:2;6099:3;6095:12;6088:25;6139:2;6134:3;6130:12;6123:19;;5929:219;;;:::o;6154:369::-;;6317:67;6381:2;6376:3;6317:67;:::i;:::-;6310:74;;6414:34;6410:1;6405:3;6401:11;6394:55;6480:7;6475:2;6470:3;6466:12;6459:29;6514:2;6509:3;6505:12;6498:19;;6300:223;;;:::o;6529:368::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:6;6850:2;6845:3;6841:12;6834:28;6888:2;6883:3;6879:12;6872:19;;6675:222;;;:::o;6903:369::-;;7066:67;7130:2;7125:3;7066:67;:::i;:::-;7059:74;;7163:34;7159:1;7154:3;7150:11;7143:55;7229:7;7224:2;7219:3;7215:12;7208:29;7263:2;7258:3;7254:12;7247:19;;7049:223;;;:::o;7278:329::-;;7441:67;7505:2;7500:3;7441:67;:::i;:::-;7434:74;;7538:33;7534:1;7529:3;7525:11;7518:54;7598:2;7593:3;7589:12;7582:19;;7424:183;;;:::o;7613:118::-;7700:24;7718:5;7700:24;:::i;:::-;7695:3;7688:37;7678:53;;:::o;7737:112::-;7820:22;7836:5;7820:22;:::i;:::-;7815:3;7808:35;7798:51;;:::o;7855:222::-;;7986:2;7975:9;7971:18;7963:26;;7999:71;8067:1;8056:9;8052:17;8043:6;7999:71;:::i;:::-;7953:124;;;;:::o;8083:210::-;;8208:2;8197:9;8193:18;8185:26;;8221:65;8283:1;8272:9;8268:17;8259:6;8221:65;:::i;:::-;8175:118;;;;:::o;8299:313::-;;8450:2;8439:9;8435:18;8427:26;;8499:9;8493:4;8489:20;8485:1;8474:9;8470:17;8463:47;8527:78;8600:4;8591:6;8527:78;:::i;:::-;8519:86;;8417:195;;;;:::o;8618:419::-;;8822:2;8811:9;8807:18;8799:26;;8871:9;8865:4;8861:20;8857:1;8846:9;8842:17;8835:47;8899:131;9025:4;8899:131;:::i;:::-;8891:139;;8789:248;;;:::o;9043:419::-;;9247:2;9236:9;9232:18;9224:26;;9296:9;9290:4;9286:20;9282:1;9271:9;9267:17;9260:47;9324:131;9450:4;9324:131;:::i;:::-;9316:139;;9214:248;;;:::o;9468:419::-;;9672:2;9661:9;9657:18;9649:26;;9721:9;9715:4;9711:20;9707:1;9696:9;9692:17;9685:47;9749:131;9875:4;9749:131;:::i;:::-;9741:139;;9639:248;;;:::o;9893:419::-;;10097:2;10086:9;10082:18;10074:26;;10146:9;10140:4;10136:20;10132:1;10121:9;10117:17;10110:47;10174:131;10300:4;10174:131;:::i;:::-;10166:139;;10064:248;;;:::o;10318:419::-;;10522:2;10511:9;10507:18;10499:26;;10571:9;10565:4;10561:20;10557:1;10546:9;10542:17;10535:47;10599:131;10725:4;10599:131;:::i;:::-;10591:139;;10489:248;;;:::o;10743:419::-;;10947:2;10936:9;10932:18;10924:26;;10996:9;10990:4;10986:20;10982:1;10971:9;10967:17;10960:47;11024:131;11150:4;11024:131;:::i;:::-;11016:139;;10914:248;;;:::o;11168:419::-;;11372:2;11361:9;11357:18;11349:26;;11421:9;11415:4;11411:20;11407:1;11396:9;11392:17;11385:47;11449:131;11575:4;11449:131;:::i;:::-;11441:139;;11339:248;;;:::o;11593:419::-;;11797:2;11786:9;11782:18;11774:26;;11846:9;11840:4;11836:20;11832:1;11821:9;11817:17;11810:47;11874:131;12000:4;11874:131;:::i;:::-;11866:139;;11764:248;;;:::o;12018:419::-;;12222:2;12211:9;12207:18;12199:26;;12271:9;12265:4;12261:20;12257:1;12246:9;12242:17;12235:47;12299:131;12425:4;12299:131;:::i;:::-;12291:139;;12189:248;;;:::o;12443:419::-;;12647:2;12636:9;12632:18;12624:26;;12696:9;12690:4;12686:20;12682:1;12671:9;12667:17;12660:47;12724:131;12850:4;12724:131;:::i;:::-;12716:139;;12614:248;;;:::o;12868:419::-;;13072:2;13061:9;13057:18;13049:26;;13121:9;13115:4;13111:20;13107:1;13096:9;13092:17;13085:47;13149:131;13275:4;13149:131;:::i;:::-;13141:139;;13039:248;;;:::o;13293:419::-;;13497:2;13486:9;13482:18;13474:26;;13546:9;13540:4;13536:20;13532:1;13521:9;13517:17;13510:47;13574:131;13700:4;13574:131;:::i;:::-;13566:139;;13464:248;;;:::o;13718:419::-;;13922:2;13911:9;13907:18;13899:26;;13971:9;13965:4;13961:20;13957:1;13946:9;13942:17;13935:47;13999:131;14125:4;13999:131;:::i;:::-;13991:139;;13889:248;;;:::o;14143:222::-;;14274:2;14263:9;14259:18;14251:26;;14287:71;14355:1;14344:9;14340:17;14331:6;14287:71;:::i;:::-;14241:124;;;;:::o;14371:214::-;;14498:2;14487:9;14483:18;14475:26;;14511:67;14575:1;14564:9;14560:17;14551:6;14511:67;:::i;:::-;14465:120;;;;:::o;14591:99::-;;14677:5;14671:12;14661:22;;14650:40;;;:::o;14696:169::-;;14814:6;14809:3;14802:19;14854:4;14849:3;14845:14;14830:29;;14792:73;;;;:::o;14871:305::-;;14930:20;14948:1;14930:20;:::i;:::-;14925:25;;14964:20;14982:1;14964:20;:::i;:::-;14959:25;;15118:1;15050:66;15046:74;15043:1;15040:81;15037:2;;;15124:18;;:::i;:::-;15037:2;15168:1;15165;15161:9;15154:16;;14915:261;;;;:::o;15182:191::-;;15242:20;15260:1;15242:20;:::i;:::-;15237:25;;15276:20;15294:1;15276:20;:::i;:::-;15271:25;;15315:1;15312;15309:8;15306:2;;;15320:18;;:::i;:::-;15306:2;15365:1;15362;15358:9;15350:17;;15227:146;;;;:::o;15379:96::-;;15445:24;15463:5;15445:24;:::i;:::-;15434:35;;15424:51;;;:::o;15481:90::-;;15558:5;15551:13;15544:21;15533:32;;15523:48;;;:::o;15577:126::-;;15654:42;15647:5;15643:54;15632:65;;15622:81;;;:::o;15709:77::-;;15775:5;15764:16;;15754:32;;;:::o;15792:86::-;;15867:4;15860:5;15856:16;15845:27;;15835:43;;;:::o;15884:307::-;15952:1;15962:113;15976:6;15973:1;15970:13;15962:113;;;16061:1;16056:3;16052:11;16046:18;16042:1;16037:3;16033:11;16026:39;15998:2;15995:1;15991:10;15986:15;;15962:113;;;16093:6;16090:1;16087:13;16084:2;;;16173:1;16164:6;16159:3;16155:16;16148:27;16084:2;15933:258;;;;:::o;16197:320::-;;16278:1;16272:4;16268:12;16258:22;;16325:1;16319:4;16315:12;16346:18;16336:2;;16402:4;16394:6;16390:17;16380:27;;16336:2;16464;16456:6;16453:14;16433:18;16430:38;16427:2;;;16483:18;;:::i;:::-;16427:2;16248:269;;;;:::o;16523:180::-;16571:77;16568:1;16561:88;16668:4;16665:1;16658:15;16692:4;16689:1;16682:15;16709:180;16757:77;16754:1;16747:88;16854:4;16851:1;16844:15;16878:4;16875:1;16868:15;16895:102;;16987:2;16983:7;16978:2;16971:5;16967:14;16963:28;16953:38;;16943:54;;;:::o;17003:122::-;17076:24;17094:5;17076:24;:::i;:::-;17069:5;17066:35;17056:2;;17115:1;17112;17105:12;17056:2;17046:79;:::o;17131:122::-;17204:24;17222:5;17204:24;:::i;:::-;17197:5;17194:35;17184:2;;17243:1;17240;17233:12;17184:2;17174:79;:::o

Swarm Source

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