ETH Price: $3,362.96 (-1.57%)
Gas: 8 Gwei

Token

Grandpa Ape Country Club (GACC)
 

Overview

Max Total Supply

5,000 GACC

Holders

1,831

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GACC
0xf39df112eA070c93F2841650805fdE216218a572
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:
GrandpaApeCountryClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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 _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

// File: openzeppelin-solidity\contracts\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;
    address private _creator;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), 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() || _creator == _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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

pragma solidity ^0.8.0;

contract GrandpaApeCountryClub is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _PaymentAddress = payable(0x811B576a3FA0D877411D34Db0024De59DC8D2dA4);

    uint256 public GACC_MAX = 5000;
    uint256 public PRESALE_PRICE = 0.03 ether;
    uint256 public PUBLIC_PRICE = 0.03 ether;
    uint256 private PRESALE_HOURS = 24 hours;
    uint256 public PURCHASE_LIMIT = 3;
    uint256 public PRESALE_MINT_LIMIT = 3;
    uint256 public PUBLIC_MINT_LIMIT = 15;
    uint256 private FEE_PERCENT = 0;
    
    mapping(address => bool) _mappingWhiteList;
    mapping(uint256 => uint256) _mappingMintTimestamp;
    mapping(address => uint256) _mappingMintCount;

    uint256 private _activeDateTime;
    uint256 private _revealDateTime;
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicGACC;

    constructor() ERC721("Grandpa Ape Country Club", "GACC") {}

    function setPaymentAddress(address paymentAddress) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
    }

    function setDevFee(uint256 devFee) external onlyOwner {
        FEE_PERCENT = devFee;
    }

    function setActiveDateTime(uint256 activeDateTime, uint256 revealDateTime) external onlyOwner {
        _activeDateTime = activeDateTime;
        _revealDateTime = revealDateTime;
    }

    function setPresaleHours (uint256 presaleHours) external onlyOwner {
        PRESALE_HOURS = presaleHours;
    }

    function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner {
        for (uint256 i = 0; i < whiteListAddress.length; i++) {
            _mappingWhiteList[whiteListAddress[i]] = bEnable;
        }
    }

    function setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner {
        PRESALE_PRICE = presaleMintPrice;
        PUBLIC_PRICE = publicMintPrice;
    }

    function setMaxLimit(uint256 maxLimit) external onlyOwner {
        GACC_MAX = maxLimit;
    }

    function setPurchaseLimit(uint256 purchaseLimit, uint256 presaleMintLimit, uint256 publicMintLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
        PRESALE_MINT_LIMIT = presaleMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

    function PRICE(address addr) public view returns (uint256) {
        require(block.timestamp > _activeDateTime - PRESALE_HOURS , "Mint is not activated");

        if (block.timestamp < _activeDateTime) {
            require(_mappingWhiteList[addr] == true , "Only Whitelist member can mint now");
            return PRESALE_PRICE;
        } else {
            return PUBLIC_PRICE;
        }
    }

    function setRevealURI(string memory revealURI) external onlyOwner {
        _revealURI = revealURI;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
    }

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicGACC.current();

            if (_publicGACC.current() < GACC_MAX) {
                _publicGACC.increment();
                _safeMint(to, tokenId);
                _mappingMintTimestamp[tokenId] = block.timestamp;
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
        require(_publicGACC.current() < GACC_MAX,"Purchase would exceed GACC_MAX");

        if (msg.sender != owner()) {
            _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + numberOfTokens;

            require(PRICE(msg.sender) * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            if (_mappingWhiteList[msg.sender] == false) {
                require(block.timestamp > _activeDateTime,"Contract is not active");
                require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            } else {
                if (block.timestamp < _activeDateTime) {
                    require(block.timestamp > _activeDateTime - PRESALE_HOURS,"Contract is not active for presale");
                    require(_mappingMintCount[msg.sender] <= PRESALE_MINT_LIMIT,"Overflow for PRESALE_MINT_LIMIT");
                } else {
                    require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT");
                }
            }

            if (FEE_PERCENT > 0) {
                uint256 feeAmount = (msg.value * FEE_PERCENT) / 100;
                _PaymentAddress.transfer(msg.value - feeAmount);
            } else {
                _PaymentAddress.transfer(msg.value);
            }
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicGACC.current();

            if (_publicGACC.current() < GACC_MAX) {
                _publicGACC.increment();
                _safeMint(msg.sender, tokenId);
                _mappingMintTimestamp[tokenId] = block.timestamp;
            }
        }
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        if (_revealDateTime < block.timestamp) {
            return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
        }

        return _revealURI;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

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":"GACC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"activeDateTime","type":"uint256"},{"internalType":"uint256","name":"revealDateTime","type":"uint256"}],"name":"setActiveDateTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleHours","type":"uint256"}],"name":"setPresaleHours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c80546001600160a01b03191673811b576a3fa0d877411d34db0024de59dc8d2da4179055611388600d55666a94d74f430000600e819055600f90815562015180601055600360118190556012556013556000601481905560a0604081905260808290526200007391601a919062000193565b506040805160208101918290526000908190526200009491601b9162000193565b50348015620000a257600080fd5b50604080518082018252601881527f4772616e6470612041706520436f756e74727920436c756200000000000000006020808301918252835180850190945260048452634741434360e01b908401528151919291620001049160009162000193565b5080516200011a90600190602084019062000193565b50505060006200012f6200018f60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000276565b3390565b828054620001a19062000239565b90600052602060002090601f016020900481019282620001c5576000855562000210565b82601f10620001e057805160ff191683800117855562000210565b8280016001018555821562000210579182015b8281111562000210578251825591602001919060010190620001f3565b506200021e92915062000222565b5090565b5b808211156200021e576000815560010162000223565b600181811c908216806200024e57607f821691505b602082108114156200027057634e487b7160e01b600052602260045260246000fd5b50919050565b612b5180620002866000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063bceae77b116100ab578063e43f696e1161006f578063e43f696e14610654578063e985e9c514610674578063efef39a1146106bd578063f2fde38b146106d0578063f5ebec80146106f057600080fd5b8063bceae77b146105d2578063bf8bcee4146105e8578063c87b56dd14610608578063d1fa35b114610628578063d75e61101461063e57600080fd5b8063a811a37b116100f2578063a811a37b14610532578063b44302a314610552578063b887534314610572578063b88d4fde14610592578063bc7e2424146105b257600080fd5b8063715018a6146104aa5780638ba4cc3c146104bf5780638da5cb5b146104df57806395d89b41146104fd578063a22cb4651461051257600080fd5b80632f745c59116101bc5780635e1e1004116101805780635e1e10041461041e578063611f3f101461043e57806362dc6e21146104545780636352211e1461046a57806370a082311461048a57600080fd5b80632f745c59146103895780633ccfd60b146103a957806342842e0e146103be5780634f6ccce7146103de57806355f804b3146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630b2df33d1461030657806318160ddd146103345780631c75b6b21461034957806323b872dd1461036957600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461266a565b610706565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004612706565b610731565b005b34801561029857600080fd5b506102a1610784565b6040516102619190612880565b3480156102ba57600080fd5b506102ce6102c93660046126ed565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a61030136600461257a565b6108ab565b34801561031257600080fd5b50610326610321366004612443565b6109c1565b604051908152602001610261565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061028a6103643660046126ed565b610ab0565b34801561037557600080fd5b5061028a610384366004612498565b610af4565b34801561039557600080fd5b506103266103a436600461257a565b610b25565b3480156103b557600080fd5b5061028a610bbb565b3480156103ca57600080fd5b5061028a6103d9366004612498565b610c2d565b3480156103ea57600080fd5b506103266103f93660046126ed565b610c48565b34801561040a57600080fd5b5061028a6104193660046126a4565b610cdb565b34801561042a57600080fd5b5061028a610439366004612443565b610d2d565b34801561044a57600080fd5b50610326600f5481565b34801561046057600080fd5b50610326600e5481565b34801561047657600080fd5b506102ce6104853660046126ed565b610d8e565b34801561049657600080fd5b506103266104a5366004612443565b610e05565b3480156104b657600080fd5b5061028a610e8c565b3480156104cb57600080fd5b5061028a6104da36600461257a565b610f15565b3480156104eb57600080fd5b50600a546001600160a01b03166102ce565b34801561050957600080fd5b506102a1610fb7565b34801561051e57600080fd5b5061028a61052d366004612550565b610fc6565b34801561053e57600080fd5b5061028a61054d3660046126a4565b61108b565b34801561055e57600080fd5b5061028a61056d3660046126ed565b6110dd565b34801561057e57600080fd5b5061028a61058d366004612706565b611121565b34801561059e57600080fd5b5061028a6105ad3660046124d4565b61116b565b3480156105be57600080fd5b5061028a6105cd366004612728565b6111a3565b3480156105de57600080fd5b5061032660135481565b3480156105f457600080fd5b5061028a6106033660046126ed565b6111f0565b34801561061457600080fd5b506102a16106233660046126ed565b611234565b34801561063457600080fd5b50610326600d5481565b34801561064a57600080fd5b5061032660115481565b34801561066057600080fd5b5061028a61066f3660046125a4565b611360565b34801561068057600080fd5b5061025561068f366004612465565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106cb3660046126ed565b611406565b3480156106dc57600080fd5b5061028a6106eb366004612443565b61188d565b3480156106fc57600080fd5b5061032660125481565b60006001600160e01b0319821663780e9d6360e01b148061072b575061072b8261198d565b92915050565b600a546001600160a01b03163314806107545750600b546001600160a01b031633145b6107795760405162461bcd60e51b8152600401610770906128e5565b60405180910390fd5b600e91909155600f55565b60606000805461079390612a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf90612a2a565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b506000908152600460205260409020546001600160a01b031690565b60006108b682610d8e565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b03821614806109405750610940813361068f565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6109bc83836119dd565b505050565b60006010546018546109d391906129e7565b4211610a195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b6044820152606401610770565b601854421015610aa3576001600160a01b03821660009081526015602052604090205460ff161515600114610a9b5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b6064820152608401610770565b5050600e5490565b5050600f5490565b919050565b600a546001600160a01b0316331480610ad35750600b546001600160a01b031633145b610aef5760405162461bcd60e51b8152600401610770906128e5565b601455565b610afe3382611a4b565b610b1a5760405162461bcd60e51b81526004016107709061291a565b6109bc838383611b42565b6000610b3083610e05565b8210610b925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610770565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bde5750600b546001600160a01b031633145b610bfa5760405162461bcd60e51b8152600401610770906128e5565b6040514790339082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5050565b6109bc8383836040518060200160405280600081525061116b565b6000610c5360085490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610770565b60088281548110610cc957610cc9612ad6565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cfe5750600b546001600160a01b031633145b610d1a5760405162461bcd60e51b8152600401610770906128e5565b8051610c2990601a90602084019061232b565b600a546001600160a01b0316331480610d505750600b546001600160a01b031633145b610d6c5760405162461bcd60e51b8152600401610770906128e5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061072b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610eaf5750600b546001600160a01b031633145b610ecb5760405162461bcd60e51b8152600401610770906128e5565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610f385750600b546001600160a01b031633145b610f545760405162461bcd60e51b8152600401610770906128e5565b60005b818110156109bc576000610f6a601c5490565b9050600d54610f78601c5490565b1015610fa457610f88601c611ced565b610f928482611d0a565b60008181526016602052604090204290555b5080610faf81612a65565b915050610f57565b60606001805461079390612a2a565b6001600160a01b03821633141561101f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110ae5750600b546001600160a01b031633145b6110ca5760405162461bcd60e51b8152600401610770906128e5565b8051610c2990601b90602084019061232b565b600a546001600160a01b03163314806111005750600b546001600160a01b031633145b61111c5760405162461bcd60e51b8152600401610770906128e5565b601055565b600a546001600160a01b03163314806111445750600b546001600160a01b031633145b6111605760405162461bcd60e51b8152600401610770906128e5565b601891909155601955565b6111753383611a4b565b6111915760405162461bcd60e51b81526004016107709061291a565b61119d84848484611d24565b50505050565b600a546001600160a01b03163314806111c65750600b546001600160a01b031633145b6111e25760405162461bcd60e51b8152600401610770906128e5565b601192909255601255601355565b600a546001600160a01b03163314806112135750600b546001600160a01b031633145b61122f5760405162461bcd60e51b8152600401610770906128e5565b600d55565b6000818152600260205260409020546060906001600160a01b03166112925760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610770565b4260195410156112ce57601a6112a783611d57565b6040516020016112b892919061279c565b6040516020818303038152906040529050919050565b601b80546112db90612a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461130790612a2a565b80156113545780601f1061132957610100808354040283529160200191611354565b820191906000526020600020905b81548152906001019060200180831161133757829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113835750600b546001600160a01b031633145b61139f5760405162461bcd60e51b8152600401610770906128e5565b60005b82518110156109bc5781601560008584815181106113c2576113c2612ad6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113fe81612a65565b9150506113a2565b6011548111156114635760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610770565b600d54601c54106114b65760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c642065786365656420474143435f4d415800006044820152606401610770565b600a546001600160a01b0316331461182a57336000908152601760205260409020546114e390829061299c565b3360008181526017602052604090209190915534908290611503906109c1565b61150d91906129c8565b111561155b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610770565b3360009081526015602052604090205460ff166116225760185442116115bc5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610770565b60135433600090815260176020526040902054111561161d5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610770565b611780565b6018544210156116f65760105460185461163c91906129e7565b42116116955760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b6064820152608401610770565b60125433600090815260176020526040902054111561161d5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610770565b601254601354611706919061299c565b3360009081526017602052604090205411156117805760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b6064820152608401610770565b601454156117ef57600060646014543461179a91906129c8565b6117a491906129b4565b600c549091506001600160a01b03166108fc6117c083346129e7565b6040518115909202916000818181858888f193505050501580156117e8573d6000803e3d6000fd5b505061182a565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611828573d6000803e3d6000fd5b505b60005b81811015610c29576000611840601c5490565b9050600d5461184e601c5490565b101561187a5761185e601c611ced565b6118683382611d0a565b60008181526016602052604090204290555b508061188581612a65565b91505061182d565b600a546001600160a01b03163314806118b05750600b546001600160a01b031633145b6118cc5760405162461bcd60e51b8152600401610770906128e5565b6001600160a01b0381166119315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806119be57506001600160e01b03198216635b5e139f60e01b145b8061072b57506301ffc9a760e01b6001600160e01b031983161461072b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a1282610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ac45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b6000611acf83610d8e565b9050806001600160a01b0316846001600160a01b03161480611b0a5750836001600160a01b0316611aff84610816565b6001600160a01b0316145b80611b3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5582610d8e565b6001600160a01b031614611bbd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b038216611c1f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b611c2a838383611e55565b611c356000826119dd565b6001600160a01b0383166000908152600360205260408120805460019290611c5e9084906129e7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c8c90849061299c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611d02919061299c565b909155505050565b610c29828260405180602001604052806000815250611f0d565b611d2f848484611b42565b611d3b84848484611f40565b61119d5760405162461bcd60e51b815260040161077090612893565b606081611d7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da55780611d8f81612a65565b9150611d9e9050600a836129b4565b9150611d7f565b60008167ffffffffffffffff811115611dc057611dc0612aec565b6040519080825280601f01601f191660200182016040528015611dea576020820181803683370190505b5090505b8415611b3a57611dff6001836129e7565b9150611e0c600a86612a80565b611e1790603061299c565b60f81b818381518110611e2c57611e2c612ad6565b60200101906001600160f81b031916908160001a905350611e4e600a866129b4565b9450611dee565b6001600160a01b038316611eb057611eab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed3565b816001600160a01b0316836001600160a01b031614611ed357611ed3838261204d565b6001600160a01b038216611eea576109bc816120ea565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612199565b611f1783836121dd565b611f246000848484611f40565b6109bc5760405162461bcd60e51b815260040161077090612893565b60006001600160a01b0384163b1561204257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f84903390899088908890600401612843565b602060405180830381600087803b158015611f9e57600080fd5b505af1925050508015611fce575060408051601f3d908101601f19168201909252611fcb91810190612687565b60015b612028573d808015611ffc576040519150601f19603f3d011682016040523d82523d6000602084013e612001565b606091505b5080516120205760405162461bcd60e51b815260040161077090612893565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3a565b506001949350505050565b6000600161205a84610e05565b61206491906129e7565b6000838152600760205260409020549091508082146120b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120fc906001906129e7565b6000838152600960205260408120546008805493945090928490811061212457612124612ad6565b90600052602060002001549050806008838154811061214557612145612ad6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061217d5761217d612ac0565b6001900381819060005260206000200160009055905550505050565b60006121a483610e05565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b0316156122985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b6122a460008383611e55565b6001600160a01b03821660009081526003602052604081208054600192906122cd90849061299c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461233790612a2a565b90600052602060002090601f016020900481019282612359576000855561239f565b82601f1061237257805160ff191683800117855561239f565b8280016001018555821561239f579182015b8281111561239f578251825591602001919060010190612384565b506123ab9291506123af565b5090565b5b808211156123ab57600081556001016123b0565b600067ffffffffffffffff8311156123de576123de612aec565b6123f1601f8401601f191660200161296b565b905082815283838301111561240557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610aab57600080fd5b80358015158114610aab57600080fd5b60006020828403121561245557600080fd5b61245e8261241c565b9392505050565b6000806040838503121561247857600080fd5b6124818361241c565b915061248f6020840161241c565b90509250929050565b6000806000606084860312156124ad57600080fd5b6124b68461241c565b92506124c46020850161241c565b9150604084013590509250925092565b600080600080608085870312156124ea57600080fd5b6124f38561241c565b93506125016020860161241c565b925060408501359150606085013567ffffffffffffffff81111561252457600080fd5b8501601f8101871361253557600080fd5b612544878235602084016123c4565b91505092959194509250565b6000806040838503121561256357600080fd5b61256c8361241c565b915061248f60208401612433565b6000806040838503121561258d57600080fd5b6125968361241c565b946020939093013593505050565b600080604083850312156125b757600080fd5b823567ffffffffffffffff808211156125cf57600080fd5b818501915085601f8301126125e357600080fd5b81356020828211156125f7576125f7612aec565b8160051b925061260881840161296b565b8281528181019085830185870184018b101561262357600080fd5b600096505b8487101561264d576126398161241c565b835260019690960195918301918301612628565b50965061265d9050878201612433565b9450505050509250929050565b60006020828403121561267c57600080fd5b813561245e81612b02565b60006020828403121561269957600080fd5b815161245e81612b02565b6000602082840312156126b657600080fd5b813567ffffffffffffffff8111156126cd57600080fd5b8201601f810184136126de57600080fd5b611b3a848235602084016123c4565b6000602082840312156126ff57600080fd5b5035919050565b6000806040838503121561271957600080fd5b50508035926020909101359150565b60008060006060848603121561273d57600080fd5b505081359360208301359350604090920135919050565b6000815180845261276c8160208601602086016129fe565b601f01601f19169290920160200192915050565b600081516127928185602086016129fe565b9290920192915050565b600080845481600182811c9150808316806127b857607f831692505b60208084108214156127d857634e487b7160e01b86526022600452602486fd5b8180156127ec57600181146127fd5761282a565b60ff1986168952848901965061282a565b60008b81526020902060005b868110156128225781548b820152908501908301612809565b505084890196505b50505050505061283a8185612780565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287690830184612754565b9695505050505050565b60208152600061245e6020830184612754565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561299457612994612aec565b604052919050565b600082198211156129af576129af612a94565b500190565b6000826129c3576129c3612aaa565b500490565b60008160001904831182151516156129e2576129e2612a94565b500290565b6000828210156129f9576129f9612a94565b500390565b60005b83811015612a19578181015183820152602001612a01565b8381111561119d5750506000910152565b600181811c90821680612a3e57607f821691505b60208210811415612a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7957612a79612a94565b5060010190565b600082612a8f57612a8f612aaa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b1857600080fd5b5056fea26469706673582212208e4e076d04a8e5a0d8745c9f2e007627a3c78d55cad87e561721fe4f1c07f3b164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063bceae77b116100ab578063e43f696e1161006f578063e43f696e14610654578063e985e9c514610674578063efef39a1146106bd578063f2fde38b146106d0578063f5ebec80146106f057600080fd5b8063bceae77b146105d2578063bf8bcee4146105e8578063c87b56dd14610608578063d1fa35b114610628578063d75e61101461063e57600080fd5b8063a811a37b116100f2578063a811a37b14610532578063b44302a314610552578063b887534314610572578063b88d4fde14610592578063bc7e2424146105b257600080fd5b8063715018a6146104aa5780638ba4cc3c146104bf5780638da5cb5b146104df57806395d89b41146104fd578063a22cb4651461051257600080fd5b80632f745c59116101bc5780635e1e1004116101805780635e1e10041461041e578063611f3f101461043e57806362dc6e21146104545780636352211e1461046a57806370a082311461048a57600080fd5b80632f745c59146103895780633ccfd60b146103a957806342842e0e146103be5780634f6ccce7146103de57806355f804b3146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630b2df33d1461030657806318160ddd146103345780631c75b6b21461034957806323b872dd1461036957600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461266a565b610706565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004612706565b610731565b005b34801561029857600080fd5b506102a1610784565b6040516102619190612880565b3480156102ba57600080fd5b506102ce6102c93660046126ed565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a61030136600461257a565b6108ab565b34801561031257600080fd5b50610326610321366004612443565b6109c1565b604051908152602001610261565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061028a6103643660046126ed565b610ab0565b34801561037557600080fd5b5061028a610384366004612498565b610af4565b34801561039557600080fd5b506103266103a436600461257a565b610b25565b3480156103b557600080fd5b5061028a610bbb565b3480156103ca57600080fd5b5061028a6103d9366004612498565b610c2d565b3480156103ea57600080fd5b506103266103f93660046126ed565b610c48565b34801561040a57600080fd5b5061028a6104193660046126a4565b610cdb565b34801561042a57600080fd5b5061028a610439366004612443565b610d2d565b34801561044a57600080fd5b50610326600f5481565b34801561046057600080fd5b50610326600e5481565b34801561047657600080fd5b506102ce6104853660046126ed565b610d8e565b34801561049657600080fd5b506103266104a5366004612443565b610e05565b3480156104b657600080fd5b5061028a610e8c565b3480156104cb57600080fd5b5061028a6104da36600461257a565b610f15565b3480156104eb57600080fd5b50600a546001600160a01b03166102ce565b34801561050957600080fd5b506102a1610fb7565b34801561051e57600080fd5b5061028a61052d366004612550565b610fc6565b34801561053e57600080fd5b5061028a61054d3660046126a4565b61108b565b34801561055e57600080fd5b5061028a61056d3660046126ed565b6110dd565b34801561057e57600080fd5b5061028a61058d366004612706565b611121565b34801561059e57600080fd5b5061028a6105ad3660046124d4565b61116b565b3480156105be57600080fd5b5061028a6105cd366004612728565b6111a3565b3480156105de57600080fd5b5061032660135481565b3480156105f457600080fd5b5061028a6106033660046126ed565b6111f0565b34801561061457600080fd5b506102a16106233660046126ed565b611234565b34801561063457600080fd5b50610326600d5481565b34801561064a57600080fd5b5061032660115481565b34801561066057600080fd5b5061028a61066f3660046125a4565b611360565b34801561068057600080fd5b5061025561068f366004612465565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106cb3660046126ed565b611406565b3480156106dc57600080fd5b5061028a6106eb366004612443565b61188d565b3480156106fc57600080fd5b5061032660125481565b60006001600160e01b0319821663780e9d6360e01b148061072b575061072b8261198d565b92915050565b600a546001600160a01b03163314806107545750600b546001600160a01b031633145b6107795760405162461bcd60e51b8152600401610770906128e5565b60405180910390fd5b600e91909155600f55565b60606000805461079390612a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf90612a2a565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b506000908152600460205260409020546001600160a01b031690565b60006108b682610d8e565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b03821614806109405750610940813361068f565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6109bc83836119dd565b505050565b60006010546018546109d391906129e7565b4211610a195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b6044820152606401610770565b601854421015610aa3576001600160a01b03821660009081526015602052604090205460ff161515600114610a9b5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b6064820152608401610770565b5050600e5490565b5050600f5490565b919050565b600a546001600160a01b0316331480610ad35750600b546001600160a01b031633145b610aef5760405162461bcd60e51b8152600401610770906128e5565b601455565b610afe3382611a4b565b610b1a5760405162461bcd60e51b81526004016107709061291a565b6109bc838383611b42565b6000610b3083610e05565b8210610b925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610770565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bde5750600b546001600160a01b031633145b610bfa5760405162461bcd60e51b8152600401610770906128e5565b6040514790339082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5050565b6109bc8383836040518060200160405280600081525061116b565b6000610c5360085490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610770565b60088281548110610cc957610cc9612ad6565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cfe5750600b546001600160a01b031633145b610d1a5760405162461bcd60e51b8152600401610770906128e5565b8051610c2990601a90602084019061232b565b600a546001600160a01b0316331480610d505750600b546001600160a01b031633145b610d6c5760405162461bcd60e51b8152600401610770906128e5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061072b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610eaf5750600b546001600160a01b031633145b610ecb5760405162461bcd60e51b8152600401610770906128e5565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610f385750600b546001600160a01b031633145b610f545760405162461bcd60e51b8152600401610770906128e5565b60005b818110156109bc576000610f6a601c5490565b9050600d54610f78601c5490565b1015610fa457610f88601c611ced565b610f928482611d0a565b60008181526016602052604090204290555b5080610faf81612a65565b915050610f57565b60606001805461079390612a2a565b6001600160a01b03821633141561101f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110ae5750600b546001600160a01b031633145b6110ca5760405162461bcd60e51b8152600401610770906128e5565b8051610c2990601b90602084019061232b565b600a546001600160a01b03163314806111005750600b546001600160a01b031633145b61111c5760405162461bcd60e51b8152600401610770906128e5565b601055565b600a546001600160a01b03163314806111445750600b546001600160a01b031633145b6111605760405162461bcd60e51b8152600401610770906128e5565b601891909155601955565b6111753383611a4b565b6111915760405162461bcd60e51b81526004016107709061291a565b61119d84848484611d24565b50505050565b600a546001600160a01b03163314806111c65750600b546001600160a01b031633145b6111e25760405162461bcd60e51b8152600401610770906128e5565b601192909255601255601355565b600a546001600160a01b03163314806112135750600b546001600160a01b031633145b61122f5760405162461bcd60e51b8152600401610770906128e5565b600d55565b6000818152600260205260409020546060906001600160a01b03166112925760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610770565b4260195410156112ce57601a6112a783611d57565b6040516020016112b892919061279c565b6040516020818303038152906040529050919050565b601b80546112db90612a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461130790612a2a565b80156113545780601f1061132957610100808354040283529160200191611354565b820191906000526020600020905b81548152906001019060200180831161133757829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113835750600b546001600160a01b031633145b61139f5760405162461bcd60e51b8152600401610770906128e5565b60005b82518110156109bc5781601560008584815181106113c2576113c2612ad6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113fe81612a65565b9150506113a2565b6011548111156114635760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610770565b600d54601c54106114b65760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c642065786365656420474143435f4d415800006044820152606401610770565b600a546001600160a01b0316331461182a57336000908152601760205260409020546114e390829061299c565b3360008181526017602052604090209190915534908290611503906109c1565b61150d91906129c8565b111561155b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610770565b3360009081526015602052604090205460ff166116225760185442116115bc5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610770565b60135433600090815260176020526040902054111561161d5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610770565b611780565b6018544210156116f65760105460185461163c91906129e7565b42116116955760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b6064820152608401610770565b60125433600090815260176020526040902054111561161d5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610770565b601254601354611706919061299c565b3360009081526017602052604090205411156117805760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b6064820152608401610770565b601454156117ef57600060646014543461179a91906129c8565b6117a491906129b4565b600c549091506001600160a01b03166108fc6117c083346129e7565b6040518115909202916000818181858888f193505050501580156117e8573d6000803e3d6000fd5b505061182a565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611828573d6000803e3d6000fd5b505b60005b81811015610c29576000611840601c5490565b9050600d5461184e601c5490565b101561187a5761185e601c611ced565b6118683382611d0a565b60008181526016602052604090204290555b508061188581612a65565b91505061182d565b600a546001600160a01b03163314806118b05750600b546001600160a01b031633145b6118cc5760405162461bcd60e51b8152600401610770906128e5565b6001600160a01b0381166119315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806119be57506001600160e01b03198216635b5e139f60e01b145b8061072b57506301ffc9a760e01b6001600160e01b031983161461072b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a1282610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ac45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b6000611acf83610d8e565b9050806001600160a01b0316846001600160a01b03161480611b0a5750836001600160a01b0316611aff84610816565b6001600160a01b0316145b80611b3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5582610d8e565b6001600160a01b031614611bbd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b038216611c1f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b611c2a838383611e55565b611c356000826119dd565b6001600160a01b0383166000908152600360205260408120805460019290611c5e9084906129e7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c8c90849061299c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611d02919061299c565b909155505050565b610c29828260405180602001604052806000815250611f0d565b611d2f848484611b42565b611d3b84848484611f40565b61119d5760405162461bcd60e51b815260040161077090612893565b606081611d7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da55780611d8f81612a65565b9150611d9e9050600a836129b4565b9150611d7f565b60008167ffffffffffffffff811115611dc057611dc0612aec565b6040519080825280601f01601f191660200182016040528015611dea576020820181803683370190505b5090505b8415611b3a57611dff6001836129e7565b9150611e0c600a86612a80565b611e1790603061299c565b60f81b818381518110611e2c57611e2c612ad6565b60200101906001600160f81b031916908160001a905350611e4e600a866129b4565b9450611dee565b6001600160a01b038316611eb057611eab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed3565b816001600160a01b0316836001600160a01b031614611ed357611ed3838261204d565b6001600160a01b038216611eea576109bc816120ea565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612199565b611f1783836121dd565b611f246000848484611f40565b6109bc5760405162461bcd60e51b815260040161077090612893565b60006001600160a01b0384163b1561204257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f84903390899088908890600401612843565b602060405180830381600087803b158015611f9e57600080fd5b505af1925050508015611fce575060408051601f3d908101601f19168201909252611fcb91810190612687565b60015b612028573d808015611ffc576040519150601f19603f3d011682016040523d82523d6000602084013e612001565b606091505b5080516120205760405162461bcd60e51b815260040161077090612893565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3a565b506001949350505050565b6000600161205a84610e05565b61206491906129e7565b6000838152600760205260409020549091508082146120b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120fc906001906129e7565b6000838152600960205260408120546008805493945090928490811061212457612124612ad6565b90600052602060002001549050806008838154811061214557612145612ad6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061217d5761217d612ac0565b6001900381819060005260206000200160009055905550505050565b60006121a483610e05565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b0316156122985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b6122a460008383611e55565b6001600160a01b03821660009081526003602052604081208054600192906122cd90849061299c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461233790612a2a565b90600052602060002090601f016020900481019282612359576000855561239f565b82601f1061237257805160ff191683800117855561239f565b8280016001018555821561239f579182015b8281111561239f578251825591602001919060010190612384565b506123ab9291506123af565b5090565b5b808211156123ab57600081556001016123b0565b600067ffffffffffffffff8311156123de576123de612aec565b6123f1601f8401601f191660200161296b565b905082815283838301111561240557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610aab57600080fd5b80358015158114610aab57600080fd5b60006020828403121561245557600080fd5b61245e8261241c565b9392505050565b6000806040838503121561247857600080fd5b6124818361241c565b915061248f6020840161241c565b90509250929050565b6000806000606084860312156124ad57600080fd5b6124b68461241c565b92506124c46020850161241c565b9150604084013590509250925092565b600080600080608085870312156124ea57600080fd5b6124f38561241c565b93506125016020860161241c565b925060408501359150606085013567ffffffffffffffff81111561252457600080fd5b8501601f8101871361253557600080fd5b612544878235602084016123c4565b91505092959194509250565b6000806040838503121561256357600080fd5b61256c8361241c565b915061248f60208401612433565b6000806040838503121561258d57600080fd5b6125968361241c565b946020939093013593505050565b600080604083850312156125b757600080fd5b823567ffffffffffffffff808211156125cf57600080fd5b818501915085601f8301126125e357600080fd5b81356020828211156125f7576125f7612aec565b8160051b925061260881840161296b565b8281528181019085830185870184018b101561262357600080fd5b600096505b8487101561264d576126398161241c565b835260019690960195918301918301612628565b50965061265d9050878201612433565b9450505050509250929050565b60006020828403121561267c57600080fd5b813561245e81612b02565b60006020828403121561269957600080fd5b815161245e81612b02565b6000602082840312156126b657600080fd5b813567ffffffffffffffff8111156126cd57600080fd5b8201601f810184136126de57600080fd5b611b3a848235602084016123c4565b6000602082840312156126ff57600080fd5b5035919050565b6000806040838503121561271957600080fd5b50508035926020909101359150565b60008060006060848603121561273d57600080fd5b505081359360208301359350604090920135919050565b6000815180845261276c8160208601602086016129fe565b601f01601f19169290920160200192915050565b600081516127928185602086016129fe565b9290920192915050565b600080845481600182811c9150808316806127b857607f831692505b60208084108214156127d857634e487b7160e01b86526022600452602486fd5b8180156127ec57600181146127fd5761282a565b60ff1986168952848901965061282a565b60008b81526020902060005b868110156128225781548b820152908501908301612809565b505084890196505b50505050505061283a8185612780565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287690830184612754565b9695505050505050565b60208152600061245e6020830184612754565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561299457612994612aec565b604052919050565b600082198211156129af576129af612a94565b500190565b6000826129c3576129c3612aaa565b500490565b60008160001904831182151516156129e2576129e2612a94565b500290565b6000828210156129f9576129f9612a94565b500390565b60005b83811015612a19578181015183820152602001612a01565b8381111561119d5750506000910152565b600181811c90821680612a3e57607f821691505b60208210811415612a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7957612a79612a94565b5060010190565b600082612a8f57612a8f612aaa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b1857600080fd5b5056fea26469706673582212208e4e076d04a8e5a0d8745c9f2e007627a3c78d55cad87e561721fe4f1c07f3b164736f6c63430008070033

