ETH Price: $2,273.84 (+0.05%)

Token

Hyena Hype Club (HHC)
 

Overview

Max Total Supply

771 HHC

Holders

230

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 HHC
0x71bcc6732827d76f12971233f5d2c50e47257447
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:
HyenaHypeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    address payable private _PaymentAddress = payable(0x2bFA311162aA73aA3c3b7CB3607Aa6feF99486FE);

    uint256 public MAX_SUPPLY = 9999;
    uint256 private PRICE = 0.1 ether;
    uint256 private REVEAL_DELAY = 45 days;
    uint256 private ROUND1_MINT_LIMIT = 3;
    uint256 private ROUND2_MINT_LIMIT = 2;
    uint256 private SPECIAL_MINT_LIMIT = MAX_SUPPLY;
    uint256 private PUBLIC_MINT_LIMIT = MAX_SUPPLY;
    uint256 private STAKING_PERCENT = 3;
    
    mapping(address => uint256) private _mappingMintCount;

    uint256 private _activeRound1DateTime = 1645880400; // (GMT): Saturday, February 26, 2022 1:00:00 PM
    uint256 private _activeRound2DateTime = 1645884000; // (GMT): Saturday, February 26, 2022 2:00:00 PM
    uint256 private _activePublicDateTime = 1677448800;
    
    bytes32 private _whitelistRoot1;
    bytes32 private _whitelistRoot2;
    bytes32 private _whitelistRootSpecial;

    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicCounter;

    constructor() ERC721("Hyena Hype Club", "HHC") {}

    function setPaymentAddress(address paymentAddress, uint256 stakingPerent) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
        STAKING_PERCENT = stakingPerent;
    }

    function setActiveDateTime(uint256 active1DateTime,uint256 active2DateTime, uint256 publicDateTime, uint256 revealDelay) external onlyOwner {
        _activeRound1DateTime = active1DateTime;
        _activeRound2DateTime = active2DateTime;
        _activePublicDateTime = publicDateTime;
        REVEAL_DELAY = revealDelay;
    }

    function setWhiteListRoot1(bytes32 root) external onlyOwner {
        _whitelistRoot1 = root;
    }

    function setWhiteListRoot2(bytes32 root) external onlyOwner {
        _whitelistRoot2 = root;
    }

    function setWhiteListRootSpecial(bytes32 root) external onlyOwner {
        _whitelistRootSpecial = root;
    }

    // Verify that a given leaf is in the tree.
    function isWhiteListed1(bytes32 _leafNode, bytes32[] memory proof) public view returns (bool) {
        return MerkleProof.verify(proof, _whitelistRoot1, _leafNode);
    }

    function isWhiteListed2(bytes32 _leafNode, bytes32[] memory proof) public view returns (bool) {
        return MerkleProof.verify(proof, _whitelistRoot2, _leafNode);
    }

    function isWhiteListedSpecial(bytes32 _leafNode, bytes32[] memory proof) public view returns (bool) {
        return MerkleProof.verify(proof, _whitelistRootSpecial, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function toLeaf(address account, uint256 index, uint256 amount) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(index, account, amount));
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

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

    function setPurchaseLimit(uint256 round1MintLimit, uint256 round2MintLimit, uint256 specialMintLimit, uint256 publicMintLimit) external onlyOwner {
        ROUND1_MINT_LIMIT = round1MintLimit;
        ROUND2_MINT_LIMIT = round2MintLimit;
        SPECIAL_MINT_LIMIT = specialMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

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

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

    function airdrop(address[] memory airdropAddress, uint256 numberOfTokens) external onlyOwner {
        require(_publicCounter.current() < MAX_SUPPLY,"Purchase would exceed MAX_SUPPLY");

        for (uint256 k = 0; k < airdropAddress.length; k++) {
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = _publicCounter.current();

                if (_publicCounter.current() < MAX_SUPPLY) {
                    _publicCounter.increment();
                    if (!_exists(tokenId)) _safeMint(airdropAddress[k], tokenId);
                }
            }
        }
    }

    function airdropSpecial(address to, uint256 tokenId) external onlyOwner {
        require(_publicCounter.current() < MAX_SUPPLY,"Purchase would exceed MAX_SUPPLY");

        require(!_exists(tokenId), "Token already exist");
        if (!_exists(tokenId)) _safeMint(to, tokenId);
    }

    function purchase(uint256 numberOfTokens, uint256 index, uint256 amount, bytes32[] calldata proof) external payable {
        require(_publicCounter.current() < MAX_SUPPLY,"Purchase would exceed MAX_SUPPLY");

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

            _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + numberOfTokens;

            if (isWhiteListedSpecial(toLeaf(msg.sender, index, amount), proof)) {
                require(block.timestamp > _activeRound1DateTime, "Mint is not activated");
                require(_mappingMintCount[msg.sender] <= SPECIAL_MINT_LIMIT,"Overflow for SPECIAL_MINT_LIMIT");
            } else if (isWhiteListed1(toLeaf(msg.sender, index, amount), proof)) {
                require(block.timestamp > _activeRound1DateTime, "Mint is not activated");
                require(_mappingMintCount[msg.sender] <= ROUND1_MINT_LIMIT,"Overflow for ROUND1_MINT_LIMIT");
            } else if (isWhiteListed2(toLeaf(msg.sender, index, amount), proof)) {
                require(block.timestamp > _activeRound2DateTime, "Mint is not activated");
                require(_mappingMintCount[msg.sender] <= ROUND2_MINT_LIMIT,"Overflow for ROUND2_MINT_LIMIT");
            } else {
                require(block.timestamp > _activePublicDateTime, "Mint is not activated");
                require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            }

            _PaymentAddress.transfer(msg.value * (100 - STAKING_PERCENT) / 100);
        }

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

            if (_publicCounter.current() < MAX_SUPPLY) {
                _publicCounter.increment();
                if (!_exists(tokenId)) _safeMint(msg.sender, tokenId);
            }
        }
    }

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

        if (_activeRound1DateTime + REVEAL_DELAY < 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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropAddress","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":"airdropSpecial","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":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhiteListed1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhiteListed2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhiteListedSpecial","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"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"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":"active1DateTime","type":"uint256"},{"internalType":"uint256","name":"active2DateTime","type":"uint256"},{"internalType":"uint256","name":"publicDateTime","type":"uint256"},{"internalType":"uint256","name":"revealDelay","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":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"},{"internalType":"uint256","name":"stakingPerent","type":"uint256"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"round1MintLimit","type":"uint256"},{"internalType":"uint256","name":"round2MintLimit","type":"uint256"},{"internalType":"uint256","name":"specialMintLimit","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":"bytes32","name":"root","type":"bytes32"}],"name":"setWhiteListRoot1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setWhiteListRoot2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setWhiteListRootSpecial","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"toLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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"}]

