ETH Price: $3,345.83 (-1.01%)

Token

Chilled Camels (CC)
 

Overview

Max Total Supply

70 CC

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CC
0xb88705744cf21911ae74251752de0751d4ffd1ba
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:
ChilledCamels

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/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) {
        return msg.data;
    }
}

// File: @openzeppelin/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;

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/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: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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/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: @openzeppelin/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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: @openzeppelin/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/ChilledCamels.sol

//SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.5; // Version of solidity compiler

//Importing required openzeppelin library

//Contract starts here
contract ChilledCamels is ERC721Enumerable, Ownable {
    // declaring required variables and they are understandble by the name
    using Strings for uint256;
    string NFT_URI;
    string public extension = ".json";
    string public hidden_URI;
    uint256 public cost = 0.04 ether; // Cost per NFT
    uint32 public maximum_supply = 6200; // Max number of NFTs
    uint32 public maximum_mint = 10; // Max mint amount per transaction
    bool public pause = true; // Paused or not
    bool public reveal = false; // Revealed or not
    mapping(address => uint256) public addressMintedBalance;

    // Constructor - Fill the details while deploying the contract
    constructor(
        string memory _name, // Name of the project (can be anything)
        string memory _symbol, // Symbol of the project (can be anything)
        string memory _initNFT_URI, // URI of the metadata (ipfs://CID/) Fill this column in the same way. CID is the ID you get from IPFS
        string memory _inithidden_URI // URI of hidden metadata (ipfs://CID/name.json) Fill this colum with CID of hidden data from IPFS along with the filename.json
    ) ERC721(_name, _symbol) {
        setNFT_URI(_initNFT_URI);
        sethidden_URI(_inithidden_URI);
    }

    //Function to get the NFTs URI
    function _nftURI() internal view virtual returns (string memory) {
        return NFT_URI;
    }

    //Function to mint. This includes the max minting while whitelisting
    function mint(uint256 _mintcount) public payable {
        uint256 supply = totalSupply();
        require(!pause);
        require(_mintcount > 0, "Mint atleast 1 NFT");
        require(
            _mintcount <= maximum_mint,
            "Maximum mint count per session exceeded"
        );
        require(supply + _mintcount <= maximum_supply, "All NFTs are minted");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintcount);
        }

        for (uint256 i = 1; i <= _mintcount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }


    //Function to check the details from the NFT owner like how many NFTs they hold and which NFT they hold
    function ownerWalletInfo(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // Function to check a particular token URI
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token doesn't exist");
        if (reveal == false) {
            return hidden_URI;
        }

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

    // Function to reveal the NFT
    function reveal_NFT() public onlyOwner {
        reveal = true;
    }

    //Function to set new cost
    function setNewCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaximumMint(uint32 _newMaxMintAmt) public onlyOwner {
        maximum_mint = _newMaxMintAmt;
    }



    function sethidden_URI(string memory _hiddenURI) public onlyOwner {
        hidden_URI = _hiddenURI;
    }

    function setNFT_URI(string memory _NFT_URI) public onlyOwner {
        NFT_URI = _NFT_URI;
    }





    function pause_contract(bool _state) public onlyOwner {
        pause = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNFT_URI","type":"string"},{"internalType":"string","name":"_inithidden_URI","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hidden_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximum_mint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximum_supply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintcount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"ownerWalletInfo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause_contract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_newMaxMintAmt","type":"uint32"}],"name":"setMaximumMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_NFT_URI","type":"string"}],"name":"setNFT_URI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setNewCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"sethidden_URI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000204565b50668e1bc9bf040000600e55600f80546001600160501b03191668010000000a000018381790553480156200005c57600080fd5b50604051620029ed380380620029ed8339810160408190526200007f9162000361565b8351849084906200009890600090602085019062000204565b508051620000ae90600190602084019062000204565b505050620000cb620000c5620000eb60201b60201c565b620000ef565b620000d68262000141565b620000e181620001a9565b505050506200046d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001905760405162461bcd60e51b81526020600482018190526024820152600080516020620029cd83398151915260448201526064015b60405180910390fd5b8051620001a590600b90602084019062000204565b5050565b600a546001600160a01b03163314620001f45760405162461bcd60e51b81526020600482018190526024820152600080516020620029cd833981519152604482015260640162000187565b8051620001a590600d9060208401905b82805462000212906200041a565b90600052602060002090601f01602090048101928262000236576000855562000281565b82601f106200025157805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028157825182559160200191906001019062000264565b506200028f92915062000293565b5090565b5b808211156200028f576000815560010162000294565b600082601f830112620002bc57600080fd5b81516001600160401b0380821115620002d957620002d962000457565b604051601f8301601f19908116603f0116810190828211818310171562000304576200030462000457565b816040528381526020925086838588010111156200032157600080fd5b600091505b8382101562000345578582018301518183018401529082019062000326565b83821115620003575760008385830101525b9695505050505050565b600080600080608085870312156200037857600080fd5b84516001600160401b03808211156200039057600080fd5b6200039e88838901620002aa565b95506020870151915080821115620003b557600080fd5b620003c388838901620002aa565b94506040870151915080821115620003da57600080fd5b620003e888838901620002aa565b93506060870151915080821115620003ff57600080fd5b506200040e87828801620002aa565b91505092959194509250565b600181811c908216806200042f57607f821691505b602082108114156200045157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612550806200047d6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a475b5dd116100a0578063c87b56dd1161006f578063c87b56dd146105ee578063cc1617ae1461060e578063db6166131461062e578063e985e9c514610653578063f2fde38b1461069c57600080fd5b8063a475b5dd1461056b578063aed3e53b1461058c578063b27dbb1e146105b9578063b88d4fde146105ce57600080fd5b80638da5cb5b116100e75780638da5cb5b146104e557806395d89b41146105035780639e4b261e14610518578063a0712d6814610538578063a22cb4651461054b57600080fd5b8063715018a61461046857806382a5a75d1461047d5780638456cb59146104af5780638735a5b7146104d057600080fd5b80632f745c591161019b578063515c94521161016a578063515c9452146103c85780635e5a09b7146103e85780636352211e14610408578063660012041461042857806370a082311461044857600080fd5b80632f745c59146103605780633ccfd60b1461038057806342842e0e146103885780634f6ccce7146103a857600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806318cae269146102fe57806323b872dd1461032b5780632d5537b01461034b57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612080565b6106bc565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106e7565b60405161024091906122b3565b34801561027757600080fd5b5061028b610286366004612103565b610779565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461203b565b610813565b005b3480156102d157600080fd5b506102db600e5481565b604051908152602001610240565b3480156102f557600080fd5b506008546102db565b34801561030a57600080fd5b506102db610319366004611f0b565b60106020526000908152604090205481565b34801561033757600080fd5b506102c3610346366004611f59565b610929565b34801561035757600080fd5b5061025e61095a565b34801561036c57600080fd5b506102db61037b36600461203b565b6109e8565b6102c3610a7e565b34801561039457600080fd5b506102c36103a3366004611f59565b610b1c565b3480156103b457600080fd5b506102db6103c3366004612103565b610b37565b3480156103d457600080fd5b506102c36103e33660046120ba565b610bca565b3480156103f457600080fd5b506102c36104033660046120ba565b610c0b565b34801561041457600080fd5b5061028b610423366004612103565b610c48565b34801561043457600080fd5b506102c3610443366004612103565b610cbf565b34801561045457600080fd5b506102db610463366004611f0b565b610cee565b34801561047457600080fd5b506102c3610d75565b34801561048957600080fd5b50600f5461049a9063ffffffff1681565b60405163ffffffff9091168152602001610240565b3480156104bb57600080fd5b50600f5461023490600160401b900460ff1681565b3480156104dc57600080fd5b506102c3610dab565b3480156104f157600080fd5b50600a546001600160a01b031661028b565b34801561050f57600080fd5b5061025e610df0565b34801561052457600080fd5b506102c3610533366004612065565b610dff565b6102c3610546366004612103565b610e4c565b34801561055757600080fd5b506102c3610566366004612011565b610ff9565b34801561057757600080fd5b50600f5461023490600160481b900460ff1681565b34801561059857600080fd5b506105ac6105a7366004611f0b565b6110be565b604051610240919061226f565b3480156105c557600080fd5b5061025e611160565b3480156105da57600080fd5b506102c36105e9366004611f95565b61116d565b3480156105fa57600080fd5b5061025e610609366004612103565b6111a5565b34801561061a57600080fd5b506102c361062936600461211c565b611304565b34801561063a57600080fd5b50600f5461049a90640100000000900463ffffffff1681565b34801561065f57600080fd5b5061023461066e366004611f26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a857600080fd5b506102c36106b7366004611f0b565b611356565b60006001600160e01b0319821663780e9d6360e01b14806106e157506106e1826113ee565b92915050565b6060600080546106f69061242c565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061242c565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081e82610c48565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ee565b336001600160a01b03821614806108a857506108a8813361066e565b61091a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ee565b610924838361143e565b505050565b61093333826114ac565b61094f5760405162461bcd60e51b81526004016107ee9061234d565b6109248383836115a3565b600c80546109679061242c565b80601f01602080910402602001604051908101604052809291908181526020018280546109939061242c565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b60006109f383610cee565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa85760405162461bcd60e51b81526004016107ee90612318565b6000610abc600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b1957600080fd5b50565b6109248383836040518060200160405280600081525061116d565b6000610b4260085490565b8210610ba55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ee565b60088281548110610bb857610bb86124d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610bf45760405162461bcd60e51b81526004016107ee90612318565b8051610c0790600d906020840190611dd0565b5050565b600a546001600160a01b03163314610c355760405162461bcd60e51b81526004016107ee90612318565b8051610c0790600b906020840190611dd0565b6000818152600260205260408120546001600160a01b0316806106e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ee565b600a546001600160a01b03163314610ce95760405162461bcd60e51b81526004016107ee90612318565b600e55565b60006001600160a01b038216610d595760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b81526004016107ee90612318565b610da9600061174e565b565b600a546001600160a01b03163314610dd55760405162461bcd60e51b81526004016107ee90612318565b600f805469ff0000000000000000001916600160481b179055565b6060600180546106f69061242c565b600a546001600160a01b03163314610e295760405162461bcd60e51b81526004016107ee90612318565b600f8054911515600160401b0268ff000000000000000019909216919091179055565b6000610e5760085490565b600f54909150600160401b900460ff1615610e7157600080fd5b60008211610eb65760405162461bcd60e51b8152602060048201526012602482015271135a5b9d08185d1b19585cdd080c4813919560721b60448201526064016107ee565b600f54640100000000900463ffffffff16821115610f265760405162461bcd60e51b815260206004820152602760248201527f4d6178696d756d206d696e7420636f756e74207065722073657373696f6e20656044820152661e18d95959195960ca1b60648201526084016107ee565b600f5463ffffffff16610f39838361239e565b1115610f7d5760405162461bcd60e51b8152602060048201526013602482015272105b1b081391951cc8185c99481b5a5b9d1959606a1b60448201526064016107ee565b600a546001600160a01b03163314610fa95781600e54610f9d91906123ca565b341015610fa957600080fd5b60015b82811161092457336000908152601060205260408120805491610fce83612467565b90915550610fe7905033610fe2838561239e565b6117a0565b80610ff181612467565b915050610fac565b6001600160a01b0382163314156110525760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606060006110cb83610cee565b905060008167ffffffffffffffff8111156110e8576110e86124ee565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b50905060005b828110156111585761112985826109e8565b82828151811061113b5761113b6124d8565b60209081029190910101528061115081612467565b915050611117565b509392505050565b600d80546109679061242c565b61117733836114ac565b6111935760405162461bcd60e51b81526004016107ee9061234d565b61119f848484846117ba565b50505050565b6000818152600260205260409020546060906001600160a01b03166112025760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016107ee565b600f54600160481b900460ff166112a557600d80546112209061242c565b80601f016020809104026020016040519081016040528092919081815260200182805461124c9061242c565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b50505050509050919050565b60006112af6117ed565b905060008151116112cf57604051806020016040528060008152506112fd565b806112d9846117fc565b600c6040516020016112ed9392919061216e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461132e5760405162461bcd60e51b81526004016107ee90612318565b600f805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600a546001600160a01b031633146113805760405162461bcd60e51b81526004016107ee90612318565b6001600160a01b0381166113e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ee565b610b198161174e565b60006001600160e01b031982166380ac58cd60e01b148061141f57506001600160e01b03198216635b5e139f60e01b145b806106e157506301ffc9a760e01b6001600160e01b03198316146106e1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147382610c48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ee565b600061153083610c48565b9050806001600160a01b0316846001600160a01b0316148061156b5750836001600160a01b031661156084610779565b6001600160a01b0316145b8061159b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b682610c48565b6001600160a01b03161461161e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ee565b6001600160a01b0382166116805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b61168b8383836118fa565b61169660008261143e565b6001600160a01b03831660009081526003602052604081208054600192906116bf9084906123e9565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ed90849061239e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c078282604051806020016040528060008152506119b2565b6117c58484846115a3565b6117d1848484846119e5565b61119f5760405162461bcd60e51b81526004016107ee906122c6565b6060600b80546106f69061242c565b6060816118205750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184a578061183481612467565b91506118439050600a836123b6565b9150611824565b60008167ffffffffffffffff811115611865576118656124ee565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b841561159b576118a46001836123e9565b91506118b1600a86612482565b6118bc90603061239e565b60f81b8183815181106118d1576118d16124d8565b60200101906001600160f81b031916908160001a9053506118f3600a866123b6565b9450611893565b6001600160a01b0383166119555761195081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611978565b816001600160a01b0316836001600160a01b031614611978576119788382611af2565b6001600160a01b03821661198f5761092481611b8f565b826001600160a01b0316826001600160a01b031614610924576109248282611c3e565b6119bc8383611c82565b6119c960008484846119e5565b6109245760405162461bcd60e51b81526004016107ee906122c6565b60006001600160a01b0384163b15611ae757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a29903390899088908890600401612232565b602060405180830381600087803b158015611a4357600080fd5b505af1925050508015611a73575060408051601f3d908101601f19168201909252611a709181019061209d565b60015b611acd573d808015611aa1576040519150601f19603f3d011682016040523d82523d6000602084013e611aa6565b606091505b508051611ac55760405162461bcd60e51b81526004016107ee906122c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b506001949350505050565b60006001611aff84610cee565b611b0991906123e9565b600083815260076020526040902054909150808214611b5c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba1906001906123e9565b60008381526009602052604081205460088054939450909284908110611bc957611bc96124d8565b906000526020600020015490508060088381548110611bea57611bea6124d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2257611c226124c2565b6001900381819060005260206000200160009055905550505050565b6000611c4983610cee565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cd85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ee565b6000818152600260205260409020546001600160a01b031615611d3d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ee565b611d49600083836118fa565b6001600160a01b0382166000908152600360205260408120805460019290611d7290849061239e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ddc9061242c565b90600052602060002090601f016020900481019282611dfe5760008555611e44565b82601f10611e1757805160ff1916838001178555611e44565b82800160010185558215611e44579182015b82811115611e44578251825591602001919060010190611e29565b50611e50929150611e54565b5090565b5b80821115611e505760008155600101611e55565b600067ffffffffffffffff80841115611e8457611e846124ee565b604051601f8501601f19908116603f01168101908282118183101715611eac57611eac6124ee565b81604052809350858152868686011115611ec557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ef657600080fd5b919050565b80358015158114611ef657600080fd5b600060208284031215611f1d57600080fd5b6112fd82611edf565b60008060408385031215611f3957600080fd5b611f4283611edf565b9150611f5060208401611edf565b90509250929050565b600080600060608486031215611f6e57600080fd5b611f7784611edf565b9250611f8560208501611edf565b9150604084013590509250925092565b60008060008060808587031215611fab57600080fd5b611fb485611edf565b9350611fc260208601611edf565b925060408501359150606085013567ffffffffffffffff811115611fe557600080fd5b8501601f81018713611ff657600080fd5b61200587823560208401611e69565b91505092959194509250565b6000806040838503121561202457600080fd5b61202d83611edf565b9150611f5060208401611efb565b6000806040838503121561204e57600080fd5b61205783611edf565b946020939093013593505050565b60006020828403121561207757600080fd5b6112fd82611efb565b60006020828403121561209257600080fd5b81356112fd81612504565b6000602082840312156120af57600080fd5b81516112fd81612504565b6000602082840312156120cc57600080fd5b813567ffffffffffffffff8111156120e357600080fd5b8201601f810184136120f457600080fd5b61159b84823560208401611e69565b60006020828403121561211557600080fd5b5035919050565b60006020828403121561212e57600080fd5b813563ffffffff811681146112fd57600080fd5b6000815180845261215a816020860160208601612400565b601f01601f19169290920160200192915050565b6000845160206121818285838a01612400565b8551918401916121948184848a01612400565b8554920191600090600181811c90808316806121b157607f831692505b8583108114156121cf57634e487b7160e01b85526022600452602485fd5b8080156121e357600181146121f457612221565b60ff19851688528388019550612221565b60008b81526020902060005b858110156122195781548a820152908401908801612200565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226590830184612142565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122a75783518352928401929184019160010161228b565b50909695505050505050565b6020815260006112fd6020830184612142565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123b1576123b1612496565b500190565b6000826123c5576123c56124ac565b500490565b60008160001904831182151516156123e4576123e4612496565b500290565b6000828210156123fb576123fb612496565b500390565b60005b8381101561241b578181015183820152602001612403565b8381111561119f5750506000910152565b600181811c9082168061244057607f821691505b6020821081141561246157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247b5761247b612496565b5060010190565b600082612491576124916124ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1957600080fdfea26469706673582212205d91c88688b73b80ab37452bfd958f731fc5c46c2c00bb53b4cd5664ad64573264736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e4368696c6c65642043616d656c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50337163663851784e67704632543865785a53464e74445a484a683134696847364a424664756d334e744a742f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59623878767847315772476735373653367a59726b7a64457854374145796a5263487966584a43774c4437422f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a475b5dd116100a0578063c87b56dd1161006f578063c87b56dd146105ee578063cc1617ae1461060e578063db6166131461062e578063e985e9c514610653578063f2fde38b1461069c57600080fd5b8063a475b5dd1461056b578063aed3e53b1461058c578063b27dbb1e146105b9578063b88d4fde146105ce57600080fd5b80638da5cb5b116100e75780638da5cb5b146104e557806395d89b41146105035780639e4b261e14610518578063a0712d6814610538578063a22cb4651461054b57600080fd5b8063715018a61461046857806382a5a75d1461047d5780638456cb59146104af5780638735a5b7146104d057600080fd5b80632f745c591161019b578063515c94521161016a578063515c9452146103c85780635e5a09b7146103e85780636352211e14610408578063660012041461042857806370a082311461044857600080fd5b80632f745c59146103605780633ccfd60b1461038057806342842e0e146103885780634f6ccce7146103a857600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806318cae269146102fe57806323b872dd1461032b5780632d5537b01461034b57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612080565b6106bc565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106e7565b60405161024091906122b3565b34801561027757600080fd5b5061028b610286366004612103565b610779565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461203b565b610813565b005b3480156102d157600080fd5b506102db600e5481565b604051908152602001610240565b3480156102f557600080fd5b506008546102db565b34801561030a57600080fd5b506102db610319366004611f0b565b60106020526000908152604090205481565b34801561033757600080fd5b506102c3610346366004611f59565b610929565b34801561035757600080fd5b5061025e61095a565b34801561036c57600080fd5b506102db61037b36600461203b565b6109e8565b6102c3610a7e565b34801561039457600080fd5b506102c36103a3366004611f59565b610b1c565b3480156103b457600080fd5b506102db6103c3366004612103565b610b37565b3480156103d457600080fd5b506102c36103e33660046120ba565b610bca565b3480156103f457600080fd5b506102c36104033660046120ba565b610c0b565b34801561041457600080fd5b5061028b610423366004612103565b610c48565b34801561043457600080fd5b506102c3610443366004612103565b610cbf565b34801561045457600080fd5b506102db610463366004611f0b565b610cee565b34801561047457600080fd5b506102c3610d75565b34801561048957600080fd5b50600f5461049a9063ffffffff1681565b60405163ffffffff9091168152602001610240565b3480156104bb57600080fd5b50600f5461023490600160401b900460ff1681565b3480156104dc57600080fd5b506102c3610dab565b3480156104f157600080fd5b50600a546001600160a01b031661028b565b34801561050f57600080fd5b5061025e610df0565b34801561052457600080fd5b506102c3610533366004612065565b610dff565b6102c3610546366004612103565b610e4c565b34801561055757600080fd5b506102c3610566366004612011565b610ff9565b34801561057757600080fd5b50600f5461023490600160481b900460ff1681565b34801561059857600080fd5b506105ac6105a7366004611f0b565b6110be565b604051610240919061226f565b3480156105c557600080fd5b5061025e611160565b3480156105da57600080fd5b506102c36105e9366004611f95565b61116d565b3480156105fa57600080fd5b5061025e610609366004612103565b6111a5565b34801561061a57600080fd5b506102c361062936600461211c565b611304565b34801561063a57600080fd5b50600f5461049a90640100000000900463ffffffff1681565b34801561065f57600080fd5b5061023461066e366004611f26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a857600080fd5b506102c36106b7366004611f0b565b611356565b60006001600160e01b0319821663780e9d6360e01b14806106e157506106e1826113ee565b92915050565b6060600080546106f69061242c565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061242c565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081e82610c48565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ee565b336001600160a01b03821614806108a857506108a8813361066e565b61091a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ee565b610924838361143e565b505050565b61093333826114ac565b61094f5760405162461bcd60e51b81526004016107ee9061234d565b6109248383836115a3565b600c80546109679061242c565b80601f01602080910402602001604051908101604052809291908181526020018280546109939061242c565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b60006109f383610cee565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa85760405162461bcd60e51b81526004016107ee90612318565b6000610abc600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b1957600080fd5b50565b6109248383836040518060200160405280600081525061116d565b6000610b4260085490565b8210610ba55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ee565b60088281548110610bb857610bb86124d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610bf45760405162461bcd60e51b81526004016107ee90612318565b8051610c0790600d906020840190611dd0565b5050565b600a546001600160a01b03163314610c355760405162461bcd60e51b81526004016107ee90612318565b8051610c0790600b906020840190611dd0565b6000818152600260205260408120546001600160a01b0316806106e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ee565b600a546001600160a01b03163314610ce95760405162461bcd60e51b81526004016107ee90612318565b600e55565b60006001600160a01b038216610d595760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b81526004016107ee90612318565b610da9600061174e565b565b600a546001600160a01b03163314610dd55760405162461bcd60e51b81526004016107ee90612318565b600f805469ff0000000000000000001916600160481b179055565b6060600180546106f69061242c565b600a546001600160a01b03163314610e295760405162461bcd60e51b81526004016107ee90612318565b600f8054911515600160401b0268ff000000000000000019909216919091179055565b6000610e5760085490565b600f54909150600160401b900460ff1615610e7157600080fd5b60008211610eb65760405162461bcd60e51b8152602060048201526012602482015271135a5b9d08185d1b19585cdd080c4813919560721b60448201526064016107ee565b600f54640100000000900463ffffffff16821115610f265760405162461bcd60e51b815260206004820152602760248201527f4d6178696d756d206d696e7420636f756e74207065722073657373696f6e20656044820152661e18d95959195960ca1b60648201526084016107ee565b600f5463ffffffff16610f39838361239e565b1115610f7d5760405162461bcd60e51b8152602060048201526013602482015272105b1b081391951cc8185c99481b5a5b9d1959606a1b60448201526064016107ee565b600a546001600160a01b03163314610fa95781600e54610f9d91906123ca565b341015610fa957600080fd5b60015b82811161092457336000908152601060205260408120805491610fce83612467565b90915550610fe7905033610fe2838561239e565b6117a0565b80610ff181612467565b915050610fac565b6001600160a01b0382163314156110525760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606060006110cb83610cee565b905060008167ffffffffffffffff8111156110e8576110e86124ee565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b50905060005b828110156111585761112985826109e8565b82828151811061113b5761113b6124d8565b60209081029190910101528061115081612467565b915050611117565b509392505050565b600d80546109679061242c565b61117733836114ac565b6111935760405162461bcd60e51b81526004016107ee9061234d565b61119f848484846117ba565b50505050565b6000818152600260205260409020546060906001600160a01b03166112025760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016107ee565b600f54600160481b900460ff166112a557600d80546112209061242c565b80601f016020809104026020016040519081016040528092919081815260200182805461124c9061242c565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b50505050509050919050565b60006112af6117ed565b905060008151116112cf57604051806020016040528060008152506112fd565b806112d9846117fc565b600c6040516020016112ed9392919061216e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461132e5760405162461bcd60e51b81526004016107ee90612318565b600f805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600a546001600160a01b031633146113805760405162461bcd60e51b81526004016107ee90612318565b6001600160a01b0381166113e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ee565b610b198161174e565b60006001600160e01b031982166380ac58cd60e01b148061141f57506001600160e01b03198216635b5e139f60e01b145b806106e157506301ffc9a760e01b6001600160e01b03198316146106e1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147382610c48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ee565b600061153083610c48565b9050806001600160a01b0316846001600160a01b0316148061156b5750836001600160a01b031661156084610779565b6001600160a01b0316145b8061159b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b682610c48565b6001600160a01b03161461161e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ee565b6001600160a01b0382166116805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b61168b8383836118fa565b61169660008261143e565b6001600160a01b03831660009081526003602052604081208054600192906116bf9084906123e9565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ed90849061239e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c078282604051806020016040528060008152506119b2565b6117c58484846115a3565b6117d1848484846119e5565b61119f5760405162461bcd60e51b81526004016107ee906122c6565b6060600b80546106f69061242c565b6060816118205750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184a578061183481612467565b91506118439050600a836123b6565b9150611824565b60008167ffffffffffffffff811115611865576118656124ee565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b841561159b576118a46001836123e9565b91506118b1600a86612482565b6118bc90603061239e565b60f81b8183815181106118d1576118d16124d8565b60200101906001600160f81b031916908160001a9053506118f3600a866123b6565b9450611893565b6001600160a01b0383166119555761195081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611978565b816001600160a01b0316836001600160a01b031614611978576119788382611af2565b6001600160a01b03821661198f5761092481611b8f565b826001600160a01b0316826001600160a01b031614610924576109248282611c3e565b6119bc8383611c82565b6119c960008484846119e5565b6109245760405162461bcd60e51b81526004016107ee906122c6565b60006001600160a01b0384163b15611ae757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a29903390899088908890600401612232565b602060405180830381600087803b158015611a4357600080fd5b505af1925050508015611a73575060408051601f3d908101601f19168201909252611a709181019061209d565b60015b611acd573d808015611aa1576040519150601f19603f3d011682016040523d82523d6000602084013e611aa6565b606091505b508051611ac55760405162461bcd60e51b81526004016107ee906122c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b506001949350505050565b60006001611aff84610cee565b611b0991906123e9565b600083815260076020526040902054909150808214611b5c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba1906001906123e9565b60008381526009602052604081205460088054939450909284908110611bc957611bc96124d8565b906000526020600020015490508060088381548110611bea57611bea6124d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2257611c226124c2565b6001900381819060005260206000200160009055905550505050565b6000611c4983610cee565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cd85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ee565b6000818152600260205260409020546001600160a01b031615611d3d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ee565b611d49600083836118fa565b6001600160a01b0382166000908152600360205260408120805460019290611d7290849061239e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ddc9061242c565b90600052602060002090601f016020900481019282611dfe5760008555611e44565b82601f10611e1757805160ff1916838001178555611e44565b82800160010185558215611e44579182015b82811115611e44578251825591602001919060010190611e29565b50611e50929150611e54565b5090565b5b80821115611e505760008155600101611e55565b600067ffffffffffffffff80841115611e8457611e846124ee565b604051601f8501601f19908116603f01168101908282118183101715611eac57611eac6124ee565b81604052809350858152868686011115611ec557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ef657600080fd5b919050565b80358015158114611ef657600080fd5b600060208284031215611f1d57600080fd5b6112fd82611edf565b60008060408385031215611f3957600080fd5b611f4283611edf565b9150611f5060208401611edf565b90509250929050565b600080600060608486031215611f6e57600080fd5b611f7784611edf565b9250611f8560208501611edf565b9150604084013590509250925092565b60008060008060808587031215611fab57600080fd5b611fb485611edf565b9350611fc260208601611edf565b925060408501359150606085013567ffffffffffffffff811115611fe557600080fd5b8501601f81018713611ff657600080fd5b61200587823560208401611e69565b91505092959194509250565b6000806040838503121561202457600080fd5b61202d83611edf565b9150611f5060208401611efb565b6000806040838503121561204e57600080fd5b61205783611edf565b946020939093013593505050565b60006020828403121561207757600080fd5b6112fd82611efb565b60006020828403121561209257600080fd5b81356112fd81612504565b6000602082840312156120af57600080fd5b81516112fd81612504565b6000602082840312156120cc57600080fd5b813567ffffffffffffffff8111156120e357600080fd5b8201601f810184136120f457600080fd5b61159b84823560208401611e69565b60006020828403121561211557600080fd5b5035919050565b60006020828403121561212e57600080fd5b813563ffffffff811681146112fd57600080fd5b6000815180845261215a816020860160208601612400565b601f01601f19169290920160200192915050565b6000845160206121818285838a01612400565b8551918401916121948184848a01612400565b8554920191600090600181811c90808316806121b157607f831692505b8583108114156121cf57634e487b7160e01b85526022600452602485fd5b8080156121e357600181146121f457612221565b60ff19851688528388019550612221565b60008b81526020902060005b858110156122195781548a820152908401908801612200565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226590830184612142565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122a75783518352928401929184019160010161228b565b50909695505050505050565b6020815260006112fd6020830184612142565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123b1576123b1612496565b500190565b6000826123c5576123c56124ac565b500490565b60008160001904831182151516156123e4576123e4612496565b500290565b6000828210156123fb576123fb612496565b500390565b60005b8381101561241b578181015183820152602001612403565b8381111561119f5750506000910152565b600181811c9082168061244057607f821691505b6020821081141561246157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247b5761247b612496565b5060010190565b600082612491576124916124ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1957600080fdfea26469706673582212205d91c88688b73b80ab37452bfd958f731fc5c46c2c00bb53b4cd5664ad64573264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e4368696c6c65642043616d656c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50337163663851784e67704632543865785a53464e74445a484a683134696847364a424664756d334e744a742f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59623878767847315772476735373653367a59726b7a64457854374145796a5263487966584a43774c4437422f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Chilled Camels
