ETH Price: $3,278.75 (-2.49%)
 

Overview

Max Total Supply

968 NTpunks

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NTpunks
0x475bdca8aaf3be5bb2e977837e8d376c54e56d73
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:
NeoTokyoPunks

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slots contents, replace the bits taken up by the boolean, and then write
    // back. This is the compilers defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transactions gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// 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 compilers built in overflow checks.

/**
 * @dev Wrappers over Soliditys 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 Soliditys `+` 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 Soliditys `-` 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 Soliditys `*` 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 Soliditys `/` 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 Soliditys `%` 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 Soliditys `-` 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 Soliditys `/` 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 Soliditys `%` 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;
        }
    }
}

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// OpenZeppelin Contracts v4.4.0 (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 OraclizeAPIs 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);
    }
}

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @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 {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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 tokenId < _owners.length && _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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _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 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 {}
}

pragma solidity ^0.8.7;

/**
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.11;
pragma abicoder v2;

contract NeoTokyoPunks is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  using MerkleProof for bytes32[];
  bytes32 public whitelistMerkleRoot;
  
  bool public preSaleIsActive = false;
  bool public saleIsActive = false;
  uint256 public tokenPrice = 20000000000000000;
  
  uint public constant MAX_TOKEN_PER_TXN = 11;
  uint256 public constant MAX_TOKENS = 10000;
  uint256 public constant COLLECTOR_ALLOWANCE = 3;
  uint public tokenReserve = 175;

  address public collectionWhitelist = address(0x301144b43d8dCBa1b3E9F70eD7338d0751d700A3);
  mapping(address => uint256) private allowance;
  string public baseURI;
    
  constructor() ERC721("NeoTokyoPunks", "NTpunks") {
    setBaseURI("https://blam.io/api/neotokyopunks/token/");
  }

  function updateTokenPrice(uint256 newPrice) public onlyOwner {
    require(!saleIsActive, "Sale must be inactive to change token price");
    tokenPrice = newPrice;
  }

  function dependancyMint(uint256 tokenId) internal view returns (bool) {
    return IERC721(collectionWhitelist).ownerOf(tokenId) == _msgSender();
  }

  function collectorWhitelist(uint256 ownedTokenId, uint256 numberOfTokens) public payable nonReentrant {
    require(preSaleIsActive, "Pre sale needs to be active to mint.");
    require(dependancyMint(ownedTokenId), "Requires owning a token from another collection.");
    require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply.");
    require(allowance[_msgSender()].add(numberOfTokens) < COLLECTOR_ALLOWANCE, "Exceeded whitelist allowance.");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether sent is not correct");

    for (uint i = 0; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
    allowance[_msgSender()] += numberOfTokens;
  }
  
  function withdraw() public onlyOwner nonReentrant {
    uint256 balance = address(this).balance;
    require(balance > 0);

    address owner = payable(_msgSender());
    address payoutAddress1 = payable(0xAc01B61D659bD72b120DB7c5289BBFc020771943);
    uint256 payoutPayment1 = balance.mul(2).div(100);
    address payoutAddress2 = payable(0x8fc1F1F48cBB2e4A0f1dfeB9e6019606b307C3c4);
    uint256 payoutPayment2 = balance.mul(5).div(100);
    
    (bool success1, ) = payoutAddress1.call{value: payoutPayment1}("");
    require(success1, "Failed to send.");
    
    (bool success2, ) = payoutAddress2.call{value: payoutPayment2}("");
    require(success2, "Failed to send.");
    

    (bool ownerSuccess, ) = owner.call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }
  
  function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner {        
    uint supply = totalSupply();
    require(_reserveAmount > 0 && _reserveAmount <= tokenReserve, "Not enough reserve left for team");
    for (uint i = 0; i < _reserveAmount; i++) {
        _safeMint(_to, supply + i);
    }
    tokenReserve = tokenReserve.sub(_reserveAmount);
  }
  
  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function flipPreSaleState() public onlyOwner {
    preSaleIsActive = !preSaleIsActive;
  }
  
  function mintToken(uint numberOfTokens) public payable nonReentrant {
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens < MAX_TOKEN_PER_TXN, "The max mint per transaction is 10");
    
    require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
  }

  function whitelistMint(uint256 numberOfTokens, uint256 allowed, bytes32[] memory proof) public payable nonReentrant {
    require(preSaleIsActive, "Pre-sale not started or has ended");
    require(
      _verify(_leaf(_msgSender(), allowed), proof),
      "Your address is not whitelisted"
    );
    require(allowance[_msgSender()] + numberOfTokens <= allowed, "Exceeds wallet allowance");
    require(msg.value == 0, "Ether sent is not correct");

    for (uint i = 0; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
    allowance[_msgSender()] += numberOfTokens;
  }

  function _leaf(address account, uint256 count) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(account, count));
  }

  function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
    return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
  }

  function setRoot(bytes32 root) external onlyOwner {
    whitelistMerkleRoot = root;
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":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":"COLLECTOR_ALLOWANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionWhitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownedTokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"collectorWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenReserve","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":"uint256","name":"newPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"allowed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805461ffff1916905566470de4df82000060095560af600a55600b80546001600160a01b03191673301144b43d8dcba1b3e9f70ed7338d0751d700a31790553480156200005257600080fd5b50604080518082018252600d81526c4e656f546f6b796f50756e6b7360981b6020808301918252835180850190945260078452664e5470756e6b7360c81b908401528151919291620000a791600091620001da565b508051620000bd906001906020840190620001da565b505050620000da620000d46200010c60201b60201c565b62000110565b60016006819055506200010660405180606001604052806028815260200162002e326028913962000162565b620002bd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d690600d906020840190620001da565b5050565b828054620001e89062000280565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b600181811c908216806200029557607f821691505b60208210811415620002b757634e487b7160e01b600052602260045260246000fd5b50919050565b612b6580620002cd6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c4be5b59116100ab578063e985e9c51161006f578063e985e9c51461060b578063eb8d244414610654578063f032554914610673578063f2fde38b14610688578063f47c84c5146106a857600080fd5b8063c4be5b591461058f578063c634d032146105a2578063c87b56dd146105b5578063cbcb3171146105d5578063dab5f340146105eb57600080fd5b806395d89b41116100f257806395d89b411461050f5780639e780ed214610524578063a22cb46514610539578063aa98e0c614610559578063b88d4fde1461056f57600080fd5b8063715018a61461049357806378cf19e9146104a85780637c34ea63146104c85780637ff9b596146104db5780638da5cb5b146104f157600080fd5b806334918dfd116101bc578063634da63a11610180578063634da63a146104095780636352211e1461041e578063676c0d771461043e5780636c0360eb1461045e57806370a082311461047357600080fd5b806334918dfd1461037f5780633ccfd60b1461039457806342842e0e146103a95780634f6ccce7146103c957806355f804b3146103e957600080fd5b806318160ddd1161020357806318160ddd146102e65780631f0234d81461030557806323b872dd1461031f578063296020ba1461033f5780632f745c591461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461239c565b6106be565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6106e9565b6040516102619190612411565b34801561029857600080fd5b506102ac6102a7366004612424565b61077b565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612452565b610808565b005b3480156102f257600080fd5b506002545b604051908152602001610261565b34801561031157600080fd5b506008546102559060ff1681565b34801561032b57600080fd5b506102e461033a36600461247e565b61091e565b34801561034b57600080fd5b50600b546102ac906001600160a01b031681565b34801561036b57600080fd5b506102f761037a366004612452565b61094f565b34801561038b57600080fd5b506102e4610a02565b3480156103a057600080fd5b506102e4610a49565b3480156103b557600080fd5b506102e46103c436600461247e565b610cdc565b3480156103d557600080fd5b506102f76103e4366004612424565b610cf7565b3480156103f557600080fd5b506102e461040436600461255e565b610d64565b34801561041557600080fd5b506102f7600b81565b34801561042a57600080fd5b506102ac610439366004612424565b610da5565b34801561044a57600080fd5b506102e4610459366004612424565b610e31565b34801561046a57600080fd5b5061027f610ecc565b34801561047f57600080fd5b506102f761048e3660046125a7565b610f5a565b34801561049f57600080fd5b506102e4611028565b3480156104b457600080fd5b506102e46104c3366004612452565b61105e565b6102e46104d63660046125c4565b611139565b3480156104e757600080fd5b506102f760095481565b3480156104fd57600080fd5b506005546001600160a01b03166102ac565b34801561051b57600080fd5b5061027f6113b3565b34801561053057600080fd5b506102f7600381565b34801561054557600080fd5b506102e46105543660046125e6565b6113c2565b34801561056557600080fd5b506102f760075481565b34801561057b57600080fd5b506102e461058a366004612624565b611487565b6102e461059d3660046126a4565b6114bf565b6102e46105b0366004612424565b6116e2565b3480156105c157600080fd5b5061027f6105d0366004612424565b6118a3565b3480156105e157600080fd5b506102f7600a5481565b3480156105f757600080fd5b506102e4610606366004612424565b611924565b34801561061757600080fd5b5061025561062636600461275f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561066057600080fd5b5060085461025590610100900460ff1681565b34801561067f57600080fd5b506102e4611953565b34801561069457600080fd5b506102e46106a33660046125a7565b611991565b3480156106b457600080fd5b506102f761271081565b60006001600160e01b0319821663780e9d6360e01b14806106e357506106e382611a2c565b92915050565b6060600080546106f89061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546107249061278d565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600061078682611a7c565b6107ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061081382610da5565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e3565b336001600160a01b038216148061089d575061089d8133610626565b61090f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b6109198383611ac6565b505050565b6109283382611b34565b6109445760405162461bcd60e51b81526004016107e3906127c8565b610919838383611c1e565b600061095a83610f5a565b82106109785760405162461bcd60e51b81526004016107e390612819565b6000805b6002548110156109e9576002818154811061099957610999612864565b6000918252602090912001546001600160a01b03868116911614156109d757838214156109c95791506106e39050565b816109d381612890565b9250505b806109e181612890565b91505061097c565b5060405162461bcd60e51b81526004016107e390612819565b6005546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016107e3906128ab565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a735760405162461bcd60e51b81526004016107e3906128ab565b60026006541415610a965760405162461bcd60e51b81526004016107e3906128e0565b60026006554780610aa657600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610ad46064610ace866002611d74565b90611d87565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610afd6064610ace886005611d74565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b5050905080610b945760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016107e3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610c295760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016107e3565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c76576040519150601f19603f3d011682016040523d82523d6000602084013e610c7b565b606091505b5050905080610ccc5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016107e3565b5050600160065550505050505050565b61091983838360405180602001604052806000815250611487565b6002546000908210610d605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e3565b5090565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016107e3906128ab565b8051610da190600d9060208401906122f6565b5050565b60008060028381548110610dbb57610dbb612864565b6000918252602090912001546001600160a01b03169050806106e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e3565b6005546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016107e3906128ab565b600854610100900460ff1615610ec75760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016107e3565b600955565b600d8054610ed99061278d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f059061278d565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505081565b60006001600160a01b038216610fc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e3565b6000805b6002548110156110215760028181548110610fe657610fe6612864565b6000918252602090912001546001600160a01b03858116911614156110115761100e82612890565b91505b61101a81612890565b9050610fc9565b5092915050565b6005546001600160a01b031633146110525760405162461bcd60e51b81526004016107e3906128ab565b61105c6000611d93565b565b6005546001600160a01b031633146110885760405162461bcd60e51b81526004016107e3906128ab565b600061109360025490565b90506000821180156110a75750600a548211155b6110f35760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016107e3565b60005b82811015611123576111118461110c8385612917565b611de5565b8061111b81612890565b9150506110f6565b50600a546111319083611dff565b600a55505050565b6002600654141561115c5760405162461bcd60e51b81526004016107e3906128e0565b600260065560085460ff166111bf5760405162461bcd60e51b8152602060048201526024808201527f5072652073616c65206e6565647320746f2062652061637469766520746f206d60448201526334b73a1760e11b60648201526084016107e3565b6111c882611e0b565b61122d5760405162461bcd60e51b815260206004820152603060248201527f5265717569726573206f776e696e67206120746f6b656e2066726f6d20616e6f60448201526f3a3432b91031b7b63632b1ba34b7b71760811b60648201526084016107e3565b6127106112438261123d60025490565b90611e8f565b1061129a5760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b60648201526084016107e3565b336000908152600c60205260409020546003906112b79083611e8f565b106113045760405162461bcd60e51b815260206004820152601d60248201527f45786365656465642077686974656c69737420616c6c6f77616e63652e00000060448201526064016107e3565b6009546113119082611d74565b341461135b5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107e3565b60005b8181101561138557611373335b600254611de5565b8061137d81612890565b91505061135e565b50336000908152600c6020526040812080548392906113a5908490612917565b909155505060016006555050565b6060600180546106f89061278d565b6001600160a01b03821633141561141b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114913383611b34565b6114ad5760405162461bcd60e51b81526004016107e3906127c8565b6114b984848484611e9b565b50505050565b600260065414156114e25760405162461bcd60e51b81526004016107e3906128e0565b600260065560085460ff166115435760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b60648201526084016107e3565b604080513360601b6bffffffffffffffffffffffff19166020808301919091526034808301869052835180840390910181526054909201909252805191012061158c9082611ece565b6115d85760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c69737465640060448201526064016107e3565b336000908152600c602052604090205482906115f5908590612917565b11156116435760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e6365000000000000000060448201526064016107e3565b341561168d5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107e3565b60005b838110156116b3576116a13361136b565b806116ab81612890565b915050611690565b50336000908152600c6020526040812080548592906116d3908490612917565b90915550506001600655505050565b600260065414156117055760405162461bcd60e51b81526004016107e3906128e0565b6002600655600854610100900460ff166117615760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107e3565b600b81106117bc5760405162461bcd60e51b815260206004820152602260248201527f546865206d6178206d696e7420706572207472616e73616374696f6e20697320604482015261031360f41b60648201526084016107e3565b6127106117cc8261123d60025490565b106118195760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016107e3565b6009546118269082611d74565b34146118745760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107e3565b60005b8181101561189a576118883361136b565b8061189281612890565b915050611877565b50506001600655565b60606118ae82611a7c565b6118f25760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107e3565b600d6118fd83611edd565b60405160200161190e92919061294b565b6040516020818303038152906040529050919050565b6005546001600160a01b0316331461194e5760405162461bcd60e51b81526004016107e3906128ab565b600755565b6005546001600160a01b0316331461197d5760405162461bcd60e51b81526004016107e3906128ab565b6008805460ff19811660ff90911615179055565b6005546001600160a01b031633146119bb5760405162461bcd60e51b81526004016107e3906128ab565b6001600160a01b038116611a205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b611a2981611d93565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a5d57506001600160e01b03198216635b5e139f60e01b145b806106e357506301ffc9a760e01b6001600160e01b03198316146106e3565b600254600090821080156106e3575060006001600160a01b031660028381548110611aa957611aa9612864565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afb82610da5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b3f82611a7c565b611ba05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e3565b6000611bab83610da5565b9050806001600160a01b0316846001600160a01b03161480611be65750836001600160a01b0316611bdb8461077b565b6001600160a01b0316145b80611c1657506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3182610da5565b6001600160a01b031614611c995760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e3565b6001600160a01b038216611cfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b611d06600082611ac6565b8160028281548110611d1a57611d1a612864565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611d8082846129f2565b9392505050565b6000611d808284612a27565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da1828260405180602001604052806000815250611fdb565b6000611d808284612a3b565b600033600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015611e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7f9190612a52565b6001600160a01b03161492915050565b6000611d808284612917565b611ea6848484611c1e565b611eb28484848461200e565b6114b95760405162461bcd60e51b81526004016107e390612a6f565b6000611d80826007548561210c565b606081611f015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2b5780611f1581612890565b9150611f249050600a83612a27565b9150611f05565b60008167ffffffffffffffff811115611f4657611f466124bf565b6040519080825280601f01601f191660200182016040528015611f70576020820181803683370190505b5090505b8415611c1657611f85600183612a3b565b9150611f92600a86612ac1565b611f9d906030612917565b60f81b818381518110611fb257611fb2612864565b60200101906001600160f81b031916908160001a905350611fd4600a86612a27565b9450611f74565b611fe58383612122565b611ff2600084848461200e565b6109195760405162461bcd60e51b81526004016107e390612a6f565b60006001600160a01b0384163b1561210157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612052903390899088908890600401612ad5565b6020604051808303816000875af192505050801561208d575060408051601f3d908101601f1916820190925261208a91810190612b12565b60015b6120e7573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516120df5760405162461bcd60e51b81526004016107e390612a6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c16565b506001949350505050565b600082612119858461224a565b14949350505050565b6001600160a01b0382166121785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b61218181611a7c565b156121ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b84518110156122ee57600085828151811061226c5761226c612864565b602002602001015190508083116122ae5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506122db565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806122e681612890565b91505061224f565b509392505050565b8280546123029061278d565b90600052602060002090601f016020900481019282612324576000855561236a565b82601f1061233d57805160ff191683800117855561236a565b8280016001018555821561236a579182015b8281111561236a57825182559160200191906001019061234f565b50610d609291505b80821115610d605760008155600101612372565b6001600160e01b031981168114611a2957600080fd5b6000602082840312156123ae57600080fd5b8135611d8081612386565b60005b838110156123d45781810151838201526020016123bc565b838111156114b95750506000910152565b600081518084526123fd8160208601602086016123b9565b601f01601f19169290920160200192915050565b602081526000611d8060208301846123e5565b60006020828403121561243657600080fd5b5035919050565b6001600160a01b0381168114611a2957600080fd5b6000806040838503121561246557600080fd5b82356124708161243d565b946020939093013593505050565b60008060006060848603121561249357600080fd5b833561249e8161243d565b925060208401356124ae8161243d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124fe576124fe6124bf565b604052919050565b600067ffffffffffffffff831115612520576125206124bf565b612533601f8401601f19166020016124d5565b905082815283838301111561254757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561257057600080fd5b813567ffffffffffffffff81111561258757600080fd5b8201601f8101841361259857600080fd5b611c1684823560208401612506565b6000602082840312156125b957600080fd5b8135611d808161243d565b600080604083850312156125d757600080fd5b50508035926020909101359150565b600080604083850312156125f957600080fd5b82356126048161243d565b91506020830135801515811461261957600080fd5b809150509250929050565b6000806000806080858703121561263a57600080fd5b84356126458161243d565b935060208501356126558161243d565b925060408501359150606085013567ffffffffffffffff81111561267857600080fd5b8501601f8101871361268957600080fd5b61269887823560208401612506565b91505092959194509250565b6000806000606084860312156126b957600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156126e057600080fd5b818701915087601f8301126126f457600080fd5b813581811115612706576127066124bf565b8060051b91506127178483016124d5565b818152918301840191848101908a84111561273157600080fd5b938501935b8385101561274f57843582529385019390850190612736565b8096505050505050509250925092565b6000806040838503121561277257600080fd5b823561277d8161243d565b915060208301356126198161243d565b600181811c908216806127a157607f821691505b602082108114156127c257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156128a4576128a461287a565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561292a5761292a61287a565b500190565b600081516129418185602086016123b9565b9290920192915050565b600080845481600182811c91508083168061296757607f831692505b602080841082141561298757634e487b7160e01b86526022600452602486fd5b81801561299b57600181146129ac576129d9565b60ff198616895284890196506129d9565b60008b81526020902060005b868110156129d15781548b8201529085019083016129b8565b505084890196505b5050505050506129e9818561292f565b95945050505050565b6000816000190483118215151615612a0c57612a0c61287a565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612a3657612a36612a11565b500490565b600082821015612a4d57612a4d61287a565b500390565b600060208284031215612a6457600080fd5b8151611d808161243d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ad057612ad0612a11565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b08908301846123e5565b9695505050505050565b600060208284031215612b2457600080fd5b8151611d808161238656fea2646970667358221220054048cbdc3e6ee8639fce5aadf5e0eedd7b01e6944da8bf69a5eaaa11343ebe64736f6c634300080b003368747470733a2f2f626c616d2e696f2f6170692f6e656f746f6b796f70756e6b732f746f6b656e2f

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c4be5b59116100ab578063e985e9c51161006f578063e985e9c51461060b578063eb8d244414610654578063f032554914610673578063f2fde38b14610688578063f47c84c5146106a857600080fd5b8063c4be5b591461058f578063c634d032146105a2578063c87b56dd146105b5578063cbcb3171146105d5578063dab5f340146105eb57600080fd5b806395d89b41116100f257806395d89b411461050f5780639e780ed214610524578063a22cb46514610539578063aa98e0c614610559578063b88d4fde1461056f57600080fd5b8063715018a61461049357806378cf19e9146104a85780637c34ea63146104c85780637ff9b596146104db5780638da5cb5b146104f157600080fd5b806334918dfd116101bc578063634da63a11610180578063634da63a146104095780636352211e1461041e578063676c0d771461043e5780636c0360eb1461045e57806370a082311461047357600080fd5b806334918dfd1461037f5780633ccfd60b1461039457806342842e0e146103a95780634f6ccce7146103c957806355f804b3146103e957600080fd5b806318160ddd1161020357806318160ddd146102e65780631f0234d81461030557806323b872dd1461031f578063296020ba1461033f5780632f745c591461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461239c565b6106be565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6106e9565b6040516102619190612411565b34801561029857600080fd5b506102ac6102a7366004612424565b61077b565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612452565b610808565b005b3480156102f257600080fd5b506002545b604051908152602001610261565b34801561031157600080fd5b506008546102559060ff1681565b34801561032b57600080fd5b506102e461033a36600461247e565b61091e565b34801561034b57600080fd5b50600b546102ac906001600160a01b031681565b34801561036b57600080fd5b506102f761037a366004612452565b61094f565b34801561038b57600080fd5b506102e4610a02565b3480156103a057600080fd5b506102e4610a49565b3480156103b557600080fd5b506102e46103c436600461247e565b610cdc565b3480156103d557600080fd5b506102f76103e4366004612424565b610cf7565b3480156103f557600080fd5b506102e461040436600461255e565b610d64565b34801561041557600080fd5b506102f7600b81565b34801561042a57600080fd5b506102ac610439366004612424565b610da5565b34801561044a57600080fd5b506102e4610459366004612424565b610e31565b34801561046a57600080fd5b5061027f610ecc565b34801561047f57600080fd5b506102f761048e3660046125a7565b610f5a565b34801561049f57600080fd5b506102e4611028565b3480156104b457600080fd5b506102e46104c3366004612452565b61105e565b6102e46104d63660046125c4565b611139565b3480156104e757600080fd5b506102f760095481565b3480156104fd57600080fd5b506005546001600160a01b03166102ac565b34801561051b57600080fd5b5061027f6113b3565b34801561053057600080fd5b506102f7600381565b34801561054557600080fd5b506102e46105543660046125e6565b6113c2565b34801561056557600080fd5b506102f760075481565b34801561057b57600080fd5b506102e461058a366004612624565b611487565b6102e461059d3660046126a4565b6114bf565b6102e46105b0366004612424565b6116e2565b3480156105c157600080fd5b5061027f6105d0366004612424565b6118a3565b3480156105e157600080fd5b506102f7600a5481565b3480156105f757600080fd5b506102e4610606366004612424565b611924565b34801561061757600080fd5b5061025561062636600461275f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561066057600080fd5b5060085461025590610100900460ff1681565b34801561067f57600080fd5b506102e4611953565b34801561069457600080fd5b506102e46106a33660046125a7565b611991565b3480156106b457600080fd5b506102f761271081565b60006001600160e01b0319821663780e9d6360e01b14806106e357506106e382611a2c565b92915050565b6060600080546106f89061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546107249061278d565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600061078682611a7c565b6107ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061081382610da5565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e3565b336001600160a01b038216148061089d575061089d8133610626565b61090f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b6109198383611ac6565b505050565b6109283382611b34565b6109445760405162461bcd60e51b81526004016107e3906127c8565b610919838383611c1e565b600061095a83610f5a565b82106109785760405162461bcd60e51b81526004016107e390612819565b6000805b6002548110156109e9576002818154811061099957610999612864565b6000918252602090912001546001600160a01b03868116911614156109d757838214156109c95791506106e39050565b816109d381612890565b9250505b806109e181612890565b91505061097c565b5060405162461bcd60e51b81526004016107e390612819565b6005546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016107e3906128ab565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a735760405162461bcd60e51b81526004016107e3906128ab565b60026006541415610a965760405162461bcd60e51b81526004016107e3906128e0565b60026006554780610aa657600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610ad46064610ace866002611d74565b90611d87565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610afd6064610ace886005611d74565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b5050905080610b945760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016107e3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610c295760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016107e3565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c76576040519150601f19603f3d011682016040523d82523d6000602084013e610c7b565b606091505b5050905080610ccc5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016107e3565b5050600160065550505050505050565b61091983838360405180602001604052806000815250611487565b6002546000908210610d605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e3565b5090565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016107e3906128ab565b8051610da190600d9060208401906122f6565b5050565b60008060028381548110610dbb57610dbb612864565b6000918252602090912001546001600160a01b03169050806106e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e3565b6005546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016107e3906128ab565b600854610100900460ff1615610ec75760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016107e3565b600955565b600d8054610ed99061278d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f059061278d565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505081565b60006001600160a01b038216610fc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e3565b6000805b6002548110156110215760028181548110610fe657610fe6612864565b6000918252602090912001546001600160a01b03858116911614156110115761100e82612890565b91505b61101a81612890565b9050610fc9565b5092915050565b6005546001600160a01b031633146110525760405162461bcd60e51b81526004016107e3906128ab565b61105c6000611d93565b565b6005546001600160a01b031633146110885760405162461bcd60e51b81526004016107e3906128ab565b600061109360025490565b90506000821180156110a75750600a548211155b6110f35760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016107e3565b60005b82811015611123576111118461110c8385612917565b611de5565b8061111b81612890565b9150506110f6565b50600a546111319083611dff565b600a55505050565b6002600654141561115c5760405162461bcd60e51b81526004016107e3906128e0565b600260065560085460ff166111bf5760405162461bcd60e51b8152602060048201526024808201527f5072652073616c65206e6565647320746f2062652061637469766520746f206d60448201526334b73a1760e11b60648201526084016107e3565b6111c882611e0b565b61122d5760405162461bcd60e51b815260206004820152603060248201527f5265717569726573206f776e696e67206120746f6b656e2066726f6d20616e6f60448201526f3a3432b91031b7b63632b1ba34b7b71760811b60648201526084016107e3565b6127106112438261123d60025490565b90611e8f565b1061129a5760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b60648201526084016107e3565b336000908152600c60205260409020546003906112b79083611e8f565b106113045760405162461bcd60e51b815260206004820152601d60248201527f45786365656465642077686974656c69737420616c6c6f77616e63652e00000060448201526064016107e3565b6009546113119082611d74565b341461135b5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107e3565b60005b8181101561138557611373335b600254611de5565b8061137d81612890565b91505061135e565b50336000908152600c6020526040812080548392906113a5908490612917565b909155505060016006555050565b6060600180546106f89061278d565b6001600160a01b03821633141561141b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114913383611b34565b6114ad5760405162461bcd60e51b81526004016107e3906127c8565b6114b984848484611e9b565b50505050565b600260065414156114e25760405162461bcd60e51b81526004016107e3906128e0565b600260065560085460ff166115435760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b60648201526084016107e3565b604080513360601b6bffffffffffffffffffffffff19166020808301919091526034808301869052835180840390910181526054909201909252805191012061158c9082611ece565b6115d85760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c69737465640060448201526064016107e3565b336000908152600c602052604090205482906115f5908590612917565b11156116435760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e6365000000000000000060448201526064016107e3565b341561168d5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016107e3565b60005b838110156116b3576116a13361136b565b806116ab81612890565b915050611690565b50336000908152600c6020526040812080548592906116d3908490612917565b90915550506001600655505050565b600260065414156117055760405162461bcd60e51b81526004016107e3906128e0565b6002600655600854610100900460ff166117615760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107e3565b600b81106117bc5760405162461bcd60e51b815260206004820152602260248201527f546865206d6178206d696e7420706572207472616e73616374696f6e20697320604482015261031360f41b60648201526084016107e3565b6127106117cc8261123d60025490565b106118195760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016107e3565b6009546118269082611d74565b34146118745760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107e3565b60005b8181101561189a576118883361136b565b8061189281612890565b915050611877565b50506001600655565b60606118ae82611a7c565b6118f25760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107e3565b600d6118fd83611edd565b60405160200161190e92919061294b565b6040516020818303038152906040529050919050565b6005546001600160a01b0316331461194e5760405162461bcd60e51b81526004016107e3906128ab565b600755565b6005546001600160a01b0316331461197d5760405162461bcd60e51b81526004016107e3906128ab565b6008805460ff19811660ff90911615179055565b6005546001600160a01b031633146119bb5760405162461bcd60e51b81526004016107e3906128ab565b6001600160a01b038116611a205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b611a2981611d93565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a5d57506001600160e01b03198216635b5e139f60e01b145b806106e357506301ffc9a760e01b6001600160e01b03198316146106e3565b600254600090821080156106e3575060006001600160a01b031660028381548110611aa957611aa9612864565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afb82610da5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b3f82611a7c565b611ba05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e3565b6000611bab83610da5565b9050806001600160a01b0316846001600160a01b03161480611be65750836001600160a01b0316611bdb8461077b565b6001600160a01b0316145b80611c1657506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3182610da5565b6001600160a01b031614611c995760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e3565b6001600160a01b038216611cfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b611d06600082611ac6565b8160028281548110611d1a57611d1a612864565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611d8082846129f2565b9392505050565b6000611d808284612a27565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da1828260405180602001604052806000815250611fdb565b6000611d808284612a3b565b600033600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015611e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7f9190612a52565b6001600160a01b03161492915050565b6000611d808284612917565b611ea6848484611c1e565b611eb28484848461200e565b6114b95760405162461bcd60e51b81526004016107e390612a6f565b6000611d80826007548561210c565b606081611f015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f2b5780611f1581612890565b9150611f249050600a83612a27565b9150611f05565b60008167ffffffffffffffff811115611f4657611f466124bf565b6040519080825280601f01601f191660200182016040528015611f70576020820181803683370190505b5090505b8415611c1657611f85600183612a3b565b9150611f92600a86612ac1565b611f9d906030612917565b60f81b818381518110611fb257611fb2612864565b60200101906001600160f81b031916908160001a905350611fd4600a86612a27565b9450611f74565b611fe58383612122565b611ff2600084848461200e565b6109195760405162461bcd60e51b81526004016107e390612a6f565b60006001600160a01b0384163b1561210157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612052903390899088908890600401612ad5565b6020604051808303816000875af192505050801561208d575060408051601f3d908101601f1916820190925261208a91810190612b12565b60015b6120e7573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516120df5760405162461bcd60e51b81526004016107e390612a6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c16565b506001949350505050565b600082612119858461224a565b14949350505050565b6001600160a01b0382166121785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b61218181611a7c565b156121ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b84518110156122ee57600085828151811061226c5761226c612864565b602002602001015190508083116122ae5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506122db565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806122e681612890565b91505061224f565b509392505050565b8280546123029061278d565b90600052602060002090601f016020900481019282612324576000855561236a565b82601f1061233d57805160ff191683800117855561236a565b8280016001018555821561236a579182015b8281111561236a57825182559160200191906001019061234f565b50610d609291505b80821115610d605760008155600101612372565b6001600160e01b031981168114611a2957600080fd5b6000602082840312156123ae57600080fd5b8135611d8081612386565b60005b838110156123d45781810151838201526020016123bc565b838111156114b95750506000910152565b600081518084526123fd8160208601602086016123b9565b601f01601f19169290920160200192915050565b602081526000611d8060208301846123e5565b60006020828403121561243657600080fd5b5035919050565b6001600160a01b0381168114611a2957600080fd5b6000806040838503121561246557600080fd5b82356124708161243d565b946020939093013593505050565b60008060006060848603121561249357600080fd5b833561249e8161243d565b925060208401356124ae8161243d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124fe576124fe6124bf565b604052919050565b600067ffffffffffffffff831115612520576125206124bf565b612533601f8401601f19166020016124d5565b905082815283838301111561254757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561257057600080fd5b813567ffffffffffffffff81111561258757600080fd5b8201601f8101841361259857600080fd5b611c1684823560208401612506565b6000602082840312156125b957600080fd5b8135611d808161243d565b600080604083850312156125d757600080fd5b50508035926020909101359150565b600080604083850312156125f957600080fd5b82356126048161243d565b91506020830135801515811461261957600080fd5b809150509250929050565b6000806000806080858703121561263a57600080fd5b84356126458161243d565b935060208501356126558161243d565b925060408501359150606085013567ffffffffffffffff81111561267857600080fd5b8501601f8101871361268957600080fd5b61269887823560208401612506565b91505092959194509250565b6000806000606084860312156126b957600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156126e057600080fd5b818701915087601f8301126126f457600080fd5b813581811115612706576127066124bf565b8060051b91506127178483016124d5565b818152918301840191848101908a84111561273157600080fd5b938501935b8385101561274f57843582529385019390850190612736565b8096505050505050509250925092565b6000806040838503121561277257600080fd5b823561277d8161243d565b915060208301356126198161243d565b600181811c908216806127a157607f821691505b602082108114156127c257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156128a4576128a461287a565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561292a5761292a61287a565b500190565b600081516129418185602086016123b9565b9290920192915050565b600080845481600182811c91508083168061296757607f831692505b602080841082141561298757634e487b7160e01b86526022600452602486fd5b81801561299b57600181146129ac576129d9565b60ff198616895284890196506129d9565b60008b81526020902060005b868110156129d15781548b8201529085019083016129b8565b505084890196505b5050505050506129e9818561292f565b95945050505050565b6000816000190483118215151615612a0c57612a0c61287a565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612a3657612a36612a11565b500490565b600082821015612a4d57612a4d61287a565b500390565b600060208284031215612a6457600080fd5b8151611d808161243d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ad057612ad0612a11565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b08908301846123e5565b9695505050505050565b600060208284031215612b2457600080fd5b8151611d808161238656fea2646970667358221220054048cbdc3e6ee8639fce5aadf5e0eedd7b01e6944da8bf69a5eaaa11343ebe64736f6c634300080b0033

Deployed Bytecode Sourcemap

41396:5155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35508:224;;;;;;;;;;-1:-1:-1;35508:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35508:224:0;;;;;;;;24127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24939:308::-;;;;;;;;;;-1:-1:-1;24939:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24939:308:0;1550:203:1;24462:411:0;;;;;;;;;;-1:-1:-1;24462:411:0;;;;;:::i;:::-;;:::i;:::-;;35808:110;;;;;;;;;;-1:-1:-1;35896:7:0;:14;35808:110;;;2360:25:1;;;2348:2;2333:18;35808:110:0;2214:177:1;41580:35:0;;;;;;;;;;-1:-1:-1;41580:35:0;;;;;;;;25998:376;;;;;;;;;;-1:-1:-1;25998:376:0;;;;;:::i;:::-;;:::i;41895:88::-;;;;;;;;;;-1:-1:-1;41895:88:0;;;;-1:-1:-1;;;;;41895:88:0;;;36284:490;;;;;;;;;;-1:-1:-1;36284:490:0;;;;;:::i;:::-;;:::i;44587:83::-;;;;;;;;;;;;;:::i;43263:834::-;;;;;;;;;;;;;:::i;26445:185::-;;;;;;;;;;-1:-1:-1;26445:185:0;;;;;:::i;:::-;;:::i;35995:205::-;;;;;;;;;;-1:-1:-1;35995:205:0;;;;;:::i;:::-;;:::i;44489:92::-;;;;;;;;;;-1:-1:-1;44489:92:0;;;;;:::i;:::-;;:::i;41711:43::-;;;;;;;;;;;;41752:2;41711:43;;23734:326;;;;;;;;;;-1:-1:-1;23734:326:0;;;;;:::i;:::-;;:::i;42192:171::-;;;;;;;;;;-1:-1:-1;42192:171:0;;;;;:::i;:::-;;:::i;42038:21::-;;;;;;;;;;;;;:::i;23280:392::-;;;;;;;;;;-1:-1:-1;23280:392:0;;;;;:::i;:::-;;:::i;38435:103::-;;;;;;;;;;;;;:::i;44105:376::-;;;;;;;;;;-1:-1:-1;44105:376:0;;;;;:::i;:::-;;:::i;42526:729::-;;;;;;:::i;:::-;;:::i;41657:45::-;;;;;;;;;;;;;;;;37784:87;;;;;;;;;;-1:-1:-1;37857:6:0;;-1:-1:-1;;;;;37857:6:0;37784:87;;24296:104;;;;;;;;;;;;;:::i;41806:47::-;;;;;;;;;;;;41852:1;41806:47;;25319:327;;;;;;;;;;-1:-1:-1;25319:327:0;;;;;:::i;:::-;;:::i;41537:34::-;;;;;;;;;;;;;;;;26701:365;;;;;;;;;;-1:-1:-1;26701:365:0;;;;;:::i;:::-;;:::i;45311:613::-;;;;;;:::i;:::-;;:::i;44778:527::-;;;;;;:::i;:::-;;:::i;46335:213::-;;;;;;;;;;-1:-1:-1;46335:213:0;;;;;:::i;:::-;;:::i;41858:30::-;;;;;;;;;;;;;;;;46240:89;;;;;;;;;;-1:-1:-1;46240:89:0;;;;;:::i;:::-;;:::i;25717:214::-;;;;;;;;;;-1:-1:-1;25717:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25888:25:0;;;25859:4;25888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25717:214;41620:32;;;;;;;;;;-1:-1:-1;41620:32:0;;;;;;;;;;;44678:92;;;;;;;;;;;;;:::i;38693:201::-;;;;;;;;;;-1:-1:-1;38693:201:0;;;;;:::i;:::-;;:::i;41759:42::-;;;;;;;;;;;;41796:5;41759:42;;35508:224;35610:4;-1:-1:-1;;;;;;35634:50:0;;-1:-1:-1;;;35634:50:0;;:90;;;35688:36;35712:11;35688:23;:36::i;:::-;35627:97;35508:224;-1:-1:-1;;35508:224:0:o;24127:100::-;24181:13;24214:5;24207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24127:100;:::o;24939:308::-;25060:7;25107:16;25115:7;25107;:16::i;:::-;25085:110;;;;-1:-1:-1;;;25085:110:0;;8297:2:1;25085:110:0;;;8279:21:1;8336:2;8316:18;;;8309:30;8375:34;8355:18;;;8348:62;-1:-1:-1;;;8426:18:1;;;8419:42;8478:19;;25085:110:0;;;;;;;;;-1:-1:-1;25215:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25215:24:0;;24939:308::o;24462:411::-;24543:13;24559:23;24574:7;24559:14;:23::i;:::-;24543:39;;24607:5;-1:-1:-1;;;;;24601:11:0;:2;-1:-1:-1;;;;;24601:11:0;;;24593:57;;;;-1:-1:-1;;;24593:57:0;;8710:2:1;24593:57:0;;;8692:21:1;8749:2;8729:18;;;8722:30;8788:34;8768:18;;;8761:62;-1:-1:-1;;;8839:18:1;;;8832:31;8880:19;;24593:57:0;8508:397:1;24593:57:0;738:10;-1:-1:-1;;;;;24685:21:0;;;;:62;;-1:-1:-1;24710:37:0;24727:5;738:10;25717:214;:::i;24710:37::-;24663:168;;;;-1:-1:-1;;;24663:168:0;;9112:2:1;24663:168:0;;;9094:21:1;9151:2;9131:18;;;9124:30;9190:34;9170:18;;;9163:62;9261:26;9241:18;;;9234:54;9305:19;;24663:168:0;8910:420:1;24663:168:0;24844:21;24853:2;24857:7;24844:8;:21::i;:::-;24532:341;24462:411;;:::o;25998:376::-;26207:41;738:10;26240:7;26207:18;:41::i;:::-;26185:140;;;;-1:-1:-1;;;26185:140:0;;;;;;;:::i;:::-;26338:28;26348:4;26354:2;26358:7;26338:9;:28::i;36284:490::-;36381:15;36425:16;36435:5;36425:9;:16::i;:::-;36417:5;:24;36409:80;;;;-1:-1:-1;;;36409:80:0;;;;;;;:::i;:::-;36502:10;36527:6;36523:178;36539:7;:14;36535:18;;36523:178;;;36586:7;36594:1;36586:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36577:19:0;;;36586:10;;36577:19;36574:116;;;36628:5;36619;:14;36616:58;;;36642:1;-1:-1:-1;36635:8:0;;-1:-1:-1;36635:8:0;36616:58;36667:7;;;;:::i;:::-;;;;36616:58;36555:3;;;;:::i;:::-;;;;36523:178;;;;36713:53;;-1:-1:-1;;;36713:53:0;;;;;;;:::i;44587:83::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;44652:12:::1;::::0;;-1:-1:-1;;44636:28:0;::::1;44652:12;::::0;;;::::1;;;44651:13;44636:28:::0;;::::1;;::::0;;44587:83::o;43263:834::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;2614:1:::1;3212:7;;:19;;3204:63;;;;-1:-1:-1::0;;;3204:63:0::1;;;;;;;:::i;:::-;2614:1;3345:7;:18:::0;43338:21:::2;43374:11:::0;43366:20:::2;;;::::0;::::2;;738:10:::0;43472:42:::2;43395:13;43547:23;43566:3;43547:14;:7:::0;43559:1:::2;43547:11;:14::i;:::-;:18:::0;::::2;:23::i;:::-;43522:48:::0;-1:-1:-1;43610:42:0::2;43577:22;43685:23;43704:3;43685:14;:7:::0;43697:1:::2;43685:11;:14::i;:23::-;43660:48;;43722:13;43741:14;-1:-1:-1::0;;;;;43741:19:0::2;43768:14;43741:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43721:66;;;43802:8;43794:36;;;::::0;-1:-1:-1;;;43794:36:0;;11702:2:1;43794:36:0::2;::::0;::::2;11684:21:1::0;11741:2;11721:18;;;11714:30;-1:-1:-1;;;11760:18:1;;;11753:45;11815:18;;43794:36:0::2;11500:339:1::0;43794:36:0::2;43844:13;43863:14;-1:-1:-1::0;;;;;43863:19:0::2;43890:14;43863:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43843:66;;;43924:8;43916:36;;;::::0;-1:-1:-1;;;43916:36:0;;11702:2:1;43916:36:0::2;::::0;::::2;11684:21:1::0;11741:2;11721:18;;;11714:30;-1:-1:-1;;;11760:18:1;;;11753:45;11815:18;;43916:36:0::2;11500:339:1::0;43916:36:0::2;43968:17;43991:5;-1:-1:-1::0;;;;;43991:10:0::2;44009:21;43991:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43967:68;;;44050:12;44042:49;;;::::0;-1:-1:-1;;;44042:49:0;;12046:2:1;44042:49:0::2;::::0;::::2;12028:21:1::0;12085:2;12065:18;;;12058:30;12124:26;12104:18;;;12097:54;12168:18;;44042:49:0::2;11844:348:1::0;44042:49:0::2;-1:-1:-1::0;;2570:1:0::1;3524:7;:22:::0;-1:-1:-1;;;;;;;43263:834:0:o;26445:185::-;26583:39;26600:4;26606:2;26610:7;26583:39;;;;;;;;;;;;:16;:39::i;35995:205::-;36106:7;:14;36070:7;;36098:22;;36090:79;;;;-1:-1:-1;;;36090:79:0;;12399:2:1;36090:79:0;;;12381:21:1;12438:2;12418:18;;;12411:30;12477:34;12457:18;;;12450:62;-1:-1:-1;;;12528:18:1;;;12521:42;12580:19;;36090:79:0;12197:408:1;36090:79:0;-1:-1:-1;36187:5:0;35995:205::o;44489:92::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;44557:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44489:92:::0;:::o;23734:326::-;23851:7;23876:13;23892:7;23900;23892:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23892:16:0;;-1:-1:-1;23941:19:0;23919:110;;;;-1:-1:-1;;;23919:110:0;;12812:2:1;23919:110:0;;;12794:21:1;12851:2;12831:18;;;12824:30;12890:34;12870:18;;;12863:62;-1:-1:-1;;;12941:18:1;;;12934:39;12990:19;;23919:110:0;12610:405:1;42192:171:0;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;42269:12:::1;::::0;::::1;::::0;::::1;;;42268:13;42260:69;;;::::0;-1:-1:-1;;;42260:69:0;;13222:2:1;42260:69:0::1;::::0;::::1;13204:21:1::0;13261:2;13241:18;;;13234:30;13300:34;13280:18;;;13273:62;-1:-1:-1;;;13351:18:1;;;13344:41;13402:19;;42260:69:0::1;13020:407:1::0;42260:69:0::1;42336:10;:21:::0;42192:171::o;42038:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23280:392::-;23402:4;-1:-1:-1;;;;;23433:19:0;;23425:74;;;;-1:-1:-1;;;23425:74:0;;13634:2:1;23425:74:0;;;13616:21:1;13673:2;13653:18;;;13646:30;13712:34;13692:18;;;13685:62;-1:-1:-1;;;13763:18:1;;;13756:40;13813:19;;23425:74:0;13432:406:1;23425:74:0;23512:10;23538:6;23533:109;23550:7;:14;23546:18;;23533:109;;;23597:7;23605:1;23597:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23588:19:0;;;23597:10;;23588:19;23584:46;;;23623:7;;;:::i;:::-;;;23584:46;23566:3;;;:::i;:::-;;;23533:109;;;-1:-1:-1;23659:5:0;23280:392;-1:-1:-1;;23280:392:0:o;38435:103::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;38500:30:::1;38527:1;38500:18;:30::i;:::-;38435:103::o:0;44105:376::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;44197:11:::1;44211:13;35896:7:::0;:14;;35808:110;44211:13:::1;44197:27;;44256:1;44239:14;:18;:52;;;;;44279:12;;44261:14;:30;;44239:52;44231:97;;;::::0;-1:-1:-1;;;44231:97:0;;14045:2:1;44231:97:0::1;::::0;::::1;14027:21:1::0;;;14064:18;;;14057:30;14123:34;14103:18;;;14096:62;14175:18;;44231:97:0::1;13843:356:1::0;44231:97:0::1;44340:6;44335:87;44356:14;44352:1;:18;44335:87;;;44388:26;44398:3:::0;44403:10:::1;44412:1:::0;44403:6;:10:::1;:::i;:::-;44388:9;:26::i;:::-;44372:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44335:87;;;-1:-1:-1::0;44443:12:0::1;::::0;:32:::1;::::0;44460:14;44443:16:::1;:32::i;:::-;44428:12;:47:::0;-1:-1:-1;;;44105:376:0:o;42526:729::-;2614:1;3212:7;;:19;;3204:63;;;;-1:-1:-1;;;3204:63:0;;;;;;;:::i;:::-;2614:1;3345:7;:18;42643:15:::1;::::0;::::1;;42635:64;;;::::0;-1:-1:-1;;;42635:64:0;;14539:2:1;42635:64:0::1;::::0;::::1;14521:21:1::0;14578:2;14558:18;;;14551:30;14617:34;14597:18;;;14590:62;-1:-1:-1;;;14668:18:1;;;14661:34;14712:19;;42635:64:0::1;14337:400:1::0;42635:64:0::1;42714:28;42729:12;42714:14;:28::i;:::-;42706:89;;;::::0;-1:-1:-1;;;42706:89:0;;14944:2:1;42706:89:0::1;::::0;::::1;14926:21:1::0;14983:2;14963:18;;;14956:30;15022:34;15002:18;;;14995:62;-1:-1:-1;;;15073:18:1;;;15066:46;15129:19;;42706:89:0::1;14742:412:1::0;42706:89:0::1;41796:5;42810:33;42828:14;42810:13;35896:7:::0;:14;;35808:110;42810:13:::1;:17:::0;::::1;:33::i;:::-;:46;42802:92;;;::::0;-1:-1:-1;;;42802:92:0;;15361:2:1;42802:92:0::1;::::0;::::1;15343:21:1::0;15400:2;15380:18;;;15373:30;15439:34;15419:18;;;15412:62;-1:-1:-1;;;15490:18:1;;;15483:31;15531:19;;42802:92:0::1;15159:397:1::0;42802:92:0::1;738:10:::0;42909:23:::1;::::0;;;:9:::1;:23;::::0;;;;;41852:1:::1;::::0;42909:43:::1;::::0;42937:14;42909:27:::1;:43::i;:::-;:65;42901:107;;;::::0;-1:-1:-1;;;42901:107:0;;15763:2:1;42901:107:0::1;::::0;::::1;15745:21:1::0;15802:2;15782:18;;;15775:30;15841:31;15821:18;;;15814:59;15890:18;;42901:107:0::1;15561:353:1::0;42901:107:0::1;43036:10;::::0;:30:::1;::::0;43051:14;43036::::1;:30::i;:::-;43023:9;:43;43015:81;;;::::0;-1:-1:-1;;;43015:81:0;;16121:2:1;43015:81:0::1;::::0;::::1;16103:21:1::0;16160:2;16140:18;;;16133:30;-1:-1:-1;;;16179:18:1;;;16172:55;16244:18;;43015:81:0::1;15919:349:1::0;43015:81:0::1;43110:6;43105:97;43126:14;43122:1;:18;43105:97;;;43156:38;738:10:::0;43166:12:::1;35896:7:::0;:14;44388:9:::1;:26::i;43156:38::-;43142:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43105:97;;;-1:-1:-1::0;738:10:0;43208:23:::1;::::0;;;:9:::1;:23;::::0;;;;:41;;43235:14;;43208:23;:41:::1;::::0;43235:14;;43208:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;2570:1:0;3524:7;:22;-1:-1:-1;;42526:729:0:o;24296:104::-;24352:13;24385:7;24378:14;;;;;:::i;25319:327::-;-1:-1:-1;;;;;25454:24:0;;738:10;25454:24;;25446:62;;;;-1:-1:-1;;;25446:62:0;;16475:2:1;25446:62:0;;;16457:21:1;16514:2;16494:18;;;16487:30;16553:27;16533:18;;;16526:55;16598:18;;25446:62:0;16273:349:1;25446:62:0;738:10;25521:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25521:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25521:53:0;;;;;;;;;;25590:48;;540:41:1;;;25521:42:0;;738:10;25590:48;;513:18:1;25590:48:0;;;;;;;25319:327;;:::o;26701:365::-;26890:41;738:10;26923:7;26890:18;:41::i;:::-;26868:140;;;;-1:-1:-1;;;26868:140:0;;;;;;;:::i;:::-;27019:39;27033:4;27039:2;27043:7;27052:5;27019:13;:39::i;:::-;26701:365;;;;:::o;45311:613::-;2614:1;3212:7;;:19;;3204:63;;;;-1:-1:-1;;;3204:63:0;;;;;;;:::i;:::-;2614:1;3345:7;:18;45442:15:::1;::::0;::::1;;45434:61;;;::::0;-1:-1:-1;;;45434:61:0;;16829:2:1;45434:61:0::1;::::0;::::1;16811:21:1::0;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;-1:-1:-1;;;16958:18:1;;;16951:31;16999:19;;45434:61:0::1;16627:397:1::0;45434:61:0::1;46033:32:::0;;;738:10;24114:2:1;24110:15;-1:-1:-1;;24106:53:1;46033:32:0;;;;24094:66:1;;;;24176:12;;;;24169:28;;;46033:32:0;;;;;;;;;;24213:12:1;;;;46033:32:0;;;46023:43;;;;;45518:44:::1;::::0;45556:5:::1;45518:7;:44::i;:::-;45502:109;;;::::0;-1:-1:-1;;;45502:109:0;;17231:2:1;45502:109:0::1;::::0;::::1;17213:21:1::0;17270:2;17250:18;;;17243:30;17309:33;17289:18;;;17282:61;17360:18;;45502:109:0::1;17029:355:1::0;45502:109:0::1;738:10:::0;45626:23:::1;::::0;;;:9:::1;:23;::::0;;;;;45670:7;;45626:40:::1;::::0;45652:14;;45626:40:::1;:::i;:::-;:51;;45618:88;;;::::0;-1:-1:-1;;;45618:88:0;;17591:2:1;45618:88:0::1;::::0;::::1;17573:21:1::0;17630:2;17610:18;;;17603:30;17669:26;17649:18;;;17642:54;17713:18;;45618:88:0::1;17389:348:1::0;45618:88:0::1;45721:9;:14:::0;45713:52:::1;;;::::0;-1:-1:-1;;;45713:52:0;;16121:2:1;45713:52:0::1;::::0;::::1;16103:21:1::0;16160:2;16140:18;;;16133:30;-1:-1:-1;;;16179:18:1;;;16172:55;16244:18;;45713:52:0::1;15919:349:1::0;45713:52:0::1;45779:6;45774:97;45795:14;45791:1;:18;45774:97;;;45825:38;738:10:::0;45835:12:::1;658:98:::0;45825:38:::1;45811:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45774:97;;;-1:-1:-1::0;738:10:0;45877:23:::1;::::0;;;:9:::1;:23;::::0;;;;:41;;45904:14;;45877:23;:41:::1;::::0;45904:14;;45877:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;2570:1:0;3524:7;:22;-1:-1:-1;;;45311:613:0:o;44778:527::-;2614:1;3212:7;;:19;;3204:63;;;;-1:-1:-1;;;3204:63:0;;;;;;;:::i;:::-;2614:1;3345:7;:18;44861:12:::1;::::0;::::1;::::0;::::1;;;44853:52;;;::::0;-1:-1:-1;;;44853:52:0;;17944:2:1;44853:52:0::1;::::0;::::1;17926:21:1::0;17983:2;17963:18;;;17956:30;18022:29;18002:18;;;17995:57;18069:18;;44853:52:0::1;17742:351:1::0;44853:52:0::1;41752:2;44920:14;:34;44912:81;;;::::0;-1:-1:-1;;;44912:81:0;;18300:2:1;44912:81:0::1;::::0;::::1;18282:21:1::0;18339:2;18319:18;;;18312:30;18378:34;18358:18;;;18351:62;-1:-1:-1;;;18429:18:1;;;18422:32;18471:19;;44912:81:0::1;18098:398:1::0;44912:81:0::1;41796:5;45014:33;45032:14;45014:13;35896:7:::0;:14;;35808:110;45014:33:::1;:46;45006:91;;;::::0;-1:-1:-1;;;45006:91:0;;18703:2:1;45006:91:0::1;::::0;::::1;18685:21:1::0;;;18722:18;;;18715:30;18781:34;18761:18;;;18754:62;18833:18;;45006:91:0::1;18501:356:1::0;45006:91:0::1;45125:10;::::0;:30:::1;::::0;45140:14;45125::::1;:30::i;:::-;45112:9;:43;45104:87;;;::::0;-1:-1:-1;;;45104:87:0;;19064:2:1;45104:87:0::1;::::0;::::1;19046:21:1::0;19103:2;19083:18;;;19076:30;19142:33;19122:18;;;19115:61;19193:18;;45104:87:0::1;18862:355:1::0;45104:87:0::1;45208:6;45204:96;45224:14;45220:1;:18;45204:96;;;45254:38;738:10:::0;45264:12:::1;658:98:::0;45254:38:::1;45240:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45204:96;;;-1:-1:-1::0;;2570:1:0;3524:7;:22;44778:527::o;46335:213::-;46394:13;46424:17;46432:8;46424:7;:17::i;:::-;46416:51;;;;-1:-1:-1;;;46416:51:0;;19424:2:1;46416:51:0;;;19406:21:1;19463:2;19443:18;;;19436:30;-1:-1:-1;;;19482:18:1;;;19475:51;19543:18;;46416:51:0;19222:345:1;46416:51:0;46505:7;46514:26;46531:8;46514:16;:26::i;:::-;46488:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46474:68;;46335:213;;;:::o;46240:89::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;46297:19:::1;:26:::0;46240:89::o;44678:92::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;44749:15:::1;::::0;;-1:-1:-1;;44730:34:0;::::1;44749:15;::::0;;::::1;44748:16;44730:34;::::0;;44678:92::o;38693:201::-;37857:6;;-1:-1:-1;;;;;37857:6:0;738:10;38004:23;37996:68;;;;-1:-1:-1;;;37996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38782:22:0;::::1;38774:73;;;::::0;-1:-1:-1;;;38774:73:0;;21269:2:1;38774:73:0::1;::::0;::::1;21251:21:1::0;21308:2;21288:18;;;21281:30;21347:34;21327:18;;;21320:62;-1:-1:-1;;;21398:18:1;;;21391:36;21444:19;;38774:73:0::1;21067:402:1::0;38774:73:0::1;38858:28;38877:8;38858:18;:28::i;:::-;38693:201:::0;:::o;22861:355::-;23008:4;-1:-1:-1;;;;;;23050:40:0;;-1:-1:-1;;;23050:40:0;;:105;;-1:-1:-1;;;;;;;23107:48:0;;-1:-1:-1;;;23107:48:0;23050:105;:158;;;-1:-1:-1;;;;;;;;;;12782:40:0;;;23172:36;12673:157;28613:155;28712:7;:14;28678:4;;28702:24;;:58;;;;;28758:1;-1:-1:-1;;;;;28730:30:0;:7;28738;28730:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28730:16:0;:30;;28695:65;28613:155;-1:-1:-1;;28613:155:0:o;32638:174::-;32713:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32713:29:0;-1:-1:-1;;;;;32713:29:0;;;;;;;;:24;;32767:23;32713:24;32767:14;:23::i;:::-;-1:-1:-1;;;;;32758:46:0;;;;;;;;;;;32638:174;;:::o;28935:452::-;29064:4;29108:16;29116:7;29108;:16::i;:::-;29086:110;;;;-1:-1:-1;;;29086:110:0;;21676:2:1;29086:110:0;;;21658:21:1;21715:2;21695:18;;;21688:30;21754:34;21734:18;;;21727:62;-1:-1:-1;;;21805:18:1;;;21798:42;21857:19;;29086:110:0;21474:408:1;29086:110:0;29207:13;29223:23;29238:7;29223:14;:23::i;:::-;29207:39;;29276:5;-1:-1:-1;;;;;29265:16:0;:7;-1:-1:-1;;;;;29265:16:0;;:64;;;;29322:7;-1:-1:-1;;;;;29298:31:0;:20;29310:7;29298:11;:20::i;:::-;-1:-1:-1;;;;;29298:31:0;;29265:64;:113;;;-1:-1:-1;;;;;;25888:25:0;;;25859:4;25888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29346:32;29257:122;28935:452;-1:-1:-1;;;;28935:452:0:o;31967:553::-;32140:4;-1:-1:-1;;;;;32113:31:0;:23;32128:7;32113:14;:23::i;:::-;-1:-1:-1;;;;;32113:31:0;;32091:122;;;;-1:-1:-1;;;32091:122:0;;22089:2:1;32091:122:0;;;22071:21:1;22128:2;22108:18;;;22101:30;22167:34;22147:18;;;22140:62;-1:-1:-1;;;22218:18:1;;;22211:39;22267:19;;32091:122:0;21887:405:1;32091:122:0;-1:-1:-1;;;;;32232:16:0;;32224:65;;;;-1:-1:-1;;;32224:65:0;;22499:2:1;32224:65:0;;;22481:21:1;22538:2;22518:18;;;22511:30;22577:34;22557:18;;;22550:62;-1:-1:-1;;;22628:18:1;;;22621:34;22672:19;;32224:65:0;22297:400:1;32224:65:0;32406:29;32423:1;32427:7;32406:8;:29::i;:::-;32465:2;32446:7;32454;32446:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32446:21:0;-1:-1:-1;;;;;32446:21:0;;;;;;32485:27;;32504:7;;32485:27;;;;;;;;;;32446:16;32485:27;31967:553;;;:::o;16366:98::-;16424:7;16451:5;16455:1;16451;:5;:::i;:::-;16444:12;16366:98;-1:-1:-1;;;16366:98:0:o;16764:::-;16822:7;16849:5;16853:1;16849;:5;:::i;39054:191::-;39147:6;;;-1:-1:-1;;;;;39164:17:0;;;-1:-1:-1;;;;;;39164:17:0;;;;;;;39197:40;;39147:6;;;39164:17;39147:6;;39197:40;;39128:16;;39197:40;39117:128;39054:191;:::o;29729:110::-;29805:26;29815:2;29819:7;29805:26;;;;;;;;;;;;:9;:26::i;16010:98::-;16068:7;16095:5;16099:1;16095;:5;:::i;42369:151::-;42433:4;738:10;42461:19;;42453:45;;-1:-1:-1;;;42453:45:0;;;;;2360:25:1;;;-1:-1:-1;;;;;42453:61:0;;;;42461:19;;;;42453:36;;2333:18:1;;42453:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42453:61:0;;;42369:151;-1:-1:-1;;42369:151:0:o;15630:98::-;15688:7;15715:5;15719:1;15715;:5;:::i;27948:352::-;28105:28;28115:4;28121:2;28125:7;28105:9;:28::i;:::-;28166:48;28189:4;28195:2;28199:7;28208:5;28166:22;:48::i;:::-;28144:148;;;;-1:-1:-1;;;28144:148:0;;;;;;;:::i;46078:156::-;46156:4;46176:52;46195:5;46202:19;;46223:4;46176:18;:52::i;20347:722::-;20403:13;20623:10;20619:53;;-1:-1:-1;;20650:10:0;;;;;;;;;;;;-1:-1:-1;;;20650:10:0;;;;;20347:722::o;20619:53::-;20697:5;20682:12;20738:78;20745:9;;20738:78;;20771:8;;;;:::i;:::-;;-1:-1:-1;20794:10:0;;-1:-1:-1;20802:2:0;20794:10;;:::i;:::-;;;20738:78;;;20826:19;20858:6;20848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20848:17:0;;20826:39;;20876:154;20883:10;;20876:154;;20910:11;20920:1;20910:11;;:::i;:::-;;-1:-1:-1;20979:10:0;20987:2;20979:5;:10;:::i;:::-;20966:24;;:2;:24;:::i;:::-;20953:39;;20936:6;20943;20936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20936:56:0;;;;;;;;-1:-1:-1;21007:11:0;21016:2;21007:11;;:::i;:::-;;;20876:154;;30066:321;30196:18;30202:2;30206:7;30196:5;:18::i;:::-;30247:54;30278:1;30282:2;30286:7;30295:5;30247:22;:54::i;:::-;30225:154;;;;-1:-1:-1;;;30225:154:0;;;;;;;:::i;33377:980::-;33532:4;-1:-1:-1;;;;;33553:13:0;;19967:20;20015:8;33549:801;;33606:175;;-1:-1:-1;;;33606:175:0;;-1:-1:-1;;;;;33606:36:0;;;;;:175;;738:10;;33700:4;;33727:7;;33757:5;;33606:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33606:175:0;;;;;;;;-1:-1:-1;;33606:175:0;;;;;;;;;;;;:::i;:::-;;;33585:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33964:13:0;;33960:320;;34007:108;;-1:-1:-1;;;34007:108:0;;;;;;;:::i;33960:320::-;34230:6;34224:13;34215:6;34211:2;34207:15;34200:38;33585:710;-1:-1:-1;;;;;;33845:51:0;-1:-1:-1;;;33845:51:0;;-1:-1:-1;33838:58:0;;33549:801;-1:-1:-1;34334:4:0;33377:980;;;;;;:::o;40087:190::-;40212:4;40265;40236:25;40249:5;40256:4;40236:12;:25::i;:::-;:33;;40087:190;-1:-1:-1;;;;40087:190:0:o;30723:346::-;-1:-1:-1;;;;;30803:16:0;;30795:61;;;;-1:-1:-1;;;30795:61:0;;25314:2:1;30795:61:0;;;25296:21:1;;;25333:18;;;25326:30;25392:34;25372:18;;;25365:62;25444:18;;30795:61:0;25112:356:1;30795:61:0;30876:16;30884:7;30876;:16::i;:::-;30875:17;30867:58;;;;-1:-1:-1;;;30867:58:0;;25675:2:1;30867:58:0;;;25657:21:1;25714:2;25694:18;;;25687:30;25753;25733:18;;;25726:58;25801:18;;30867:58:0;25473:352:1;30867:58:0;30994:7;:16;;;;;;;-1:-1:-1;30994:16:0;;;;;;;-1:-1:-1;;;;;;30994:16:0;-1:-1:-1;;;;;30994:16:0;;;;;;;;31028:33;;31053:7;;-1:-1:-1;31028:33:0;;-1:-1:-1;;31028:33:0;30723:346;;:::o;40639:701::-;40722:7;40765:4;40722:7;40780:523;40804:5;:12;40800:1;:16;40780:523;;;40838:20;40861:5;40867:1;40861:8;;;;;;;;:::i;:::-;;;;;;;40838:31;;40904:12;40888;:28;40884:408;;41041:44;;;;;;25987:19:1;;;26022:12;;;26015:28;;;26059:12;;41041:44:0;;;;;;;;;;;;41031:55;;;;;;41016:70;;40884:408;;;41231:44;;;;;;25987:19:1;;;26022:12;;;26015:28;;;26059:12;;41231:44:0;;;;;;;;;;;;41221:55;;;;;;41206:70;;40884:408;-1:-1:-1;40818:3:0;;;;:::i;:::-;;;;40780:523;;;-1:-1:-1;41320:12:0;40639:701;-1:-1:-1;;;40639:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:275;3060:2;3054:9;3125:2;3106:13;;-1:-1:-1;;3102:27:1;3090:40;;3160:18;3145:34;;3181:22;;;3142:62;3139:88;;;3207:18;;:::i;:::-;3243:2;3236:22;2989:275;;-1:-1:-1;2989:275:1:o;3269:407::-;3334:5;3368:18;3360:6;3357:30;3354:56;;;3390:18;;:::i;:::-;3428:57;3473:2;3452:15;;-1:-1:-1;;3448:29:1;3479:4;3444:40;3428:57;:::i;:::-;3419:66;;3508:6;3501:5;3494:21;3548:3;3539:6;3534:3;3530:16;3527:25;3524:45;;;3565:1;3562;3555:12;3524:45;3614:6;3609:3;3602:4;3595:5;3591:16;3578:43;3668:1;3661:4;3652:6;3645:5;3641:18;3637:29;3630:40;3269:407;;;;;:::o;3681:451::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3859:9;3846:23;3892:18;3884:6;3881:30;3878:50;;;3924:1;3921;3914:12;3878:50;3947:22;;4000:4;3992:13;;3988:27;-1:-1:-1;3978:55:1;;4029:1;4026;4019:12;3978:55;4052:74;4118:7;4113:2;4100:16;4095:2;4091;4087:11;4052:74;:::i;4137:247::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4304:9;4291:23;4323:31;4348:5;4323:31;:::i;4389:248::-;4457:6;4465;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;-1:-1:-1;;4557:23:1;;;4627:2;4612:18;;;4599:32;;-1:-1:-1;4389:248:1:o;4642:416::-;4707:6;4715;4768:2;4756:9;4747:7;4743:23;4739:32;4736:52;;;4784:1;4781;4774:12;4736:52;4823:9;4810:23;4842:31;4867:5;4842:31;:::i;:::-;4892:5;-1:-1:-1;4949:2:1;4934:18;;4921:32;4991:15;;4984:23;4972:36;;4962:64;;5022:1;5019;5012:12;4962:64;5045:7;5035:17;;;4642:416;;;;;:::o;5245:795::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5473:9;5460:23;5492:31;5517:5;5492:31;:::i;:::-;5542:5;-1:-1:-1;5599:2:1;5584:18;;5571:32;5612:33;5571:32;5612:33;:::i;:::-;5664:7;-1:-1:-1;5718:2:1;5703:18;;5690:32;;-1:-1:-1;5773:2:1;5758:18;;5745:32;5800:18;5789:30;;5786:50;;;5832:1;5829;5822:12;5786:50;5855:22;;5908:4;5900:13;;5896:27;-1:-1:-1;5886:55:1;;5937:1;5934;5927:12;5886:55;5960:74;6026:7;6021:2;6008:16;6003:2;5999;5995:11;5960:74;:::i;:::-;5950:84;;;5245:795;;;;;;;:::o;6045:1082::-;6147:6;6155;6163;6216:2;6204:9;6195:7;6191:23;6187:32;6184:52;;;6232:1;6229;6222:12;6184:52;6268:9;6255:23;6245:33;;6297:2;6346;6335:9;6331:18;6318:32;6308:42;;6401:2;6390:9;6386:18;6373:32;6424:18;6465:2;6457:6;6454:14;6451:34;;;6481:1;6478;6471:12;6451:34;6519:6;6508:9;6504:22;6494:32;;6564:7;6557:4;6553:2;6549:13;6545:27;6535:55;;6586:1;6583;6576:12;6535:55;6622:2;6609:16;6644:2;6640;6637:10;6634:36;;;6650:18;;:::i;:::-;6696:2;6693:1;6689:10;6679:20;;6719:28;6743:2;6739;6735:11;6719:28;:::i;:::-;6781:15;;;6851:11;;;6847:20;;;6812:12;;;;6879:19;;;6876:39;;;6911:1;6908;6901:12;6876:39;6935:11;;;;6955:142;6971:6;6966:3;6963:15;6955:142;;;7037:17;;7025:30;;6988:12;;;;7075;;;;6955:142;;;7116:5;7106:15;;;;;;;;6045:1082;;;;;:::o;7317:388::-;7385:6;7393;7446:2;7434:9;7425:7;7421:23;7417:32;7414:52;;;7462:1;7459;7452:12;7414:52;7501:9;7488:23;7520:31;7545:5;7520:31;:::i;:::-;7570:5;-1:-1:-1;7627:2:1;7612:18;;7599:32;7640:33;7599:32;7640:33;:::i;7710:380::-;7789:1;7785:12;;;;7832;;;7853:61;;7907:4;7899:6;7895:17;7885:27;;7853:61;7960:2;7952:6;7949:14;7929:18;7926:38;7923:161;;;8006:10;8001:3;7997:20;7994:1;7987:31;8041:4;8038:1;8031:15;8069:4;8066:1;8059:15;7923:161;;7710:380;;;:::o;9335:413::-;9537:2;9519:21;;;9576:2;9556:18;;;9549:30;9615:34;9610:2;9595:18;;9588:62;-1:-1:-1;;;9681:2:1;9666:18;;9659:47;9738:3;9723:19;;9335:413::o;9753:407::-;9955:2;9937:21;;;9994:2;9974:18;;;9967:30;10033:34;10028:2;10013:18;;10006:62;-1:-1:-1;;;10099:2:1;10084:18;;10077:41;10150:3;10135:19;;9753:407::o;10165:127::-;10226:10;10221:3;10217:20;10214:1;10207:31;10257:4;10254:1;10247:15;10281:4;10278:1;10271:15;10297:127;10358:10;10353:3;10349:20;10346:1;10339:31;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10429:135;10468:3;-1:-1:-1;;10489:17:1;;10486:43;;;10509:18;;:::i;:::-;-1:-1:-1;10556:1:1;10545:13;;10429:135::o;10569:356::-;10771:2;10753:21;;;10790:18;;;10783:30;10849:34;10844:2;10829:18;;10822:62;10916:2;10901:18;;10569:356::o;10930:355::-;11132:2;11114:21;;;11171:2;11151:18;;;11144:30;11210:33;11205:2;11190:18;;11183:61;11276:2;11261:18;;10930:355::o;14204:128::-;14244:3;14275:1;14271:6;14268:1;14265:13;14262:39;;;14281:18;;:::i;:::-;-1:-1:-1;14317:9:1;;14204:128::o;19698:185::-;19740:3;19778:5;19772:12;19793:52;19838:6;19833:3;19826:4;19819:5;19815:16;19793:52;:::i;:::-;19861:16;;;;;19698:185;-1:-1:-1;;19698:185:1:o;19888:1174::-;20064:3;20093:1;20126:6;20120:13;20156:3;20178:1;20206:9;20202:2;20198:18;20188:28;;20266:2;20255:9;20251:18;20288;20278:61;;20332:4;20324:6;20320:17;20310:27;;20278:61;20358:2;20406;20398:6;20395:14;20375:18;20372:38;20369:165;;;-1:-1:-1;;;20433:33:1;;20489:4;20486:1;20479:15;20519:4;20440:3;20507:17;20369:165;20550:18;20577:104;;;;20695:1;20690:320;;;;20543:467;;20577:104;-1:-1:-1;;20610:24:1;;20598:37;;20655:16;;;;-1:-1:-1;20577:104:1;;20690:320;19645:1;19638:14;;;19682:4;19669:18;;20785:1;20799:165;20813:6;20810:1;20807:13;20799:165;;;20891:14;;20878:11;;;20871:35;20934:16;;;;20828:10;;20799:165;;;20803:3;;20993:6;20988:3;20984:16;20977:23;;20543:467;;;;;;;21026:30;21052:3;21044:6;21026:30;:::i;:::-;21019:37;19888:1174;-1:-1:-1;;;;;19888:1174:1:o;22702:168::-;22742:7;22808:1;22804;22800:6;22796:14;22793:1;22790:21;22785:1;22778:9;22771:17;22767:45;22764:71;;;22815:18;;:::i;:::-;-1:-1:-1;22855:9:1;;22702:168::o;22875:127::-;22936:10;22931:3;22927:20;22924:1;22917:31;22967:4;22964:1;22957:15;22991:4;22988:1;22981:15;23007:120;23047:1;23073;23063:35;;23078:18;;:::i;:::-;-1:-1:-1;23112:9:1;;23007:120::o;23132:125::-;23172:4;23200:1;23197;23194:8;23191:34;;;23205:18;;:::i;:::-;-1:-1:-1;23242:9:1;;23132:125::o;23262:251::-;23332:6;23385:2;23373:9;23364:7;23360:23;23356:32;23353:52;;;23401:1;23398;23391:12;23353:52;23433:9;23427:16;23452:31;23477:5;23452:31;:::i;23518:414::-;23720:2;23702:21;;;23759:2;23739:18;;;23732:30;23798:34;23793:2;23778:18;;23771:62;-1:-1:-1;;;23864:2:1;23849:18;;23842:48;23922:3;23907:19;;23518:414::o;24236:112::-;24268:1;24294;24284:35;;24299:18;;:::i;:::-;-1:-1:-1;24333:9:1;;24236:112::o;24353:500::-;-1:-1:-1;;;;;24622:15:1;;;24604:34;;24674:15;;24669:2;24654:18;;24647:43;24721:2;24706:18;;24699:34;;;24769:3;24764:2;24749:18;;24742:31;;;24547:4;;24790:57;;24827:19;;24819:6;24790:57;:::i;:::-;24782:65;24353:500;-1:-1:-1;;;;;;24353:500:1:o;24858:249::-;24927:6;24980:2;24968:9;24959:7;24955:23;24951:32;24948:52;;;24996:1;24993;24986:12;24948:52;25028:9;25022:16;25047:30;25071:5;25047:30;:::i

Swarm Source

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