ETH Price: $3,473.14 (+0.09%)
Gas: 2 Gwei

Token

Zoinked Punks (ZP)
 

Overview

Max Total Supply

4,914 ZP

Holders

353

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 ZP
0x21f86d863f8115e13c531671f77b912c2897c66b
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:
ZoinkedPunks

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/ZoinkedPunks.sol


pragma solidity ^0.8.4;




contract ZoinkedPunks is ERC721A, Ownable{

    using Strings for uint256;

    bytes32 public merkleRoot;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

//Create Setters for price

    uint256 public cost = 0.01 ether;
    uint256 public freeSupply = 4000;
    uint256 public maxSupply = 4500;
    uint256 public maxMintAmountPerTx = 10;

//Create Setters for status

    bool public paused = true;
    bool public revealed = false;


  constructor() ERC721A("Zoinked Punks", "ZP") {
    setHiddenMetadataUri("ipfs://QmPjJ8fVCHbeUPr5FcxtogepA8wtg7AKqXujfXD2BStZmf/hiddengif.json");
  }

  modifier mintCompliance(uint256 quantity) {
    require(quantity > 0 && quantity <= maxMintAmountPerTx, "Invalid mint amount!");
    (totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
    _;
  }


  function freeMint(uint256 quantity) public payable mintCompliance(quantity) {
    require(!paused, "The contract is paused!");
    require(totalSupply() + quantity <= freeSupply,"Not enough free supply!");
        _safeMint(msg.sender, quantity);
    }

  function devMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
    require(totalSupply() + quantity <= freeSupply,"Not enough free supply!");
        _safeMint(msg.sender, quantity);
    }

  function mint(uint256 quantity) public payable mintCompliance(quantity)            {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * quantity, "Insufficient funds!");
        _safeMint(msg.sender, quantity);
  
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";

  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }
  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }
  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function withdraw() public onlyOwner {
    // This will pay Community wallet 10% of the initial sale.
    // You can remove this if you want, or keep it in to support your community wallet.
    // Just replace with your community wallet address. 
    // =============================================================================
    (bool hs, ) = payable(0xF2b40f521656d33D0865BDb5ae6aBf59dC30Dc03).call{value: address    (this).balance * 10 / 100}("");
    require(hs);
    // =============================================================================
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a91620001f8565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001f8565b50662386f26fc10000600d55610fa0600e55611194600f55600a6010556011805461ffff191660011790553480156200008257600080fd5b506040518060400160405280600d81526020016c5a6f696e6b65642050756e6b7360981b8152506040518060400160405280600281526020016105a560f41b8152508160029080519060200190620000dc929190620001f8565b508051620000f2906003906020840190620001f8565b5050600080555062000104336200012e565b62000128604051806080016040528060448152602001620025ae6044913962000180565b620002db565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f490600c906020840190620001f8565b5050565b82805462000206906200029e565b90600052602060002090601f0160209004810192826200022a576000855562000275565b82601f106200024557805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027557825182559160200191906001019062000258565b506200028392915062000287565b5090565b5b8082111562000283576000815560010162000288565b600181811c90821680620002b357607f821691505b60208210811415620002d557634e487b7160e01b600052602260045260246000fd5b50919050565b6122c380620002eb6000396000f3fe60806040526004361061023b5760003560e01c806362b99ad41161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610658578063d5abeb0114610678578063e0a808531461068e578063e985e9c5146106ae578063f2fde38b146106f757600080fd5b8063a0712d68146105d0578063a22cb465146105e3578063a45ba8e714610603578063b071401b14610618578063b88d4fde1461063857600080fd5b80637cb64759116100f25780637cb64759146105475780637ec4a659146105675780638da5cb5b1461058757806394354fd0146105a557806395d89b41146105bb57600080fd5b806362b99ad4146104ca5780636352211e146104df57806370a08231146104ff578063715018a61461051f5780637c928fe91461053457600080fd5b80632eb4a7ab116101bc57806344a0d68a1161018057806344a0d68a1461043c5780634fdd43cb1461045c578063518302271461047c5780635503a0e81461049b5780635c975abb146104b057600080fd5b80632eb4a7ab146103a4578063375a069a146103ba5780633ccfd60b146103da57806342842e0e146103ef578063438b63001461040f57600080fd5b806316ba10e01161020357806316ba10e01461031557806316c38b3c1461033557806318160ddd1461035557806323b872dd1461036e57806324a6ab0c1461038e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f08565b610717565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610769565b60405161026c91906120f5565b3480156102a357600080fd5b506102b76102b2366004611ef0565b6107fb565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611ead565b61083f565b005b3480156102fd57600080fd5b50610307600d5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611f40565b6108cd565b34801561034157600080fd5b506102ef610350366004611ed6565b610917565b34801561036157600080fd5b5060015460005403610307565b34801561037a57600080fd5b506102ef610389366004611dd0565b610954565b34801561039a57600080fd5b50610307600e5481565b3480156103b057600080fd5b5061030760095481565b3480156103c657600080fd5b506102ef6103d5366004611ef0565b61095f565b3480156103e657600080fd5b506102ef610a59565b3480156103fb57600080fd5b506102ef61040a366004611dd0565b610b71565b34801561041b57600080fd5b5061042f61042a366004611d84565b610b8c565b60405161026c91906120b1565b34801561044857600080fd5b506102ef610457366004611ef0565b610c89565b34801561046857600080fd5b506102ef610477366004611f40565b610cb8565b34801561048857600080fd5b5060115461026090610100900460ff1681565b3480156104a757600080fd5b5061028a610cf5565b3480156104bc57600080fd5b506011546102609060ff1681565b3480156104d657600080fd5b5061028a610d83565b3480156104eb57600080fd5b506102b76104fa366004611ef0565b610d90565b34801561050b57600080fd5b5061030761051a366004611d84565b610da2565b34801561052b57600080fd5b506102ef610df1565b6102ef610542366004611ef0565b610e27565b34801561055357600080fd5b506102ef610562366004611ef0565b610f54565b34801561057357600080fd5b506102ef610582366004611f40565b610f83565b34801561059357600080fd5b506008546001600160a01b03166102b7565b3480156105b157600080fd5b5061030760105481565b3480156105c757600080fd5b5061028a610fc0565b6102ef6105de366004611ef0565b610fcf565b3480156105ef57600080fd5b506102ef6105fe366004611e84565b6110e2565b34801561060f57600080fd5b5061028a611178565b34801561062457600080fd5b506102ef610633366004611ef0565b611185565b34801561064457600080fd5b506102ef610653366004611e0b565b6111b4565b34801561066457600080fd5b5061028a610673366004611ef0565b611205565b34801561068457600080fd5b50610307600f5481565b34801561069a57600080fd5b506102ef6106a9366004611ed6565b611374565b3480156106ba57600080fd5b506102606106c9366004611d9e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070357600080fd5b506102ef610712366004611d84565b6113b8565b60006001600160e01b031982166380ac58cd60e01b148061074857506001600160e01b03198216635b5e139f60e01b145b8061076357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610778906121cb565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906121cb565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600061080682611450565b610823576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084a82610d90565b9050806001600160a01b0316836001600160a01b0316141561087f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089f575061089d81336106c9565b155b156108bd576040516367d9dca160e11b815260040160405180910390fd5b6108c883838361147b565b505050565b6008546001600160a01b031633146109005760405162461bcd60e51b81526004016108f790612108565b60405180910390fd5b805161091390600b906020840190611c49565b5050565b6008546001600160a01b031633146109415760405162461bcd60e51b81526004016108f790612108565b6011805460ff1916911515919091179055565b6108c88383836114d7565b6008546001600160a01b031633146109895760405162461bcd60e51b81526004016108f790612108565b600f548161099a6001546000540390565b6109a4919061213d565b11156109e95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f7565b600e54816109fa6001546000540390565b610a04919061213d565b1115610a4c5760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f756768206672656520737570706c792160481b60448201526064016108f7565b610a5633826116c7565b50565b6008546001600160a01b03163314610a835760405162461bcd60e51b81526004016108f790612108565b600073f2b40f521656d33d0865bdb5ae6abf59dc30dc036064610aa747600a612169565b610ab19190612155565b604051600081818185875af1925050503d8060008114610aed576040519150601f19603f3d011682016040523d82523d6000602084013e610af2565b606091505b5050905080610b0057600080fd5b6000610b146008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b505090508061091357600080fd5b6108c8838383604051806020016040528060008152506111b4565b60606000610b9983610da2565b905060008167ffffffffffffffff811115610bc457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bed578160200160208202803683370190505b509050600160005b8381108015610c065750600f548211155b15610c7f576000610c1683610d90565b9050866001600160a01b0316816001600160a01b03161415610c6c5782848381518110610c5357634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c6881612206565b9250505b82610c7681612206565b93505050610bf5565b5090949350505050565b6008546001600160a01b03163314610cb35760405162461bcd60e51b81526004016108f790612108565b600d55565b6008546001600160a01b03163314610ce25760405162461bcd60e51b81526004016108f790612108565b805161091390600c906020840190611c49565b600b8054610d02906121cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2e906121cb565b8015610d7b5780601f10610d5057610100808354040283529160200191610d7b565b820191906000526020600020905b815481529060010190602001808311610d5e57829003601f168201915b505050505081565b600a8054610d02906121cb565b6000610d9b826116e1565b5192915050565b60006001600160a01b038216610dcb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016108f790612108565b610e2560006117fd565b565b80600081118015610e3a57506010548111155b610e7d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f7565b600f5481610e8e6001546000540390565b610e98919061213d565b505060115460ff1615610ee75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f7565b600e5482610ef86001546000540390565b610f02919061213d565b1115610f4a5760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f756768206672656520737570706c792160481b60448201526064016108f7565b61091333836116c7565b6008546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108f790612108565b600955565b6008546001600160a01b03163314610fad5760405162461bcd60e51b81526004016108f790612108565b805161091390600a906020840190611c49565b606060038054610778906121cb565b80600081118015610fe257506010548111155b6110255760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f7565b600f54816110366001546000540390565b611040919061213d565b505060115460ff161561108f5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f7565b81600d5461109d9190612169565b341015610f4a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108f7565b6001600160a01b03821633141561110c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d02906121cb565b6008546001600160a01b031633146111af5760405162461bcd60e51b81526004016108f790612108565b601055565b6111bf8484846114d7565b6001600160a01b0383163b151580156111e157506111df8484848461184f565b155b156111ff576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121082611450565b6112745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f7565b601154610100900460ff1661131557600c8054611290906121cb565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc906121cb565b80156113095780601f106112de57610100808354040283529160200191611309565b820191906000526020600020905b8154815290600101906020018083116112ec57829003601f168201915b50505050509050919050565b600061131f611947565b9050600081511161133f576040518060200160405280600081525061136d565b8061134984611956565b600b60405160200161135d93929190611fb2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139e5760405162461bcd60e51b81526004016108f790612108565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113e25760405162461bcd60e51b81526004016108f790612108565b6001600160a01b0381166114475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b610a56816117fd565b6000805482108015610763575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114e2826116e1565b9050836001600160a01b031681600001516001600160a01b0316146115195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611537575061153785336106c9565b80611552575033611547846107fb565b6001600160a01b0316145b90508061157257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661159957604051633a954ecd60e21b815260040160405180910390fd5b6115a56000848761147b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661167b57600054821461167b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610913828260405180602001604052806000815250611a70565b6040805160608101825260008082526020820181905291810191909152816000548110156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611778579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611778565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611884903390899088908890600401612074565b602060405180830381600087803b15801561189e57600080fd5b505af19250505080156118ce575060408051601f3d908101601f191682019092526118cb91810190611f24565b60015b611929573d8080156118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b508051611921576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610778906121cb565b60608161197a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a4578061198e81612206565b915061199d9050600a83612155565b915061197e565b60008167ffffffffffffffff8111156119cd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119f7576020820181803683370190505b5090505b841561193f57611a0c600183612188565b9150611a19600a86612221565b611a2490603061213d565b60f81b818381518110611a4757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a69600a86612155565b94506119fb565b6108c883838360016000546001600160a01b038516611aa157604051622e076360e81b815260040160405180910390fd5b83611abf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b7157506001600160a01b0387163b15155b15611bfa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bc2600088848060010195508861184f565b611bdf576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b77578260005414611bf557600080fd5b611c40565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611bfb575b506000556116c0565b828054611c55906121cb565b90600052602060002090601f016020900481019282611c775760008555611cbd565b82601f10611c9057805160ff1916838001178555611cbd565b82800160010185558215611cbd579182015b82811115611cbd578251825591602001919060010190611ca2565b50611cc9929150611ccd565b5090565b5b80821115611cc95760008155600101611cce565b600067ffffffffffffffff80841115611cfd57611cfd612261565b604051601f8501601f19908116603f01168101908282118183101715611d2557611d25612261565b81604052809350858152868686011115611d3e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d6f57600080fd5b919050565b80358015158114611d6f57600080fd5b600060208284031215611d95578081fd5b61136d82611d58565b60008060408385031215611db0578081fd5b611db983611d58565b9150611dc760208401611d58565b90509250929050565b600080600060608486031215611de4578081fd5b611ded84611d58565b9250611dfb60208501611d58565b9150604084013590509250925092565b60008060008060808587031215611e20578081fd5b611e2985611d58565b9350611e3760208601611d58565b925060408501359150606085013567ffffffffffffffff811115611e59578182fd5b8501601f81018713611e69578182fd5b611e7887823560208401611ce2565b91505092959194509250565b60008060408385031215611e96578182fd5b611e9f83611d58565b9150611dc760208401611d74565b60008060408385031215611ebf578182fd5b611ec883611d58565b946020939093013593505050565b600060208284031215611ee7578081fd5b61136d82611d74565b600060208284031215611f01578081fd5b5035919050565b600060208284031215611f19578081fd5b813561136d81612277565b600060208284031215611f35578081fd5b815161136d81612277565b600060208284031215611f51578081fd5b813567ffffffffffffffff811115611f67578182fd5b8201601f81018413611f77578182fd5b61193f84823560208401611ce2565b60008151808452611f9e81602086016020860161219f565b601f01601f19169290920160200192915050565b600084516020611fc58285838a0161219f565b855191840191611fd88184848a0161219f565b85549201918390600181811c9080831680611ff457607f831692505b85831081141561201257634e487b7160e01b88526022600452602488fd5b808015612026576001811461203757612063565b60ff19851688528388019550612063565b60008b815260209020895b8581101561205b5781548a820152908401908801612042565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a790830184611f86565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120e9578351835292840192918401916001016120cd565b50909695505050505050565b60208152600061136d6020830184611f86565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561215057612150612235565b500190565b6000826121645761216461224b565b500490565b600081600019048311821515161561218357612183612235565b500290565b60008282101561219a5761219a612235565b500390565b60005b838110156121ba5781810151838201526020016121a2565b838111156111ff5750506000910152565b600181811c908216806121df57607f821691505b6020821081141561220057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561221a5761221a612235565b5060010190565b6000826122305761223061224b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a5657600080fdfea2646970667358221220ecc72a4586c061d25d18127fdc5abb726582d72f95d421d145431c80a4afff7c64736f6c63430008040033697066733a2f2f516d506a4a3866564348626555507235466378746f676570413877746737414b7158756a665844324253745a6d662f68696464656e6769662e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806362b99ad41161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610658578063d5abeb0114610678578063e0a808531461068e578063e985e9c5146106ae578063f2fde38b146106f757600080fd5b8063a0712d68146105d0578063a22cb465146105e3578063a45ba8e714610603578063b071401b14610618578063b88d4fde1461063857600080fd5b80637cb64759116100f25780637cb64759146105475780637ec4a659146105675780638da5cb5b1461058757806394354fd0146105a557806395d89b41146105bb57600080fd5b806362b99ad4146104ca5780636352211e146104df57806370a08231146104ff578063715018a61461051f5780637c928fe91461053457600080fd5b80632eb4a7ab116101bc57806344a0d68a1161018057806344a0d68a1461043c5780634fdd43cb1461045c578063518302271461047c5780635503a0e81461049b5780635c975abb146104b057600080fd5b80632eb4a7ab146103a4578063375a069a146103ba5780633ccfd60b146103da57806342842e0e146103ef578063438b63001461040f57600080fd5b806316ba10e01161020357806316ba10e01461031557806316c38b3c1461033557806318160ddd1461035557806323b872dd1461036e57806324a6ab0c1461038e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f08565b610717565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610769565b60405161026c91906120f5565b3480156102a357600080fd5b506102b76102b2366004611ef0565b6107fb565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611ead565b61083f565b005b3480156102fd57600080fd5b50610307600d5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611f40565b6108cd565b34801561034157600080fd5b506102ef610350366004611ed6565b610917565b34801561036157600080fd5b5060015460005403610307565b34801561037a57600080fd5b506102ef610389366004611dd0565b610954565b34801561039a57600080fd5b50610307600e5481565b3480156103b057600080fd5b5061030760095481565b3480156103c657600080fd5b506102ef6103d5366004611ef0565b61095f565b3480156103e657600080fd5b506102ef610a59565b3480156103fb57600080fd5b506102ef61040a366004611dd0565b610b71565b34801561041b57600080fd5b5061042f61042a366004611d84565b610b8c565b60405161026c91906120b1565b34801561044857600080fd5b506102ef610457366004611ef0565b610c89565b34801561046857600080fd5b506102ef610477366004611f40565b610cb8565b34801561048857600080fd5b5060115461026090610100900460ff1681565b3480156104a757600080fd5b5061028a610cf5565b3480156104bc57600080fd5b506011546102609060ff1681565b3480156104d657600080fd5b5061028a610d83565b3480156104eb57600080fd5b506102b76104fa366004611ef0565b610d90565b34801561050b57600080fd5b5061030761051a366004611d84565b610da2565b34801561052b57600080fd5b506102ef610df1565b6102ef610542366004611ef0565b610e27565b34801561055357600080fd5b506102ef610562366004611ef0565b610f54565b34801561057357600080fd5b506102ef610582366004611f40565b610f83565b34801561059357600080fd5b506008546001600160a01b03166102b7565b3480156105b157600080fd5b5061030760105481565b3480156105c757600080fd5b5061028a610fc0565b6102ef6105de366004611ef0565b610fcf565b3480156105ef57600080fd5b506102ef6105fe366004611e84565b6110e2565b34801561060f57600080fd5b5061028a611178565b34801561062457600080fd5b506102ef610633366004611ef0565b611185565b34801561064457600080fd5b506102ef610653366004611e0b565b6111b4565b34801561066457600080fd5b5061028a610673366004611ef0565b611205565b34801561068457600080fd5b50610307600f5481565b34801561069a57600080fd5b506102ef6106a9366004611ed6565b611374565b3480156106ba57600080fd5b506102606106c9366004611d9e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070357600080fd5b506102ef610712366004611d84565b6113b8565b60006001600160e01b031982166380ac58cd60e01b148061074857506001600160e01b03198216635b5e139f60e01b145b8061076357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610778906121cb565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906121cb565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600061080682611450565b610823576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084a82610d90565b9050806001600160a01b0316836001600160a01b0316141561087f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089f575061089d81336106c9565b155b156108bd576040516367d9dca160e11b815260040160405180910390fd5b6108c883838361147b565b505050565b6008546001600160a01b031633146109005760405162461bcd60e51b81526004016108f790612108565b60405180910390fd5b805161091390600b906020840190611c49565b5050565b6008546001600160a01b031633146109415760405162461bcd60e51b81526004016108f790612108565b6011805460ff1916911515919091179055565b6108c88383836114d7565b6008546001600160a01b031633146109895760405162461bcd60e51b81526004016108f790612108565b600f548161099a6001546000540390565b6109a4919061213d565b11156109e95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f7565b600e54816109fa6001546000540390565b610a04919061213d565b1115610a4c5760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f756768206672656520737570706c792160481b60448201526064016108f7565b610a5633826116c7565b50565b6008546001600160a01b03163314610a835760405162461bcd60e51b81526004016108f790612108565b600073f2b40f521656d33d0865bdb5ae6abf59dc30dc036064610aa747600a612169565b610ab19190612155565b604051600081818185875af1925050503d8060008114610aed576040519150601f19603f3d011682016040523d82523d6000602084013e610af2565b606091505b5050905080610b0057600080fd5b6000610b146008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b505090508061091357600080fd5b6108c8838383604051806020016040528060008152506111b4565b60606000610b9983610da2565b905060008167ffffffffffffffff811115610bc457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bed578160200160208202803683370190505b509050600160005b8381108015610c065750600f548211155b15610c7f576000610c1683610d90565b9050866001600160a01b0316816001600160a01b03161415610c6c5782848381518110610c5357634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c6881612206565b9250505b82610c7681612206565b93505050610bf5565b5090949350505050565b6008546001600160a01b03163314610cb35760405162461bcd60e51b81526004016108f790612108565b600d55565b6008546001600160a01b03163314610ce25760405162461bcd60e51b81526004016108f790612108565b805161091390600c906020840190611c49565b600b8054610d02906121cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2e906121cb565b8015610d7b5780601f10610d5057610100808354040283529160200191610d7b565b820191906000526020600020905b815481529060010190602001808311610d5e57829003601f168201915b505050505081565b600a8054610d02906121cb565b6000610d9b826116e1565b5192915050565b60006001600160a01b038216610dcb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016108f790612108565b610e2560006117fd565b565b80600081118015610e3a57506010548111155b610e7d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f7565b600f5481610e8e6001546000540390565b610e98919061213d565b505060115460ff1615610ee75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f7565b600e5482610ef86001546000540390565b610f02919061213d565b1115610f4a5760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f756768206672656520737570706c792160481b60448201526064016108f7565b61091333836116c7565b6008546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108f790612108565b600955565b6008546001600160a01b03163314610fad5760405162461bcd60e51b81526004016108f790612108565b805161091390600a906020840190611c49565b606060038054610778906121cb565b80600081118015610fe257506010548111155b6110255760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f7565b600f54816110366001546000540390565b611040919061213d565b505060115460ff161561108f5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f7565b81600d5461109d9190612169565b341015610f4a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108f7565b6001600160a01b03821633141561110c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d02906121cb565b6008546001600160a01b031633146111af5760405162461bcd60e51b81526004016108f790612108565b601055565b6111bf8484846114d7565b6001600160a01b0383163b151580156111e157506111df8484848461184f565b155b156111ff576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121082611450565b6112745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f7565b601154610100900460ff1661131557600c8054611290906121cb565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc906121cb565b80156113095780601f106112de57610100808354040283529160200191611309565b820191906000526020600020905b8154815290600101906020018083116112ec57829003601f168201915b50505050509050919050565b600061131f611947565b9050600081511161133f576040518060200160405280600081525061136d565b8061134984611956565b600b60405160200161135d93929190611fb2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139e5760405162461bcd60e51b81526004016108f790612108565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113e25760405162461bcd60e51b81526004016108f790612108565b6001600160a01b0381166114475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b610a56816117fd565b6000805482108015610763575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114e2826116e1565b9050836001600160a01b031681600001516001600160a01b0316146115195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611537575061153785336106c9565b80611552575033611547846107fb565b6001600160a01b0316145b90508061157257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661159957604051633a954ecd60e21b815260040160405180910390fd5b6115a56000848761147b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661167b57600054821461167b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610913828260405180602001604052806000815250611a70565b6040805160608101825260008082526020820181905291810191909152816000548110156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611778579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611778565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611884903390899088908890600401612074565b602060405180830381600087803b15801561189e57600080fd5b505af19250505080156118ce575060408051601f3d908101601f191682019092526118cb91810190611f24565b60015b611929573d8080156118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b508051611921576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610778906121cb565b60608161197a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a4578061198e81612206565b915061199d9050600a83612155565b915061197e565b60008167ffffffffffffffff8111156119cd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119f7576020820181803683370190505b5090505b841561193f57611a0c600183612188565b9150611a19600a86612221565b611a2490603061213d565b60f81b818381518110611a4757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a69600a86612155565b94506119fb565b6108c883838360016000546001600160a01b038516611aa157604051622e076360e81b815260040160405180910390fd5b83611abf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b7157506001600160a01b0387163b15155b15611bfa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bc2600088848060010195508861184f565b611bdf576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b77578260005414611bf557600080fd5b611c40565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611bfb575b506000556116c0565b828054611c55906121cb565b90600052602060002090601f016020900481019282611c775760008555611cbd565b82601f10611c9057805160ff1916838001178555611cbd565b82800160010185558215611cbd579182015b82811115611cbd578251825591602001919060010190611ca2565b50611cc9929150611ccd565b5090565b5b80821115611cc95760008155600101611cce565b600067ffffffffffffffff80841115611cfd57611cfd612261565b604051601f8501601f19908116603f01168101908282118183101715611d2557611d25612261565b81604052809350858152868686011115611d3e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d6f57600080fd5b919050565b80358015158114611d6f57600080fd5b600060208284031215611d95578081fd5b61136d82611d58565b60008060408385031215611db0578081fd5b611db983611d58565b9150611dc760208401611d58565b90509250929050565b600080600060608486031215611de4578081fd5b611ded84611d58565b9250611dfb60208501611d58565b9150604084013590509250925092565b60008060008060808587031215611e20578081fd5b611e2985611d58565b9350611e3760208601611d58565b925060408501359150606085013567ffffffffffffffff811115611e59578182fd5b8501601f81018713611e69578182fd5b611e7887823560208401611ce2565b91505092959194509250565b60008060408385031215611e96578182fd5b611e9f83611d58565b9150611dc760208401611d74565b60008060408385031215611ebf578182fd5b611ec883611d58565b946020939093013593505050565b600060208284031215611ee7578081fd5b61136d82611d74565b600060208284031215611f01578081fd5b5035919050565b600060208284031215611f19578081fd5b813561136d81612277565b600060208284031215611f35578081fd5b815161136d81612277565b600060208284031215611f51578081fd5b813567ffffffffffffffff811115611f67578182fd5b8201601f81018413611f77578182fd5b61193f84823560208401611ce2565b60008151808452611f9e81602086016020860161219f565b601f01601f19169290920160200192915050565b600084516020611fc58285838a0161219f565b855191840191611fd88184848a0161219f565b85549201918390600181811c9080831680611ff457607f831692505b85831081141561201257634e487b7160e01b88526022600452602488fd5b808015612026576001811461203757612063565b60ff19851688528388019550612063565b60008b815260209020895b8581101561205b5781548a820152908401908801612042565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a790830184611f86565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120e9578351835292840192918401916001016120cd565b50909695505050505050565b60208152600061136d6020830184611f86565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561215057612150612235565b500190565b6000826121645761216461224b565b500490565b600081600019048311821515161561218357612183612235565b500290565b60008282101561219a5761219a612235565b500390565b60005b838110156121ba5781810151838201526020016121a2565b838111156111ff5750506000910152565b600181811c908216806121df57607f821691505b6020821081141561220057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561221a5761221a612235565b5060010190565b6000826122305761223061224b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a5657600080fdfea2646970667358221220ecc72a4586c061d25d18127fdc5abb726582d72f95d421d145431c80a4afff7c64736f6c63430008040033

Deployed Bytecode Sourcemap

44822:4770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27003:305;;;;;;;;;;-1:-1:-1;27003:305:0;;;;;:::i;:::-;;:::i;:::-;;;8159:14:1;;8152:22;8134:41;;8122:2;8107:18;27003:305:0;;;;;;;;30116:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31619:204::-;;;;;;;;;;-1:-1:-1;31619:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6817:32:1;;;6799:51;;6787:2;6772:18;31619:204:0;6754:102:1;31182:371:0;;;;;;;;;;-1:-1:-1;31182:371:0;;;;;:::i;:::-;;:::i;:::-;;45085:32;;;;;;;;;;;;;;;;;;;8332:25:1;;;8320:2;8305:18;45085:32:0;8287:76:1;48199:100:0;;;;;;;;;;-1:-1:-1;48199:100:0;;;;;:::i;:::-;;:::i;48303:77::-;;;;;;;;;;-1:-1:-1;48303:77:0;;;;;:::i;:::-;;:::i;26252:303::-;;;;;;;;;;-1:-1:-1;26506:12:0;;26296:7;26490:13;:28;26252:303;;32484:170;;;;;;;;;;-1:-1:-1;32484:170:0;;;;;:::i;:::-;;:::i;45124:32::-;;;;;;;;;;;;;;;;44906:25;;;;;;;;;;;;;;;;45986:261;;;;;;;;;;-1:-1:-1;45986:261:0;;;;;:::i;:::-;;:::i;48490:989::-;;;;;;;;;;;;;:::i;32725:185::-;;;;;;;;;;-1:-1:-1;32725:185:0;;;;;:::i;:::-;;:::i;46511:635::-;;;;;;;;;;-1:-1:-1;46511:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47741:74::-;;;;;;;;;;-1:-1:-1;47741:74:0;;;;;:::i;:::-;;:::i;47957:132::-;;;;;;;;;;-1:-1:-1;47957:132:0;;;;;:::i;:::-;;:::i;45311:28::-;;;;;;;;;;-1:-1:-1;45311:28:0;;;;;;;;;;;44975:33;;;;;;;;;;;;;:::i;45279:25::-;;;;;;;;;;-1:-1:-1;45279:25:0;;;;;;;;44940:28;;;;;;;;;;;;;:::i;29924:125::-;;;;;;;;;;-1:-1:-1;29924:125:0;;;;;:::i;:::-;;:::i;27372:206::-;;;;;;;;;;-1:-1:-1;27372:206:0;;;;;:::i;:::-;;:::i;2637:103::-;;;;;;;;;;;;;:::i;45724:256::-;;;;;;:::i;:::-;;:::i;48386:98::-;;;;;;;;;;-1:-1:-1;48386:98:0;;;;;:::i;:::-;;:::i;48095:100::-;;;;;;;;;;-1:-1:-1;48095:100:0;;;;;:::i;:::-;;:::i;1986:87::-;;;;;;;;;;-1:-1:-1;2059:6:0;;-1:-1:-1;;;;;2059:6:0;1986:87;;45201:38;;;;;;;;;;;;;;;;30285:104;;;;;;;;;;;;;:::i;46253:252::-;;;;;;:::i;:::-;;:::i;31895:287::-;;;;;;;;;;-1:-1:-1;31895:287:0;;;;;:::i;:::-;;:::i;45015:31::-;;;;;;;;;;;;;:::i;47821:130::-;;;;;;;;;;-1:-1:-1;47821:130:0;;;;;:::i;:::-;;:::i;32981:369::-;;;;;;;;;;-1:-1:-1;32981:369:0;;;;;:::i;:::-;;:::i;47152:496::-;;;;;;;;;;-1:-1:-1;47152:496:0;;;;;:::i;:::-;;:::i;45163:31::-;;;;;;;;;;;;;;;;47654:81;;;;;;;;;;-1:-1:-1;47654:81:0;;;;;:::i;:::-;;:::i;32253:164::-;;;;;;;;;;-1:-1:-1;32253:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32374:25:0;;;32350:4;32374:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32253:164;2895:201;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;27003:305::-;27105:4;-1:-1:-1;;;;;;27142:40:0;;-1:-1:-1;;;27142:40:0;;:105;;-1:-1:-1;;;;;;;27199:48:0;;-1:-1:-1;;;27199:48:0;27142:105;:158;;;-1:-1:-1;;;;;;;;;;14879:40:0;;;27264:36;27122:178;27003:305;-1:-1:-1;;27003:305:0:o;30116:100::-;30170:13;30203:5;30196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30116:100;:::o;31619:204::-;31687:7;31712:16;31720:7;31712;:16::i;:::-;31707:64;;31737:34;;-1:-1:-1;;;31737:34:0;;;;;;;;;;;31707:64;-1:-1:-1;31791:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31791:24:0;;31619:204::o;31182:371::-;31255:13;31271:24;31287:7;31271:15;:24::i;:::-;31255:40;;31316:5;-1:-1:-1;;;;;31310:11:0;:2;-1:-1:-1;;;;;31310:11:0;;31306:48;;;31330:24;;-1:-1:-1;;;31330:24:0;;;;;;;;;;;31306:48;790:10;-1:-1:-1;;;;;31371:21:0;;;;;;:63;;-1:-1:-1;31397:37:0;31414:5;790:10;32253:164;:::i;31397:37::-;31396:38;31371:63;31367:138;;;31458:35;;-1:-1:-1;;;31458:35:0;;;;;;;;;;;31367:138;31517:28;31526:2;31530:7;31539:5;31517:8;:28::i;:::-;31182:371;;;:::o;48199:100::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;;;;;;;;;48271:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48199:100:::0;:::o;48303:77::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48359:6:::1;:15:::0;;-1:-1:-1;;48359:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48303:77::o;32484:170::-;32618:28;32628:4;32634:2;32638:7;32618:9;:28::i;45986:261::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;46083:9:::1;;46071:8;46055:13;26506:12:::0;;26296:7;26490:13;:28;;26252:303;46055:13:::1;:24;;;;:::i;:::-;:37;;46047:70;;;::::0;-1:-1:-1;;;46047:70:0;;11031:2:1;46047:70:0::1;::::0;::::1;11013:21:1::0;11070:2;11050:18;;;11043:30;-1:-1:-1;;;11089:18:1;;;11082:50;11149:18;;46047:70:0::1;11003:170:1::0;46047:70:0::1;46160:10;;46148:8;46132:13;26506:12:::0;;26296:7;26490:13;:28;;26252:303;46132:13:::1;:24;;;;:::i;:::-;:38;;46124:73;;;::::0;-1:-1:-1;;;46124:73:0;;9550:2:1;46124:73:0::1;::::0;::::1;9532:21:1::0;9589:2;9569:18;;;9562:30;-1:-1:-1;;;9608:18:1;;;9601:53;9671:18;;46124:73:0::1;9522:173:1::0;46124:73:0::1;46208:31;46218:10;46230:8;46208:9;:31::i;:::-;45986:261:::0;:::o;48490:989::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48832:7:::1;48853:42;48942:3;48909:30;:25;48937:2;48909:30;:::i;:::-;:36;;;;:::i;:::-;48845:105;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48831:119;;;48965:2;48957:11;;;::::0;::::1;;49301:7;49322;2059:6:::0;;-1:-1:-1;;;;;2059:6:0;;1986:87;49322:7:::1;-1:-1:-1::0;;;;;49314:21:0::1;49343;49314:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49300:69;;;49384:2;49376:11;;;::::0;::::1;32725:185:::0;32863:39;32880:4;32886:2;32890:7;32863:39;;;;;;;;;;;;:16;:39::i;46511:635::-;46586:16;46614:23;46640:17;46650:6;46640:9;:17::i;:::-;46614:43;;46664:30;46711:15;46697:30;;;;;;-1:-1:-1;;;46697:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46697:30:0;-1:-1:-1;46664:63:0;-1:-1:-1;46759:1:0;46734:22;46803:309;46828:15;46810;:33;:64;;;;;46865:9;;46847:14;:27;;46810:64;46803:309;;;46885:25;46913:23;46921:14;46913:7;:23::i;:::-;46885:51;;46972:6;-1:-1:-1;;;;;46951:27:0;:17;-1:-1:-1;;;;;46951:27:0;;46947:131;;;47024:14;46991:13;47005:15;46991:30;;;;;;-1:-1:-1;;;46991:30:0;;;;;;;;;;;;;;;;;;:47;47051:17;;;;:::i;:::-;;;;46947:131;47088:16;;;;:::i;:::-;;;;46803:309;;;;-1:-1:-1;47127:13:0;;46511:635;-1:-1:-1;;;;46511:635:0:o;47741:74::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47797:4:::1;:12:::0;47741:74::o;47957:132::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48045:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;44975:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44940:28::-;;;;;;;:::i;29924:125::-;29988:7;30015:21;30028:7;30015:12;:21::i;:::-;:26;;29924:125;-1:-1:-1;;29924:125:0:o;27372:206::-;27436:7;-1:-1:-1;;;;;27460:19:0;;27456:60;;27488:28;;-1:-1:-1;;;27488:28:0;;;;;;;;;;;27456:60;-1:-1:-1;;;;;;27542:19:0;;;;;:12;:19;;;;;:27;;;;27372:206::o;2637:103::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;45724:256::-;45790:8;45572:1;45561:8;:12;:46;;;;;45589:18;;45577:8;:30;;45561:46;45553:79;;;;-1:-1:-1;;;45553:79:0;;9201:2:1;45553:79:0;;;9183:21:1;9240:2;9220:18;;;9213:30;-1:-1:-1;;;9259:18:1;;;9252:50;9319:18;;45553:79:0;9173:170:1;45553:79:0;45668:9;;45656:8;45640:13;26506:12;;26296:7;26490:13;:28;;26252:303;45640:13;:24;;;;:::i;:::-;-1:-1:-1;;45816:6:0::1;::::0;::::1;;45815:7;45807:43;;;::::0;-1:-1:-1;;;45807:43:0;;10263:2:1;45807:43:0::1;::::0;::::1;10245:21:1::0;10302:2;10282:18;;;10275:30;-1:-1:-1;;;10321:18:1;;;10314:53;10384:18;;45807:43:0::1;10235:173:1::0;45807:43:0::1;45893:10;;45881:8;45865:13;26506:12:::0;;26296:7;26490:13;:28;;26252:303;45865:13:::1;:24;;;;:::i;:::-;:38;;45857:73;;;::::0;-1:-1:-1;;;45857:73:0;;9550:2:1;45857:73:0::1;::::0;::::1;9532:21:1::0;9589:2;9569:18;;;9562:30;-1:-1:-1;;;9608:18:1;;;9601:53;9671:18;;45857:73:0::1;9522:173:1::0;45857:73:0::1;45941:31;45951:10;45963:8;45941:9;:31::i;48386:98::-:0;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48454:10:::1;:24:::0;48386:98::o;48095:100::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48167:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30285:104::-:0;30341:13;30374:7;30367:14;;;;;:::i;46253:252::-;46315:8;45572:1;45561:8;:12;:46;;;;;45589:18;;45577:8;:30;;45561:46;45553:79;;;;-1:-1:-1;;;45553:79:0;;9201:2:1;45553:79:0;;;9183:21:1;9240:2;9220:18;;;9213:30;-1:-1:-1;;;9259:18:1;;;9252:50;9319:18;;45553:79:0;9173:170:1;45553:79:0;45668:9;;45656:8;45640:13;26506:12;;26296:7;26490:13;:28;;26252:303;45640:13;:24;;;;:::i;:::-;-1:-1:-1;;46352:6:0::1;::::0;::::1;;46351:7;46343:43;;;::::0;-1:-1:-1;;;46343:43:0;;10263:2:1;46343:43:0::1;::::0;::::1;10245:21:1::0;10302:2;10282:18;;;10275:30;-1:-1:-1;;;10321:18:1;;;10314:53;10384:18;;46343:43:0::1;10235:173:1::0;46343:43:0::1;46421:8;46414:4;;:15;;;;:::i;:::-;46401:9;:28;;46393:60;;;::::0;-1:-1:-1;;;46393:60:0;;11380:2:1;46393:60:0::1;::::0;::::1;11362:21:1::0;11419:2;11399:18;;;11392:30;-1:-1:-1;;;11438:18:1;;;11431:49;11497:18;;46393:60:0::1;11352:169:1::0;31895:287:0;-1:-1:-1;;;;;31994:24:0;;790:10;31994:24;31990:54;;;32027:17;;-1:-1:-1;;;32027:17:0;;;;;;;;;;;31990:54;790:10;32057:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32057:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32057:53:0;;;;;;;;;;32126:48;;8134:41:1;;;32057:42:0;;790:10;32126:48;;8107:18:1;32126:48:0;;;;;;;31895:287;;:::o;45015:31::-;;;;;;;:::i;47821:130::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47905:18:::1;:40:::0;47821:130::o;32981:369::-;33148:28;33158:4;33164:2;33168:7;33148:9;:28::i;:::-;-1:-1:-1;;;;;33191:13:0;;4982:19;:23;;33191:76;;;;;33211:56;33242:4;33248:2;33252:7;33261:5;33211:30;:56::i;:::-;33210:57;33191:76;33187:156;;;33291:40;;-1:-1:-1;;;33291:40:0;;;;;;;;;;;33187:156;32981:369;;;;:::o;47152:496::-;47251:13;47292:17;47300:8;47292:7;:17::i;:::-;47276:98;;;;-1:-1:-1;;;47276:98:0;;10615:2:1;47276:98:0;;;10597:21:1;10654:2;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;-1:-1:-1;;;10744:18:1;;;10737:45;10799:19;;47276:98:0;10587:237:1;47276:98:0;47387:8;;;;;;;47383:64;;47422:17;47415:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47152:496;;;:::o;47383:64::-;47455:28;47486:10;:8;:10::i;:::-;47455:41;;47541:1;47516:14;47510:28;:32;:130;;;;;;;;;;;;;;;;;47578:14;47594:19;:8;:17;:19::i;:::-;47615:9;47561:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47510:130;47503:137;47152:496;-1:-1:-1;;;47152:496:0:o;47654:81::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47712:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47712:17:0;;::::1;::::0;;;::::1;::::0;;47654:81::o;2895:201::-;2059:6;;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;8794:2:1;2976:73:0::1;::::0;::::1;8776:21:1::0;8833:2;8813:18;;;8806:30;8872:34;8852:18;;;8845:62;-1:-1:-1;;;8923:18:1;;;8916:36;8969:19;;2976:73:0::1;8766:228:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;33605:174::-:0;33662:4;33726:13;;33716:7;:23;33686:85;;;;-1:-1:-1;;33744:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33744:27:0;;;;33743:28;;33605:174::o;41762:196::-;41877:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41877:29:0;-1:-1:-1;;;;;41877:29:0;;;;;;;;;41922:28;;41877:24;;41922:28;;;;;;;41762:196;;;:::o;36705:2130::-;36820:35;36858:21;36871:7;36858:12;:21::i;:::-;36820:59;;36918:4;-1:-1:-1;;;;;36896:26:0;:13;:18;;;-1:-1:-1;;;;;36896:26:0;;36892:67;;36931:28;;-1:-1:-1;;;36931:28:0;;;;;;;;;;;36892:67;36972:22;790:10;-1:-1:-1;;;;;36998:20:0;;;;:73;;-1:-1:-1;37035:36:0;37052:4;790:10;32253:164;:::i;37035:36::-;36998:126;;;-1:-1:-1;790:10:0;37088:20;37100:7;37088:11;:20::i;:::-;-1:-1:-1;;;;;37088:36:0;;36998:126;36972:153;;37143:17;37138:66;;37169:35;;-1:-1:-1;;;37169:35:0;;;;;;;;;;;37138:66;-1:-1:-1;;;;;37219:16:0;;37215:52;;37244:23;;-1:-1:-1;;;37244:23:0;;;;;;;;;;;37215:52;37388:35;37405:1;37409:7;37418:4;37388:8;:35::i;:::-;-1:-1:-1;;;;;37719:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37719:31:0;;;;;;;-1:-1:-1;;37719:31:0;;;;;;;37765:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37765:29:0;;;;;;;;;;;37845:20;;;:11;:20;;;;;;37880:18;;-1:-1:-1;;;;;;37913:49:0;;;;-1:-1:-1;;;37946:15:0;37913:49;;;;;;;;;;38236:11;;38296:24;;;;;38339:13;;37845:20;;38296:24;;38339:13;38335:384;;38549:13;;38534:11;:28;38530:174;;38587:20;;38656:28;;;;38630:54;;-1:-1:-1;;;38630:54:0;-1:-1:-1;;;;;;38630:54:0;;;-1:-1:-1;;;;;38587:20:0;;38630:54;;;;38530:174;36705:2130;;;38766:7;38762:2;-1:-1:-1;;;;;38747:27:0;38756:4;-1:-1:-1;;;;;38747:27:0;;;;;;;;;;;38785:42;36705:2130;;;;;:::o;33787:104::-;33856:27;33866:2;33870:8;33856:27;;;;;;;;;;;;:9;:27::i;28753:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28864:7:0;28947:13;;28940:4;:20;28909:886;;;28981:31;29015:17;;;:11;:17;;;;;;;;;28981:51;;;;;;;;;-1:-1:-1;;;;;28981:51:0;;;;-1:-1:-1;;;28981:51:0;;;;;;;;;;;-1:-1:-1;;;28981:51:0;;;;;;;;;;;;;;29051:729;;29101:14;;-1:-1:-1;;;;;29101:28:0;;29097:101;;29165:9;28753:1109;-1:-1:-1;;;28753:1109:0:o;29097:101::-;-1:-1:-1;;;29540:6:0;29585:17;;;;:11;:17;;;;;;;;;29573:29;;;;;;;;;-1:-1:-1;;;;;29573:29:0;;;;;-1:-1:-1;;;29573:29:0;;;;;;;;;;;-1:-1:-1;;;29573:29:0;;;;;;;;;;;;;29633:28;29629:109;;29701:9;28753:1109;-1:-1:-1;;;28753:1109:0:o;29629:109::-;29500:261;;;28909:886;;29823:31;;-1:-1:-1;;;29823:31:0;;;;;;;;;;;3256:191;3349:6;;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;;3399:40;;3349:6;;;3366:17;3349:6;;3399:40;;3330:16;;3399:40;3256:191;;:::o;42450:667::-;42634:72;;-1:-1:-1;;;42634:72:0;;42613:4;;-1:-1:-1;;;;;42634:36:0;;;;;:72;;790:10;;42685:4;;42691:7;;42700:5;;42634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42634:72:0;;;;;;;;-1:-1:-1;;42634:72:0;;;;;;;;;;;;:::i;:::-;;;42630:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42868:13:0;;42864:235;;42914:40;;-1:-1:-1;;;42914:40:0;;;;;;;;;;;42864:235;43057:6;43051:13;43042:6;43038:2;43034:15;43027:38;42630:480;-1:-1:-1;;;;;;42753:55:0;-1:-1:-1;;;42753:55:0;;-1:-1:-1;42630:480:0;42450:667;;;;;;:::o;49485:104::-;49545:13;49574:9;49567:16;;;;;:::i;20974:723::-;21030:13;21251:10;21247:53;;-1:-1:-1;;21278:10:0;;;;;;;;;;;;-1:-1:-1;;;21278:10:0;;;;;20974:723::o;21247:53::-;21325:5;21310:12;21366:78;21373:9;;21366:78;;21399:8;;;;:::i;:::-;;-1:-1:-1;21422:10:0;;-1:-1:-1;21430:2:0;21422:10;;:::i;:::-;;;21366:78;;;21454:19;21486:6;21476:17;;;;;;-1:-1:-1;;;21476:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21476:17:0;;21454:39;;21504:154;21511:10;;21504:154;;21538:11;21548:1;21538:11;;:::i;:::-;;-1:-1:-1;21607:10:0;21615:2;21607:5;:10;:::i;:::-;21594:24;;:2;:24;:::i;:::-;21581:39;;21564:6;21571;21564:14;;;;;;-1:-1:-1;;;21564:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;21564:56:0;;;;;;;;-1:-1:-1;21635:11:0;21644:2;21635:11;;:::i;:::-;;;21504:154;;34254:163;34377:32;34383:2;34387:8;34397:5;34404:4;34815:20;34838:13;-1:-1:-1;;;;;34866:16:0;;34862:48;;34891:19;;-1:-1:-1;;;34891:19:0;;;;;;;;;;;34862:48;34925:13;34921:44;;34947:18;;-1:-1:-1;;;34947:18:0;;;;;;;;;;;34921:44;-1:-1:-1;;;;;35316:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35375:49:0;;35316:44;;;;;;;;35375:49;;;;-1:-1:-1;;35316:44:0;;;;;;35375:49;;;;;;;;;;;;;;;;35441:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35491:66:0;;;;-1:-1:-1;;;35541:15:0;35491:66;;;;;;;;;;35441:25;35638:23;;;35682:4;:23;;;;-1:-1:-1;;;;;;35690:13:0;;4982:19;:23;;35690:15;35678:641;;;35726:314;35757:38;;35782:12;;-1:-1:-1;;;;;35757:38:0;;;35774:1;;35757:38;;35774:1;;35757:38;35823:69;35862:1;35866:2;35870:14;;;;;;35886:5;35823:30;:69::i;:::-;35818:174;;35928:40;;-1:-1:-1;;;35928:40:0;;;;;;;;;;;35818:174;36035:3;36019:12;:19;;35726:314;;36121:12;36104:13;;:29;36100:43;;36135:8;;;36100:43;35678:641;;;36184:120;36215:40;;36240:14;;;;;-1:-1:-1;;;;;36215:40:0;;;36232:1;;36215:40;;36232:1;;36215:40;36299:3;36283:12;:19;;36184:120;;35678:641;-1:-1:-1;36333:13:0;:28;36383:60;32981:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:190::-;3305:6;3358:2;3346:9;3337:7;3333:23;3329:32;3326:2;;;3379:6;3371;3364:22;3326:2;-1:-1:-1;3407:23:1;;3316:120;-1:-1:-1;3316:120:1:o;3441:255::-;3499:6;3552:2;3540:9;3531:7;3527:23;3523:32;3520:2;;;3573:6;3565;3558:22;3520:2;3617:9;3604:23;3636:30;3660:5;3636:30;:::i;3701:259::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:2;;;3844:6;3836;3829:22;3791:2;3881:9;3875:16;3900:30;3924:5;3900:30;:::i;3965:480::-;4034:6;4087:2;4075:9;4066:7;4062:23;4058:32;4055:2;;;4108:6;4100;4093:22;4055:2;4153:9;4140:23;4186:18;4178:6;4175:30;4172:2;;;4223:6;4215;4208:22;4172:2;4251:22;;4304:4;4296:13;;4292:27;-1:-1:-1;4282:2:1;;4338:6;4330;4323:22;4282:2;4366:73;4431:7;4426:2;4413:16;4408:2;4404;4400:11;4366:73;:::i;4645:257::-;4686:3;4724:5;4718:12;4751:6;4746:3;4739:19;4767:63;4823:6;4816:4;4811:3;4807:14;4800:4;4793:5;4789:16;4767:63;:::i;:::-;4884:2;4863:15;-1:-1:-1;;4859:29:1;4850:39;;;;4891:4;4846:50;;4694:208;-1:-1:-1;;4694:208:1:o;4907:1531::-;5131:3;5169:6;5163:13;5195:4;5208:51;5252:6;5247:3;5242:2;5234:6;5230:15;5208:51;:::i;:::-;5322:13;;5281:16;;;;5344:55;5322:13;5281:16;5366:15;;;5344:55;:::i;:::-;5490:13;;5421:20;;;5461:3;;5550:1;5572:18;;;;5625;;;;5652:2;;5730:4;5720:8;5716:19;5704:31;;5652:2;5793;5783:8;5780:16;5760:18;5757:40;5754:2;;;-1:-1:-1;;;5820:33:1;;5876:4;5873:1;5866:15;5906:4;5827:3;5894:17;5754:2;5937:18;5964:110;;;;6088:1;6083:330;;;;5930:483;;5964:110;-1:-1:-1;;5999:24:1;;5985:39;;6044:20;;;;-1:-1:-1;5964:110:1;;6083:330;11755:4;11774:17;;;11824:4;11808:21;;6178:3;6194:169;6208:8;6205:1;6202:15;6194:169;;;6290:14;;6275:13;;;6268:37;6333:16;;;;6225:10;;6194:169;;;6198:3;;6394:8;6387:5;6383:20;6376:27;;5930:483;-1:-1:-1;6429:3:1;;5139:1299;-1:-1:-1;;;;;;;;;;;5139:1299:1:o;6861:488::-;-1:-1:-1;;;;;7130:15:1;;;7112:34;;7182:15;;7177:2;7162:18;;7155:43;7229:2;7214:18;;7207:34;;;7277:3;7272:2;7257:18;;7250:31;;;7055:4;;7298:45;;7323:19;;7315:6;7298:45;:::i;:::-;7290:53;7064:285;-1:-1:-1;;;;;;7064:285:1:o;7354:635::-;7525:2;7577:21;;;7647:13;;7550:18;;;7669:22;;;7496:4;;7525:2;7748:15;;;;7722:2;7707:18;;;7496:4;7794:169;7808:6;7805:1;7802:13;7794:169;;;7869:13;;7857:26;;7938:15;;;;7903:12;;;;7830:1;7823:9;7794:169;;;-1:-1:-1;7980:3:1;;7505:484;-1:-1:-1;;;;;;7505:484:1:o;8368:219::-;8517:2;8506:9;8499:21;8480:4;8537:44;8577:2;8566:9;8562:18;8554:6;8537:44;:::i;9700:356::-;9902:2;9884:21;;;9921:18;;;9914:30;9980:34;9975:2;9960:18;;9953:62;10047:2;10032:18;;9874:182::o;11840:128::-;11880:3;11911:1;11907:6;11904:1;11901:13;11898:2;;;11917:18;;:::i;:::-;-1:-1:-1;11953:9:1;;11888:80::o;11973:120::-;12013:1;12039;12029:2;;12044:18;;:::i;:::-;-1:-1:-1;12078:9:1;;12019:74::o;12098:168::-;12138:7;12204:1;12200;12196:6;12192:14;12189:1;12186:21;12181:1;12174:9;12167:17;12163:45;12160:2;;;12211:18;;:::i;:::-;-1:-1:-1;12251:9:1;;12150:116::o;12271:125::-;12311:4;12339:1;12336;12333:8;12330:2;;;12344:18;;:::i;:::-;-1:-1:-1;12381:9:1;;12320:76::o;12401:258::-;12473:1;12483:113;12497:6;12494:1;12491:13;12483:113;;;12573:11;;;12567:18;12554:11;;;12547:39;12519:2;12512:10;12483:113;;;12614:6;12611:1;12608:13;12605:2;;;-1:-1:-1;;12649:1:1;12631:16;;12624:27;12454:205::o;12664:380::-;12743:1;12739:12;;;;12786;;;12807:2;;12861:4;12853:6;12849:17;12839:27;;12807:2;12914;12906:6;12903:14;12883:18;12880:38;12877:2;;;12960:10;12955:3;12951:20;12948:1;12941:31;12995:4;12992:1;12985:15;13023:4;13020:1;13013:15;12877:2;;12719:325;;;:::o;13049:135::-;13088:3;-1:-1:-1;;13109:17:1;;13106:2;;;13129:18;;:::i;:::-;-1:-1:-1;13176:1:1;13165:13;;13096:88::o;13189:112::-;13221:1;13247;13237:2;;13252:18;;:::i;:::-;-1:-1:-1;13286:9:1;;13227:74::o;13306:127::-;13367:10;13362:3;13358:20;13355:1;13348:31;13398:4;13395:1;13388:15;13422:4;13419:1;13412:15;13438:127;13499:10;13494:3;13490:20;13487:1;13480:31;13530:4;13527:1;13520:15;13554:4;13551:1;13544:15;13570:127;13631:10;13626:3;13622:20;13619:1;13612:31;13662:4;13659:1;13652:15;13686:4;13683:1;13676:15;13702:131;-1:-1:-1;;;;;;13776:32:1;;13766:43;;13756:2;;13823:1;13820;13813:12

Swarm Source

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