Arg [1] : _symbol (string): CC
Arg [2] : _initNFT_URI (string): ipfs://QmP3qcf8QxNgpF2T8exZSFNtDZHJh14ihG6JBFdum3NtJt/
Arg [3] : _inithidden_URI (string): ipfs://QmYb8xvxG1WrGg576S6zYrkzdExT7AEyjRcHyfXJCwLD7B/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 4368696c6c65642043616d656c73000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4343000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d50337163663851784e67704632543865785a53464e7444
Arg [10] : 5a484a683134696847364a424664756d334e744a742f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d59623878767847315772476735373653367a59726b7a64
Arg [13] : 457854374145796a5263487966584a43774c4437422f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45261:4214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38645:300;;;;;;;;;;-1:-1:-1;38645:300:0;;;;;:::i;:::-;;:::i;:::-;;;8088:14:1;;8081:22;8063:41;;8051:2;8036:18;38645:300:0;;;;;;;;25809:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27502:308::-;;;;;;;;;;-1:-1:-1;27502:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6749:32:1;;;6731:51;;6719:2;6704:18;27502:308:0;6585:203:1;27025:411:0;;;;;;;;;;-1:-1:-1;27025:411:0;;;;;:::i;:::-;;:::i;:::-;;45520:32;;;;;;;;;;;;;;;;;;;16727:25:1;;;16715:2;16700:18;45520:32:0;16581:177:1;39448:113:0;;;;;;;;;;-1:-1:-1;39536:10:0;:17;39448:113;;45812:55;;;;;;;;;;-1:-1:-1;45812:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28561:376;;;;;;;;;;-1:-1:-1;28561:376:0;;;;;:::i;:::-;;:::i;45449:33::-;;;;;;;;;;;;;:::i;39029:343::-;;;;;;;;;;-1:-1:-1;39029:343:0;;;;;:::i;:::-;;:::i;49317:155::-;;;:::i;29008:185::-;;;;;;;;;;-1:-1:-1;29008:185:0;;;;;:::i;:::-;;:::i;39638:320::-;;;;;;;;;;-1:-1:-1;39638:320:0;;;;;:::i;:::-;;:::i;48992:108::-;;;;;;;;;;-1:-1:-1;48992:108:0;;;;;:::i;:::-;;:::i;49108:98::-;;;;;;;;;;-1:-1:-1;49108:98:0;;;;;:::i;:::-;;:::i;25416:326::-;;;;;;;;;;-1:-1:-1;25416:326:0;;;;;:::i;:::-;;:::i;48771:89::-;;;;;;;;;;-1:-1:-1;48771:89:0;;;;;:::i;:::-;;:::i;25059:295::-;;;;;;;;;;-1:-1:-1;25059:295:0;;;;;:::i;:::-;;:::i;4601:94::-;;;;;;;;;;;;;:::i;45575:35::-;;;;;;;;;;-1:-1:-1;45575:35:0;;;;;;;;;;;16937:10:1;16925:23;;;16907:42;;16895:2;16880:18;45575:35:0;16763:192:1;45712:24:0;;;;;;;;;;-1:-1:-1;45712:24:0;;;;-1:-1:-1;;;45712:24:0;;;;;;48660:71;;;;;;;;;;;;;:::i;3950:87::-;;;;;;;;;;-1:-1:-1;4023:6:0;;-1:-1:-1;;;;;4023:6:0;3950:87;;25978:104;;;;;;;;;;;;;:::i;49222:87::-;;;;;;;;;;-1:-1:-1;49222:87:0;;;;;:::i;:::-;;:::i;46748:654::-;;;;;;:::i;:::-;;:::i;27882:327::-;;;;;;;;;;-1:-1:-1;27882:327:0;;;;;:::i;:::-;;:::i;45760:26::-;;;;;;;;;;-1:-1:-1;45760:26:0;;;;-1:-1:-1;;;45760:26:0;;;;;;47521:392;;;;;;;;;;-1:-1:-1;47521:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45489:24::-;;;;;;;;;;;;;:::i;29264:365::-;;;;;;;;;;-1:-1:-1;29264:365:0;;;;;:::i;:::-;;:::i;47970:647::-;;;;;;;;;;-1:-1:-1;47970:647:0;;;;;:::i;:::-;;:::i;48868:112::-;;;;;;;;;;-1:-1:-1;48868:112:0;;;;;:::i;:::-;;:::i;45639:31::-;;;;;;;;;;-1:-1:-1;45639:31:0;;;;;;;;;;;28280:214;;;;;;;;;;-1:-1:-1;28280:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28451:25:0;;;28422:4;28451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28280:214;4850:229;;;;;;;;;;-1:-1:-1;4850:229:0;;;;;:::i;:::-;;:::i;38645:300::-;38792:4;-1:-1:-1;;;;;;38834:50:0;;-1:-1:-1;;;38834:50:0;;:103;;;38901:36;38925:11;38901:23;:36::i;:::-;38814:123;38645:300;-1:-1:-1;;38645:300:0:o;25809:100::-;25863:13;25896:5;25889:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25809:100;:::o;27502:308::-;27623:7;31265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31265:16:0;27648:110;;;;-1:-1:-1;;;27648:110:0;;14018:2:1;27648:110:0;;;14000:21:1;14057:2;14037:18;;;14030:30;14096:34;14076:18;;;14069:62;-1:-1:-1;;;14147:18:1;;;14140:42;14199:19;;27648:110:0;;;;;;;;;-1:-1:-1;27778:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27778:24:0;;27502:308::o;27025:411::-;27106:13;27122:23;27137:7;27122:14;:23::i;:::-;27106:39;;27170:5;-1:-1:-1;;;;;27164:11:0;:2;-1:-1:-1;;;;;27164:11:0;;;27156:57;;;;-1:-1:-1;;;27156:57:0;;15202:2:1;27156:57:0;;;15184:21:1;15241:2;15221:18;;;15214:30;15280:34;15260:18;;;15253:62;-1:-1:-1;;;15331:18:1;;;15324:31;15372:19;;27156:57:0;15000:397:1;27156:57:0;2799:10;-1:-1:-1;;;;;27248:21:0;;;;:62;;-1:-1:-1;27273:37:0;27290:5;2799:10;28280:214;:::i;27273:37::-;27226:168;;;;-1:-1:-1;;;27226:168:0;;12064:2:1;27226:168:0;;;12046:21:1;12103:2;12083:18;;;12076:30;12142:34;12122:18;;;12115:62;12213:26;12193:18;;;12186:54;12257:19;;27226:168:0;11862:420:1;27226:168:0;27407:21;27416:2;27420:7;27407:8;:21::i;:::-;27095:341;27025:411;;:::o;28561:376::-;28770:41;2799:10;28803:7;28770:18;:41::i;:::-;28748:140;;;;-1:-1:-1;;;28748:140:0;;;;;;;:::i;:::-;28901:28;28911:4;28917:2;28921:7;28901:9;:28::i;45449:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39029:343::-;39171:7;39226:23;39243:5;39226:16;:23::i;:::-;39218:5;:31;39196:124;;;;-1:-1:-1;;;39196:124:0;;9297:2:1;39196:124:0;;;9279:21:1;9336:2;9316:18;;;9309:30;9375:34;9355:18;;;9348:62;-1:-1:-1;;;9426:18:1;;;9419:41;9477:19;;39196:124:0;9095:407:1;39196:124:0;-1:-1:-1;;;;;;39338:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39029:343::o;49317:155::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49374:7:::1;49395;4023:6:::0;;-1:-1:-1;;;;;4023:6:0;;3950:87;49395:7:::1;-1:-1:-1::0;;;;;49387:21:0::1;49416;49387:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49373:69;;;49461:2;49453:11;;;::::0;::::1;;49362:110;49317:155::o:0;29008:185::-;29146:39;29163:4;29169:2;29173:7;29146:39;;;;;;;;;;;;:16;:39::i;39638:320::-;39758:7;39813:30;39536:10;:17;;39448:113;39813:30;39805:5;:38;39783:132;;;;-1:-1:-1;;;39783:132:0;;16022:2:1;39783:132:0;;;16004:21:1;16061:2;16041:18;;;16034:30;16100:34;16080:18;;;16073:62;-1:-1:-1;;;16151:18:1;;;16144:42;16203:19;;39783:132:0;15820:408:1;39783:132:0;39933:10;39944:5;39933:17;;;;;;;;:::i;:::-;;;;;;;;;39926:24;;39638:320;;;:::o;48992:108::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49069:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48992:108:::0;:::o;49108:98::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49180:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;25416:326::-:0;25533:7;25574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25574:16:0;25623:19;25601:110;;;;-1:-1:-1;;;25601:110:0;;12900:2:1;25601:110:0;;;12882:21:1;12939:2;12919:18;;;12912:30;12978:34;12958:18;;;12951:62;-1:-1:-1;;;13029:18:1;;;13022:39;13078:19;;25601:110:0;12698:405:1;48771:89:0;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48837:4:::1;:15:::0;48771:89::o;25059:295::-;25176:7;-1:-1:-1;;;;;25223:19:0;;25201:111;;;;-1:-1:-1;;;25201:111:0;;12489:2:1;25201:111:0;;;12471:21:1;12528:2;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;-1:-1:-1;;;12618:18:1;;;12611:40;12668:19;;25201:111:0;12287:406:1;25201:111:0;-1:-1:-1;;;;;;25330:16:0;;;;;:9;:16;;;;;;;25059:295::o;4601:94::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;4666:21:::1;4684:1;4666:9;:21::i;:::-;4601:94::o:0;48660:71::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48710:6:::1;:13:::0;;-1:-1:-1;;48710:13:0::1;-1:-1:-1::0;;;48710:13:0::1;::::0;;48660:71::o;25978:104::-;26034:13;26067:7;26060:14;;;;;:::i;49222:87::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49287:5:::1;:14:::0;;;::::1;;-1:-1:-1::0;;;49287:14:0::1;-1:-1:-1::0;;49287:14:0;;::::1;::::0;;;::::1;::::0;;49222:87::o;46748:654::-;46808:14;46825:13;39536:10;:17;;39448:113;46825:13;46858:5;;46808:30;;-1:-1:-1;;;;46858:5:0;;;;46857:6;46849:15;;;;;;46896:1;46883:10;:14;46875:45;;;;-1:-1:-1;;;46875:45:0;;13310:2:1;46875:45:0;;;13292:21:1;13349:2;13329:18;;;13322:30;-1:-1:-1;;;13368:18:1;;;13361:48;13426:18;;46875:45:0;13108:342:1;46875:45:0;46967:12;;;;;;;46953:26;;;46931:115;;;;-1:-1:-1;;;46931:115:0;;8889:2:1;46931:115:0;;;8871:21:1;8928:2;8908:18;;;8901:30;8967:34;8947:18;;;8940:62;-1:-1:-1;;;9018:18:1;;;9011:37;9065:19;;46931:115:0;8687:403:1;46931:115:0;47088:14;;;;47065:19;47074:10;47065:6;:19;:::i;:::-;:37;;47057:69;;;;-1:-1:-1;;;47057:69:0;;16435:2:1;47057:69:0;;;16417:21:1;16474:2;16454:18;;;16447:30;-1:-1:-1;;;16493:18:1;;;16486:49;16552:18;;47057:69:0;16233:343:1;47057:69:0;4023:6;;-1:-1:-1;;;;;4023:6:0;47143:10;:21;47139:93;;47209:10;47202:4;;:17;;;;:::i;:::-;47189:9;:30;;47181:39;;;;;;47261:1;47244:151;47269:10;47264:1;:15;47244:151;;47322:10;47301:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;47350:33:0;;-1:-1:-1;47360:10:0;47372;47381:1;47372:6;:10;:::i;:::-;47350:9;:33::i;:::-;47281:3;;;;:::i;:::-;;;;47244:151;;27882:327;-1:-1:-1;;;;;28017:24:0;;2799:10;28017:24;;28009:62;;;;-1:-1:-1;;;28009:62:0;;11297:2:1;28009:62:0;;;11279:21:1;11336:2;11316:18;;;11309:30;11375:27;11355:18;;;11348:55;11420:18;;28009:62:0;11095:349:1;28009:62:0;2799:10;28084:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28084:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28084:53:0;;;;;;;;;;28153:48;;8063:41:1;;;28084:42:0;;2799:10;28153:48;;8036:18:1;28153:48:0;;;;;;;27882:327;;:::o;47521:392::-;47610:16;47644:23;47670:17;47680:6;47670:9;:17::i;:::-;47644:43;;47698:25;47740:15;47726:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47726:30:0;;47698:58;;47772:9;47767:113;47787:15;47783:1;:19;47767:113;;;47838:30;47858:6;47866:1;47838:19;:30::i;:::-;47824:8;47833:1;47824:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47804:3;;;;:::i;:::-;;;;47767:113;;;-1:-1:-1;47897:8:0;47521:392;-1:-1:-1;;;47521:392:0:o;45489:24::-;;;;;;;:::i;29264:365::-;29453:41;2799:10;29486:7;29453:18;:41::i;:::-;29431:140;;;;-1:-1:-1;;;29431:140:0;;;;;;;:::i;:::-;29582:39;29596:4;29602:2;29606:7;29615:5;29582:13;:39::i;:::-;29264:365;;;;:::o;47970:647::-;31241:4;31265:16;;;:7;:16;;;;;;48088:13;;-1:-1:-1;;;;;31265:16:0;48119:48;;;;-1:-1:-1;;;48119:48:0;;8541:2:1;48119:48:0;;;8523:21:1;8580:2;8560:18;;;8553:30;-1:-1:-1;;;8599:18:1;;;8592:49;8658:18;;48119:48:0;8339:343:1;48119:48:0;48182:6;;-1:-1:-1;;;48182:6:0;;;;48178:65;;48221:10;48214:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47970:647;;;:::o;48178:65::-;48255:28;48286:9;:7;:9::i;:::-;48255:40;;48357:1;48332:14;48326:28;:32;:283;;;;;;;;;;;;;;;;;48450:14;48491:18;:7;:16;:18::i;:::-;48536:9;48407:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48326:283;48306:303;47970:647;-1:-1:-1;;;47970:647:0:o;48868:112::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48943:12:::1;:29:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48943:29:0;;::::1;::::0;;;::::1;::::0;;48868:112::o;4850:229::-;4023:6;;-1:-1:-1;;;;;4023:6:0;2799:10;4170:23;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4953:22:0;::::1;4931:110;;;::::0;-1:-1:-1;;;4931:110:0;;10128:2:1;4931:110:0::1;::::0;::::1;10110:21:1::0;10167:2;10147:18;;;10140:30;10206:34;10186:18;;;10179:62;-1:-1:-1;;;10257:18:1;;;10250:36;10303:19;;4931:110:0::1;9926:402:1::0;4931:110:0::1;5052:19;5062:8;5052:9;:19::i;24640:355::-:0;24787:4;-1:-1:-1;;;;;;24829:40:0;;-1:-1:-1;;;24829:40:0;;:105;;-1:-1:-1;;;;;;;24886:48:0;;-1:-1:-1;;;24886:48:0;24829:105;:158;;;-1:-1:-1;;;;;;;;;;16581:40:0;;;24951:36;16422:207;35299:174;35374:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35374:29:0;-1:-1:-1;;;;;35374:29:0;;;;;;;;:24;;35428:23;35374:24;35428:14;:23::i;:::-;-1:-1:-1;;;;;35419:46:0;;;;;;;;;;;35299:174;;:::o;31470:452::-;31599:4;31265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31265:16:0;31621:110;;;;-1:-1:-1;;;31621:110:0;;11651:2:1;31621:110:0;;;11633:21:1;11690:2;11670:18;;;11663:30;11729:34;11709:18;;;11702:62;-1:-1:-1;;;11780:18:1;;;11773:42;11832:19;;31621:110:0;11449:408:1;31621:110:0;31742:13;31758:23;31773:7;31758:14;:23::i;:::-;31742:39;;31811:5;-1:-1:-1;;;;;31800:16:0;:7;-1:-1:-1;;;;;31800:16:0;;:64;;;;31857:7;-1:-1:-1;;;;;31833:31:0;:20;31845:7;31833:11;:20::i;:::-;-1:-1:-1;;;;;31833:31:0;;31800:64;:113;;;-1:-1:-1;;;;;;28451:25:0;;;28422:4;28451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31881:32;31792:122;31470:452;-1:-1:-1;;;;31470:452:0:o;34566:615::-;34739:4;-1:-1:-1;;;;;34712:31:0;:23;34727:7;34712:14;:23::i;:::-;-1:-1:-1;;;;;34712:31:0;;34690:122;;;;-1:-1:-1;;;34690:122:0;;14792:2:1;34690:122:0;;;14774:21:1;14831:2;14811:18;;;14804:30;14870:34;14850:18;;;14843:62;-1:-1:-1;;;14921:18:1;;;14914:39;14970:19;;34690:122:0;14590:405:1;34690:122:0;-1:-1:-1;;;;;34831:16:0;;34823:65;;;;-1:-1:-1;;;34823:65:0;;10892:2:1;34823:65:0;;;10874:21:1;10931:2;10911:18;;;10904:30;10970:34;10950:18;;;10943:62;-1:-1:-1;;;11021:18:1;;;11014:34;11065:19;;34823:65:0;10690:400:1;34823:65:0;34901:39;34922:4;34928:2;34932:7;34901:20;:39::i;:::-;35005:29;35022:1;35026:7;35005:8;:29::i;:::-;-1:-1:-1;;;;;35047:15:0;;;;;;:9;:15;;;;;:20;;35066:1;;35047:15;:20;;35066:1;;35047:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35078:13:0;;;;;;:9;:13;;;;;:18;;35095:1;;35078:13;:18;;35095:1;;35078:18;:::i;:::-;;;;-1:-1:-1;;35107:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35107:21:0;-1:-1:-1;;;;;35107:21:0;;;;;;;;;35146:27;;35107:16;;35146:27;;;;;;;34566:615;;;:::o;5087:173::-;5162:6;;;-1:-1:-1;;;;;5179:17:0;;;-1:-1:-1;;;;;;5179:17:0;;;;;;;5212:40;;5162:6;;;5179:17;5162:6;;5212:40;;5143:16;;5212:40;5132:128;5087:173;:::o;32264:110::-;32340:26;32350:2;32354:7;32340:26;;;;;;;;;;;;:9;:26::i;30511:352::-;30668:28;30678:4;30684:2;30688:7;30668:9;:28::i;:::-;30729:48;30752:4;30758:2;30762:7;30771:5;30729:22;:48::i;:::-;30707:148;;;;-1:-1:-1;;;30707:148:0;;;;;;;:::i;46568:98::-;46618:13;46651:7;46644:14;;;;;:::i;307:723::-;363:13;584:10;580:53;;-1:-1:-1;;611:10:0;;;;;;;;;;;;-1:-1:-1;;;611:10:0;;;;;307:723::o;580:53::-;658:5;643:12;699:78;706:9;;699:78;;732:8;;;;:::i;:::-;;-1:-1:-1;755:10:0;;-1:-1:-1;763:2:0;755:10;;:::i;:::-;;;699:78;;;787:19;819:6;809:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;809:17:0;;787:39;;837:154;844:10;;837:154;;871:11;881:1;871:11;;:::i;:::-;;-1:-1:-1;940:10:0;948:2;940:5;:10;:::i;:::-;927:24;;:2;:24;:::i;:::-;914:39;;897:6;904;897:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;897:56:0;;;;;;;;-1:-1:-1;968:11:0;977:2;968:11;;:::i;:::-;;;837:154;;40571:589;-1:-1:-1;;;;;40777:18:0;;40773:187;;40812:40;40844:7;41987:10;:17;;41960:24;;;;:15;:24;;;;;:44;;;42015:24;;;;;;;;;;;;41883:164;40812:40;40773:187;;;40882:2;-1:-1:-1;;;;;40874:10:0;:4;-1:-1:-1;;;;;40874:10:0;;40870:90;;40901:47;40934:4;40940:7;40901:32;:47::i;:::-;-1:-1:-1;;;;;40974:16:0;;40970:183;;41007:45;41044:7;41007:36;:45::i;40970:183::-;41080:4;-1:-1:-1;;;;;41074:10:0;:2;-1:-1:-1;;;;;41074:10:0;;41070:83;;41101:40;41129:2;41133:7;41101:27;:40::i;32601:321::-;32731:18;32737:2;32741:7;32731:5;:18::i;:::-;32782:54;32813:1;32817:2;32821:7;32830:5;32782:22;:54::i;:::-;32760:154;;;;-1:-1:-1;;;32760:154:0;;;;;;;:::i;36038:980::-;36193:4;-1:-1:-1;;;;;36214:13:0;;6352:20;6400:8;36210:801;;36267:175;;-1:-1:-1;;;36267:175:0;;-1:-1:-1;;;;;36267:36:0;;;;;:175;;2799:10;;36361:4;;36388:7;;36418:5;;36267:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36267:175:0;;;;;;;;-1:-1:-1;;36267:175:0;;;;;;;;;;;;:::i;:::-;;;36246:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36625:13:0;;36621:320;;36668:108;;-1:-1:-1;;;36668:108:0;;;;;;;:::i;36621:320::-;36891:6;36885:13;36876:6;36872:2;36868:15;36861:38;36246:710;-1:-1:-1;;;;;;36506:51:0;-1:-1:-1;;;36506:51:0;;-1:-1:-1;36499:58:0;;36210:801;-1:-1:-1;36995:4:0;36038:980;;;;;;:::o;42674:1002::-;42954:22;43004:1;42979:22;42996:4;42979:16;:22::i;:::-;:26;;;;:::i;:::-;43016:18;43037:26;;;:17;:26;;;;;;42954:51;;-1:-1:-1;43170:28:0;;;43166:328;;-1:-1:-1;;;;;43237:18:0;;43215:19;43237:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43288:30;;;;;;:44;;;43405:30;;:17;:30;;;;;:43;;;43166:328;-1:-1:-1;43590:26:0;;;;:17;:26;;;;;;;;43583:33;;;-1:-1:-1;;;;;43634:18:0;;;;;:12;:18;;;;;:34;;;;;;;43627:41;42674:1002::o;43971:1079::-;44249:10;:17;44224:22;;44249:21;;44269:1;;44249:21;:::i;:::-;44281:18;44302:24;;;:15;:24;;;;;;44675:10;:26;;44224:46;;-1:-1:-1;44302:24:0;;44224:46;;44675:26;;;;;;:::i;:::-;;;;;;;;;44653:48;;44739:11;44714:10;44725;44714:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44819:28;;;:15;:28;;;;;;;:41;;;44991:24;;;;;44984:31;45026:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44042:1008;;;43971:1079;:::o;41461:221::-;41546:14;41563:20;41580:2;41563:16;:20::i;:::-;-1:-1:-1;;;;;41594:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41639:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41461:221:0:o;33258:382::-;-1:-1:-1;;;;;33338:16:0;;33330:61;;;;-1:-1:-1;;;33330:61:0;;13657:2:1;33330:61:0;;;13639:21:1;;;13676:18;;;13669:30;13735:34;13715:18;;;13708:62;13787:18;;33330:61:0;13455:356:1;33330:61:0;31241:4;31265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31265:16:0;:30;33402:58;;;;-1:-1:-1;;;33402:58:0;;10535:2:1;33402:58:0;;;10517:21:1;10574:2;10554:18;;;10547:30;10613;10593:18;;;10586:58;10661:18;;33402:58:0;10333:352:1;33402:58:0;33473:45;33502:1;33506:2;33510:7;33473:20;:45::i;:::-;-1:-1:-1;;;;;33531:13:0;;;;;;:9;:13;;;;;:18;;33548:1;;33531:13;:18;;33548:1;;33531:18;:::i;:::-;;;;-1:-1:-1;;33560:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33560:21:0;-1:-1:-1;;;;;33560:21:0;;;;;;;;33599:33;;33560:16;;;33599:33;;33560:16;;33599:33;33258:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:276::-;4358:6;4411:2;4399:9;4390:7;4386:23;4382:32;4379:52;;;4427:1;4424;4417:12;4379:52;4466:9;4453:23;4516:10;4509:5;4505:22;4498:5;4495:33;4485:61;;4542:1;4539;4532:12;4581:257;4622:3;4660:5;4654:12;4687:6;4682:3;4675:19;4703:63;4759:6;4752:4;4747:3;4743:14;4736:4;4729:5;4725:16;4703:63;:::i;:::-;4820:2;4799:15;-1:-1:-1;;4795:29:1;4786:39;;;;4827:4;4782:50;;4581:257;-1:-1:-1;;4581:257:1:o;4843:1527::-;5067:3;5105:6;5099:13;5131:4;5144:51;5188:6;5183:3;5178:2;5170:6;5166:15;5144:51;:::i;:::-;5258:13;;5217:16;;;;5280:55;5258:13;5217:16;5302:15;;;5280:55;:::i;:::-;5424:13;;5357:20;;;5397:1;;5484;5506:18;;;;5559;;;;5586:93;;5664:4;5654:8;5650:19;5638:31;;5586:93;5727:2;5717:8;5714:16;5694:18;5691:40;5688:167;;;-1:-1:-1;;;5754:33:1;;5810:4;5807:1;5800:15;5840:4;5761:3;5828:17;5688:167;5871:18;5898:110;;;;6022:1;6017:328;;;;5864:481;;5898:110;-1:-1:-1;;5933:24:1;;5919:39;;5978:20;;;;-1:-1:-1;5898:110:1;;6017:328;17033:1;17026:14;;;17070:4;17057:18;;6112:1;6126:169;6140:8;6137:1;6134:15;6126:169;;;6222:14;;6207:13;;;6200:37;6265:16;;;;6157:10;;6126:169;;;6130:3;;6326:8;6319:5;6315:20;6308:27;;5864:481;-1:-1:-1;6361:3:1;;4843:1527;-1:-1:-1;;;;;;;;;;;4843:1527:1:o;6793:488::-;-1:-1:-1;;;;;7062:15:1;;;7044:34;;7114:15;;7109:2;7094:18;;7087:43;7161:2;7146:18;;7139:34;;;7209:3;7204:2;7189:18;;7182:31;;;6987:4;;7230:45;;7255:19;;7247:6;7230:45;:::i;:::-;7222:53;6793:488;-1:-1:-1;;;;;;6793:488:1:o;7286:632::-;7457:2;7509:21;;;7579:13;;7482:18;;;7601:22;;;7428:4;;7457:2;7680:15;;;;7654:2;7639:18;;;7428:4;7723:169;7737:6;7734:1;7731:13;7723:169;;;7798:13;;7786:26;;7867:15;;;;7832:12;;;;7759:1;7752:9;7723:169;;;-1:-1:-1;7909:3:1;;7286:632;-1:-1:-1;;;;;;7286:632:1:o;8115:219::-;8264:2;8253:9;8246:21;8227:4;8284:44;8324:2;8313:9;8309:18;8301:6;8284:44;:::i;9507:414::-;9709:2;9691:21;;;9748:2;9728:18;;;9721:30;9787:34;9782:2;9767:18;;9760:62;-1:-1:-1;;;9853:2:1;9838:18;;9831:48;9911:3;9896:19;;9507:414::o;14229:356::-;14431:2;14413:21;;;14450:18;;;14443:30;14509:34;14504:2;14489:18;;14482:62;14576:2;14561:18;;14229:356::o;15402:413::-;15604:2;15586:21;;;15643:2;15623:18;;;15616:30;15682:34;15677:2;15662:18;;15655:62;-1:-1:-1;;;15748:2:1;15733:18;;15726:47;15805:3;15790:19;;15402:413::o;17086:128::-;17126:3;17157:1;17153:6;17150:1;17147:13;17144:39;;;17163:18;;:::i;:::-;-1:-1:-1;17199:9:1;;17086:128::o;17219:120::-;17259:1;17285;17275:35;;17290:18;;:::i;:::-;-1:-1:-1;17324:9:1;;17219:120::o;17344:168::-;17384:7;17450:1;17446;17442:6;17438:14;17435:1;17432:21;17427:1;17420:9;17413:17;17409:45;17406:71;;;17457:18;;:::i;:::-;-1:-1:-1;17497:9:1;;17344:168::o;17517:125::-;17557:4;17585:1;17582;17579:8;17576:34;;;17590:18;;:::i;:::-;-1:-1:-1;17627:9:1;;17517:125::o;17647:258::-;17719:1;17729:113;17743:6;17740:1;17737:13;17729:113;;;17819:11;;;17813:18;17800:11;;;17793:39;17765:2;17758:10;17729:113;;;17860:6;17857:1;17854:13;17851:48;;;-1:-1:-1;;17895:1:1;17877:16;;17870:27;17647:258::o;17910:380::-;17989:1;17985:12;;;;18032;;;18053:61;;18107:4;18099:6;18095:17;18085:27;;18053:61;18160:2;18152:6;18149:14;18129:18;18126:38;18123:161;;;18206:10;18201:3;18197:20;18194:1;18187:31;18241:4;18238:1;18231:15;18269:4;18266:1;18259:15;18123:161;;17910:380;;;:::o;18295:135::-;18334:3;-1:-1:-1;;18355:17:1;;18352:43;;;18375:18;;:::i;:::-;-1:-1:-1;18422:1:1;18411:13;;18295:135::o;18435:112::-;18467:1;18493;18483:35;;18498:18;;:::i;:::-;-1:-1:-1;18532:9:1;;18435:112::o;18552:127::-;18613:10;18608:3;18604:20;18601:1;18594:31;18644:4;18641:1;18634:15;18668:4;18665:1;18658:15;18684:127;18745:10;18740:3;18736:20;18733:1;18726:31;18776:4;18773:1;18766:15;18800:4;18797:1;18790:15;18816:127;18877:10;18872:3;18868:20;18865:1;18858:31;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18948:127;19009:10;19004:3;19000:20;18997:1;18990:31;19040:4;19037:1;19030:15;19064:4;19061:1;19054:15;19080:127;19141:10;19136:3;19132:20;19129:1;19122:31;19172:4;19169:1;19162:15;19196:4;19193:1;19186:15;19212:131;-1:-1:-1;;;;;;19286:32:1;;19276:43;;19266:71;;19333:1;19330;19323:12

Swarm Source

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