600c80546001600160a01b031916732bfa311162aa73aa3c3b7cb3607aa6fef99486fe17905561270f600d81905567016345785d8a0000600e55623b5380600f55600360108190556002601155601282905560139190915560145563621a245060165563621a32606017556363fbd66060185560a06040819052600060808190526200008e91601c916200019f565b50604080516020810191829052600090819052620000af91601d916200019f565b50348015620000bd57600080fd5b50604080518082018252600f81526e243cb2b73090243cb8329021b63ab160891b60208083019182528351808501909452600384526248484360e81b90840152815191929162000110916000916200019f565b508051620001269060019060208401906200019f565b50505060006200013b6200019b60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000282565b3390565b828054620001ad9062000245565b90600052602060002090601f016020900481019282620001d157600085556200021c565b82601f10620001ec57805160ff19168380011785556200021c565b828001600101855582156200021c579182015b828111156200021c578251825591602001919060010190620001ff565b506200022a9291506200022e565b5090565b5b808211156200022a57600081556001016200022f565b600181811c908216806200025a57607f821691505b602082108114156200027c57634e487b7160e01b600052602260045260246000fd5b50919050565b612e0080620002926000396000f3fe6080604052600436106102255760003560e01c8063774d790211610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610640578063f2fde38b14610689578063f4a0a528146106a9578063fc0541d4146106c9578063fdaf0125146106e957600080fd5b8063b88d4fde146105a0578063bf8bcee4146105c0578063c204642c146105e0578063c21d1e4e14610600578063c87b56dd1461062057600080fd5b806391f96ec0116100f257806391f96ec01461051857806395d89b411461052b578063a22cb46514610540578063a811a37b14610560578063b0ea6d811461058057600080fd5b8063774d79021461049a5780637be0bde8146104ba578063856de970146104da5780638da5cb5b146104fa57600080fd5b806323b872dd116101b15780634f6ccce7116101755780634f6ccce71461040557806355f804b3146104255780636352211e1461044557806370a0823114610465578063715018a61461048557600080fd5b806323b872dd1461037a5780632f745c591461039a57806332cb6b0c146103ba5780633ccfd60b146103d057806342842e0e146103e557600080fd5b8063095ea7b3116101f8578063095ea7b3146102d95780630bfa443a146102fb5780631128f7f11461031b57806317b5d8901461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461022a578063033cae401461025f57806306fdde031461027f578063081812fc146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004612836565b610709565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061024a61027a366004612792565b610734565b34801561028b57600080fd5b5061029461074a565b6040516102569190612aa7565b3480156102ad57600080fd5b506102c16102bc366004612779565b6107dc565b6040516001600160a01b039091168152602001610256565b3480156102e557600080fd5b506102f96102f4366004612672565b610869565b005b34801561030757600080fd5b506102f9610316366004612779565b61097f565b34801561032757600080fd5b506102f9610336366004612672565b6109c3565b34801561034757600080fd5b506102f9610356366004612949565b610a28565b34801561036757600080fd5b506008545b604051908152602001610256565b34801561038657600080fd5b506102f961039536600461257e565b610a7b565b3480156103a657600080fd5b5061036c6103b5366004612672565b610aac565b3480156103c657600080fd5b5061036c600d5481565b3480156103dc57600080fd5b506102f9610b42565b3480156103f157600080fd5b506102f961040036600461257e565b610bb4565b34801561041157600080fd5b5061036c610420366004612779565b610bcf565b34801561043157600080fd5b506102f9610440366004612870565b610c62565b34801561045157600080fd5b506102c1610460366004612779565b610cb4565b34801561047157600080fd5b5061036c610480366004612530565b610d2b565b34801561049157600080fd5b506102f9610db2565b3480156104a657600080fd5b506102f96104b5366004612779565b610e3b565b3480156104c657600080fd5b5061024a6104d5366004612792565b610e7f565b3480156104e657600080fd5b506102f96104f5366004612672565b610e8e565b34801561050657600080fd5b50600a546001600160a01b03166102c1565b6102f96105263660046128b9565b610f53565b34801561053757600080fd5b506102946113cc565b34801561054c57600080fd5b506102f961055b366004612636565b6113db565b34801561056c57600080fd5b506102f961057b366004612870565b6114a0565b34801561058c57600080fd5b5061024a61059b366004612792565b6114f2565b3480156105ac57600080fd5b506102f96105bb3660046125ba565b611501565b3480156105cc57600080fd5b506102f96105db366004612779565b611539565b3480156105ec57600080fd5b506102f96105fb3660046126cf565b61157d565b34801561060c57600080fd5b506102f961061b366004612779565b611675565b34801561062c57600080fd5b5061029461063b366004612779565b6116b9565b34801561064c57600080fd5b5061024a61065b36600461254b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506102f96106a4366004612530565b6117e2565b3480156106b557600080fd5b506102f96106c4366004612779565b6118e2565b3480156106d557600080fd5b506102f96106e4366004612949565b611926565b3480156106f557600080fd5b5061036c61070436600461269c565b611979565b60006001600160e01b0319821663780e9d6360e01b148061072e575061072e826119c2565b92915050565b60006107438260195485611a12565b9392505050565b60606000805461075990612cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612cd9565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e782611a28565b61084d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087482610cb4565b9050806001600160a01b0316836001600160a01b031614156108e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe813361065b565b6109705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610844565b61097a8383611a45565b505050565b600a546001600160a01b03163314806109a25750600b546001600160a01b031633145b6109be5760405162461bcd60e51b815260040161084490612b3b565b601a55565b600a546001600160a01b03163314806109e65750600b546001600160a01b031633145b610a025760405162461bcd60e51b815260040161084490612b3b565b600c80546001600160a01b0319166001600160a01b039390931692909217909155601455565b600a546001600160a01b0316331480610a4b5750600b546001600160a01b031633145b610a675760405162461bcd60e51b815260040161084490612b3b565b601093909355601191909155601255601355565b610a853382611ab3565b610aa15760405162461bcd60e51b815260040161084490612b70565b61097a838383611b9d565b6000610ab783610d2b565b8210610b195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610844565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610b655750600b546001600160a01b031633145b610b815760405162461bcd60e51b815260040161084490612b3b565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb0573d6000803e3d6000fd5b5050565b61097a83838360405180602001604052806000815250611501565b6000610bda60085490565b8210610c3d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610844565b60088281548110610c5057610c50612d85565b90600052602060002001549050919050565b600a546001600160a01b0316331480610c855750600b546001600160a01b031633145b610ca15760405162461bcd60e51b815260040161084490612b3b565b8051610bb090601c906020840190612423565b6000818152600260205260408120546001600160a01b03168061072e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610844565b60006001600160a01b038216610d965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610844565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610dd55750600b546001600160a01b031633145b610df15760405162461bcd60e51b815260040161084490612b3b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610e5e5750600b546001600160a01b031633145b610e7a5760405162461bcd60e51b815260040161084490612b3b565b601b55565b600061074382601a5485611a12565b600a546001600160a01b0316331480610eb15750600b546001600160a01b031633145b610ecd5760405162461bcd60e51b815260040161084490612b3b565b600d54601e5410610ef05760405162461bcd60e51b815260040161084490612bc1565b610ef981611a28565b15610f3c5760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610844565b610f4581611a28565b610bb057610bb08282611d48565b600d54601e5410610f765760405162461bcd60e51b815260040161084490612bc1565b600a546001600160a01b03163314611366573485600e54610f979190612c77565b1115610fe55760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610844565b33600090815260156020526040902054611000908690612c4b565b3360008181526015602052604090209190915561105b90611022908686611979565b8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506114f292505050565b156110e75760165442116110815760405162461bcd60e51b815260040161084490612b0c565b6012543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f72205350454349414c5f4d494e545f4c494d4954006044820152606401610844565b611305565b61112e6110f5338686611979565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061073492505050565b156111b55760165442116111545760405162461bcd60e51b815260040161084490612b0c565b6010543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f7220524f554e44315f4d494e545f4c494d495400006044820152606401610844565b6111fc6111c3338686611979565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610e7f92505050565b156112835760175442116112225760405162461bcd60e51b815260040161084490612b0c565b6011543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f7220524f554e44325f4d494e545f4c494d495400006044820152606401610844565b60185442116112a45760405162461bcd60e51b815260040161084490612b0c565b6013543360009081526015602052604090205411156113055760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610844565b600c546014546001600160a01b03909116906108fc906064906113289082612c96565b6113329034612c77565b61133c9190612c63565b6040518115909202916000818181858888f19350505050158015611364573d6000803e3d6000fd5b505b60005b858110156113c457600061137c601e5490565b9050600d5461138a601e5490565b10156113b15761139a601e611d62565b6113a381611a28565b6113b1576113b13382611d48565b50806113bc81612d14565b915050611369565b505050505050565b60606001805461075990612cd9565b6001600160a01b0382163314156114345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610844565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806114c35750600b546001600160a01b031633145b6114df5760405162461bcd60e51b815260040161084490612b3b565b8051610bb090601d906020840190612423565b600061074382601b5485611a12565b61150b3383611ab3565b6115275760405162461bcd60e51b815260040161084490612b70565b61153384848484611d7f565b50505050565b600a546001600160a01b031633148061155c5750600b546001600160a01b031633145b6115785760405162461bcd60e51b815260040161084490612b3b565b600d55565b600a546001600160a01b03163314806115a05750600b546001600160a01b031633145b6115bc5760405162461bcd60e51b815260040161084490612b3b565b600d54601e54106115df5760405162461bcd60e51b815260040161084490612bc1565b60005b825181101561097a5760005b82811015611662576000611601601e5490565b9050600d5461160f601e5490565b101561164f5761161f601e611d62565b61162881611a28565b61164f5761164f85848151811061164157611641612d85565b602002602001015182611d48565b508061165a81612d14565b9150506115ee565b508061166d81612d14565b9150506115e2565b600a546001600160a01b03163314806116985750600b546001600160a01b031633145b6116b45760405162461bcd60e51b815260040161084490612b3b565b601955565b60606116c482611a28565b6117075760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610844565b42600f546016546117189190612c4b565b101561175057601c61172983611db2565b60405160200161173a9291906129c3565b6040516020818303038152906040529050919050565b601d805461175d90612cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461178990612cd9565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806118055750600b546001600160a01b031633145b6118215760405162461bcd60e51b815260040161084490612b3b565b6001600160a01b0381166118865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806119055750600b546001600160a01b031633145b6119215760405162461bcd60e51b815260040161084490612b3b565b600e55565b600a546001600160a01b03163314806119495750600b546001600160a01b031633145b6119655760405162461bcd60e51b815260040161084490612b3b565b601693909355601791909155601855600f55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b60006001600160e01b031982166380ac58cd60e01b14806119f357506001600160e01b03198216635b5e139f60e01b145b8061072e57506301ffc9a760e01b6001600160e01b031983161461072e565b600082611a1f8584611eb0565b14949350505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7a82610cb4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611abe82611a28565b611b1f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610844565b6000611b2a83610cb4565b9050806001600160a01b0316846001600160a01b03161480611b655750836001600160a01b0316611b5a846107dc565b6001600160a01b0316145b80611b9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bb082610cb4565b6001600160a01b031614611c185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610844565b6001600160a01b038216611c7a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b611c85838383611f5c565b611c90600082611a45565b6001600160a01b0383166000908152600360205260408120805460019290611cb9908490612c96565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ce7908490612c4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bb0828260405180602001604052806000815250612014565b6001816000016000828254611d779190612c4b565b909155505050565b611d8a848484611b9d565b611d9684848484612047565b6115335760405162461bcd60e51b815260040161084490612aba565b606081611dd65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e005780611dea81612d14565b9150611df99050600a83612c63565b9150611dda565b60008167ffffffffffffffff811115611e1b57611e1b612d9b565b6040519080825280601f01601f191660200182016040528015611e45576020820181803683370190505b5090505b8415611b9557611e5a600183612c96565b9150611e67600a86612d2f565b611e72906030612c4b565b60f81b818381518110611e8757611e87612d85565b60200101906001600160f81b031916908160001a905350611ea9600a86612c63565b9450611e49565b600081815b8451811015611f54576000858281518110611ed257611ed2612d85565b60200260200101519050808311611f14576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f41565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f4c81612d14565b915050611eb5565b509392505050565b6001600160a01b038316611fb757611fb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fda565b816001600160a01b0316836001600160a01b031614611fda57611fda8382612154565b6001600160a01b038216611ff15761097a816121f1565b826001600160a01b0316826001600160a01b03161461097a5761097a82826122a0565b61201e83836122e4565b61202b6000848484612047565b61097a5760405162461bcd60e51b815260040161084490612aba565b60006001600160a01b0384163b1561214957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208b903390899088908890600401612a6a565b602060405180830381600087803b1580156120a557600080fd5b505af19250505080156120d5575060408051601f3d908101601f191682019092526120d291810190612853565b60015b61212f573d808015612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b5080516121275760405162461bcd60e51b815260040161084490612aba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b95565b506001949350505050565b6000600161216184610d2b565b61216b9190612c96565b6000838152600760205260409020549091508082146121be576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061220390600190612c96565b6000838152600960205260408120546008805493945090928490811061222b5761222b612d85565b90600052602060002001549050806008838154811061224c5761224c612d85565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228457612284612d6f565b6001900381819060005260206000200160009055905550505050565b60006122ab83610d2b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661233a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610844565b61234381611a28565b156123905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610844565b61239c60008383611f5c565b6001600160a01b03821660009081526003602052604081208054600192906123c5908490612c4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461242f90612cd9565b90600052602060002090601f0160209004810192826124515760008555612497565b82601f1061246a57805160ff1916838001178555612497565b82800160010185558215612497579182015b8281111561249757825182559160200191906001019061247c565b506124a39291506124a7565b5090565b5b808211156124a357600081556001016124a8565b600067ffffffffffffffff8311156124d6576124d6612d9b565b6124e9601f8401601f1916602001612bf6565b90508281528383830111156124fd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461252b57600080fd5b919050565b60006020828403121561254257600080fd5b61074382612514565b6000806040838503121561255e57600080fd5b61256783612514565b915061257560208401612514565b90509250929050565b60008060006060848603121561259357600080fd5b61259c84612514565b92506125aa60208501612514565b9150604084013590509250925092565b600080600080608085870312156125d057600080fd5b6125d985612514565b93506125e760208601612514565b925060408501359150606085013567ffffffffffffffff81111561260a57600080fd5b8501601f8101871361261b57600080fd5b61262a878235602084016124bc565b91505092959194509250565b6000806040838503121561264957600080fd5b61265283612514565b91506020830135801515811461266757600080fd5b809150509250929050565b6000806040838503121561268557600080fd5b61268e83612514565b946020939093013593505050565b6000806000606084860312156126b157600080fd5b6126ba84612514565b95602085013595506040909401359392505050565b600080604083850312156126e257600080fd5b823567ffffffffffffffff8111156126f957600080fd5b8301601f8101851361270a57600080fd5b8035602061271f61271a83612c27565b612bf6565b80838252828201915082850189848660051b880101111561273f57600080fd5b600095505b848610156127695761275581612514565b835260019590950194918301918301612744565b5098969091013596505050505050565b60006020828403121561278b57600080fd5b5035919050565b600080604083850312156127a557600080fd5b8235915060208084013567ffffffffffffffff8111156127c457600080fd5b8401601f810186136127d557600080fd5b80356127e361271a82612c27565b80828252848201915084840189868560051b870101111561280357600080fd5b600094505b83851015612826578035835260019490940193918501918501612808565b5080955050505050509250929050565b60006020828403121561284857600080fd5b813561074381612db1565b60006020828403121561286557600080fd5b815161074381612db1565b60006020828403121561288257600080fd5b813567ffffffffffffffff81111561289957600080fd5b8201601f810184136128aa57600080fd5b611b95848235602084016124bc565b6000806000806000608086880312156128d157600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff808211156128fe57600080fd5b818801915088601f83011261291257600080fd5b81358181111561292157600080fd5b8960208260051b850101111561293657600080fd5b9699959850939650602001949392505050565b6000806000806080858703121561295f57600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452612993816020860160208601612cad565b601f01601f19169290920160200192915050565b600081516129b9818560208601612cad565b9290920192915050565b600080845481600182811c9150808316806129df57607f831692505b60208084108214156129ff57634e487b7160e01b86526022600452602486fd5b818015612a135760018114612a2457612a51565b60ff19861689528489019650612a51565b60008b81526020902060005b86811015612a495781548b820152908501908301612a30565b505084890196505b505050505050612a6181856129a7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9d9083018461297b565b9695505050505050565b602081526000610743602083018461297b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260159082015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564204d41585f535550504c59604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c1f57612c1f612d9b565b604052919050565b600067ffffffffffffffff821115612c4157612c41612d9b565b5060051b60200190565b60008219821115612c5e57612c5e612d43565b500190565b600082612c7257612c72612d59565b500490565b6000816000190483118215151615612c9157612c91612d43565b500290565b600082821015612ca857612ca8612d43565b500390565b60005b83811015612cc8578181015183820152602001612cb0565b838111156115335750506000910152565b600181811c90821680612ced57607f821691505b60208210811415612d0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d2857612d28612d43565b5060010190565b600082612d3e57612d3e612d59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612dc757600080fd5b5056fea2646970667358221220a183c014138e5077bf32fa41819b01ebe1b66a583d5d58f014e54e22d64650e164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063774d790211610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610640578063f2fde38b14610689578063f4a0a528146106a9578063fc0541d4146106c9578063fdaf0125146106e957600080fd5b8063b88d4fde146105a0578063bf8bcee4146105c0578063c204642c146105e0578063c21d1e4e14610600578063c87b56dd1461062057600080fd5b806391f96ec0116100f257806391f96ec01461051857806395d89b411461052b578063a22cb46514610540578063a811a37b14610560578063b0ea6d811461058057600080fd5b8063774d79021461049a5780637be0bde8146104ba578063856de970146104da5780638da5cb5b146104fa57600080fd5b806323b872dd116101b15780634f6ccce7116101755780634f6ccce71461040557806355f804b3146104255780636352211e1461044557806370a0823114610465578063715018a61461048557600080fd5b806323b872dd1461037a5780632f745c591461039a57806332cb6b0c146103ba5780633ccfd60b146103d057806342842e0e146103e557600080fd5b8063095ea7b3116101f8578063095ea7b3146102d95780630bfa443a146102fb5780631128f7f11461031b57806317b5d8901461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461022a578063033cae401461025f57806306fdde031461027f578063081812fc146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004612836565b610709565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061024a61027a366004612792565b610734565b34801561028b57600080fd5b5061029461074a565b6040516102569190612aa7565b3480156102ad57600080fd5b506102c16102bc366004612779565b6107dc565b6040516001600160a01b039091168152602001610256565b3480156102e557600080fd5b506102f96102f4366004612672565b610869565b005b34801561030757600080fd5b506102f9610316366004612779565b61097f565b34801561032757600080fd5b506102f9610336366004612672565b6109c3565b34801561034757600080fd5b506102f9610356366004612949565b610a28565b34801561036757600080fd5b506008545b604051908152602001610256565b34801561038657600080fd5b506102f961039536600461257e565b610a7b565b3480156103a657600080fd5b5061036c6103b5366004612672565b610aac565b3480156103c657600080fd5b5061036c600d5481565b3480156103dc57600080fd5b506102f9610b42565b3480156103f157600080fd5b506102f961040036600461257e565b610bb4565b34801561041157600080fd5b5061036c610420366004612779565b610bcf565b34801561043157600080fd5b506102f9610440366004612870565b610c62565b34801561045157600080fd5b506102c1610460366004612779565b610cb4565b34801561047157600080fd5b5061036c610480366004612530565b610d2b565b34801561049157600080fd5b506102f9610db2565b3480156104a657600080fd5b506102f96104b5366004612779565b610e3b565b3480156104c657600080fd5b5061024a6104d5366004612792565b610e7f565b3480156104e657600080fd5b506102f96104f5366004612672565b610e8e565b34801561050657600080fd5b50600a546001600160a01b03166102c1565b6102f96105263660046128b9565b610f53565b34801561053757600080fd5b506102946113cc565b34801561054c57600080fd5b506102f961055b366004612636565b6113db565b34801561056c57600080fd5b506102f961057b366004612870565b6114a0565b34801561058c57600080fd5b5061024a61059b366004612792565b6114f2565b3480156105ac57600080fd5b506102f96105bb3660046125ba565b611501565b3480156105cc57600080fd5b506102f96105db366004612779565b611539565b3480156105ec57600080fd5b506102f96105fb3660046126cf565b61157d565b34801561060c57600080fd5b506102f961061b366004612779565b611675565b34801561062c57600080fd5b5061029461063b366004612779565b6116b9565b34801561064c57600080fd5b5061024a61065b36600461254b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506102f96106a4366004612530565b6117e2565b3480156106b557600080fd5b506102f96106c4366004612779565b6118e2565b3480156106d557600080fd5b506102f96106e4366004612949565b611926565b3480156106f557600080fd5b5061036c61070436600461269c565b611979565b60006001600160e01b0319821663780e9d6360e01b148061072e575061072e826119c2565b92915050565b60006107438260195485611a12565b9392505050565b60606000805461075990612cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612cd9565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e782611a28565b61084d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087482610cb4565b9050806001600160a01b0316836001600160a01b031614156108e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe813361065b565b6109705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610844565b61097a8383611a45565b505050565b600a546001600160a01b03163314806109a25750600b546001600160a01b031633145b6109be5760405162461bcd60e51b815260040161084490612b3b565b601a55565b600a546001600160a01b03163314806109e65750600b546001600160a01b031633145b610a025760405162461bcd60e51b815260040161084490612b3b565b600c80546001600160a01b0319166001600160a01b039390931692909217909155601455565b600a546001600160a01b0316331480610a4b5750600b546001600160a01b031633145b610a675760405162461bcd60e51b815260040161084490612b3b565b601093909355601191909155601255601355565b610a853382611ab3565b610aa15760405162461bcd60e51b815260040161084490612b70565b61097a838383611b9d565b6000610ab783610d2b565b8210610b195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610844565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610b655750600b546001600160a01b031633145b610b815760405162461bcd60e51b815260040161084490612b3b565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb0573d6000803e3d6000fd5b5050565b61097a83838360405180602001604052806000815250611501565b6000610bda60085490565b8210610c3d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610844565b60088281548110610c5057610c50612d85565b90600052602060002001549050919050565b600a546001600160a01b0316331480610c855750600b546001600160a01b031633145b610ca15760405162461bcd60e51b815260040161084490612b3b565b8051610bb090601c906020840190612423565b6000818152600260205260408120546001600160a01b03168061072e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610844565b60006001600160a01b038216610d965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610844565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610dd55750600b546001600160a01b031633145b610df15760405162461bcd60e51b815260040161084490612b3b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610e5e5750600b546001600160a01b031633145b610e7a5760405162461bcd60e51b815260040161084490612b3b565b601b55565b600061074382601a5485611a12565b600a546001600160a01b0316331480610eb15750600b546001600160a01b031633145b610ecd5760405162461bcd60e51b815260040161084490612b3b565b600d54601e5410610ef05760405162461bcd60e51b815260040161084490612bc1565b610ef981611a28565b15610f3c5760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610844565b610f4581611a28565b610bb057610bb08282611d48565b600d54601e5410610f765760405162461bcd60e51b815260040161084490612bc1565b600a546001600160a01b03163314611366573485600e54610f979190612c77565b1115610fe55760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610844565b33600090815260156020526040902054611000908690612c4b565b3360008181526015602052604090209190915561105b90611022908686611979565b8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506114f292505050565b156110e75760165442116110815760405162461bcd60e51b815260040161084490612b0c565b6012543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f72205350454349414c5f4d494e545f4c494d4954006044820152606401610844565b611305565b61112e6110f5338686611979565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061073492505050565b156111b55760165442116111545760405162461bcd60e51b815260040161084490612b0c565b6010543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f7220524f554e44315f4d494e545f4c494d495400006044820152606401610844565b6111fc6111c3338686611979565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610e7f92505050565b156112835760175442116112225760405162461bcd60e51b815260040161084490612b0c565b6011543360009081526015602052604090205411156110e25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f7220524f554e44325f4d494e545f4c494d495400006044820152606401610844565b60185442116112a45760405162461bcd60e51b815260040161084490612b0c565b6013543360009081526015602052604090205411156113055760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610844565b600c546014546001600160a01b03909116906108fc906064906113289082612c96565b6113329034612c77565b61133c9190612c63565b6040518115909202916000818181858888f19350505050158015611364573d6000803e3d6000fd5b505b60005b858110156113c457600061137c601e5490565b9050600d5461138a601e5490565b10156113b15761139a601e611d62565b6113a381611a28565b6113b1576113b13382611d48565b50806113bc81612d14565b915050611369565b505050505050565b60606001805461075990612cd9565b6001600160a01b0382163314156114345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610844565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806114c35750600b546001600160a01b031633145b6114df5760405162461bcd60e51b815260040161084490612b3b565b8051610bb090601d906020840190612423565b600061074382601b5485611a12565b61150b3383611ab3565b6115275760405162461bcd60e51b815260040161084490612b70565b61153384848484611d7f565b50505050565b600a546001600160a01b031633148061155c5750600b546001600160a01b031633145b6115785760405162461bcd60e51b815260040161084490612b3b565b600d55565b600a546001600160a01b03163314806115a05750600b546001600160a01b031633145b6115bc5760405162461bcd60e51b815260040161084490612b3b565b600d54601e54106115df5760405162461bcd60e51b815260040161084490612bc1565b60005b825181101561097a5760005b82811015611662576000611601601e5490565b9050600d5461160f601e5490565b101561164f5761161f601e611d62565b61162881611a28565b61164f5761164f85848151811061164157611641612d85565b602002602001015182611d48565b508061165a81612d14565b9150506115ee565b508061166d81612d14565b9150506115e2565b600a546001600160a01b03163314806116985750600b546001600160a01b031633145b6116b45760405162461bcd60e51b815260040161084490612b3b565b601955565b60606116c482611a28565b6117075760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610844565b42600f546016546117189190612c4b565b101561175057601c61172983611db2565b60405160200161173a9291906129c3565b6040516020818303038152906040529050919050565b601d805461175d90612cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461178990612cd9565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806118055750600b546001600160a01b031633145b6118215760405162461bcd60e51b815260040161084490612b3b565b6001600160a01b0381166118865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806119055750600b546001600160a01b031633145b6119215760405162461bcd60e51b815260040161084490612b3b565b600e55565b600a546001600160a01b03163314806119495750600b546001600160a01b031633145b6119655760405162461bcd60e51b815260040161084490612b3b565b601693909355601791909155601855600f55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b60006001600160e01b031982166380ac58cd60e01b14806119f357506001600160e01b03198216635b5e139f60e01b145b8061072e57506301ffc9a760e01b6001600160e01b031983161461072e565b600082611a1f8584611eb0565b14949350505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7a82610cb4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611abe82611a28565b611b1f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610844565b6000611b2a83610cb4565b9050806001600160a01b0316846001600160a01b03161480611b655750836001600160a01b0316611b5a846107dc565b6001600160a01b0316145b80611b9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bb082610cb4565b6001600160a01b031614611c185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610844565b6001600160a01b038216611c7a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b611c85838383611f5c565b611c90600082611a45565b6001600160a01b0383166000908152600360205260408120805460019290611cb9908490612c96565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ce7908490612c4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bb0828260405180602001604052806000815250612014565b6001816000016000828254611d779190612c4b565b909155505050565b611d8a848484611b9d565b611d9684848484612047565b6115335760405162461bcd60e51b815260040161084490612aba565b606081611dd65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e005780611dea81612d14565b9150611df99050600a83612c63565b9150611dda565b60008167ffffffffffffffff811115611e1b57611e1b612d9b565b6040519080825280601f01601f191660200182016040528015611e45576020820181803683370190505b5090505b8415611b9557611e5a600183612c96565b9150611e67600a86612d2f565b611e72906030612c4b565b60f81b818381518110611e8757611e87612d85565b60200101906001600160f81b031916908160001a905350611ea9600a86612c63565b9450611e49565b600081815b8451811015611f54576000858281518110611ed257611ed2612d85565b60200260200101519050808311611f14576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f41565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f4c81612d14565b915050611eb5565b509392505050565b6001600160a01b038316611fb757611fb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fda565b816001600160a01b0316836001600160a01b031614611fda57611fda8382612154565b6001600160a01b038216611ff15761097a816121f1565b826001600160a01b0316826001600160a01b03161461097a5761097a82826122a0565b61201e83836122e4565b61202b6000848484612047565b61097a5760405162461bcd60e51b815260040161084490612aba565b60006001600160a01b0384163b1561214957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208b903390899088908890600401612a6a565b602060405180830381600087803b1580156120a557600080fd5b505af19250505080156120d5575060408051601f3d908101601f191682019092526120d291810190612853565b60015b61212f573d808015612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b5080516121275760405162461bcd60e51b815260040161084490612aba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b95565b506001949350505050565b6000600161216184610d2b565b61216b9190612c96565b6000838152600760205260409020549091508082146121be576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061220390600190612c96565b6000838152600960205260408120546008805493945090928490811061222b5761222b612d85565b90600052602060002001549050806008838154811061224c5761224c612d85565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228457612284612d6f565b6001900381819060005260206000200160009055905550505050565b60006122ab83610d2b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661233a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610844565b61234381611a28565b156123905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610844565b61239c60008383611f5c565b6001600160a01b03821660009081526003602052604081208054600192906123c5908490612c4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461242f90612cd9565b90600052602060002090601f0160209004810192826124515760008555612497565b82601f1061246a57805160ff1916838001178555612497565b82800160010185558215612497579182015b8281111561249757825182559160200191906001019061247c565b506124a39291506124a7565b5090565b5b808211156124a357600081556001016124a8565b600067ffffffffffffffff8311156124d6576124d6612d9b565b6124e9601f8401601f1916602001612bf6565b90508281528383830111156124fd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461252b57600080fd5b919050565b60006020828403121561254257600080fd5b61074382612514565b6000806040838503121561255e57600080fd5b61256783612514565b915061257560208401612514565b90509250929050565b60008060006060848603121561259357600080fd5b61259c84612514565b92506125aa60208501612514565b9150604084013590509250925092565b600080600080608085870312156125d057600080fd5b6125d985612514565b93506125e760208601612514565b925060408501359150606085013567ffffffffffffffff81111561260a57600080fd5b8501601f8101871361261b57600080fd5b61262a878235602084016124bc565b91505092959194509250565b6000806040838503121561264957600080fd5b61265283612514565b91506020830135801515811461266757600080fd5b809150509250929050565b6000806040838503121561268557600080fd5b61268e83612514565b946020939093013593505050565b6000806000606084860312156126b157600080fd5b6126ba84612514565b95602085013595506040909401359392505050565b600080604083850312156126e257600080fd5b823567ffffffffffffffff8111156126f957600080fd5b8301601f8101851361270a57600080fd5b8035602061271f61271a83612c27565b612bf6565b80838252828201915082850189848660051b880101111561273f57600080fd5b600095505b848610156127695761275581612514565b835260019590950194918301918301612744565b5098969091013596505050505050565b60006020828403121561278b57600080fd5b5035919050565b600080604083850312156127a557600080fd5b8235915060208084013567ffffffffffffffff8111156127c457600080fd5b8401601f810186136127d557600080fd5b80356127e361271a82612c27565b80828252848201915084840189868560051b870101111561280357600080fd5b600094505b83851015612826578035835260019490940193918501918501612808565b5080955050505050509250929050565b60006020828403121561284857600080fd5b813561074381612db1565b60006020828403121561286557600080fd5b815161074381612db1565b60006020828403121561288257600080fd5b813567ffffffffffffffff81111561289957600080fd5b8201601f810184136128aa57600080fd5b611b95848235602084016124bc565b6000806000806000608086880312156128d157600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff808211156128fe57600080fd5b818801915088601f83011261291257600080fd5b81358181111561292157600080fd5b8960208260051b850101111561293657600080fd5b9699959850939650602001949392505050565b6000806000806080858703121561295f57600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452612993816020860160208601612cad565b601f01601f19169290920160200192915050565b600081516129b9818560208601612cad565b9290920192915050565b600080845481600182811c9150808316806129df57607f831692505b60208084108214156129ff57634e487b7160e01b86526022600452602486fd5b818015612a135760018114612a2457612a51565b60ff19861689528489019650612a51565b60008b81526020902060005b86811015612a495781548b820152908501908301612a30565b505084890196505b505050505050612a6181856129a7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9d9083018461297b565b9695505050505050565b602081526000610743602083018461297b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260159082015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564204d41585f535550504c59604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c1f57612c1f612d9b565b604052919050565b600067ffffffffffffffff821115612c4157612c41612d9b565b5060051b60200190565b60008219821115612c5e57612c5e612d43565b500190565b600082612c7257612c72612d59565b500490565b6000816000190483118215151615612c9157612c91612d43565b500290565b600082821015612ca857612ca8612d43565b500390565b60005b83811015612cc8578181015183820152602001612cb0565b838111156115335750506000910152565b600181811c90821680612ced57607f821691505b60208210811415612d0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d2857612d28612d43565b5060010190565b600082612d3e57612d3e612d59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612dc757600080fd5b5056fea2646970667358221220a183c014138e5077bf32fa41819b01ebe1b66a583d5d58f014e54e22d64650e164736f6c63430008070033