Deployed Bytecode Sourcemap

46971:5866:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;7999:14:1;;7992:22;7974:41;;7962:2;7947:18;39256:300:0;;;;;;;;48805:184;;;;;;;;;;-1:-1:-1;48805:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7297:32:1;;;7279:51;;7267:2;7252:18;24467:308:0;7133:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;49371:406::-;;;;;;;;;;-1:-1:-1;49371:406:0;;;;;:::i;:::-;;:::i;:::-;;;19301:25:1;;;19289:2;19274:18;49371:406:0;19155:177:1;40059:113:0;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;48141:93;;;;;;;;;;-1:-1:-1;48141:93:0;;;;;:::i;:::-;;:::i;25526:376::-;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;52687:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;49900:104::-;;;;;;;;;;-1:-1:-1;49900:104:0;;;;;:::i;:::-;;:::i;48003:130::-;;;;;;;;;;-1:-1:-1;48003:130:0;;;;;:::i;:::-;;:::i;47301:40::-;;;;;;;;;;;;;;;;47253:41;;;;;;;;;;;;;;;;22492:326;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50012:421::-;;;;;;;;;;-1:-1:-1;50012:421:0;;;;;:::i;:::-;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;49785:107::-;;;;;;;;;;-1:-1:-1;49785:107:0;;;;;:::i;:::-;;:::i;48438:114::-;;;;;;;;;;-1:-1:-1;48438:114:0;;;;;:::i;:::-;;:::i;48242:188::-;;;;;;;;;;-1:-1:-1;48242:188:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49101:262::-;;;;;;;;;;-1:-1:-1;49101:262:0;;;;;:::i;:::-;;:::i;47479:37::-;;;;;;;;;;;;;;;;48997:96;;;;;;;;;;-1:-1:-1;48997:96:0;;;;;:::i;:::-;;:::i;52344:335::-;;;;;;;;;;-1:-1:-1;52344:335:0;;;;;:::i;:::-;;:::i;47216:30::-;;;;;;;;;;;;;;;;47395:33;;;;;;;;;;;;;;;;48560:237;;;;;;;;;;-1:-1:-1;48560:237:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;50441:1895;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;47435:37::-;;;;;;;;;;;;;;;;39256:300;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;48805:184::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;;;;;;;;;48908:13:::1;:32:::0;;;;48951:12:::1;:30:::0;48805:184::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;14952:2:1;24613:110:0;;;14934:21:1;14991:2;14971:18;;;14964:30;15030:34;15010:18;;;15003:62;-1:-1:-1;;;15081:18:1;;;15074:42;15133:19;;24613:110:0;14750:408:1;24613:110:0;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;16539:2:1;24121:57:0;;;16521:21:1;16578:2;16558:18;;;16551:30;16617:34;16597:18;;;16590:62;-1:-1:-1;;;16668:18:1;;;16661:31;16709:19;;24121:57:0;16337:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;12635:2:1;24191:168:0;;;12617:21:1;12674:2;12654:18;;;12647:30;12713:34;12693:18;;;12686:62;12784:26;12764:18;;;12757:54;12828:19;;24191:168:0;12433:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;49371:406::-;49421:7;49485:13;;49467:15;;:31;;;;:::i;:::-;49449:15;:49;49441:84;;;;-1:-1:-1;;;49441:84:0;;10407:2:1;49441:84:0;;;10389:21:1;10446:2;10426:18;;;10419:30;-1:-1:-1;;;10465:18:1;;;10458:51;10526:18;;49441:84:0;10205:345:1;49441:84:0;49560:15;;49542;:33;49538:232;;;-1:-1:-1;;;;;49600:23:0;;;;;;:17;:23;;;;;;;;:31;;:23;:31;49592:79;;;;-1:-1:-1;;;49592:79:0;;18175:2:1;49592:79:0;;;18157:21:1;18214:2;18194:18;;;18187:30;18253:34;18233:18;;;18226:62;-1:-1:-1;;;18304:18:1;;;18297:32;18346:19;;49592:79:0;17973:398:1;49592:79:0;-1:-1:-1;;49693:13:0;;;49371:406::o;49538:232::-;-1:-1:-1;;49746:12:0;;;49371:406::o;49538:232::-;49371:406;;;:::o;48141:93::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48206:11:::1;:20:::0;48141:93::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;8812:2:1;39807:124:0;;;8794:21:1;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:41;8992:19;;39807:124:0;8610:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;52687:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;52789:37:::1;::::0;52755:21:::1;::::0;52797:10:::1;::::0;52789:37;::::1;;;::::0;52755:21;;52737:15:::1;52789:37:::0;52737:15;52789:37;52755:21;52797:10;52789:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52726:108;52687:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;17762:2:1;40394:132:0;;;17744:21:1;17801:2;17781:18;;;17774:30;17840:34;17820:18;;;17813:62;-1:-1:-1;;;17891:18:1;;;17884:42;17943:19;;40394:132:0;17560:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;49900:104::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49973:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48003:130::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48084:15:::1;:41:::0;;-1:-1:-1;;;;;;48084:41:0::1;-1:-1:-1::0;;;;;48084:41:0;;;::::1;::::0;;;::::1;::::0;;48003:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;13471:2:1;22677:110:0;;;13453:21:1;13510:2;13490:18;;;13483:30;13549:34;13529:18;;;13522:62;-1:-1:-1;;;13600:18:1;;;13593:39;13649:19;;22677:110:0;13269:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;13060:2:1;22277:111:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:34;13118:18;;;13111:62;-1:-1:-1;;;13189:18:1;;;13182:40;13239:19;;22277:111:0;12858:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;50012:421::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50100:9:::1;50095:331;50119:14;50115:1;:18;50095:331;;;50155:15;50173:21;:11;46557:14:::0;;46465:114;50173:21:::1;50155:39;;50239:8;;50215:21;:11;46557:14:::0;;46465:114;50215:21:::1;:32;50211:204;;;50268:23;:11;:21;:23::i;:::-;50310:22;50320:2;50324:7;50310:9;:22::i;:::-;50351:30;::::0;;;:21:::1;:30;::::0;;;;50384:15:::1;50351:48:::0;;50211:204:::1;-1:-1:-1::0;50135:3:0;::::1;::::0;::::1;:::i;:::-;;;;50095:331;;23054:104:::0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;11162:2:1;24974:62:0;;;11144:21:1;11201:2;11181:18;;;11174:30;11240:27;11220:18;;;11213:55;11285:18;;24974:62:0;10960:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;7974:41:1;;;25049:42:0;;16975:10;25118:48;;7947:18:1;25118:48:0;;;;;;;24847:327;;:::o;49785:107::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49862:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48438:114::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48516:13:::1;:28:::0;48438:114::o;48242:188::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48347:15:::1;:32:::0;;;;48390:15:::1;:32:::0;48242:188::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49101:262::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49231:14:::1;:30:::0;;;;49272:18:::1;:37:::0;49320:17:::1;:35:::0;49101:262::o;48997:96::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49066:8:::1;:19:::0;48997:96::o;52344:335::-;28206:4;28230:16;;;:7;:16;;;;;;52417:13;;-1:-1:-1;;;;;28230:16:0;52448:49;;;;-1:-1:-1;;;52448:49:0;;11516:2:1;52448:49:0;;;11498:21:1;11555:2;11535:18;;;11528:30;-1:-1:-1;;;11574:18:1;;;11567:50;11634:18;;52448:49:0;11314:344:1;52448:49:0;52532:15;52514;;:33;52510:132;;;52595:13;52610:18;:7;:16;:18::i;:::-;52578:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52564:66;;52344:335;;;:::o;52510:132::-;52661:10;52654:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52344:335;;;:::o;48560:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48666:9:::1;48661:129;48685:16;:23;48681:1;:27;48661:129;;;48771:7;48730:17;:38;48748:16;48765:1;48748:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48730:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48730:38:0;:48;;-1:-1:-1;;48730:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48710:3;::::1;::::0;::::1;:::i;:::-;;;;48661:129;;50441:1895:::0;50537:14;;50519;:32;;50511:78;;;;-1:-1:-1;;;50511:78:0;;16136:2:1;50511:78:0;;;16118:21:1;16175:2;16155:18;;;16148:30;16214:34;16194:18;;;16187:62;-1:-1:-1;;;16265:18:1;;;16258:32;16307:19;;50511:78:0;15934:398:1;50511:78:0;50632:8;;50608:11;46557:14;50608:32;50600:74;;;;-1:-1:-1;;;50600:74:0;;18578:2:1;50600:74:0;;;18560:21:1;18617:2;18597:18;;;18590:30;18656:32;18636:18;;;18629:60;18706:18;;50600:74:0;18376:354:1;50600:74:0;37092:6;;-1:-1:-1;;;;;37092:6:0;50691:10;:21;50687:1291;;50779:10;50761:29;;;;:17;:29;;;;;;:46;;50793:14;;50761:46;:::i;:::-;50747:10;50729:29;;;;:17;:29;;;;;:78;;;;50870:9;;50852:14;;50832:17;;:5;:17::i;:::-;:34;;;;:::i;:::-;:47;;50824:87;;;;-1:-1:-1;;;50824:87:0;;11865:2:1;50824:87:0;;;11847:21:1;11904:2;11884:18;;;11877:30;11943;11923:18;;;11916:58;11991:18;;50824:87:0;11663:352:1;50824:87:0;50950:10;50932:29;;;;:17;:29;;;;;;;;50928:774;;51017:15;;50999;:33;50991:67;;;;-1:-1:-1;;;50991:67:0;;14601:2:1;50991:67:0;;;14583:21:1;14640:2;14620:18;;;14613:30;-1:-1:-1;;;14659:18:1;;;14652:52;14721:18;;50991:67:0;14399:346:1;50991:67:0;51118:17;;51103:10;51085:29;;;;:17;:29;;;;;;:50;;51077:92;;;;-1:-1:-1;;;51077:92:0;;13881:2:1;51077:92:0;;;13863:21:1;13920:2;13900:18;;;13893:30;13959:32;13939:18;;;13932:60;14009:18;;51077:92:0;13679:354:1;51077:92:0;50928:774;;;51232:15;;51214;:33;51210:477;;;51316:13;;51298:15;;:31;;;;:::i;:::-;51280:15;:49;51272:95;;;;-1:-1:-1;;;51272:95:0;;17359:2:1;51272:95:0;;;17341:21:1;17398:2;17378:18;;;17371:30;17437:34;17417:18;;;17410:62;-1:-1:-1;;;17488:18:1;;;17481:32;17530:19;;51272:95:0;17157:398:1;51272:95:0;51431:18;;51416:10;51398:29;;;;:17;:29;;;;;;:51;;51390:94;;;;-1:-1:-1;;;51390:94:0;;8452:2:1;51390:94:0;;;8434:21:1;8491:2;8471:18;;;8464:30;8530:33;8510:18;;;8503:61;8581:18;;51390:94:0;8250:355:1;51210:477:0;51594:18;;51574:17;;:38;;;;:::i;:::-;51559:10;51541:29;;;;:17;:29;;;;;;:71;;51533:134;;;;-1:-1:-1;;;51533:134:0;;18937:2:1;51533:134:0;;;18919:21:1;18976:2;18956:18;;;18949:30;19015:34;18995:18;;;18988:62;-1:-1:-1;;;19066:18:1;;;19059:49;19125:19;;51533:134:0;18735:415:1;51533:134:0;51722:11;;:15;51718:249;;51758:17;51806:3;51791:11;;51779:9;:23;;;;:::i;:::-;51778:31;;;;:::i;:::-;51828:15;;51758:51;;-1:-1:-1;;;;;;51828:15:0;:47;51853:21;51758:51;51853:9;:21;:::i;:::-;51828:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51739:152;51718:249;;;51916:15;;:35;;-1:-1:-1;;;;;51916:15:0;;;;51941:9;51916:35;;;;;:15;:35;:15;:35;51941:9;51916:15;:35;;;;;;;;;;;;;;;;;;;;;51718:249;51995:9;51990:339;52014:14;52010:1;:18;51990:339;;;52050:15;52068:21;:11;46557:14;;46465:114;52068:21;52050:39;;52134:8;;52110:21;:11;46557:14;;46465:114;52110:21;:32;52106:212;;;52163:23;:11;:21;:23::i;:::-;52205:30;52215:10;52227:7;52205:9;:30::i;:::-;52254;;;;:21;:30;;;;;52287:15;52254:48;;52106:212;-1:-1:-1;52030:3:0;;;;:::i;:::-;;;;51990:339;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;9643:2:1;38119:110:0::1;::::0;::::1;9625:21:1::0;9682:2;9662:18;;;9655:30;9721:34;9701:18;;;9694:62;-1:-1:-1;;;9772:18:1;;;9765:36;9818:19;;38119:110:0::1;9441:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;12222:2:1;28586:110:0;;;12204:21:1;12261:2;12241:18;;;12234:30;12300:34;12280:18;;;12273:62;-1:-1:-1;;;12351:18:1;;;12344:42;12403:19;;28586:110:0;12020:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;15726:2:1;31655:122:0;;;15708:21:1;15765:2;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;-1:-1:-1;;;15855:18:1;;;15848:39;15904:19;;31655:122:0;15524:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;10757:2:1;31788:65:0;;;10739:21:1;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;-1:-1:-1;;;10886:18:1;;;10879:34;10930:19;;31788:65:0;10555:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;14240:2:1;30295:61:0;;;14222:21:1;;;14259:18;;;14252:30;14318:34;14298:18;;;14291:62;14370:18;;30295:61:0;14038:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;10050:2:1;30367:58:0;;;10032:21:1;10089:2;10069:18;;;10062:30;10128;10108:18;;;10101:58;10176:18;;30367:58:0;9848:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:1033::-;2836:6;2844;2897:2;2885:9;2876:7;2872:23;2868:32;2865:52;;;2913:1;2910;2903:12;2865:52;2953:9;2940:23;2982:18;3023:2;3015:6;3012:14;3009:34;;;3039:1;3036;3029:12;3009:34;3077:6;3066:9;3062:22;3052:32;;3122:7;3115:4;3111:2;3107:13;3103:27;3093:55;;3144:1;3141;3134:12;3093:55;3180:2;3167:16;3202:4;3225:2;3221;3218:10;3215:36;;;3231:18;;:::i;:::-;3277:2;3274:1;3270:10;3260:20;;3300:28;3324:2;3320;3316:11;3300:28;:::i;:::-;3362:15;;;3393:12;;;;3425:11;;;3455;;;3451:20;;3448:33;-1:-1:-1;3445:53:1;;;3494:1;3491;3484:12;3445:53;3516:1;3507:10;;3526:169;3540:2;3537:1;3534:9;3526:169;;;3597:23;3616:3;3597:23;:::i;:::-;3585:36;;3558:1;3551:9;;;;;3641:12;;;;3673;;3526:169;;;-1:-1:-1;3714:5:1;-1:-1:-1;3738:35:1;;-1:-1:-1;3754:18:1;;;3738:35;:::i;:::-;3728:45;;;;;;2746:1033;;;;;:::o;3784:245::-;3842:6;3895:2;3883:9;3874:7;3870:23;3866:32;3863:52;;;3911:1;3908;3901:12;3863:52;3950:9;3937:23;3969:30;3993:5;3969:30;:::i;4034:249::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4204:9;4198:16;4223:30;4247:5;4223:30;:::i;4288:450::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4466:9;4453:23;4499:18;4491:6;4488:30;4485:50;;;4531:1;4528;4521:12;4485:50;4554:22;;4607:4;4599:13;;4595:27;-1:-1:-1;4585:55:1;;4636:1;4633;4626:12;4585:55;4659:73;4724:7;4719:2;4706:16;4701:2;4697;4693:11;4659:73;:::i;4743:180::-;4802:6;4855:2;4843:9;4834:7;4830:23;4826:32;4823:52;;;4871:1;4868;4861:12;4823:52;-1:-1:-1;4894:23:1;;4743:180;-1:-1:-1;4743:180:1:o;4928:248::-;4996:6;5004;5057:2;5045:9;5036:7;5032:23;5028:32;5025:52;;;5073:1;5070;5063:12;5025:52;-1:-1:-1;;5096:23:1;;;5166:2;5151:18;;;5138:32;;-1:-1:-1;4928:248:1:o;5181:316::-;5258:6;5266;5274;5327:2;5315:9;5306:7;5302:23;5298:32;5295:52;;;5343:1;5340;5333:12;5295:52;-1:-1:-1;;5366:23:1;;;5436:2;5421:18;;5408:32;;-1:-1:-1;5487:2:1;5472:18;;;5459:32;;5181:316;-1:-1:-1;5181:316:1:o;5502:257::-;5543:3;5581:5;5575:12;5608:6;5603:3;5596:19;5624:63;5680:6;5673:4;5668:3;5664:14;5657:4;5650:5;5646:16;5624:63;:::i;:::-;5741:2;5720:15;-1:-1:-1;;5716:29:1;5707:39;;;;5748:4;5703:50;;5502:257;-1:-1:-1;;5502:257:1:o;5764:185::-;5806:3;5844:5;5838:12;5859:52;5904:6;5899:3;5892:4;5885:5;5881:16;5859:52;:::i;:::-;5927:16;;;;;5764:185;-1:-1:-1;;5764:185:1:o;5954:1174::-;6130:3;6159:1;6192:6;6186:13;6222:3;6244:1;6272:9;6268:2;6264:18;6254:28;;6332:2;6321:9;6317:18;6354;6344:61;;6398:4;6390:6;6386:17;6376:27;;6344:61;6424:2;6472;6464:6;6461:14;6441:18;6438:38;6435:165;;;-1:-1:-1;;;6499:33:1;;6555:4;6552:1;6545:15;6585:4;6506:3;6573:17;6435:165;6616:18;6643:104;;;;6761:1;6756:320;;;;6609:467;;6643:104;-1:-1:-1;;6676:24:1;;6664:37;;6721:16;;;;-1:-1:-1;6643:104:1;;6756:320;19690:1;19683:14;;;19727:4;19714:18;;6851:1;6865:165;6879:6;6876:1;6873:13;6865:165;;;6957:14;;6944:11;;;6937:35;7000:16;;;;6894:10;;6865:165;;;6869:3;;7059:6;7054:3;7050:16;7043:23;;6609:467;;;;;;;7092:30;7118:3;7110:6;7092:30;:::i;:::-;7085:37;5954:1174;-1:-1:-1;;;;;5954:1174:1:o;7341:488::-;-1:-1:-1;;;;;7610:15:1;;;7592:34;;7662:15;;7657:2;7642:18;;7635:43;7709:2;7694:18;;7687:34;;;7757:3;7752:2;7737:18;;7730:31;;;7535:4;;7778:45;;7803:19;;7795:6;7778:45;:::i;:::-;7770:53;7341:488;-1:-1:-1;;;;;;7341:488:1:o;8026:219::-;8175:2;8164:9;8157:21;8138:4;8195:44;8235:2;8224:9;8220:18;8212:6;8195:44;:::i;9022:414::-;9224:2;9206:21;;;9263:2;9243:18;;;9236:30;9302:34;9297:2;9282:18;;9275:62;-1:-1:-1;;;9368:2:1;9353:18;;9346:48;9426:3;9411:19;;9022:414::o;15163:356::-;15365:2;15347:21;;;15384:18;;;15377:30;15443:34;15438:2;15423:18;;15416:62;15510:2;15495:18;;15163:356::o;16739:413::-;16941:2;16923:21;;;16980:2;16960:18;;;16953:30;17019:34;17014:2;16999:18;;16992:62;-1:-1:-1;;;17085:2:1;17070:18;;17063:47;17142:3;17127:19;;16739:413::o;19337:275::-;19408:2;19402:9;19473:2;19454:13;;-1:-1:-1;;19450:27:1;19438:40;;19508:18;19493:34;;19529:22;;;19490:62;19487:88;;;19555:18;;:::i;:::-;19591:2;19584:22;19337:275;;-1:-1:-1;19337:275:1:o;19743:128::-;19783:3;19814:1;19810:6;19807:1;19804:13;19801:39;;;19820:18;;:::i;:::-;-1:-1:-1;19856:9:1;;19743:128::o;19876:120::-;19916:1;19942;19932:35;;19947:18;;:::i;:::-;-1:-1:-1;19981:9:1;;19876:120::o;20001:168::-;20041:7;20107:1;20103;20099:6;20095:14;20092:1;20089:21;20084:1;20077:9;20070:17;20066:45;20063:71;;;20114:18;;:::i;:::-;-1:-1:-1;20154:9:1;;20001:168::o;20174:125::-;20214:4;20242:1;20239;20236:8;20233:34;;;20247:18;;:::i;:::-;-1:-1:-1;20284:9:1;;20174:125::o;20304:258::-;20376:1;20386:113;20400:6;20397:1;20394:13;20386:113;;;20476:11;;;20470:18;20457:11;;;20450:39;20422:2;20415:10;20386:113;;;20517:6;20514:1;20511:13;20508:48;;;-1:-1:-1;;20552:1:1;20534:16;;20527:27;20304:258::o;20567:380::-;20646:1;20642:12;;;;20689;;;20710:61;;20764:4;20756:6;20752:17;20742:27;;20710:61;20817:2;20809:6;20806:14;20786:18;20783:38;20780:161;;;20863:10;20858:3;20854:20;20851:1;20844:31;20898:4;20895:1;20888:15;20926:4;20923:1;20916:15;20780:161;;20567:380;;;:::o;20952:135::-;20991:3;-1:-1:-1;;21012:17:1;;21009:43;;;21032:18;;:::i;:::-;-1:-1:-1;21079:1:1;21068:13;;20952:135::o;21092:112::-;21124:1;21150;21140:35;;21155:18;;:::i;:::-;-1:-1:-1;21189:9:1;;21092:112::o;21209:127::-;21270:10;21265:3;21261:20;21258:1;21251:31;21301:4;21298:1;21291:15;21325:4;21322:1;21315:15;21341:127;21402:10;21397:3;21393:20;21390:1;21383:31;21433:4;21430:1;21423:15;21457:4;21454:1;21447:15;21473:127;21534:10;21529:3;21525:20;21522:1;21515:31;21565:4;21562:1;21555:15;21589:4;21586:1;21579:15;21605:127;21666:10;21661:3;21657:20;21654:1;21647:31;21697:4;21694:1;21687:15;21721:4;21718:1;21711:15;21737:127;21798:10;21793:3;21789:20;21786:1;21779:31;21829:4;21826:1;21819:15;21853:4;21850:1;21843:15;21869:131;-1:-1:-1;;;;;;21943:32:1;;21933:43;;21923:71;;21990:1;21987;21980:12;21923:71;21869:131;:::o

Swarm Source

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