ETH Price: $3,632.99 (+0.88%)
 

Overview

Max Total Supply

182 ZETH

Holders

125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZETH
0x5f4175e58b179e8aa2c66de6cbc3e865942454da
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Zooethereum

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-01
*/

// File: zoo/INFT.sol


pragma solidity ^0.8.0;

interface INFT {
	function mint(address _to, uint _tokenId) external;
	function tokenTypeAndPrice(uint _tokenId) external view returns (string memory _tokenType, uint _price);
}

// File: zoo/common/meta-transactions/Initializable.sol



pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}
// File: zoo/common/meta-transactions/EIP712Base.sol



pragma solidity ^0.8.0;


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}
// File: zoo/common/meta-transactions/ContentMixin.sol



pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
// File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: zoo/common/meta-transactions/NativeMetaTransaction.sol



pragma solidity ^0.8.0;



contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}
// File: openzeppelin-solidity/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: openzeppelin-solidity/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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);
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: zoo/ERC721Tradable.sol



pragma solidity ^0.8.0;








contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public virtual onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json?wrap=0"));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

// File: zoo/Nft.sol


pragma solidity ^0.8.0;



contract Zooethereum is INFT, ERC721Tradable {

	uint public lastTokenId;
	
	string public contractURI;
	string internal _baseTokenURI;

	mapping(address => bool) public operators;

	mapping(string => uint) public tokenTypeAmount;
	mapping(string => uint) public tokenTypeMinted;
	mapping(string => uint) public tokenTypePrice;

	constructor(
		address _proxyRegistryAddress,
		string memory _name,
		string memory _symbol,
		string memory _contractURI,
		string memory __baseTokenURI,
		address[] memory _operators
	) ERC721Tradable(_name, _symbol, _proxyRegistryAddress)
	{
		contractURI = _contractURI;
		_baseTokenURI = __baseTokenURI;

		tokenTypeAmount["arctic"] = 250;
		tokenTypeAmount["robotic"] = 200;
		tokenTypeAmount["cemetery"] = 150;
		tokenTypeAmount["oriental"] = 100;
		tokenTypeAmount["island"] = 90;
		tokenTypeAmount["mayan"] = 45;
		tokenTypeAmount["galactic"] = 30;
		tokenTypeAmount["ocean"] = 20;
		tokenTypeAmount["egyptian"] = 15;
		
		lastTokenId = 900;

		tokenTypePrice["arctic"] = 0.2 ether;
		tokenTypePrice["robotic"] = 0.3 ether;
		tokenTypePrice["cemetery"] = 0.4 ether;
		tokenTypePrice["oriental"] = 0.5 ether;
		tokenTypePrice["island"] = 0.6 ether;
		tokenTypePrice["mayan"] = 0.7 ether;
		tokenTypePrice["galactic"] = 0.8 ether;
		tokenTypePrice["ocean"] = 0.9 ether;
		tokenTypePrice["egyptian"] = 1 ether;

		for(uint i = 0; i < _operators.length; i++) {
			operators[_operators[i]] = true;
		}
	}

	// Public read-only methods
	
	function baseTokenURI() public view override returns(string memory) {
	    	// write base URI here
	    	// e.g. https://api.lympo.io/pools/assets/62 - without token index
        	return _baseTokenURI;
	}
	
	function _baseURI() internal view override returns(string memory) {
	    	// write base URI here
	    	// e.g. https://api.lympo.io/pools/assets/62 - without token index
        	return _baseTokenURI;
    	}

	function tokenTypeAndPrice(uint _tokenId) public pure override returns (string memory _tokenType, uint _price) {
		uint sum = 0;
		
		if (_tokenId > sum && _tokenId <= sum + 250) {
			_tokenType = "arctic";
			return (_tokenType, 0.2 ether);
		} else {
			sum += 250;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 200) {
			_tokenType = "robotic";
			return (_tokenType, 0.3 ether);
		} else {
			sum += 200;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 150) {
			_tokenType = "cemetery";
			return (_tokenType, 0.4 ether);
		} else {
			sum += 150;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 100) {
			_tokenType = "oriental";
			return (_tokenType, 0.5 ether);
		} else {
			sum += 100;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 90) {
			_tokenType = "island";
			return (_tokenType, 0.6 ether);
		} else {
			sum += 90;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 45) {
			_tokenType = "mayan";
			return (_tokenType, 0.7 ether);
		} else {
			sum += 45;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 30) {
			_tokenType = "galactic";
			return (_tokenType, 0.8 ether);
		} else {
			sum += 30;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 20) {
			_tokenType = "ocean";
			return (_tokenType, 0.9 ether);
		} else {
			sum += 20;
		}
		
		if (_tokenId > sum && _tokenId <= sum + 15) {
			_tokenType = "egyptian";
			return (_tokenType, 1 ether);
		} else {
			revert("token does not exist");
		}
	}

	// onlyOwner methods

    function updateBaseURI(string memory __baseURI) public onlyOwner {
    	_baseTokenURI = __baseURI;
    }

	function updateOperator(address _operatorAddress, bool _status) public onlyOwner {
		operators[_operatorAddress] = _status;
	}

	function mintTo(address _to) public override onlyOwner {
		_safeMint(_to, 1);
        tokenTypeMinted["arctic"]++;
	}

	// Mint method
	
	function mint(address _to, uint _tokenId) public override {
		require(_tokenId > 0 && _tokenId <= lastTokenId, "token does not exist");
		require(operators[msg.sender], "only operators");
		_safeMint(_to, _tokenId);
		(string memory tokenType, ) = tokenTypeAndPrice(_tokenId);
		tokenTypeMinted[tokenType]++;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"string","name":"__baseTokenURI","type":"string"},{"internalType":"address[]","name":"_operators","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenTypeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenTypeAndPrice","outputs":[{"internalType":"string","name":"_tokenType","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenTypeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenTypePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operatorAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateOperator","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191690556000600f553480156200002057600080fd5b506040516200370b3803806200370b8339810160408190526200004391620007de565b8484878282816000908051906020019062000060929190620005f7565b50805162000076906001906020840190620005f7565b505050620000936200008d6200043a60201b60201c565b62000457565b600e80546001600160a01b0319166001600160a01b038316179055620000b983620004a9565b50508351620000d191506011906020860190620005f7565b508151620000e7906012906020850190620005f7565b5060fa6014604051620000fa90620008cb565b90815260200160405180910390208190555060c860146040516200011e906200092a565b9081526020016040518091039020819055506096601460405162000142906200093d565b90815260200160405180910390208190555060646014604051620001669062000916565b908152602001604051809103902081905550605a60146040516200018a9062000962565b908152602001604051809103902081905550602d6014604051620001ae9062000905565b908152602001604051809103902081905550601e6014604051620001d290620008f1565b908152602001604051809103902081905550601480604051620001f59062000951565b908152602001604051809103902081905550600f60146040516200021990620008dd565b908152604051908190036020018120919091556103846010556702c68af0bb140000906016906200024a90620008cb565b908152602001604051809103902081905550670429d069189e0000601660405162000275906200092a565b90815260200160405180910390208190555067058d15e1762800006016604051620002a0906200093d565b9081526020016040518091039020819055506706f05b59d3b200006016604051620002cb9062000916565b908152602001604051809103902081905550670853a0d2313c00006016604051620002f69062000962565b9081526020016040518091039020819055506709b6e64a8ec600006016604051620003219062000905565b908152602001604051809103902081905550670b1a2bc2ec50000060166040516200034c90620008f1565b908152602001604051809103902081905550670c7d713b49da00006016604051620003779062000951565b908152602001604051809103902081905550670de0b6b3a76400006016604051620003a290620008dd565b9081526040519081900360200190205560005b81518110156200042d57600160136000848481518110620003e657634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620004248162000a31565b915050620003b5565b5050505050505062000a6f565b600062000451620004f360201b6200139a1760201c565b90505b90565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620004d85760405162461bcd60e51b8152600401620004cf90620009a0565b60405180910390fd5b620004e38162000551565b50600a805460ff19166001179055565b6000333014156200054c57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620004549050565b503390565b6040518060800160405280604f8152602001620036bc604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc630620005bf620005f3565b604051620005d595949392919060200162000974565b60408051601f198184030181529190528051602090910120600b5550565b4690565b8280546200060590620009f4565b90600052602060002090601f01602090048101928262000629576000855562000674565b82601f106200064457805160ff191683800117855562000674565b8280016001018555821562000674579182015b828111156200067457825182559160200191906001019062000657565b506200068292915062000686565b5090565b5b8082111562000682576000815560010162000687565b80516001600160a01b0381168114620006b557600080fd5b919050565b600082601f830112620006cb578081fd5b815160206001600160401b03821115620006e957620006e962000a59565b808202620006f9828201620009c8565b83815282810190868401838801850189101562000714578687fd5b8693505b8584101562000741576200072c816200069d565b83526001939093019291840191840162000718565b50979650505050505050565b600082601f8301126200075e578081fd5b81516001600160401b038111156200077a576200077a62000a59565b602062000790601f8301601f19168201620009c8565b8281528582848701011115620007a4578384fd5b835b83811015620007c3578581018301518282018401528201620007a6565b83811115620007d457848385840101525b5095945050505050565b60008060008060008060c08789031215620007f7578182fd5b62000802876200069d565b60208801519096506001600160401b03808211156200081f578384fd5b6200082d8a838b016200074d565b9650604089015191508082111562000843578384fd5b620008518a838b016200074d565b9550606089015191508082111562000867578384fd5b620008758a838b016200074d565b945060808901519150808211156200088b578384fd5b620008998a838b016200074d565b935060a0890151915080821115620008af578283fd5b50620008be89828a01620006ba565b9150509295509295509295565b6561726374696360d01b815260060190565b6732b3bcb83a34b0b760c11b815260080190565b6767616c616374696360c01b815260080190565b6436b0bcb0b760d91b815260050190565b671bdc9a595b9d185b60c21b815260080190565b66726f626f74696360c81b815260070190565b6763656d657465727960c01b815260080190565b6437b1b2b0b760d91b815260050190565b651a5cdb185b9960d21b815260060190565b948552602085019390935260408401919091526001600160a01b03166060830152608082015260a00190565b6020808252600e908201526d185b1c9958591e481a5b9a5d195960921b604082015260600190565b6040518181016001600160401b0381118282101715620009ec57620009ec62000a59565b604052919050565b60028104600182168062000a0957607f821691505b6020821081141562000a2b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000a5257634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b612c3d8062000a7f6000396000f3fe60806040526004361061020f5760003560e01c80636d44a3b211610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146105d1578063e985e9c5146105e6578063ea5dad7b14610606578063f2fde38b14610626578063f84ddf0b146106465761020f565b8063c87b56dd1461054e578063ce3642c91461056e578063d547cfb71461059c578063e26b1f39146105b15761020f565b80638da5cb5b116100e75780638da5cb5b146104c4578063931688cb146104d957806395d89b41146104f9578063a22cb4651461050e578063b88d4fde1461052e5761020f565b80636d44a3b21461044f57806370a082311461046f578063715018a61461048f578063755edd17146104a45761020f565b806323b872dd1161019b5780633408e4701161016a5780633408e470146103ba57806340c10f19146103cf57806342842e0e146103ef5780634f6ccce71461040f5780636352211e1461042f5761020f565b806323b872dd1461033a5780632d0335ab1461035a5780632f745c591461037a5780633367b7181461039a5761020f565b80630c53c51c116101e25780630c53c51c146102bb5780630f7e5970146102ce57806313e7c9d8146102e357806318160ddd1461030357806320379ee5146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612208565b61065b565b6040516102419190612432565b60405180910390f35b34801561025657600080fd5b5061025f610688565b6040516102419190612488565b34801561027857600080fd5b5061028c6102873660046122a2565b61071b565b60405161024191906123ac565b3480156102a557600080fd5b506102b96102b43660046121dd565b610767565b005b61025f6102c9366004612162565b6107ff565b3480156102da57600080fd5b5061025f61097f565b3480156102ef57600080fd5b506102346102fe366004612033565b61099c565b34801561030f57600080fd5b506103186109b1565b604051610241919061243d565b34801561033157600080fd5b506103186109b7565b34801561034657600080fd5b506102b9610355366004612087565b6109bd565b34801561036657600080fd5b50610318610375366004612033565b6109f5565b34801561038657600080fd5b506103186103953660046121dd565b610a10565b3480156103a657600080fd5b506103186103b536600461225c565b610a65565b3480156103c657600080fd5b50610318610a82565b3480156103db57600080fd5b506102b96103ea3660046121dd565b610a86565b3480156103fb57600080fd5b506102b961040a366004612087565b610b32565b34801561041b57600080fd5b5061031861042a3660046122a2565b610b4d565b34801561043b57600080fd5b5061028c61044a3660046122a2565b610ba8565b34801561045b57600080fd5b506102b961046a366004612131565b610bdd565b34801561047b57600080fd5b5061031861048a366004612033565b610c47565b34801561049b57600080fd5b506102b9610c8b565b3480156104b057600080fd5b506102b96104bf366004612033565b610cd6565b3480156104d057600080fd5b5061028c610d53565b3480156104e557600080fd5b506102b96104f436600461225c565b610d62565b34801561050557600080fd5b5061025f610db8565b34801561051a57600080fd5b506102b9610529366004612131565b610dc7565b34801561053a57600080fd5b506102b96105493660046120c7565b610dd9565b34801561055a57600080fd5b5061025f6105693660046122a2565b610e18565b34801561057a57600080fd5b5061058e6105893660046122a2565b610e52565b60405161024192919061249b565b3480156105a857600080fd5b5061025f611198565b3480156105bd57600080fd5b506103186105cc36600461225c565b6111a7565b3480156105dd57600080fd5b5061025f6111c4565b3480156105f257600080fd5b5061023461060136600461204f565b611252565b34801561061257600080fd5b5061031861062136600461225c565b611306565b34801561063257600080fd5b506102b9610641366004612033565b611323565b34801561065257600080fd5b50610318611394565b60006001600160e01b0319821663780e9d6360e01b14806106805750610680826113f6565b90505b919050565b60606000805461069790612aed565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390612aed565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b505050505090505b90565b600061072682611436565b61074b5760405162461bcd60e51b815260040161074290612867565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610ba8565b9050806001600160a01b0316836001600160a01b031614156107a65760405162461bcd60e51b815260040161074290612972565b806001600160a01b03166107b8611453565b6001600160a01b031614806107d457506107d481610601611453565b6107f05760405162461bcd60e51b815260040161074290612742565b6107fa8383611462565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261083d87828787876114d0565b6108595760405162461bcd60e51b815260040161074290612931565b6001600160a01b0387166000908152600c602052604090205461087d906001611576565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108cd90899033908a906123c0565b60405180910390a1600080306001600160a01b0316888a6040516020016108f5929190612302565b60408051601f198184030181529082905261090f916122e6565b6000604051808303816000865af19150503d806000811461094c576040519150601f19603f3d011682016040523d82523d6000602084013e610951565b606091505b5091509150816109735760405162461bcd60e51b8152600401610742906125c8565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60136020526000908152604090205460ff1681565b60085490565b600b5490565b6109ce6109c8611453565b82611589565b6109ea5760405162461bcd60e51b8152600401610742906129b3565b6107fa838383611606565b6001600160a01b03166000908152600c602052604090205490565b6000610a1b83610c47565b8210610a395760405162461bcd60e51b8152600401610742906124e5565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b805160208183018101805160158252928201919093012091525481565b4690565b600081118015610a9857506010548111155b610ab45760405162461bcd60e51b815260040161074290612a50565b3360009081526013602052604090205460ff16610ae35760405162461bcd60e51b8152600401610742906124bd565b610aed8282611733565b6000610af882610e52565b509050601581604051610b0b91906122e6565b9081526040519081900360200190208054906000610b2883612b28565b9190505550505050565b6107fa83838360405180602001604052806000815250610dd9565b6000610b576109b1565b8210610b755760405162461bcd60e51b815260040161074290612a04565b60088281548110610b9657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106805760405162461bcd60e51b8152600401610742906127e9565b610be5611453565b6001600160a01b0316610bf6610d53565b6001600160a01b031614610c1c5760405162461bcd60e51b8152600401610742906128b3565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016107429061279f565b506001600160a01b031660009081526003602052604090205490565b610c93611453565b6001600160a01b0316610ca4610d53565b6001600160a01b031614610cca5760405162461bcd60e51b8152600401610742906128b3565b610cd4600061174d565b565b610cde611453565b6001600160a01b0316610cef610d53565b6001600160a01b031614610d155760405162461bcd60e51b8152600401610742906128b3565b610d20816001611733565b6015604051610d2e9061237f565b9081526040519081900360200190208054906000610d4b83612b28565b919050555050565b600d546001600160a01b031690565b610d6a611453565b6001600160a01b0316610d7b610d53565b6001600160a01b031614610da15760405162461bcd60e51b8152600401610742906128b3565b8051610db4906012906020840190611f0b565b5050565b60606001805461069790612aed565b610db4610dd2611453565b838361179f565b610dea610de4611453565b83611589565b610e065760405162461bcd60e51b8152600401610742906129b3565b610e1284848484611842565b50505050565b6060610e22611198565b610e2b83611875565b604051602001610e3c929190612339565b6040516020818303038152906040529050919050565b60606000808315801590610e705750610e6c8160fa612a7e565b8411155b15610ea457505060408051808201909152600681526561726374696360d01b602082015290506702c68af0bb140000611193565b610eaf60fa82612a7e565b90508084118015610eca5750610ec68160c8612a7e565b8411155b15610eff575050604080518082019091526007815266726f626f74696360c81b60208201529050670429d069189e0000611193565b610f0a60c882612a7e565b90508084118015610f255750610f21816096612a7e565b8411155b15610f5b57505060408051808201909152600881526763656d657465727960c01b6020820152905067058d15e176280000611193565b610f66609682612a7e565b90508084118015610f815750610f7d816064612a7e565b8411155b15610fb75750506040805180820190915260088152671bdc9a595b9d185b60c21b602082015290506706f05b59d3b20000611193565b610fc2606482612a7e565b90508084118015610fdd5750610fd981605a612a7e565b8411155b156110115750506040805180820190915260068152651a5cdb185b9960d21b60208201529050670853a0d2313c0000611193565b61101c605a82612a7e565b90508084118015611037575061103381602d612a7e565b8411155b1561106a57505060408051808201909152600581526436b0bcb0b760d91b602082015290506709b6e64a8ec60000611193565b611075602d82612a7e565b90508084118015611090575061108c81601e612a7e565b8411155b156110c657505060408051808201909152600881526767616c616374696360c01b60208201529050670b1a2bc2ec500000611193565b6110d1601e82612a7e565b905080841180156110ec57506110e8816014612a7e565b8411155b1561111f57505060408051808201909152600581526437b1b2b0b760d91b60208201529050670c7d713b49da0000611193565b61112a601482612a7e565b90508084118015611145575061114181600f612a7e565b8411155b1561117b57505060408051808201909152600881526732b3bcb83a34b0b760c11b60208201529050670de0b6b3a7640000611193565b60405162461bcd60e51b815260040161074290612a50565b915091565b60606012805461069790612aed565b805160208183018101805160148252928201919093012091525481565b601180546111d190612aed565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612aed565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b505050505081565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061128b9088906004016123ac565b60206040518083038186803b1580156112a357600080fd5b505afa1580156112b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112db9190612240565b6001600160a01b031614156112f4576001915050610a5f565b6112fe8484611990565b949350505050565b805160208183018101805160168252928201919093012091525481565b61132b611453565b6001600160a01b031661133c610d53565b6001600160a01b0316146113625760405162461bcd60e51b8152600401610742906128b3565b6001600160a01b0381166113885760405162461bcd60e51b815260040161074290612582565b6113918161174d565b50565b60105481565b6000333014156113f157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506107189050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061142757506001600160e01b03198216635b5e139f60e01b145b806106805750610680826119be565b6000908152600260205260409020546001600160a01b0316151590565b600061145d61139a565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149782610ba8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114f85760405162461bcd60e51b8152600401610742906126fd565b600161150b611506876119d7565b611a35565b8386866040516000815260200160405260405161152b949392919061246a565b6020604051602081039080840390855afa15801561154d573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115828284612a7e565b9392505050565b600061159482611436565b6115b05760405162461bcd60e51b8152600401610742906126b1565b60006115bb83610ba8565b9050806001600160a01b0316846001600160a01b031614806115f65750836001600160a01b03166115eb8461071b565b6001600160a01b0316145b806112fe57506112fe8185611252565b826001600160a01b031661161982610ba8565b6001600160a01b03161461163f5760405162461bcd60e51b8152600401610742906128e8565b6001600160a01b0382166116655760405162461bcd60e51b815260040161074290612636565b611670838383611a51565b61167b600082611462565b6001600160a01b03831660009081526003602052604081208054600192906116a4908490612aaa565b90915550506001600160a01b03821660009081526003602052604081208054600192906116d2908490612a7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610db4828260405180602001604052806000815250611ada565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117d15760405162461bcd60e51b81526004016107429061267a565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611835908590612432565b60405180910390a3505050565b61184d848484611606565b61185984848484611b0d565b610e125760405162461bcd60e51b815260040161074290612530565b60608161189a57506040805180820190915260018152600360fc1b6020820152610683565b8160005b81156118c457806118ae81612b28565b91506118bd9050600a83612a96565b915061189e565b60008167ffffffffffffffff8111156118ed57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611917576020820181803683370190505b5090505b84156112fe5761192c600183612aaa565b9150611939600a86612b43565b611944906030612a7e565b60f81b81838151811061196757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611989600a86612a96565b945061191b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000604051806080016040528060438152602001612bc56043913980516020918201208351848301516040808701518051908601209051611a189501612446565b604051602081830303815290604052805190602001209050919050565b6000611a3f6109b7565b82604051602001611a18929190612391565b611a5c8383836107fa565b6001600160a01b038316611a7857611a7381611c28565b611a9b565b816001600160a01b0316836001600160a01b031614611a9b57611a9b8382611c6c565b6001600160a01b038216611ab757611ab281611d09565b6107fa565b826001600160a01b0316826001600160a01b0316146107fa576107fa8282611de2565b611ae48383611e26565b611af16000848484611b0d565b6107fa5760405162461bcd60e51b815260040161074290612530565b6000611b21846001600160a01b0316611f05565b15611c1d57836001600160a01b031663150b7a02611b3d611453565b8786866040518563ffffffff1660e01b8152600401611b5f94939291906123f5565b602060405180830381600087803b158015611b7957600080fd5b505af1925050508015611ba9575060408051601f3d908101601f19168201909252611ba691810190612224565b60015b611c03573d808015611bd7576040519150601f19603f3d011682016040523d82523d6000602084013e611bdc565b606091505b508051611bfb5760405162461bcd60e51b815260040161074290612530565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112fe565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c7984610c47565b611c839190612aaa565b600083815260076020526040902054909150808214611cd6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d1b90600190612aaa565b60008381526009602052604081205460088054939450909284908110611d5157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d8057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dc657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ded83610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e4c5760405162461bcd60e51b815260040161074290612832565b611e5581611436565b15611e725760405162461bcd60e51b8152600401610742906125ff565b611e7e60008383611a51565b6001600160a01b0382166000908152600360205260408120805460019290611ea7908490612a7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611f1790612aed565b90600052602060002090601f016020900481019282611f395760008555611f7f565b82601f10611f5257805160ff1916838001178555611f7f565b82800160010185558215611f7f579182015b82811115611f7f578251825591602001919060010190611f64565b50611f8b929150611f8f565b5090565b5b80821115611f8b5760008155600101611f90565b600067ffffffffffffffff80841115611fbf57611fbf612b83565b604051601f8501601f191681016020018281118282101715611fe357611fe3612b83565b604052848152915081838501861015611ffb57600080fd5b8484602083013760006020868301015250509392505050565b600082601f830112612024578081fd5b61158283833560208501611fa4565b600060208284031215612044578081fd5b813561158281612b99565b60008060408385031215612061578081fd5b823561206c81612b99565b9150602083013561207c81612b99565b809150509250929050565b60008060006060848603121561209b578081fd5b83356120a681612b99565b925060208401356120b681612b99565b929592945050506040919091013590565b600080600080608085870312156120dc578081fd5b84356120e781612b99565b935060208501356120f781612b99565b925060408501359150606085013567ffffffffffffffff811115612119578182fd5b61212587828801612014565b91505092959194509250565b60008060408385031215612143578182fd5b823561214e81612b99565b91506020830135801515811461207c578182fd5b600080600080600060a08688031215612179578081fd5b853561218481612b99565b9450602086013567ffffffffffffffff81111561219f578182fd5b6121ab88828901612014565b9450506040860135925060608601359150608086013560ff811681146121cf578182fd5b809150509295509295909350565b600080604083850312156121ef578182fd5b82356121fa81612b99565b946020939093013593505050565b600060208284031215612219578081fd5b813561158281612bae565b600060208284031215612235578081fd5b815161158281612bae565b600060208284031215612251578081fd5b815161158281612b99565b60006020828403121561226d578081fd5b813567ffffffffffffffff811115612283578182fd5b8201601f81018413612293578182fd5b6112fe84823560208401611fa4565b6000602082840312156122b3578081fd5b5035919050565b600081518084526122d2816020860160208601612ac1565b601f01601f19169290920160200192915050565b600082516122f8818460208701612ac1565b9190910192915050565b60008351612314818460208801612ac1565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161234b818460208801612ac1565b83519083019061235f818360208801612ac1565b6b02e6a736f6e3f777261703d360a41b9101908152600c01949350505050565b6561726374696360d01b815260060190565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906123ec908301846122ba565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612428908301846122ba565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261158260208301846122ba565b6000604082526124ae60408301856122ba565b90508260208301529392505050565b6020808252600e908201526d6f6e6c79206f70657261746f727360901b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601490820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b60008219821115612a9157612a91612b57565b500190565b600082612aa557612aa5612b6d565b500490565b600082821015612abc57612abc612b57565b500390565b60005b83811015612adc578181015183820152602001612ac4565b83811115610e125750506000910152565b600281046001821680612b0157607f821691505b60208210811415612b2257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3c57612b3c612b57565b5060010190565b600082612b5257612b52612b6d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461139157600080fd5b6001600160e01b03198116811461139157600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122081904fb6f022d06b6f280a5f4d3a99a732eec9f9070c7f83f0cd17ce24645e5464736f6c63430008000033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000a5a4f4f5448455245554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a45544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f7777772e7a6f6f7468657265756d2e636f6d2f0000000000000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f6c696e6b2e7573312e73746f726a73686172652e696f2f732f6a77756a3571336f786a7668726b626d76797532716d347a756774612f6e66742f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636d44a3b211610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146105d1578063e985e9c5146105e6578063ea5dad7b14610606578063f2fde38b14610626578063f84ddf0b146106465761020f565b8063c87b56dd1461054e578063ce3642c91461056e578063d547cfb71461059c578063e26b1f39146105b15761020f565b80638da5cb5b116100e75780638da5cb5b146104c4578063931688cb146104d957806395d89b41146104f9578063a22cb4651461050e578063b88d4fde1461052e5761020f565b80636d44a3b21461044f57806370a082311461046f578063715018a61461048f578063755edd17146104a45761020f565b806323b872dd1161019b5780633408e4701161016a5780633408e470146103ba57806340c10f19146103cf57806342842e0e146103ef5780634f6ccce71461040f5780636352211e1461042f5761020f565b806323b872dd1461033a5780632d0335ab1461035a5780632f745c591461037a5780633367b7181461039a5761020f565b80630c53c51c116101e25780630c53c51c146102bb5780630f7e5970146102ce57806313e7c9d8146102e357806318160ddd1461030357806320379ee5146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612208565b61065b565b6040516102419190612432565b60405180910390f35b34801561025657600080fd5b5061025f610688565b6040516102419190612488565b34801561027857600080fd5b5061028c6102873660046122a2565b61071b565b60405161024191906123ac565b3480156102a557600080fd5b506102b96102b43660046121dd565b610767565b005b61025f6102c9366004612162565b6107ff565b3480156102da57600080fd5b5061025f61097f565b3480156102ef57600080fd5b506102346102fe366004612033565b61099c565b34801561030f57600080fd5b506103186109b1565b604051610241919061243d565b34801561033157600080fd5b506103186109b7565b34801561034657600080fd5b506102b9610355366004612087565b6109bd565b34801561036657600080fd5b50610318610375366004612033565b6109f5565b34801561038657600080fd5b506103186103953660046121dd565b610a10565b3480156103a657600080fd5b506103186103b536600461225c565b610a65565b3480156103c657600080fd5b50610318610a82565b3480156103db57600080fd5b506102b96103ea3660046121dd565b610a86565b3480156103fb57600080fd5b506102b961040a366004612087565b610b32565b34801561041b57600080fd5b5061031861042a3660046122a2565b610b4d565b34801561043b57600080fd5b5061028c61044a3660046122a2565b610ba8565b34801561045b57600080fd5b506102b961046a366004612131565b610bdd565b34801561047b57600080fd5b5061031861048a366004612033565b610c47565b34801561049b57600080fd5b506102b9610c8b565b3480156104b057600080fd5b506102b96104bf366004612033565b610cd6565b3480156104d057600080fd5b5061028c610d53565b3480156104e557600080fd5b506102b96104f436600461225c565b610d62565b34801561050557600080fd5b5061025f610db8565b34801561051a57600080fd5b506102b9610529366004612131565b610dc7565b34801561053a57600080fd5b506102b96105493660046120c7565b610dd9565b34801561055a57600080fd5b5061025f6105693660046122a2565b610e18565b34801561057a57600080fd5b5061058e6105893660046122a2565b610e52565b60405161024192919061249b565b3480156105a857600080fd5b5061025f611198565b3480156105bd57600080fd5b506103186105cc36600461225c565b6111a7565b3480156105dd57600080fd5b5061025f6111c4565b3480156105f257600080fd5b5061023461060136600461204f565b611252565b34801561061257600080fd5b5061031861062136600461225c565b611306565b34801561063257600080fd5b506102b9610641366004612033565b611323565b34801561065257600080fd5b50610318611394565b60006001600160e01b0319821663780e9d6360e01b14806106805750610680826113f6565b90505b919050565b60606000805461069790612aed565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390612aed565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b505050505090505b90565b600061072682611436565b61074b5760405162461bcd60e51b815260040161074290612867565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610ba8565b9050806001600160a01b0316836001600160a01b031614156107a65760405162461bcd60e51b815260040161074290612972565b806001600160a01b03166107b8611453565b6001600160a01b031614806107d457506107d481610601611453565b6107f05760405162461bcd60e51b815260040161074290612742565b6107fa8383611462565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261083d87828787876114d0565b6108595760405162461bcd60e51b815260040161074290612931565b6001600160a01b0387166000908152600c602052604090205461087d906001611576565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108cd90899033908a906123c0565b60405180910390a1600080306001600160a01b0316888a6040516020016108f5929190612302565b60408051601f198184030181529082905261090f916122e6565b6000604051808303816000865af19150503d806000811461094c576040519150601f19603f3d011682016040523d82523d6000602084013e610951565b606091505b5091509150816109735760405162461bcd60e51b8152600401610742906125c8565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60136020526000908152604090205460ff1681565b60085490565b600b5490565b6109ce6109c8611453565b82611589565b6109ea5760405162461bcd60e51b8152600401610742906129b3565b6107fa838383611606565b6001600160a01b03166000908152600c602052604090205490565b6000610a1b83610c47565b8210610a395760405162461bcd60e51b8152600401610742906124e5565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b805160208183018101805160158252928201919093012091525481565b4690565b600081118015610a9857506010548111155b610ab45760405162461bcd60e51b815260040161074290612a50565b3360009081526013602052604090205460ff16610ae35760405162461bcd60e51b8152600401610742906124bd565b610aed8282611733565b6000610af882610e52565b509050601581604051610b0b91906122e6565b9081526040519081900360200190208054906000610b2883612b28565b9190505550505050565b6107fa83838360405180602001604052806000815250610dd9565b6000610b576109b1565b8210610b755760405162461bcd60e51b815260040161074290612a04565b60088281548110610b9657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106805760405162461bcd60e51b8152600401610742906127e9565b610be5611453565b6001600160a01b0316610bf6610d53565b6001600160a01b031614610c1c5760405162461bcd60e51b8152600401610742906128b3565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016107429061279f565b506001600160a01b031660009081526003602052604090205490565b610c93611453565b6001600160a01b0316610ca4610d53565b6001600160a01b031614610cca5760405162461bcd60e51b8152600401610742906128b3565b610cd4600061174d565b565b610cde611453565b6001600160a01b0316610cef610d53565b6001600160a01b031614610d155760405162461bcd60e51b8152600401610742906128b3565b610d20816001611733565b6015604051610d2e9061237f565b9081526040519081900360200190208054906000610d4b83612b28565b919050555050565b600d546001600160a01b031690565b610d6a611453565b6001600160a01b0316610d7b610d53565b6001600160a01b031614610da15760405162461bcd60e51b8152600401610742906128b3565b8051610db4906012906020840190611f0b565b5050565b60606001805461069790612aed565b610db4610dd2611453565b838361179f565b610dea610de4611453565b83611589565b610e065760405162461bcd60e51b8152600401610742906129b3565b610e1284848484611842565b50505050565b6060610e22611198565b610e2b83611875565b604051602001610e3c929190612339565b6040516020818303038152906040529050919050565b60606000808315801590610e705750610e6c8160fa612a7e565b8411155b15610ea457505060408051808201909152600681526561726374696360d01b602082015290506702c68af0bb140000611193565b610eaf60fa82612a7e565b90508084118015610eca5750610ec68160c8612a7e565b8411155b15610eff575050604080518082019091526007815266726f626f74696360c81b60208201529050670429d069189e0000611193565b610f0a60c882612a7e565b90508084118015610f255750610f21816096612a7e565b8411155b15610f5b57505060408051808201909152600881526763656d657465727960c01b6020820152905067058d15e176280000611193565b610f66609682612a7e565b90508084118015610f815750610f7d816064612a7e565b8411155b15610fb75750506040805180820190915260088152671bdc9a595b9d185b60c21b602082015290506706f05b59d3b20000611193565b610fc2606482612a7e565b90508084118015610fdd5750610fd981605a612a7e565b8411155b156110115750506040805180820190915260068152651a5cdb185b9960d21b60208201529050670853a0d2313c0000611193565b61101c605a82612a7e565b90508084118015611037575061103381602d612a7e565b8411155b1561106a57505060408051808201909152600581526436b0bcb0b760d91b602082015290506709b6e64a8ec60000611193565b611075602d82612a7e565b90508084118015611090575061108c81601e612a7e565b8411155b156110c657505060408051808201909152600881526767616c616374696360c01b60208201529050670b1a2bc2ec500000611193565b6110d1601e82612a7e565b905080841180156110ec57506110e8816014612a7e565b8411155b1561111f57505060408051808201909152600581526437b1b2b0b760d91b60208201529050670c7d713b49da0000611193565b61112a601482612a7e565b90508084118015611145575061114181600f612a7e565b8411155b1561117b57505060408051808201909152600881526732b3bcb83a34b0b760c11b60208201529050670de0b6b3a7640000611193565b60405162461bcd60e51b815260040161074290612a50565b915091565b60606012805461069790612aed565b805160208183018101805160148252928201919093012091525481565b601180546111d190612aed565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612aed565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b505050505081565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061128b9088906004016123ac565b60206040518083038186803b1580156112a357600080fd5b505afa1580156112b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112db9190612240565b6001600160a01b031614156112f4576001915050610a5f565b6112fe8484611990565b949350505050565b805160208183018101805160168252928201919093012091525481565b61132b611453565b6001600160a01b031661133c610d53565b6001600160a01b0316146113625760405162461bcd60e51b8152600401610742906128b3565b6001600160a01b0381166113885760405162461bcd60e51b815260040161074290612582565b6113918161174d565b50565b60105481565b6000333014156113f157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506107189050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061142757506001600160e01b03198216635b5e139f60e01b145b806106805750610680826119be565b6000908152600260205260409020546001600160a01b0316151590565b600061145d61139a565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149782610ba8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114f85760405162461bcd60e51b8152600401610742906126fd565b600161150b611506876119d7565b611a35565b8386866040516000815260200160405260405161152b949392919061246a565b6020604051602081039080840390855afa15801561154d573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115828284612a7e565b9392505050565b600061159482611436565b6115b05760405162461bcd60e51b8152600401610742906126b1565b60006115bb83610ba8565b9050806001600160a01b0316846001600160a01b031614806115f65750836001600160a01b03166115eb8461071b565b6001600160a01b0316145b806112fe57506112fe8185611252565b826001600160a01b031661161982610ba8565b6001600160a01b03161461163f5760405162461bcd60e51b8152600401610742906128e8565b6001600160a01b0382166116655760405162461bcd60e51b815260040161074290612636565b611670838383611a51565b61167b600082611462565b6001600160a01b03831660009081526003602052604081208054600192906116a4908490612aaa565b90915550506001600160a01b03821660009081526003602052604081208054600192906116d2908490612a7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610db4828260405180602001604052806000815250611ada565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117d15760405162461bcd60e51b81526004016107429061267a565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611835908590612432565b60405180910390a3505050565b61184d848484611606565b61185984848484611b0d565b610e125760405162461bcd60e51b815260040161074290612530565b60608161189a57506040805180820190915260018152600360fc1b6020820152610683565b8160005b81156118c457806118ae81612b28565b91506118bd9050600a83612a96565b915061189e565b60008167ffffffffffffffff8111156118ed57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611917576020820181803683370190505b5090505b84156112fe5761192c600183612aaa565b9150611939600a86612b43565b611944906030612a7e565b60f81b81838151811061196757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611989600a86612a96565b945061191b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000604051806080016040528060438152602001612bc56043913980516020918201208351848301516040808701518051908601209051611a189501612446565b604051602081830303815290604052805190602001209050919050565b6000611a3f6109b7565b82604051602001611a18929190612391565b611a5c8383836107fa565b6001600160a01b038316611a7857611a7381611c28565b611a9b565b816001600160a01b0316836001600160a01b031614611a9b57611a9b8382611c6c565b6001600160a01b038216611ab757611ab281611d09565b6107fa565b826001600160a01b0316826001600160a01b0316146107fa576107fa8282611de2565b611ae48383611e26565b611af16000848484611b0d565b6107fa5760405162461bcd60e51b815260040161074290612530565b6000611b21846001600160a01b0316611f05565b15611c1d57836001600160a01b031663150b7a02611b3d611453565b8786866040518563ffffffff1660e01b8152600401611b5f94939291906123f5565b602060405180830381600087803b158015611b7957600080fd5b505af1925050508015611ba9575060408051601f3d908101601f19168201909252611ba691810190612224565b60015b611c03573d808015611bd7576040519150601f19603f3d011682016040523d82523d6000602084013e611bdc565b606091505b508051611bfb5760405162461bcd60e51b815260040161074290612530565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112fe565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c7984610c47565b611c839190612aaa565b600083815260076020526040902054909150808214611cd6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d1b90600190612aaa565b60008381526009602052604081205460088054939450909284908110611d5157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d8057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dc657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ded83610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e4c5760405162461bcd60e51b815260040161074290612832565b611e5581611436565b15611e725760405162461bcd60e51b8152600401610742906125ff565b611e7e60008383611a51565b6001600160a01b0382166000908152600360205260408120805460019290611ea7908490612a7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611f1790612aed565b90600052602060002090601f016020900481019282611f395760008555611f7f565b82601f10611f5257805160ff1916838001178555611f7f565b82800160010185558215611f7f579182015b82811115611f7f578251825591602001919060010190611f64565b50611f8b929150611f8f565b5090565b5b80821115611f8b5760008155600101611f90565b600067ffffffffffffffff80841115611fbf57611fbf612b83565b604051601f8501601f191681016020018281118282101715611fe357611fe3612b83565b604052848152915081838501861015611ffb57600080fd5b8484602083013760006020868301015250509392505050565b600082601f830112612024578081fd5b61158283833560208501611fa4565b600060208284031215612044578081fd5b813561158281612b99565b60008060408385031215612061578081fd5b823561206c81612b99565b9150602083013561207c81612b99565b809150509250929050565b60008060006060848603121561209b578081fd5b83356120a681612b99565b925060208401356120b681612b99565b929592945050506040919091013590565b600080600080608085870312156120dc578081fd5b84356120e781612b99565b935060208501356120f781612b99565b925060408501359150606085013567ffffffffffffffff811115612119578182fd5b61212587828801612014565b91505092959194509250565b60008060408385031215612143578182fd5b823561214e81612b99565b91506020830135801515811461207c578182fd5b600080600080600060a08688031215612179578081fd5b853561218481612b99565b9450602086013567ffffffffffffffff81111561219f578182fd5b6121ab88828901612014565b9450506040860135925060608601359150608086013560ff811681146121cf578182fd5b809150509295509295909350565b600080604083850312156121ef578182fd5b82356121fa81612b99565b946020939093013593505050565b600060208284031215612219578081fd5b813561158281612bae565b600060208284031215612235578081fd5b815161158281612bae565b600060208284031215612251578081fd5b815161158281612b99565b60006020828403121561226d578081fd5b813567ffffffffffffffff811115612283578182fd5b8201601f81018413612293578182fd5b6112fe84823560208401611fa4565b6000602082840312156122b3578081fd5b5035919050565b600081518084526122d2816020860160208601612ac1565b601f01601f19169290920160200192915050565b600082516122f8818460208701612ac1565b9190910192915050565b60008351612314818460208801612ac1565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161234b818460208801612ac1565b83519083019061235f818360208801612ac1565b6b02e6a736f6e3f777261703d360a41b9101908152600c01949350505050565b6561726374696360d01b815260060190565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906123ec908301846122ba565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612428908301846122ba565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261158260208301846122ba565b6000604082526124ae60408301856122ba565b90508260208301529392505050565b6020808252600e908201526d6f6e6c79206f70657261746f727360901b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601490820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b60008219821115612a9157612a91612b57565b500190565b600082612aa557612aa5612b6d565b500490565b600082821015612abc57612abc612b57565b500390565b60005b83811015612adc578181015183820152602001612ac4565b83811115610e125750506000910152565b600281046001821680612b0157607f821691505b60208210811415612b2257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3c57612b3c612b57565b5060010190565b600082612b5257612b52612b6d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461139157600080fd5b6001600160e01b03198116811461139157600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122081904fb6f022d06b6f280a5f4d3a99a732eec9f9070c7f83f0cd17ce24645e5464736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000a5a4f4f5448455245554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a45544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f7777772e7a6f6f7468657265756d2e636f6d2f0000000000000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f6c696e6b2e7573312e73746f726a73686172652e696f2f732f6a77756a3571336f786a7668726b626d76797532716d347a756774612f6e66742f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _name (string): ZOOTHEREUM
Arg [2] : _symbol (string): ZETH
Arg [3] : _contractURI (string): https://www.zoothereum.com/
Arg [4] : __baseTokenURI (string): https://link.us1.storjshare.io/s/jwuj5q3oxjvhrkbmvyu2qm4zugta/nft/

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 5a4f4f5448455245554d00000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 5a45544800000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [11] : 68747470733a2f2f7777772e7a6f6f7468657265756d2e636f6d2f0000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [13] : 68747470733a2f2f6c696e6b2e7573312e73746f726a73686172652e696f2f73
Arg [14] : 2f6a77756a3571336f786a7668726b626d76797532716d347a756774612f6e66
Arg [15] : 742f000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60878:4199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51975:224;;;;;;;;;;-1:-1:-1;51975:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39461:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41020:221::-;;;;;;;;;;-1:-1:-1;41020:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40543:411::-;;;;;;;;;;-1:-1:-1;40543:411:0;;;;;:::i;:::-;;:::i;:::-;;11430:1151;;;;;;:::i;:::-;;:::i;778:43::-;;;;;;;;;;;;;:::i;61023:41::-;;;;;;;;;;-1:-1:-1;61023:41:0;;;;;:::i;:::-;;:::i;52615:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1787:101::-;;;;;;;;;;;;;:::i;41770:339::-;;;;;;;;;;-1:-1:-1;41770:339:0;;;;;:::i;:::-;;:::i;13007:107::-;;;;;;;;;;-1:-1:-1;13007:107:0;;;;;:::i;:::-;;:::i;52283:256::-;;;;;;;;;;-1:-1:-1;52283:256:0;;;;;:::i;:::-;;:::i;61120:46::-;;;;;;;;;;-1:-1:-1;61120:46:0;;;;;:::i;:::-;;:::i;1896:161::-;;;;;;;;;;;;;:::i;64757:317::-;;;;;;;;;;-1:-1:-1;64757:317:0;;;;;:::i;:::-;;:::i;42180:185::-;;;;;;;;;;-1:-1:-1;42180:185:0;;;;;:::i;:::-;;:::i;52805:233::-;;;;;;;;;;-1:-1:-1;52805:233:0;;;;;:::i;:::-;;:::i;39155:239::-;;;;;;;;;;-1:-1:-1;39155:239:0;;;;;:::i;:::-;;:::i;64479:128::-;;;;;;;;;;-1:-1:-1;64479:128:0;;;;;:::i;:::-;;:::i;38885:208::-;;;;;;;;;;-1:-1:-1;38885:208:0;;;;;:::i;:::-;;:::i;18367:103::-;;;;;;;;;;;;;:::i;64612:120::-;;;;;;;;;;-1:-1:-1;64612:120:0;;;;;:::i;:::-;;:::i;17716:87::-;;;;;;;;;;;;;:::i;64368:106::-;;;;;;;;;;-1:-1:-1;64368:106:0;;;;;:::i;:::-;;:::i;39630:104::-;;;;;;;;;;;;;:::i;41313:155::-;;;;;;;;;;-1:-1:-1;41313:155:0;;;;;:::i;:::-;;:::i;42436:328::-;;;;;;;;;;-1:-1:-1;42436:328:0;;;;;:::i;:::-;;:::i;59741:191::-;;;;;;;;;;-1:-1:-1;59741:191:0;;;;;:::i;:::-;;:::i;62836:1499::-;;;;;;;;;;-1:-1:-1;62836:1499:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;62405:209::-;;;;;;;;;;;;;:::i;61070:46::-;;;;;;;;;;-1:-1:-1;61070:46:0;;;;;:::i;:::-;;:::i;60959:25::-;;;;;;;;;;;;;:::i;60064:445::-;;;;;;;;;;-1:-1:-1;60064:445:0;;;;;:::i;:::-;;:::i;61170:45::-;;;;;;;;;;-1:-1:-1;61170:45:0;;;;;:::i;:::-;;:::i;18625:201::-;;;;;;;;;;-1:-1:-1;18625:201:0;;;;;:::i;:::-;;:::i;60929:23::-;;;;;;;;;;;;;:::i;51975:224::-;52077:4;-1:-1:-1;;;;;;52101:50:0;;-1:-1:-1;;;52101:50:0;;:90;;;52155:36;52179:11;52155:23;:36::i;:::-;52094:97;;51975:224;;;;:::o;39461:100::-;39515:13;39548:5;39541:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39461:100;;:::o;41020:221::-;41096:7;41124:16;41132:7;41124;:16::i;:::-;41116:73;;;;-1:-1:-1;;;41116:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;41209:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41209:24:0;;41020:221::o;40543:411::-;40624:13;40640:23;40655:7;40640:14;:23::i;:::-;40624:39;;40688:5;-1:-1:-1;;;;;40682:11:0;:2;-1:-1:-1;;;;;40682:11:0;;;40674:57;;;;-1:-1:-1;;;40674:57:0;;;;;;;:::i;:::-;40782:5;-1:-1:-1;;;;;40766:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;40766:21:0;;:62;;;;40791:37;40808:5;40815:12;:10;:12::i;40791:37::-;40744:168;;;;-1:-1:-1;;;40744:168:0;;;;;;;:::i;:::-;40925:21;40934:2;40938:7;40925:8;:21::i;:::-;40543:411;;;:::o;11430:1151::-;11688:152;;;11631:12;11688:152;;;;;-1:-1:-1;;;;;11726:19:0;;11656:29;11726:19;;;:6;:19;;;;;;;;;11688:152;;;;;;;;;;;11875:45;11733:11;11688:152;11903:4;11909;11915;11875:6;:45::i;:::-;11853:128;;;;-1:-1:-1;;;11853:128:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12070:19:0;;;;;;:6;:19;;;;;;:26;;12094:1;12070:23;:26::i;:::-;-1:-1:-1;;;;;12048:19:0;;;;;;:6;:19;;;;;;;:48;;;;12114:126;;;;;12055:11;;12186:10;;12212:17;;12114:126;:::i;:::-;;;;;;;;12351:12;12365:23;12400:4;-1:-1:-1;;;;;12392:18:0;12442:17;12461:11;12425:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12425:48:0;;;;;;;;;;12392:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12350:134;;;;12503:7;12495:48;;;;-1:-1:-1;;;12495:48:0;;;;;;;:::i;:::-;12563:10;11430:1151;-1:-1:-1;;;;;;;;11430:1151:0:o;778:43::-;;;;;;;;;;;;;;-1:-1:-1;;;778:43:0;;;;:::o;61023:41::-;;;;;;;;;;;;;;;:::o;52615:113::-;52703:10;:17;52615:113;:::o;1787:101::-;1865:15;;1787:101;:::o;41770:339::-;41965:41;41984:12;:10;:12::i;:::-;41998:7;41965:18;:41::i;:::-;41957:103;;;;-1:-1:-1;;;41957:103:0;;;;;;;:::i;:::-;42073:28;42083:4;42089:2;42093:7;42073:9;:28::i;13007:107::-;-1:-1:-1;;;;;13094:12:0;13060:13;13094:12;;;:6;:12;;;;;;;13007:107::o;52283:256::-;52380:7;52416:23;52433:5;52416:16;:23::i;:::-;52408:5;:31;52400:87;;;;-1:-1:-1;;;52400:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52505:19:0;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52283:256;;;;;:::o;61120:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1896:161::-;2010:9;1896:161;:::o;64757:317::-;64839:1;64828:8;:12;:39;;;;;64856:11;;64844:8;:23;;64828:39;64820:72;;;;-1:-1:-1;;;64820:72:0;;;;;;;:::i;:::-;64915:10;64905:21;;;;:9;:21;;;;;;;;64897:48;;;;-1:-1:-1;;;64897:48:0;;;;;;;:::i;:::-;64950:24;64960:3;64965:8;64950:9;:24::i;:::-;64980:23;65009:27;65027:8;65009:17;:27::i;:::-;64979:57;;;65041:15;65057:9;65041:26;;;;;;:::i;:::-;;;;;;;;;;;;;;:28;;;:26;:28;;;:::i;:::-;;;;;;64757:317;;;:::o;42180:185::-;42318:39;42335:4;42341:2;42345:7;42318:39;;;;;;;;;;;;:16;:39::i;52805:233::-;52880:7;52916:30;:28;:30::i;:::-;52908:5;:38;52900:95;;;;-1:-1:-1;;;52900:95:0;;;;;;;:::i;:::-;53013:10;53024:5;53013:17;;;;;;-1:-1:-1;;;53013:17:0;;;;;;;;;;;;;;;;;53006:24;;52805:233;;;:::o;39155:239::-;39227:7;39263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39263:16:0;39298:19;39290:73;;;;-1:-1:-1;;;39290:73:0;;;;;;;:::i;64479:128::-;17947:12;:10;:12::i;:::-;-1:-1:-1;;;;;17936:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17936:23:0;;17928:68;;;;-1:-1:-1;;;17928:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64565:27:0;;;::::1;;::::0;;;:9:::1;:27;::::0;;;;:37;;-1:-1:-1;;64565:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64479:128::o;38885:208::-;38957:7;-1:-1:-1;;;;;38985:19:0;;38977:74;;;;-1:-1:-1;;;38977:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39069:16:0;;;;;:9;:16;;;;;;;38885:208::o;18367:103::-;17947:12;:10;:12::i;:::-;-1:-1:-1;;;;;17936:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17936:23:0;;17928:68;;;;-1:-1:-1;;;17928:68:0;;;;;;;:::i;:::-;18432:30:::1;18459:1;18432:18;:30::i;:::-;18367:103::o:0;64612:120::-;17947:12;:10;:12::i;:::-;-1:-1:-1;;;;;17936:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17936:23:0;;17928:68;;;;-1:-1:-1;;;17928:68:0;;;;;;;:::i;:::-;64672:17:::1;64682:3;64687:1;64672:9;:17::i;:::-;64700:15;:25;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:27;;;:25:::1;:27;::::0;::::1;:::i;:::-;;;;;;64612:120:::0;:::o;17716:87::-;17789:6;;-1:-1:-1;;;;;17789:6:0;17716:87;:::o;64368:106::-;17947:12;:10;:12::i;:::-;-1:-1:-1;;;;;17936:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17936:23:0;;17928:68;;;;-1:-1:-1;;;17928:68:0;;;;;;;:::i;:::-;64441:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64368:106:::0;:::o;39630:104::-;39686:13;39719:7;39712:14;;;;;:::i;41313:155::-;41408:52;41427:12;:10;:12::i;:::-;41441:8;41451;41408:18;:52::i;42436:328::-;42611:41;42630:12;:10;:12::i;:::-;42644:7;42611:18;:41::i;:::-;42603:103;;;;-1:-1:-1;;;42603:103:0;;;;;;;:::i;:::-;42717:39;42731:4;42737:2;42741:7;42750:5;42717:13;:39::i;:::-;42436:328;;;;:::o;59741:191::-;59807:13;59864:14;:12;:14::i;:::-;59880:26;59897:8;59880:16;:26::i;:::-;59847:76;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59833:91;;59741:191;;;:::o;62836:1499::-;62908:24;62934:11;;62977:14;;;;;:39;;-1:-1:-1;63007:9:0;:3;63013;63007:9;:::i;:::-;62995:8;:21;;62977:39;62973:142;;;-1:-1:-1;;63024:21:0;;;;;;;;;;;;-1:-1:-1;;;63024:21:0;;;;;-1:-1:-1;63071:9:0;63051:30;;62973:142;63099:10;63106:3;63099:10;;:::i;:::-;;;63138:3;63127:8;:14;:39;;;;-1:-1:-1;63157:9:0;:3;63163;63157:9;:::i;:::-;63145:8;:21;;63127:39;63123:143;;;-1:-1:-1;;63174:22:0;;;;;;;;;;;;-1:-1:-1;;;63174:22:0;;;;;-1:-1:-1;63222:9:0;63202:30;;63123:143;63250:10;63257:3;63250:10;;:::i;:::-;;;63289:3;63278:8;:14;:39;;;;-1:-1:-1;63308:9:0;:3;63314;63308:9;:::i;:::-;63296:8;:21;;63278:39;63274:144;;;-1:-1:-1;;63325:23:0;;;;;;;;;;;;-1:-1:-1;;;63325:23:0;;;;;-1:-1:-1;63374:9:0;63354:30;;63274:144;63402:10;63409:3;63402:10;;:::i;:::-;;;63441:3;63430:8;:14;:39;;;;-1:-1:-1;63460:9:0;:3;63466;63460:9;:::i;:::-;63448:8;:21;;63430:39;63426:144;;;-1:-1:-1;;63477:23:0;;;;;;;;;;;;-1:-1:-1;;;63477:23:0;;;;;-1:-1:-1;63526:9:0;63506:30;;63426:144;63554:10;63561:3;63554:10;;:::i;:::-;;;63593:3;63582:8;:14;:38;;;;-1:-1:-1;63612:8:0;:3;63618:2;63612:8;:::i;:::-;63600;:20;;63582:38;63578:140;;;-1:-1:-1;;63628:21:0;;;;;;;;;;;;-1:-1:-1;;;63628:21:0;;;;;-1:-1:-1;63675:9:0;63655:30;;63578:140;63703:9;63710:2;63703:9;;:::i;:::-;;;63741:3;63730:8;:14;:38;;;;-1:-1:-1;63760:8:0;:3;63766:2;63760:8;:::i;:::-;63748;:20;;63730:38;63726:139;;;-1:-1:-1;;63776:20:0;;;;;;;;;;;;-1:-1:-1;;;63776:20:0;;;;;-1:-1:-1;63822:9:0;63802:30;;63726:139;63850:9;63857:2;63850:9;;:::i;:::-;;;63888:3;63877:8;:14;:38;;;;-1:-1:-1;63907:8:0;:3;63913:2;63907:8;:::i;:::-;63895;:20;;63877:38;63873:142;;;-1:-1:-1;;63923:23:0;;;;;;;;;;;;-1:-1:-1;;;63923:23:0;;;;;-1:-1:-1;63972:9:0;63952:30;;63873:142;64000:9;64007:2;64000:9;;:::i;:::-;;;64038:3;64027:8;:14;:38;;;;-1:-1:-1;64057:8:0;:3;64063:2;64057:8;:::i;:::-;64045;:20;;64027:38;64023:139;;;-1:-1:-1;;64073:20:0;;;;;;;;;;;;-1:-1:-1;;;64073:20:0;;;;;-1:-1:-1;64119:9:0;64099:30;;64023:139;64147:9;64154:2;64147:9;;:::i;:::-;;;64185:3;64174:8;:14;:38;;;;-1:-1:-1;64204:8:0;:3;64210:2;64204:8;:::i;:::-;64192;:20;;64174:38;64170:161;;;-1:-1:-1;;64220:23:0;;;;;;;;;;;;-1:-1:-1;;;64220:23:0;;;;;-1:-1:-1;64269:7:0;64249:28;;64170:161;64295:30;;-1:-1:-1;;;64295:30:0;;;;;;;:::i;62836:1499::-;;;;:::o;62405:209::-;62458:13;62596;62589:20;;;;;:::i;61070:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60959:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60064:445::-;60318:20;;60362:28;;-1:-1:-1;;;60362:28:0;;60189:4;;-1:-1:-1;;;;;60318:20:0;;;;60354:49;;;;60318:20;;60362:21;;:28;;60384:5;;60362:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60354:49:0;;60350:93;;;60427:4;60420:11;;;;;60350:93;60462:39;60485:5;60492:8;60462:22;:39::i;:::-;60455:46;60064:445;-1:-1:-1;;;;60064:445:0:o;61170:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18625:201::-;17947:12;:10;:12::i;:::-;-1:-1:-1;;;;;17936:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17936:23:0;;17928:68;;;;-1:-1:-1;;;17928:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18714:22:0;::::1;18706:73;;;;-1:-1:-1::0;;;18706:73:0::1;;;;;;;:::i;:::-;18790:28;18809:8;18790:18;:28::i;:::-;18625:201:::0;:::o;60929:23::-;;;;:::o;2816:650::-;2887:22;2931:10;2953:4;2931:27;2927:508;;;2975:18;2996:8;;2975:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;3035:8:0;3246:17;3240:24;-1:-1:-1;;;;;3214:134:0;;-1:-1:-1;3074:289:0;;-1:-1:-1;3074:289:0;;-1:-1:-1;3412:10:0;2816:650;:::o;38516:305::-;38618:4;-1:-1:-1;;;;;;38655:40:0;;-1:-1:-1;;;38655:40:0;;:105;;-1:-1:-1;;;;;;;38712:48:0;;-1:-1:-1;;;38712:48:0;38655:105;:158;;;;38777:36;38801:11;38777:23;:36::i;44274:127::-;44339:4;44363:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44363:16:0;:30;;;44274:127::o;60653:161::-;60743:14;60782:24;:22;:24::i;:::-;60775:31;;60653:161;:::o;48256:174::-;48331:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;48331:29:0;-1:-1:-1;;;;;48331:29:0;;;;;;;;:24;;48385:23;48331:24;48385:14;:23::i;:::-;-1:-1:-1;;;;;48376:46:0;;;;;;;;;;;48256:174;;:::o;13122:486::-;13300:4;-1:-1:-1;;;;;13325:20:0;;13317:70;;;;-1:-1:-1;;;13317:70:0;;;;;;;:::i;:::-;13441:159;13469:47;13488:27;13508:6;13488:19;:27::i;:::-;13469:18;:47::i;:::-;13535:4;13558;13581;13441:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13418:182:0;:6;-1:-1:-1;;;;;13418:182:0;;13398:202;;13122:486;;;;;;;:::o;6341:98::-;6399:7;6426:5;6430:1;6426;:5;:::i;:::-;6419:12;6341:98;-1:-1:-1;;;6341:98:0:o;44568:348::-;44661:4;44686:16;44694:7;44686;:16::i;:::-;44678:73;;;;-1:-1:-1;;;44678:73:0;;;;;;;:::i;:::-;44762:13;44778:23;44793:7;44778:14;:23::i;:::-;44762:39;;44831:5;-1:-1:-1;;;;;44820:16:0;:7;-1:-1:-1;;;;;44820:16:0;;:51;;;;44864:7;-1:-1:-1;;;;;44840:31:0;:20;44852:7;44840:11;:20::i;:::-;-1:-1:-1;;;;;44840:31:0;;44820:51;:87;;;;44875:32;44892:5;44899:7;44875:16;:32::i;47560:578::-;47719:4;-1:-1:-1;;;;;47692:31:0;:23;47707:7;47692:14;:23::i;:::-;-1:-1:-1;;;;;47692:31:0;;47684:85;;;;-1:-1:-1;;;47684:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47788:16:0;;47780:65;;;;-1:-1:-1;;;47780:65:0;;;;;;;:::i;:::-;47858:39;47879:4;47885:2;47889:7;47858:20;:39::i;:::-;47962:29;47979:1;47983:7;47962:8;:29::i;:::-;-1:-1:-1;;;;;48004:15:0;;;;;;:9;:15;;;;;:20;;48023:1;;48004:15;:20;;48023:1;;48004:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48035:13:0;;;;;;:9;:13;;;;;:18;;48052:1;;48035:13;:18;;48052:1;;48035:18;:::i;:::-;;;;-1:-1:-1;;48064:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48064:21:0;-1:-1:-1;;;;;48064:21:0;;;;;;;;;48103:27;;48064:16;;48103:27;;;;;;;47560:578;;;:::o;45258:110::-;45334:26;45344:2;45348:7;45334:26;;;;;;;;;;;;:9;:26::i;18986:191::-;19079:6;;;-1:-1:-1;;;;;19096:17:0;;;-1:-1:-1;;;;;;19096:17:0;;;;;;;19129:40;;19079:6;;;19096:17;19079:6;;19129:40;;19060:16;;19129:40;18986:191;;:::o;48572:315::-;48727:8;-1:-1:-1;;;;;48718:17:0;:5;-1:-1:-1;;;;;48718:17:0;;;48710:55;;;;-1:-1:-1;;;48710:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48776:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;48776:46:0;;;;;;;48838:41;;;;;48776:46;;48838:41;:::i;:::-;;;;;;;;48572:315;;;:::o;43646:::-;43803:28;43813:4;43819:2;43823:7;43803:9;:28::i;:::-;43850:48;43873:4;43879:2;43883:7;43892:5;43850:22;:48::i;:::-;43842:111;;;;-1:-1:-1;;;43842:111:0;;;;;;;:::i;13986:723::-;14042:13;14263:10;14259:53;;-1:-1:-1;14290:10:0;;;;;;;;;;;;-1:-1:-1;;;14290:10:0;;;;;;14259:53;14337:5;14322:12;14378:78;14385:9;;14378:78;;14411:8;;;;:::i;:::-;;-1:-1:-1;14434:10:0;;-1:-1:-1;14442:2:0;14434:10;;:::i;:::-;;;14378:78;;;14466:19;14498:6;14488:17;;;;;;-1:-1:-1;;;14488:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14488:17:0;;14466:39;;14516:154;14523:10;;14516:154;;14550:11;14560:1;14550:11;;:::i;:::-;;-1:-1:-1;14619:10:0;14627:2;14619:5;:10;:::i;:::-;14606:24;;:2;:24;:::i;:::-;14593:39;;14576:6;14583;14576:14;;;;;;-1:-1:-1;;;14576:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;14576:56:0;;;;;;;;-1:-1:-1;14647:11:0;14656:2;14647:11;;:::i;:::-;;;14516:154;;41539:164;-1:-1:-1;;;;;41660:25:0;;;41636:4;41660:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41539:164::o;30180:157::-;-1:-1:-1;;;;;;30289:40:0;;-1:-1:-1;;;30289:40:0;30180:157;;;:::o;12589:410::-;12699:7;10766:100;;;;;;;;;;;;;;;;;10746:127;;;;;;;12853:12;;12888:11;;;;12932:24;;;;;12922:35;;;;;;12772:204;;;;;;:::i;:::-;;;;;;;;;;;;;12744:247;;;;;;12724:267;;12589:410;;;:::o;2426:258::-;2525:7;2627:20;:18;:20::i;:::-;2649:11;2598:63;;;;;;;;;:::i;53651:589::-;53795:45;53822:4;53828:2;53832:7;53795:26;:45::i;:::-;-1:-1:-1;;;;;53857:18:0;;53853:187;;53892:40;53924:7;53892:31;:40::i;:::-;53853:187;;;53962:2;-1:-1:-1;;;;;53954:10:0;:4;-1:-1:-1;;;;;53954:10:0;;53950:90;;53981:47;54014:4;54020:7;53981:32;:47::i;:::-;-1:-1:-1;;;;;54054:16:0;;54050:183;;54087:45;54124:7;54087:36;:45::i;:::-;54050:183;;;54160:4;-1:-1:-1;;;;;54154:10:0;:2;-1:-1:-1;;;;;54154:10:0;;54150:83;;54181:40;54209:2;54213:7;54181:27;:40::i;45595:321::-;45725:18;45731:2;45735:7;45725:5;:18::i;:::-;45776:54;45807:1;45811:2;45815:7;45824:5;45776:22;:54::i;:::-;45754:154;;;;-1:-1:-1;;;45754:154:0;;;;;;;:::i;49452:799::-;49607:4;49628:15;:2;-1:-1:-1;;;;;49628:13:0;;:15::i;:::-;49624:620;;;49680:2;-1:-1:-1;;;;;49664:36:0;;49701:12;:10;:12::i;:::-;49715:4;49721:7;49730:5;49664:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49664:72:0;;;;;;;;-1:-1:-1;;49664:72:0;;;;;;;;;;;;:::i;:::-;;;49660:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49906:13:0;;49902:272;;49949:60;;-1:-1:-1;;;49949:60:0;;;;;;;:::i;49902:272::-;50124:6;50118:13;50109:6;50105:2;50101:15;50094:38;49660:529;-1:-1:-1;;;;;;49787:51:0;-1:-1:-1;;;49787:51:0;;-1:-1:-1;49780:58:0;;49624:620;-1:-1:-1;50228:4:0;49452:799;;;;;;:::o;54963:164::-;55067:10;:17;;55040:24;;;;:15;:24;;;;;:44;;;55095:24;;;;;;;;;;;;54963:164::o;55754:988::-;56020:22;56070:1;56045:22;56062:4;56045:16;:22::i;:::-;:26;;;;:::i;:::-;56082:18;56103:26;;;:17;:26;;;;;;56020:51;;-1:-1:-1;56236:28:0;;;56232:328;;-1:-1:-1;;;;;56303:18:0;;56281:19;56303:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56354:30;;;;;;:44;;;56471:30;;:17;:30;;;;;:43;;;56232:328;-1:-1:-1;56656:26:0;;;;:17;:26;;;;;;;;56649:33;;;-1:-1:-1;;;;;56700:18:0;;;;;:12;:18;;;;;:34;;;;;;;56693:41;55754:988::o;57037:1079::-;57315:10;:17;57290:22;;57315:21;;57335:1;;57315:21;:::i;:::-;57347:18;57368:24;;;:15;:24;;;;;;57741:10;:26;;57290:46;;-1:-1:-1;57368:24:0;;57290:46;;57741:26;;;;-1:-1:-1;;;57741:26:0;;;;;;;;;;;;;;;;;57719:48;;57805:11;57780:10;57791;57780:22;;;;;;-1:-1:-1;;;57780:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;57885:28;;;:15;:28;;;;;;;:41;;;58057:24;;;;;58050:31;58092:10;:16;;;;;-1:-1:-1;;;58092:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;57037:1079;;;;:::o;54541:221::-;54626:14;54643:20;54660:2;54643:16;:20::i;:::-;-1:-1:-1;;;;;54674:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;54719:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54541:221:0:o;46252:382::-;-1:-1:-1;;;;;46332:16:0;;46324:61;;;;-1:-1:-1;;;46324:61:0;;;;;;;:::i;:::-;46405:16;46413:7;46405;:16::i;:::-;46404:17;46396:58;;;;-1:-1:-1;;;46396:58:0;;;;;;;:::i;:::-;46467:45;46496:1;46500:2;46504:7;46467:20;:45::i;:::-;-1:-1:-1;;;;;46525:13:0;;;;;;:9;:13;;;;;:18;;46542:1;;46525:13;:18;;46542:1;;46525:18;:::i;:::-;;;;-1:-1:-1;;46554:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46554:21:0;-1:-1:-1;;;;;46554:21:0;;;;;;;;46593:33;;46554:16;;;46593:33;;46554:16;;46593:33;46252:382;;:::o;20012:387::-;20335:20;20383:8;;;20012:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:232::-;;723:3;716:4;708:6;704:17;700:27;690:2;;745:5;738;731:20;690:2;771:81;848:3;839:6;826:20;819:4;811:6;807:17;771:81;:::i;863:259::-;;975:2;963:9;954:7;950:23;946:32;943:2;;;996:6;988;981:22;943:2;1040:9;1027:23;1059:33;1086:5;1059:33;:::i;1127:402::-;;;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:33;1367:5;1340:33;:::i;:::-;1392:5;-1:-1:-1;1449:2:1;1434:18;;1421:32;1462:35;1421:32;1462:35;:::i;:::-;1516:7;1506:17;;;1214:315;;;;;:::o;1534:470::-;;;;1680:2;1668:9;1659:7;1655:23;1651:32;1648:2;;;1701:6;1693;1686:22;1648:2;1745:9;1732:23;1764:33;1791:5;1764:33;:::i;:::-;1816:5;-1:-1:-1;1873:2:1;1858:18;;1845:32;1886:35;1845:32;1886:35;:::i;:::-;1638:366;;1940:7;;-1:-1:-1;;;1994:2:1;1979:18;;;;1966:32;;1638:366::o;2009:691::-;;;;;2181:3;2169:9;2160:7;2156:23;2152:33;2149:2;;;2203:6;2195;2188:22;2149:2;2247:9;2234:23;2266:33;2293:5;2266:33;:::i;:::-;2318:5;-1:-1:-1;2375:2:1;2360:18;;2347:32;2388:35;2347:32;2388:35;:::i;:::-;2442:7;-1:-1:-1;2496:2:1;2481:18;;2468:32;;-1:-1:-1;2551:2:1;2536:18;;2523:32;2578:18;2567:30;;2564:2;;;2615:6;2607;2600:22;2564:2;2643:51;2686:7;2677:6;2666:9;2662:22;2643:51;:::i;:::-;2633:61;;;2139:561;;;;;;;:::o;2705:438::-;;;2831:2;2819:9;2810:7;2806:23;2802:32;2799:2;;;2852:6;2844;2837:22;2799:2;2896:9;2883:23;2915:33;2942:5;2915:33;:::i;:::-;2967:5;-1:-1:-1;3024:2:1;3009:18;;2996:32;3066:15;;3059:23;3047:36;;3037:2;;3102:6;3094;3087:22;3148:792;;;;;;3335:3;3323:9;3314:7;3310:23;3306:33;3303:2;;;3357:6;3349;3342:22;3303:2;3401:9;3388:23;3420:33;3447:5;3420:33;:::i;:::-;3472:5;-1:-1:-1;3528:2:1;3513:18;;3500:32;3555:18;3544:30;;3541:2;;;3592:6;3584;3577:22;3541:2;3620:51;3663:7;3654:6;3643:9;3639:22;3620:51;:::i;:::-;3610:61;;;3718:2;3707:9;3703:18;3690:32;3680:42;;3769:2;3758:9;3754:18;3741:32;3731:42;;3825:3;3814:9;3810:19;3797:33;3874:4;3865:7;3861:18;3852:7;3849:31;3839:2;;3899:6;3891;3884:22;3839:2;3927:7;3917:17;;;3293:647;;;;;;;;:::o;3945:327::-;;;4074:2;4062:9;4053:7;4049:23;4045:32;4042:2;;;4095:6;4087;4080:22;4042:2;4139:9;4126:23;4158:33;4185:5;4158:33;:::i;:::-;4210:5;4262:2;4247:18;;;;4234:32;;-1:-1:-1;;;4032:240:1:o;4277:257::-;;4388:2;4376:9;4367:7;4363:23;4359:32;4356:2;;;4409:6;4401;4394:22;4356:2;4453:9;4440:23;4472:32;4498:5;4472:32;:::i;4539:261::-;;4661:2;4649:9;4640:7;4636:23;4632:32;4629:2;;;4682:6;4674;4667:22;4629:2;4719:9;4713:16;4738:32;4764:5;4738:32;:::i;4805:292::-;;4957:2;4945:9;4936:7;4932:23;4928:32;4925:2;;;4978:6;4970;4963:22;4925:2;5015:9;5009:16;5034:33;5061:5;5034:33;:::i;5102:482::-;;5224:2;5212:9;5203:7;5199:23;5195:32;5192:2;;;5245:6;5237;5230:22;5192:2;5290:9;5277:23;5323:18;5315:6;5312:30;5309:2;;;5360:6;5352;5345:22;5309:2;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:2:1;;5475:6;5467;5460:22;5419:2;5503:75;5570:7;5565:2;5552:16;5547:2;5543;5539:11;5503:75;:::i;5589:190::-;;5701:2;5689:9;5680:7;5676:23;5672:32;5669:2;;;5722:6;5714;5707:22;5669:2;-1:-1:-1;5750:23:1;;5659:120;-1:-1:-1;5659:120:1:o;5784:259::-;;5865:5;5859:12;5892:6;5887:3;5880:19;5908:63;5964:6;5957:4;5952:3;5948:14;5941:4;5934:5;5930:16;5908:63;:::i;:::-;6025:2;6004:15;-1:-1:-1;;6000:29:1;5991:39;;;;6032:4;5987:50;;5835:208;-1:-1:-1;;5835:208:1:o;6048:274::-;;6215:6;6209:13;6231:53;6277:6;6272:3;6265:4;6257:6;6253:17;6231:53;:::i;:::-;6300:16;;;;;6185:137;-1:-1:-1;;6185:137:1:o;6327:415::-;;6522:6;6516:13;6538:53;6584:6;6579:3;6572:4;6564:6;6560:17;6538:53;:::i;:::-;6660:2;6656:15;;;;-1:-1:-1;;6652:53:1;6613:16;;;;6638:68;;;6733:2;6722:14;;6492:250;-1:-1:-1;;6492:250:1:o;7028:645::-;;7346:6;7340:13;7362:53;7408:6;7403:3;7396:4;7388:6;7384:17;7362:53;:::i;:::-;7478:13;;7437:16;;;;7500:57;7478:13;7437:16;7534:4;7522:17;;7500:57;:::i;:::-;-1:-1:-1;;;7579:20:1;;7608:29;;;7664:2;7653:14;;7316:357;-1:-1:-1;;;;7316:357:1:o;7678:256::-;-1:-1:-1;;;7880:21:1;;7926:1;7917:11;;7870:64::o;7939:392::-;-1:-1:-1;;;8197:27:1;;8249:1;8240:11;;8233:27;;;;8285:2;8276:12;;8269:28;8322:2;8313:12;;8187:144::o;8336:203::-;-1:-1:-1;;;;;8500:32:1;;;;8482:51;;8470:2;8455:18;;8437:102::o;8544:433::-;-1:-1:-1;;;;;8801:15:1;;;8783:34;;8853:15;;8848:2;8833:18;;8826:43;8905:2;8900;8885:18;;8878:30;;;8544:433;;8925:46;;8952:18;;8944:6;8925:46;:::i;:::-;8917:54;8735:242;-1:-1:-1;;;;;8735:242:1:o;8982:490::-;-1:-1:-1;;;;;9251:15:1;;;9233:34;;9303:15;;9298:2;9283:18;;9276:43;9350:2;9335:18;;9328:34;;;9398:3;9393:2;9378:18;;9371:31;;;8982:490;;9419:47;;9446:19;;9438:6;9419:47;:::i;:::-;9411:55;9185:287;-1:-1:-1;;;;;;9185:287:1:o;9477:187::-;9642:14;;9635:22;9617:41;;9605:2;9590:18;;9572:92::o;9669:177::-;9815:25;;;9803:2;9788:18;;9770:76::o;9851:417::-;10082:25;;;10138:2;10123:18;;10116:34;;;;-1:-1:-1;;;;;10186:32:1;10181:2;10166:18;;10159:60;10250:2;10235:18;;10228:34;10069:3;10054:19;;10036:232::o;10273:398::-;10500:25;;;10573:4;10561:17;;;;10556:2;10541:18;;10534:45;10610:2;10595:18;;10588:34;10653:2;10638:18;;10631:34;10487:3;10472:19;;10454:217::o;10676:219::-;;10823:2;10812:9;10805:21;10843:46;10885:2;10874:9;10870:18;10862:6;10843:46;:::i;11126:292::-;;11303:2;11292:9;11285:21;11323:46;11365:2;11354:9;11350:18;11342:6;11323:46;:::i;:::-;11315:54;;11405:6;11400:2;11389:9;11385:18;11378:34;11275:143;;;;;:::o;11423:338::-;11625:2;11607:21;;;11664:2;11644:18;;;11637:30;-1:-1:-1;;;11698:2:1;11683:18;;11676:44;11752:2;11737:18;;11597:164::o;11766:407::-;11968:2;11950:21;;;12007:2;11987:18;;;11980:30;12046:34;12041:2;12026:18;;12019:62;-1:-1:-1;;;12112:2:1;12097:18;;12090:41;12163:3;12148:19;;11940:233::o;12178:414::-;12380:2;12362:21;;;12419:2;12399:18;;;12392:30;12458:34;12453:2;12438:18;;12431:62;-1:-1:-1;;;12524:2:1;12509:18;;12502:48;12582:3;12567:19;;12352:240::o;12597:402::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;12877:34;12872:2;12857:18;;12850:62;-1:-1:-1;;;12943:2:1;12928:18;;12921:36;12989:3;12974:19;;12771:228::o;13004:352::-;13206:2;13188:21;;;13245:2;13225:18;;;13218:30;13284;13279:2;13264:18;;13257:58;13347:2;13332:18;;13178:178::o;13361:352::-;13563:2;13545:21;;;13602:2;13582:18;;;13575:30;13641;13636:2;13621:18;;13614:58;13704:2;13689:18;;13535:178::o;13718:400::-;13920:2;13902:21;;;13959:2;13939:18;;;13932:30;13998:34;13993:2;13978:18;;13971:62;-1:-1:-1;;;14064:2:1;14049:18;;14042:34;14108:3;14093:19;;13892:226::o;14123:349::-;14325:2;14307:21;;;14364:2;14344:18;;;14337:30;14403:27;14398:2;14383:18;;14376:55;14463:2;14448:18;;14297:175::o;14477:408::-;14679:2;14661:21;;;14718:2;14698:18;;;14691:30;14757:34;14752:2;14737:18;;14730:62;-1:-1:-1;;;14823:2:1;14808:18;;14801:42;14875:3;14860:19;;14651:234::o;14890:401::-;15092:2;15074:21;;;15131:2;15111:18;;;15104:30;15170:34;15165:2;15150:18;;15143:62;-1:-1:-1;;;15236:2:1;15221:18;;15214:35;15281:3;15266:19;;15064:227::o;15296:420::-;15498:2;15480:21;;;15537:2;15517:18;;;15510:30;15576:34;15571:2;15556:18;;15549:62;15647:26;15642:2;15627:18;;15620:54;15706:3;15691:19;;15470:246::o;15721:406::-;15923:2;15905:21;;;15962:2;15942:18;;;15935:30;16001:34;15996:2;15981:18;;15974:62;-1:-1:-1;;;16067:2:1;16052:18;;16045:40;16117:3;16102:19;;15895:232::o;16132:405::-;16334:2;16316:21;;;16373:2;16353:18;;;16346:30;16412:34;16407:2;16392:18;;16385:62;-1:-1:-1;;;16478:2:1;16463:18;;16456:39;16527:3;16512:19;;16306:231::o;16542:356::-;16744:2;16726:21;;;16763:18;;;16756:30;16822:34;16817:2;16802:18;;16795:62;16889:2;16874:18;;16716:182::o;16903:408::-;17105:2;17087:21;;;17144:2;17124:18;;;17117:30;17183:34;17178:2;17163:18;;17156:62;-1:-1:-1;;;17249:2:1;17234:18;;17227:42;17301:3;17286:19;;17077:234::o;17316:356::-;17518:2;17500:21;;;17537:18;;;17530:30;17596:34;17591:2;17576:18;;17569:62;17663:2;17648:18;;17490:182::o;17677:405::-;17879:2;17861:21;;;17918:2;17898:18;;;17891:30;17957:34;17952:2;17937:18;;17930:62;-1:-1:-1;;;18023:2:1;18008:18;;18001:39;18072:3;18057:19;;17851:231::o;18087:397::-;18289:2;18271:21;;;18328:2;18308:18;;;18301:30;18367:34;18362:2;18347:18;;18340:62;-1:-1:-1;;;18433:2:1;18418:18;;18411:31;18474:3;18459:19;;18261:223::o;18489:397::-;18691:2;18673:21;;;18730:2;18710:18;;;18703:30;18769:34;18764:2;18749:18;;18742:62;-1:-1:-1;;;18835:2:1;18820:18;;18813:31;18876:3;18861:19;;18663:223::o;18891:413::-;19093:2;19075:21;;;19132:2;19112:18;;;19105:30;19171:34;19166:2;19151:18;;19144:62;-1:-1:-1;;;19237:2:1;19222:18;;19215:47;19294:3;19279:19;;19065:239::o;19309:408::-;19511:2;19493:21;;;19550:2;19530:18;;;19523:30;19589:34;19584:2;19569:18;;19562:62;-1:-1:-1;;;19655:2:1;19640:18;;19633:42;19707:3;19692:19;;19483:234::o;19722:344::-;19924:2;19906:21;;;19963:2;19943:18;;;19936:30;-1:-1:-1;;;19997:2:1;19982:18;;19975:50;20057:2;20042:18;;19896:170::o;20253:128::-;;20324:1;20320:6;20317:1;20314:13;20311:2;;;20330:18;;:::i;:::-;-1:-1:-1;20366:9:1;;20301:80::o;20386:120::-;;20452:1;20442:2;;20457:18;;:::i;:::-;-1:-1:-1;20491:9:1;;20432:74::o;20511:125::-;;20579:1;20576;20573:8;20570:2;;;20584:18;;:::i;:::-;-1:-1:-1;20621:9:1;;20560:76::o;20641:258::-;20713:1;20723:113;20737:6;20734:1;20731:13;20723:113;;;20813:11;;;20807:18;20794:11;;;20787:39;20759:2;20752:10;20723:113;;;20854:6;20851:1;20848:13;20845:2;;;-1:-1:-1;;20889:1:1;20871:16;;20864:27;20694:205::o;20904:380::-;20989:1;20979:12;;21036:1;21026:12;;;21047:2;;21101:4;21093:6;21089:17;21079:27;;21047:2;21154;21146:6;21143:14;21123:18;21120:38;21117:2;;;21200:10;21195:3;21191:20;21188:1;21181:31;21235:4;21232:1;21225:15;21263:4;21260:1;21253:15;21117:2;;20959:325;;;:::o;21289:135::-;;-1:-1:-1;;21349:17:1;;21346:2;;;21369:18;;:::i;:::-;-1:-1:-1;21416:1:1;21405:13;;21336:88::o;21429:112::-;;21487:1;21477:2;;21492:18;;:::i;:::-;-1:-1:-1;21526:9:1;;21467:74::o;21546:127::-;21607:10;21602:3;21598:20;21595:1;21588:31;21638:4;21635:1;21628:15;21662:4;21659:1;21652:15;21678:127;21739:10;21734:3;21730:20;21727:1;21720:31;21770:4;21767:1;21760:15;21794:4;21791:1;21784:15;21810:127;21871:10;21866:3;21862:20;21859:1;21852:31;21902:4;21899:1;21892:15;21926:4;21923:1;21916:15;21942:133;-1:-1:-1;;;;;22019:31:1;;22009:42;;21999:2;;22065:1;22062;22055:12;22080:133;-1:-1:-1;;;;;;22156:32:1;;22146:43;;22136:2;;22203:1;22200;22193:12

Swarm Source

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