Deployed Bytecode Sourcemap

49139:7205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;10616:14:1;;10609:22;10591:41;;10579:2;10564:18;39256:300:0;;;;;;;;51323:173;;;;;;;;;;-1:-1:-1;51323:173:0;;;;;:::i;:::-;;:::i;22885:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9914:32:1;;;9896:51;;9884:2;9869:18;24467:308:0;9750:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;51044:101;;;;;;;;;;-1:-1:-1;51044:101:0;;;;;:::i;:::-;;:::i;50390:195::-;;;;;;;;;;-1:-1:-1;50390:195:0;;;;;:::i;:::-;;:::i;52363:340::-;;;;;;;;;;-1:-1:-1;52363:340:0;;;;;:::i;:::-;;:::i;40059:113::-;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;10789:25:1;;;10777:2;10762:18;40059:113:0;10643:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;49376:32::-;;;;;;;;;;;;;;;;56194:147;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;52826:104::-;;;;;;;;;;-1:-1:-1;52826:104:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;51153:113::-;;;;;;;;;;-1:-1:-1;51153:113:0;;;;;:::i;:::-;;:::i;51504:173::-;;;;;;;;;;-1:-1:-1;51504:173:0;;;;;:::i;:::-;;:::i;53566:290::-;;;;;;;;;;-1:-1:-1;53566:290:0;;;;;:::i;:::-;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;53864:1958;;;;;;:::i;:::-;;:::i;23054:104::-;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;52711:107::-;;;;;;;;;;-1:-1:-1;52711:107:0;;;;;:::i;:::-;;:::i;51685:185::-;;;;;;;;;;-1:-1:-1;51685:185:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;52257:98::-;;;;;;;;;;-1:-1:-1;52257:98:0;;;;;:::i;:::-;;:::i;52938:620::-;;;;;;;;;;-1:-1:-1;52938:620:0;;;;;:::i;:::-;;:::i;50935:101::-;;;;;;;;;;-1:-1:-1;50935:101:0;;;;;:::i;:::-;;:::i;55830:356::-;;;;;;;;;;-1:-1:-1;55830:356: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;38038:281;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;52153:96::-;;;;;;;;;;-1:-1:-1;52153:96:0;;;;;:::i;:::-;;:::i;50593:334::-;;;;;;;;;;-1:-1:-1;50593:334:0;;;;;:::i;:::-;;:::i;51974:171::-;;;;;;;;;;-1:-1:-1;51974:171:0;;;;;:::i;:::-;;:::i;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;51323:173::-;51411:4;51435:53;51454:5;51461:15;;51478:9;51435:18;:53::i;:::-;51428:60;51323:173;-1:-1:-1;;;51323:173:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;24635:16;24643:7;24635;:16::i;:::-;24613:110;;;;-1:-1:-1;;;24613:110:0;;18106:2:1;24613:110:0;;;18088:21:1;18145:2;18125:18;;;18118:30;18184:34;18164:18;;;18157:62;-1:-1:-1;;;18235:18:1;;;18228:42;18287:19;;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;;19290:2:1;24121:57:0;;;19272:21:1;19329:2;19309:18;;;19302:30;19368:34;19348:18;;;19341:62;-1:-1:-1;;;19419:18:1;;;19412:31;19460:19;;24121:57:0;19088: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;;15781:2:1;24191:168:0;;;15763:21:1;15820:2;15800:18;;;15793:30;15859:34;15839:18;;;15832:62;15930:26;15910:18;;;15903:54;15974:19;;24191:168:0;15579:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;51044:101::-;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;:::-;51115:15:::1;:22:::0;51044:101::o;50390:195::-;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;:::-;50494:15:::1;:41:::0;;-1:-1:-1;;;;;;50494:41:0::1;-1:-1:-1::0;;;;;50494:41:0;;;::::1;::::0;;;::::1;::::0;;;50546:15:::1;:31:::0;50390:195::o;52363:340::-;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;:::-;52520:17:::1;:35:::0;;;;52566:17:::1;:35:::0;;;;52612:18:::1;:37:::0;52660:17:::1;:35:::0;52363:340::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;;11251:2:1;39807:124:0;;;11233:21:1;11290:2;11270:18;;;11263:30;11329:34;11309:18;;;11302:62;-1:-1:-1;;;11380:18:1;;;11373:41;11431:19;;39807:124:0;11049:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;56194: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;:::-;56296:37:::1;::::0;56262:21:::1;::::0;56304:10:::1;::::0;56296:37;::::1;;;::::0;56262:21;;56244:15:::1;56296:37:::0;56244:15;56296:37;56262:21;56304:10;56296:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56233:108;56194: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;;20470:2:1;40394:132:0;;;20452:21:1;20509:2;20489:18;;;20482:30;20548:34;20528:18;;;20521:62;-1:-1:-1;;;20599:18:1;;;20592:42;20651:19;;40394:132:0;20268:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;52826: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;:::-;52899:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;22492:326::-:0;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;16617:2:1;22677:110:0;;;16599:21:1;16656:2;16636:18;;;16629:30;16695:34;16675:18;;;16668:62;-1:-1:-1;;;16746:18:1;;;16739:39;16795:19;;22677:110:0;16415:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;16206:2:1;22277:111:0;;;16188:21:1;16245:2;16225:18;;;16218:30;16284:34;16264:18;;;16257:62;-1:-1:-1;;;16335:18:1;;;16328:40;16385:19;;22277:111:0;16004: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;51153:113::-;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;:::-;51230:21:::1;:28:::0;51153:113::o;51504:173::-;51592:4;51616:53;51635:5;51642:15;;51659:9;51616:18;:53::i;53566:290::-;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;:::-;53684:10:::1;::::0;53657:14:::1;46557::::0;53657:37:::1;53649:81;;;;-1:-1:-1::0;;;53649:81:0::1;;;;;;;:::i;:::-;53752:16;53760:7;53752;:16::i;:::-;53751:17;53743:49;;;::::0;-1:-1:-1;;;53743:49:0;;13196:2:1;53743:49:0::1;::::0;::::1;13178:21:1::0;13235:2;13215:18;;;13208:30;-1:-1:-1;;;13254:18:1;;;13247:49;13313:18;;53743:49:0::1;12994:343:1::0;53743:49:0::1;53808:16;53816:7;53808;:16::i;:::-;53803:45;;53826:22;53836:2;53840:7;53826:9;:22::i;53864:1958::-:0;54026:10;;53999:14;46557;53999:37;53991:81;;;;-1:-1:-1;;;53991:81:0;;;;;;;:::i;:::-;37092:6;;-1:-1:-1;;;;;37092:6:0;54089:10;:21;54085:1412;;54161:9;54143:14;54135:5;;:22;;;;:::i;:::-;:35;;54127:75;;;;-1:-1:-1;;;54127:75:0;;15011:2:1;54127:75:0;;;14993:21:1;15050:2;15030:18;;;15023:30;15089;15069:18;;;15062:58;15137:18;;54127:75:0;14809:352:1;54127:75:0;54269:10;54251:29;;;;:17;:29;;;;;;:46;;54283:14;;54251:46;:::i;:::-;54237:10;54219:29;;;;:17;:29;;;;;:78;;;;54318:62;;54339:33;;54358:5;54365:6;54339;:33::i;:::-;54374:5;;54318:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54318:20:0;;-1:-1:-1;;;54318:62:0:i;:::-;54314:1088;;;54427:21;;54409:15;:39;54401:73;;;;-1:-1:-1;;;54401:73:0;;;;;;;:::i;:::-;54534:18;;54519:10;54501:29;;;;:17;:29;;;;;;:51;;54493:94;;;;-1:-1:-1;;;54493:94:0;;19692:2:1;54493:94:0;;;19674:21:1;19731:2;19711:18;;;19704:30;19770:33;19750:18;;;19743:61;19821:18;;54493:94:0;19490:355:1;54493:94:0;54314:1088;;;54613:56;54628:33;54635:10;54647:5;54654:6;54628;:33::i;:::-;54663:5;;54613:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54613:14:0;;-1:-1:-1;;;54613:56:0:i;:::-;54609:793;;;54716:21;;54698:15;:39;54690:73;;;;-1:-1:-1;;;54690:73:0;;;;;;;:::i;:::-;54823:17;;54808:10;54790:29;;;;:17;:29;;;;;;:50;;54782:92;;;;-1:-1:-1;;;54782:92:0;;17386:2:1;54782:92:0;;;17368:21:1;17425:2;17405:18;;;17398:30;17464:32;17444:18;;;17437:60;17514:18;;54782:92:0;17184:354:1;54609:793:0;54900:56;54915:33;54922:10;54934:5;54941:6;54915;:33::i;:::-;54950:5;;54900:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54900:14:0;;-1:-1:-1;;;54900:56:0:i;:::-;54896:506;;;55003:21;;54985:15;:39;54977:73;;;;-1:-1:-1;;;54977:73:0;;;;;;;:::i;:::-;55110:17;;55095:10;55077:29;;;;:17;:29;;;;;;:50;;55069:92;;;;-1:-1:-1;;;55069:92:0;;13544:2:1;55069:92:0;;;13526:21:1;13583:2;13563:18;;;13556:30;13622:32;13602:18;;;13595:60;13672:18;;55069:92:0;13342:354:1;54896:506:0;55228:21;;55210:15;:39;55202:73;;;;-1:-1:-1;;;55202:73:0;;;;;;;:::i;:::-;55335:17;;55320:10;55302:29;;;;:17;:29;;;;;;:50;;55294:92;;;;-1:-1:-1;;;55294:92:0;;17027:2:1;55294:92:0;;;17009:21:1;17066:2;17046:18;;;17039:30;17105:32;17085:18;;;17078:60;17155:18;;55294:92:0;16825:354:1;55294:92:0;55418:15;;55462;;-1:-1:-1;;;;;55418:15:0;;;;:67;;55481:3;;55456:21;;55481:3;55456:21;:::i;:::-;55443:35;;:9;:35;:::i;:::-;:41;;;;:::i;:::-;55418:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54085:1412;55514:9;55509:306;55533:14;55529:1;:18;55509:306;;;55569:15;55587:24;:14;46557;;46465:114;55587:24;55569:42;;55659:10;;55632:24;:14;46557;;46465:114;55632:24;:37;55628:176;;;55690:26;:14;:24;:26::i;:::-;55740:16;55748:7;55740;:16::i;:::-;55735:53;;55758:30;55768:10;55780:7;55758:9;:30::i;:::-;-1:-1:-1;55549:3:0;;;;:::i;:::-;;;;55509:306;;;;53864:1958;;;;;:::o;23054:104::-;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;;14308:2:1;24974:62:0;;;14290:21:1;14347:2;14327:18;;;14320:30;14386:27;14366:18;;;14359:55;14431:18;;24974:62:0;14106: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;;10591:41:1;;;25049:42:0;;16975:10;25118:48;;10564:18:1;25118:48:0;;;;;;;24847:327;;:::o;52711: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;:::-;52788:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51685:185::-:0;51779:4;51803:59;51822:5;51829:21;;51852:9;51803:18;:59::i;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;52257:98::-;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;:::-;52326:10:::1;:21:::0;52257:98::o;52938:620::-;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;:::-;53077:10:::1;::::0;53050:14:::1;46557::::0;53050:37:::1;53042:81;;;;-1:-1:-1::0;;;53042:81:0::1;;;;;;;:::i;:::-;53141:9;53136:415;53160:14;:21;53156:1;:25;53136:415;;;53208:9;53203:337;53227:14;53223:1;:18;53203:337;;;53267:15;53285:24;:14;46557::::0;;46465:114;53285:24:::1;53267:42;;53361:10;;53334:24;:14;46557::::0;;46465:114;53334:24:::1;:37;53330:195;;;53396:26;:14;:24;:26::i;:::-;53450:16;53458:7;53450;:16::i;:::-;53445:60;;53468:37;53478:14;53493:1;53478:17;;;;;;;;:::i;:::-;;;;;;;53497:7;53468:9;:37::i;:::-;-1:-1:-1::0;53243:3:0;::::1;::::0;::::1;:::i;:::-;;;;53203:337;;;-1:-1:-1::0;53183:3:0;::::1;::::0;::::1;:::i;:::-;;;;53136:415;;50935:101:::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;:::-;51006:15:::1;:22:::0;50935:101::o;55830:356::-;55903:13;55942:16;55950:7;55942;:16::i;:::-;55934:49;;;;-1:-1:-1;;;55934:49:0;;14662:2:1;55934:49:0;;;14644:21:1;14701:2;14681:18;;;14674:30;-1:-1:-1;;;14720:18:1;;;14713:50;14780:18;;55934:49:0;14460:344:1;55934:49:0;56039:15;56024:12;;56000:21;;:36;;;;:::i;:::-;:54;55996:153;;;56102:13;56117:18;:7;:16;:18::i;:::-;56085:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56071:66;;55830:356;;;:::o;55996:153::-;56168:10;56161:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55830:356;;;:::o;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;;12082:2:1;38119:110:0::1;::::0;::::1;12064:21:1::0;12121:2;12101:18;;;12094:30;12160:34;12140:18;;;12133:62;-1:-1:-1;;;12211:18:1;;;12204:36;12257:19;;38119:110:0::1;11880: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;52153: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;:::-;52224:5:::1;:17:::0;52153:96::o;50593:334::-;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;:::-;50744:21:::1;:39:::0;;;;50794:21:::1;:39:::0;;;;50844:21:::1;:38:::0;50893:12:::1;:26:::0;50593:334::o;51974:171::-;52096:40;;;;;;;9571:19:1;;;;9628:2;9624:15;;;;-1:-1:-1;;9620:53:1;9606:12;;;9599:75;9690:12;;;;9683:28;;;;52096:40:0;;;;;;;;;;9727:12:1;;;;52096:40:0;;;52086:51;;;;;;51974:171::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;47852:190;47977:4;48030;48001:25;48014:5;48021:4;48001:12;:25::i;:::-;:33;;47852:190;-1:-1:-1;;;;47852:190:0:o;28141:127::-;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;;;28141:127::o;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;28608:16;28616:7;28608;:16::i;:::-;28586:110;;;;-1:-1:-1;;;28586:110:0;;15368:2:1;28586:110:0;;;15350:21:1;15407:2;15387:18;;;15380:30;15446:34;15426:18;;;15419:62;-1:-1:-1;;;15497:18:1;;;15490:42;15549:19;;28586:110:0;15166: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;;18880:2:1;31655:122:0;;;18862:21:1;18919:2;18899:18;;;18892:30;18958:34;18938:18;;;18931:62;-1:-1:-1;;;19009:18:1;;;19002:39;19058:19;;31655:122:0;18678:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;13903:2:1;31788:65:0;;;13885:21:1;13942:2;13922:18;;;13915:30;13981:34;13961:18;;;13954:62;-1:-1:-1;;;14032:18:1;;;14025:34;14076:19;;31788:65:0;13701: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;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;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;;48404:701;48487:7;48530:4;48487:7;48545:523;48569:5;:12;48565:1;:16;48545:523;;;48603:20;48626:5;48632:1;48626:8;;;;;;;;:::i;:::-;;;;;;;48603:31;;48669:12;48653;:28;48649:408;;48806:44;;;;;;8112:19:1;;;8147:12;;;8140:28;;;8184:12;;48806:44:0;;;;;;;;;;;;48796:55;;;;;;48781:70;;48649:408;;;48996:44;;;;;;8112:19:1;;;8147:12;;;8140:28;;;8184:12;;48996:44:0;;;;;;;;;;;;48986:55;;;;;;48971:70;;48649:408;-1:-1:-1;48583:3:0;;;;:::i;:::-;;;;48545:523;;;-1:-1:-1;49085:12:0;48404:701;-1:-1:-1;;;48404:701:0:o;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;;17745:2:1;30295:61:0;;;17727:21:1;;;17764:18;;;17757:30;17823:34;17803:18;;;17796:62;17875:18;;30295:61:0;17543:356:1;30295:61:0;30376:16;30384:7;30376;:16::i;:::-;30375:17;30367:58;;;;-1:-1:-1;;;30367:58:0;;12489:2:1;30367:58:0;;;12471:21:1;12528:2;12508:18;;;12501:30;12567;12547:18;;;12540:58;12615:18;;30367:58:0;12287: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;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:322::-;2751:6;2759;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2859:29;2878:9;2859:29;:::i;:::-;2849:39;2935:2;2920:18;;2907:32;;-1:-1:-1;2986:2:1;2971:18;;;2958:32;;2674:322;-1:-1:-1;;;2674:322:1:o;3001:978::-;3094:6;3102;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3211:9;3198:23;3244:18;3236:6;3233:30;3230:50;;;3276:1;3273;3266:12;3230:50;3299:22;;3352:4;3344:13;;3340:27;-1:-1:-1;3330:55:1;;3381:1;3378;3371:12;3330:55;3417:2;3404:16;3439:4;3463:60;3479:43;3519:2;3479:43;:::i;:::-;3463:60;:::i;:::-;3545:3;3569:2;3564:3;3557:15;3597:2;3592:3;3588:12;3581:19;;3628:2;3624;3620:11;3676:7;3671:2;3665;3662:1;3658:10;3654:2;3650:19;3646:28;3643:41;3640:61;;;3697:1;3694;3687:12;3640:61;3719:1;3710:10;;3729:169;3743:2;3740:1;3737:9;3729:169;;;3800:23;3819:3;3800:23;:::i;:::-;3788:36;;3761:1;3754:9;;;;;3844:12;;;;3876;;3729:169;;;-1:-1:-1;3917:5:1;3954:18;;;;3941:32;;-1:-1:-1;;;;;;3001:978:1:o;3984:180::-;4043:6;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;-1:-1:-1;4135:23:1;;3984:180;-1:-1:-1;3984:180:1:o;4169:970::-;4262:6;4270;4323:2;4311:9;4302:7;4298:23;4294:32;4291:52;;;4339:1;4336;4329:12;4291:52;4375:9;4362:23;4352:33;;4404:2;4457;4446:9;4442:18;4429:32;4484:18;4476:6;4473:30;4470:50;;;4516:1;4513;4506:12;4470:50;4539:22;;4592:4;4584:13;;4580:27;-1:-1:-1;4570:55:1;;4621:1;4618;4611:12;4570:55;4657:2;4644:16;4680:60;4696:43;4736:2;4696:43;:::i;4680:60::-;4762:3;4786:2;4781:3;4774:15;4814:2;4809:3;4805:12;4798:19;;4845:2;4841;4837:11;4893:7;4888:2;4882;4879:1;4875:10;4871:2;4867:19;4863:28;4860:41;4857:61;;;4914:1;4911;4904:12;4857:61;4936:1;4927:10;;4946:163;4960:2;4957:1;4954:9;4946:163;;;5017:17;;5005:30;;4978:1;4971:9;;;;;5055:12;;;;5087;;4946:163;;;4950:3;5128:5;5118:15;;;;;;;4169:970;;;;;:::o;5144:245::-;5202:6;5255:2;5243:9;5234:7;5230:23;5226:32;5223:52;;;5271:1;5268;5261:12;5223:52;5310:9;5297:23;5329:30;5353:5;5329:30;:::i;5394:249::-;5463:6;5516:2;5504:9;5495:7;5491:23;5487:32;5484:52;;;5532:1;5529;5522:12;5484:52;5564:9;5558:16;5583:30;5607:5;5583:30;:::i;5648:450::-;5717:6;5770:2;5758:9;5749:7;5745:23;5741:32;5738:52;;;5786:1;5783;5776:12;5738:52;5826:9;5813:23;5859:18;5851:6;5848:30;5845:50;;;5891:1;5888;5881:12;5845:50;5914:22;;5967:4;5959:13;;5955:27;-1:-1:-1;5945:55:1;;5996:1;5993;5986:12;5945:55;6019:73;6084:7;6079:2;6066:16;6061:2;6057;6053:11;6019:73;:::i;6288:820::-;6401:6;6409;6417;6425;6433;6486:3;6474:9;6465:7;6461:23;6457:33;6454:53;;;6503:1;6500;6493:12;6454:53;6539:9;6526:23;6516:33;;6596:2;6585:9;6581:18;6568:32;6558:42;;6647:2;6636:9;6632:18;6619:32;6609:42;;6702:2;6691:9;6687:18;6674:32;6725:18;6766:2;6758:6;6755:14;6752:34;;;6782:1;6779;6772:12;6752:34;6820:6;6809:9;6805:22;6795:32;;6865:7;6858:4;6854:2;6850:13;6846:27;6836:55;;6887:1;6884;6877:12;6836:55;6927:2;6914:16;6953:2;6945:6;6942:14;6939:34;;;6969:1;6966;6959:12;6939:34;7022:7;7017:2;7007:6;7004:1;7000:14;6996:2;6992:23;6988:32;6985:45;6982:65;;;7043:1;7040;7033:12;6982:65;6288:820;;;;-1:-1:-1;6288:820:1;;-1:-1:-1;7074:2:1;7066:11;;7096:6;6288:820;-1:-1:-1;;;6288:820:1:o;7113:385::-;7199:6;7207;7215;7223;7276:3;7264:9;7255:7;7251:23;7247:33;7244:53;;;7293:1;7290;7283:12;7244:53;-1:-1:-1;;7316:23:1;;;7386:2;7371:18;;7358:32;;-1:-1:-1;7437:2:1;7422:18;;7409:32;;7488:2;7473:18;7460:32;;-1:-1:-1;7113:385:1;-1:-1:-1;7113:385:1:o;7503:257::-;7544:3;7582:5;7576:12;7609:6;7604:3;7597:19;7625:63;7681:6;7674:4;7669:3;7665:14;7658:4;7651:5;7647:16;7625:63;:::i;:::-;7742:2;7721:15;-1:-1:-1;;7717:29:1;7708:39;;;;7749:4;7704:50;;7503:257;-1:-1:-1;;7503:257:1:o;7765:185::-;7807:3;7845:5;7839:12;7860:52;7905:6;7900:3;7893:4;7886:5;7882:16;7860:52;:::i;:::-;7928:16;;;;;7765:185;-1:-1:-1;;7765:185:1:o;8207:1174::-;8383:3;8412:1;8445:6;8439:13;8475:3;8497:1;8525:9;8521:2;8517:18;8507:28;;8585:2;8574:9;8570:18;8607;8597:61;;8651:4;8643:6;8639:17;8629:27;;8597:61;8677:2;8725;8717:6;8714:14;8694:18;8691:38;8688:165;;;-1:-1:-1;;;8752:33:1;;8808:4;8805:1;8798:15;8838:4;8759:3;8826:17;8688:165;8869:18;8896:104;;;;9014:1;9009:320;;;;8862:467;;8896:104;-1:-1:-1;;8929:24:1;;8917:37;;8974:16;;;;-1:-1:-1;8896:104:1;;9009:320;21765:1;21758:14;;;21802:4;21789:18;;9104:1;9118:165;9132:6;9129:1;9126:13;9118:165;;;9210:14;;9197:11;;;9190:35;9253:16;;;;9147:10;;9118:165;;;9122:3;;9312:6;9307:3;9303:16;9296:23;;8862:467;;;;;;;9345:30;9371:3;9363:6;9345:30;:::i;:::-;9338:37;8207:1174;-1:-1:-1;;;;;8207:1174:1:o;9958:488::-;-1:-1:-1;;;;;10227:15:1;;;10209:34;;10279:15;;10274:2;10259:18;;10252:43;10326:2;10311:18;;10304:34;;;10374:3;10369:2;10354:18;;10347:31;;;10152:4;;10395:45;;10420:19;;10412:6;10395:45;:::i;:::-;10387:53;9958:488;-1:-1:-1;;;;;;9958:488:1:o;10825:219::-;10974:2;10963:9;10956:21;10937:4;10994:44;11034:2;11023:9;11019:18;11011:6;10994:44;:::i;11461:414::-;11663:2;11645:21;;;11702:2;11682:18;;;11675:30;11741:34;11736:2;11721:18;;11714:62;-1:-1:-1;;;11807:2:1;11792:18;;11785:48;11865:3;11850:19;;11461:414::o;12644:345::-;12846:2;12828:21;;;12885:2;12865:18;;;12858:30;-1:-1:-1;;;12919:2:1;12904:18;;12897:51;12980:2;12965:18;;12644:345::o;18317:356::-;18519:2;18501:21;;;18538:18;;;18531:30;18597:34;18592:2;18577:18;;18570:62;18664:2;18649:18;;18317:356::o;19850:413::-;20052:2;20034:21;;;20091:2;20071:18;;;20064:30;20130:34;20125:2;20110:18;;20103:62;-1:-1:-1;;;20196:2:1;20181:18;;20174:47;20253:3;20238:19;;19850:413::o;20681:356::-;20883:2;20865:21;;;20902:18;;;20895:30;20961:34;20956:2;20941:18;;20934:62;21028:2;21013:18;;20681:356::o;21224:275::-;21295:2;21289:9;21360:2;21341:13;;-1:-1:-1;;21337:27:1;21325:40;;21395:18;21380:34;;21416:22;;;21377:62;21374:88;;;21442:18;;:::i;:::-;21478:2;21471:22;21224:275;;-1:-1:-1;21224:275:1:o;21504:183::-;21564:4;21597:18;21589:6;21586:30;21583:56;;;21619:18;;:::i;:::-;-1:-1:-1;21664:1:1;21660:14;21676:4;21656:25;;21504:183::o;21818:128::-;21858:3;21889:1;21885:6;21882:1;21879:13;21876:39;;;21895:18;;:::i;:::-;-1:-1:-1;21931:9:1;;21818:128::o;21951:120::-;21991:1;22017;22007:35;;22022:18;;:::i;:::-;-1:-1:-1;22056:9:1;;21951:120::o;22076:168::-;22116:7;22182:1;22178;22174:6;22170:14;22167:1;22164:21;22159:1;22152:9;22145:17;22141:45;22138:71;;;22189:18;;:::i;:::-;-1:-1:-1;22229:9:1;;22076:168::o;22249:125::-;22289:4;22317:1;22314;22311:8;22308:34;;;22322:18;;:::i;:::-;-1:-1:-1;22359:9:1;;22249:125::o;22379:258::-;22451:1;22461:113;22475:6;22472:1;22469:13;22461:113;;;22551:11;;;22545:18;22532:11;;;22525:39;22497:2;22490:10;22461:113;;;22592:6;22589:1;22586:13;22583:48;;;-1:-1:-1;;22627:1:1;22609:16;;22602:27;22379:258::o;22642:380::-;22721:1;22717:12;;;;22764;;;22785:61;;22839:4;22831:6;22827:17;22817:27;;22785:61;22892:2;22884:6;22881:14;22861:18;22858:38;22855:161;;;22938:10;22933:3;22929:20;22926:1;22919:31;22973:4;22970:1;22963:15;23001:4;22998:1;22991:15;22855:161;;22642:380;;;:::o;23027:135::-;23066:3;-1:-1:-1;;23087:17:1;;23084:43;;;23107:18;;:::i;:::-;-1:-1:-1;23154:1:1;23143:13;;23027:135::o;23167:112::-;23199:1;23225;23215:35;;23230:18;;:::i;:::-;-1:-1:-1;23264:9:1;;23167:112::o;23284:127::-;23345:10;23340:3;23336:20;23333:1;23326:31;23376:4;23373:1;23366:15;23400:4;23397:1;23390:15;23416:127;23477:10;23472:3;23468:20;23465:1;23458:31;23508:4;23505:1;23498:15;23532:4;23529:1;23522:15;23548:127;23609:10;23604:3;23600:20;23597:1;23590:31;23640:4;23637:1;23630:15;23664:4;23661:1;23654:15;23680:127;23741:10;23736:3;23732:20;23729:1;23722:31;23772:4;23769:1;23762:15;23796:4;23793:1;23786:15;23812:127;23873:10;23868:3;23864:20;23861:1;23854:31;23904:4;23901:1;23894:15;23928:4;23925:1;23918:15;23944:131;-1:-1:-1;;;;;;24018:32:1;;24008:43;;23998:71;;24065:1;24062;24055:12;23998:71;23944:131;:::o

Swarm Source

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