ETH Price: $2,995.04 (-1.98%)
Gas: 2 Gwei

Token

Womanoid (WND)
 

Overview

Max Total Supply

0 WND

Holders

417

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 WND
0x705a707434405b325f54a307559334e675af0ecd
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:
Womanoid

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-25
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Womanoid.sol


pragma solidity >=0.8.0;







/**
 * @title WOMANOID ERC-721 Contract
 * @author DegenDeveloper.eth
 *
 * The contract owner has the following permissions:
 * - Toggle whitelist minting
 * - Toggle public minting
 * - Set the URI for the revealed tokens
 * - Set the merkle root for the whitelist
 * - Withdraw the funds from the contract
 * - Mint tokens for giveaways/airdrops
 */
contract Womanoid is ERC721, Ownable, ReentrancyGuard {
  /// ============ SETUP ============ ///

  using Counters for Counters.Counter;
  using Strings for uint256;

  Counters.Counter private tokensMinted;

  string private URI;

  bytes32 private merkleRoot;

  bool private WHITELIST_SALE_ACTIVE = false;
  bool private PUBLIC_SALE_ACTIVE = false;
  bool private REVEALED = false;

  /// mapping from each address to number of white list claims minted
  mapping(address => Counters.Counter) private whitelistClaims;

  uint256 private constant WL_PRICE = 40000000000000000; // 0.04 ETH
  uint256 private constant P_PRICE = 45000000000000000; // 0.045 ETH
  uint256 private constant MAXSUPPLY = 8888;
  uint256 private constant MAXMINT = 10;

  /// ============ CONSTRUCTOR ============ ///

  /**
   * @param _URI The ipfs hash for unrevealed tokens
   * @param _merkleRoot The root hash of the whitelist merkle tree
   */
  constructor(string memory _URI, bytes32 _merkleRoot)
    ERC721("Womanoid", "WND")
  {
    URI = _URI;
    merkleRoot = _merkleRoot;
  }

  /// ============ PUBLIC ============ ///

  /**
   * @param _minting The number of tokens to mint
   */
  function publicMint(uint256 _minting) public payable nonReentrant {
    require(PUBLIC_SALE_ACTIVE, "WND: public minting not active");
    require(_minting > 0, "WND: cannot mint 0 tokens");
    require(_minting <= MAXMINT, "WND: too many mints per txn");
    require(
      _minting + tokensMinted.current() <= MAXSUPPLY,
      "WND: would exceed MAXSUPPLY"
    );
    require(msg.value >= P_PRICE * _minting, "WND: insufficient funds");

    for (uint256 i = 0; i < _minting; ++i) {
      tokensMinted.increment();
      _safeMint(msg.sender, tokensMinted.current());
    }
  }

  /**
   * @param _merkleProof The first part of caller's proof
   * @param _allowed The max number of tokens caller is allowed to mint
   * @param _minting The number of tokens caller is trying to mint
   */
  function whiteListMint(
    bytes32[] calldata _merkleProof,
    uint256 _allowed,
    uint256 _minting
  ) public payable nonReentrant {
    require(WHITELIST_SALE_ACTIVE, "WND: whitelist minting not active");
    require(_minting > 0, "WND: cannot mint 0 tokens");
    require(
      _verifyProof(msg.sender, _merkleProof, _allowed),
      "WND: invalid proof"
    );
    require(
      _minting + whitelistClaims[msg.sender].current() <= _allowed,
      "WND: not enough claims left"
    );
    require(
      _minting + tokensMinted.current() <= MAXSUPPLY,
      "WND: would exceed MAXSUPPLY"
    );
    require(msg.value >= WL_PRICE * _minting, "WND: insufficient funds");

    for (uint256 i = 0; i < _minting; ++i) {
      whitelistClaims[msg.sender].increment();
      tokensMinted.increment();
      _safeMint(msg.sender, tokensMinted.current());
    }
  }

  /// ============ OWNER ============ ///

  /**
   * For minting giveaway/airdrop tokens
   * @param _minting The number of tokens to mint
   */
  function ownerMint(uint256 _minting) public onlyOwner {
    require(_minting > 0, "WND: cannot mint 0 tokens");
    require(
      _minting + tokensMinted.current() <= MAXSUPPLY,
      "WND: would exceed MAXSUPPLY"
    );

    for (uint256 i = 0; i < _minting; ++i) {
      tokensMinted.increment();
      _safeMint(msg.sender, tokensMinted.current());
    }
  }

  /**
   * Open/close whitelist minting
   */
  function toggleWhiteListMint() public onlyOwner {
    WHITELIST_SALE_ACTIVE = !WHITELIST_SALE_ACTIVE;
  }

  /**
   * Open/close public minting
   */
  function togglePublicMint() public onlyOwner {
    PUBLIC_SALE_ACTIVE = !PUBLIC_SALE_ACTIVE;
  }

  /**
   * Reveal tokens with new baseURI
   * @param _newURI The ipfs folder of collection URIs
   */
  function toggleReveal(string memory _newURI) public onlyOwner {
    REVEALED = true;
    URI = _newURI;
  }

  /**
   * Change URI if needed
   */
  function setURI(string memory _newURI) public onlyOwner {
    URI = _newURI;
  }

  /**
   * Set new root hash for merkle tree if whitelist changes after deployment
   * @param _merkleRoot New root hash of whitelist merkle tree
   */
  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  /**
   * Withdraw contract balance to contract owner
   */
  function withdrawFunds() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /// ============ PRIVATE ============ ///

  /**
   * Determines if _whitelister can prove whitelist placement
   * @param _whitelister The address proving
   * @param _merkleProof The _whitelisters proof
   * @param _allowed The number of whitelist claims _whitelister has
   * @return _b If _whitelister's proof is true
   */
  function _verifyProof(
    address _whitelister,
    bytes32[] calldata _merkleProof,
    uint256 _allowed
  ) private view returns (bool _b) {
    _b = MerkleProof.verify(
      _merkleProof,
      merkleRoot,
      keccak256(abi.encodePacked(_whitelister, _allowed))
    );
  }

  /// ============ PUBLIC ============ ///

  /**
   * @param _tokenId The token id to lookup
   * @return _uri The URI for _tokenId
   */
  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory _uri)
  {
    _uri = string(abi.encodePacked(URI, _tokenId.toString(), ".json"));
  }

  /**
   * @return _b If whitelist minting is active
   */
  function isWhitelistMint() public view returns (bool _b) {
    _b = WHITELIST_SALE_ACTIVE;
  }

  /**
   * @return _b If public minting is active
   */
  function isPublicMint() public view returns (bool _b) {
    _b = PUBLIC_SALE_ACTIVE;
  }

  /**
   * @return _b If tokens are revealed
   */
  function isRevealed() public view returns (bool _b) {
    _b = REVEALED;
  }

  /**
   * @return _s The base URI of tokens
   */
  function getURI() public view returns (string memory _s) {
    _s = URI;
  }

  /**
   * @return _i The price to mint 1 token (in wei) for a whitelister
   */
  function getWhiteListPrice() public pure returns (uint256 _i) {
    _i = WL_PRICE;
  }

  /**
   * @return _i The price to mint 1 token (in wei) for public
   */
  function getPublicMintPrice() public pure returns (uint256 _i) {
    _i = P_PRICE;
  }

  /**
   * @return _i The max supply of the collection
   */
  function tokenSupply() public pure returns (uint256 _i) {
    _i = MAXSUPPLY;
  }

  /**
   * @return _i The max number of tokens to mint per txn
   */
  function getMaxMint() public pure returns (uint256 _i) {
    _i = MAXMINT;
  }

  /**
   * @return _i The number of tokens that have currently been minted
   */
  function totalMinted() public view returns (uint256 _i) {
    _i = tokensMinted.current();
  }

  /**
   * @return _b The merkle root of the whitelist
   */
  function getMerkleRoot() public view returns (bytes32 _b) {
    _b = merkleRoot;
  }

  /**
   * @param _operator The address to lookup
   * @return _i Then number of whitelist claims _operator has used
   */
  function getWhiteListClaims(address _operator)
    public
    view
    returns (uint256 _i)
  {
    _i = whitelistClaims[_operator].current();
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_URI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMint","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"_b","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicMintPrice","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getURI","outputs":[{"internalType":"string","name":"_s","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"getWhiteListClaims","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteListPrice","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","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":"isPublicMint","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minting","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minting","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","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":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_allowed","type":"uint256"},{"internalType":"uint256","name":"_minting","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805462ffffff191690553480156200001d57600080fd5b506040516200269b3803806200269b8339810160408190526200004091620001df565b604080518082018252600881526715dbdb585b9bda5960c21b60208083019182528351808501909452600384526215d39160ea1b9084015281519192916200008b9160009162000139565b508051620000a190600190602084019062000139565b505050620000be620000b8620000e360201b60201c565b620000e7565b60016007558151620000d890600990602085019062000139565b50600a555062000317565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620002c4565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b60008060408385031215620001f357600080fd5b82516001600160401b03808211156200020b57600080fd5b818501915085601f8301126200022057600080fd5b81518181111562000235576200023562000301565b604051601f8201601f19908116603f0116810190838211818310171562000260576200026062000301565b816040528281526020935088848487010111156200027d57600080fd5b600091505b82821015620002a1578482018401518183018501529083019062000282565b82821115620002b35760008484830101525b969092015195979596505050505050565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61237480620003276000396000f3fe60806040526004361061020f5760003560e01c80636352211e1161011857806395d89b41116100a0578063c754da331161006f578063c754da3314610597578063c87b56dd146105af578063e985e9c5146105cf578063f19e75d414610618578063f2fde38b1461063857600080fd5b806395d89b411461052d578063a22cb46514610542578063a2309ff814610562578063b88d4fde1461057757600080fd5b8063744dab38116100e7578063744dab38146104ab5780637754305c146104c55780637824407f146104da5780637cb64759146104ef5780638da5cb5b1461050f57600080fd5b80636352211e1461044357806369d307251461046357806370a0823114610476578063715018a61461049657600080fd5b806324600fc31161019b57806342842e0e1161016a57806342842e0e146103b657806349590657146103d65780634d85c61c146103eb57806354214f69146104055780635d8c2efd1461042357600080fd5b806324600fc31461035c5780632db11544146103715780633057931f146103845780634047638d146103a157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063106466f3146102e557806316217113146102fa5780631f46452f1461032857806323b872dd1461033c57600080fd5b806301ffc9a71461021457806302fe53051461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611ec5565b610658565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611eff565b6106aa565b005b34801561027757600080fd5b506102806106f4565b604051610240919061207f565b34801561029957600080fd5b506102ad6102a8366004611eac565b610786565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611e00565b61081b565b3480156102f157600080fd5b50610269610931565b34801561030657600080fd5b5061031a610315366004611cb7565b61096f565b604051908152602001610240565b34801561033457600080fd5b50600a61031a565b34801561034857600080fd5b50610269610357366004611d0c565b61098d565b34801561036857600080fd5b506102696109be565b61026961037f366004611eac565b610a24565b34801561039057600080fd5b50600b54610100900460ff16610234565b3480156103ad57600080fd5b50610269610c16565b3480156103c257600080fd5b506102696103d1366004611d0c565b610c5d565b3480156103e257600080fd5b50600a5461031a565b3480156103f757600080fd5b50668e1bc9bf04000061031a565b34801561041157600080fd5b50600b5462010000900460ff16610234565b34801561042f57600080fd5b5061026961043e366004611eff565b610c78565b34801561044f57600080fd5b506102ad61045e366004611eac565b610cc6565b610269610471366004611e2a565b610d3d565b34801561048257600080fd5b5061031a610491366004611cb7565b610fae565b3480156104a257600080fd5b50610269611035565b3480156104b757600080fd5b50669fdf42f6e4800061031a565b3480156104d157600080fd5b5061028061106b565b3480156104e657600080fd5b506122b861031a565b3480156104fb57600080fd5b5061026961050a366004611eac565b61107a565b34801561051b57600080fd5b506006546001600160a01b03166102ad565b34801561053957600080fd5b506102806110a9565b34801561054e57600080fd5b5061026961055d366004611dc4565b6110b8565b34801561056e57600080fd5b5061031a6110c3565b34801561058357600080fd5b50610269610592366004611d48565b6110d3565b3480156105a357600080fd5b50600b5460ff16610234565b3480156105bb57600080fd5b506102806105ca366004611eac565b61110b565b3480156105db57600080fd5b506102346105ea366004611cd9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062457600080fd5b50610269610633366004611eac565b61113f565b34801561064457600080fd5b50610269610653366004611cb7565b6111f3565b60006001600160e01b031982166380ac58cd60e01b148061068957506001600160e01b03198216635b5e139f60e01b145b806106a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106dd5760405162461bcd60e51b81526004016106d49061211b565b60405180910390fd5b80516106f0906009906020840190611b8c565b5050565b60606000805461070390612266565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90612266565b801561077c5780601f106107515761010080835404028352916020019161077c565b820191906000526020600020905b81548152906001019060200180831161075f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b506000908152600460205260409020546001600160a01b031690565b600061082682610cc6565b9050806001600160a01b0316836001600160a01b031614156108945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d4565b336001600160a01b03821614806108b057506108b081336105ea565b6109225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d4565b61092c838361128b565b505050565b6006546001600160a01b0316331461095b5760405162461bcd60e51b81526004016106d49061211b565b600b805460ff19811660ff90911615179055565b6001600160a01b0381166000908152600c60205260408120546106a4565b61099733826112f9565b6109b35760405162461bcd60e51b81526004016106d490612187565b61092c8383836113f0565b6006546001600160a01b031633146109e85760405162461bcd60e51b81526004016106d49061211b565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a21573d6000803e3d6000fd5b50565b60026007541415610a775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600755600b54610100900460ff16610ad35760405162461bcd60e51b815260206004820152601e60248201527f574e443a207075626c6963206d696e74696e67206e6f7420616374697665000060448201526064016106d4565b60008111610af35760405162461bcd60e51b81526004016106d490612150565b600a811115610b445760405162461bcd60e51b815260206004820152601b60248201527f574e443a20746f6f206d616e79206d696e7473207065722074786e000000000060448201526064016106d4565b6122b8610b5060085490565b610b5a90836121d8565b1115610b785760405162461bcd60e51b81526004016106d4906120e4565b610b8981669fdf42f6e48000612204565b341015610bd25760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106d4565b60005b81811015610c0d57610beb600880546001019055565b610bfd33610bf860085490565b61158c565b610c06816122a1565b9050610bd5565b50506001600755565b6006546001600160a01b03163314610c405760405162461bcd60e51b81526004016106d49061211b565b600b805461ff001981166101009182900460ff1615909102179055565b61092c838383604051806020016040528060008152506110d3565b6006546001600160a01b03163314610ca25760405162461bcd60e51b81526004016106d49061211b565b600b805462ff000019166201000017905580516106f0906009906020840190611b8c565b6000818152600260205260408120546001600160a01b0316806106a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d4565b60026007541415610d905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600755600b5460ff16610df15760405162461bcd60e51b815260206004820152602160248201527f574e443a2077686974656c697374206d696e74696e67206e6f742061637469766044820152606560f81b60648201526084016106d4565b60008111610e115760405162461bcd60e51b81526004016106d490612150565b610e1d338585856115a6565b610e5e5760405162461bcd60e51b81526020600482015260126024820152712ba7221d1034b73b30b634b210383937b7b360711b60448201526064016106d4565b336000908152600c60205260409020548290610e7a90836121d8565b1115610ec85760405162461bcd60e51b815260206004820152601b60248201527f574e443a206e6f7420656e6f75676820636c61696d73206c656674000000000060448201526064016106d4565b6122b8610ed460085490565b610ede90836121d8565b1115610efc5760405162461bcd60e51b81526004016106d4906120e4565b610f0d81668e1bc9bf040000612204565b341015610f565760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106d4565b60005b81811015610fa257336000908152600c6020526040902080546001019055610f85600880546001019055565b610f9233610bf860085490565b610f9b816122a1565b9050610f59565b50506001600755505050565b60006001600160a01b0382166110195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461105f5760405162461bcd60e51b81526004016106d49061211b565b611069600061162e565b565b60606009805461070390612266565b6006546001600160a01b031633146110a45760405162461bcd60e51b81526004016106d49061211b565b600a55565b60606001805461070390612266565b6106f0338383611680565b60006110ce60085490565b905090565b6110dd33836112f9565b6110f95760405162461bcd60e51b81526004016106d490612187565b6111058484848461174f565b50505050565b6060600961111883611782565b604051602001611129929190611f90565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111695760405162461bcd60e51b81526004016106d49061211b565b600081116111895760405162461bcd60e51b81526004016106d490612150565b6122b861119560085490565b61119f90836121d8565b11156111bd5760405162461bcd60e51b81526004016106d4906120e4565b60005b818110156106f0576111d6600880546001019055565b6111e333610bf860085490565b6111ec816122a1565b90506111c0565b6006546001600160a01b0316331461121d5760405162461bcd60e51b81526004016106d49061211b565b6001600160a01b0381166112825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610a218161162e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c082610cc6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b600061137d83610cc6565b9050806001600160a01b0316846001600160a01b031614806113b85750836001600160a01b03166113ad84610786565b6001600160a01b0316145b806113e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140382610cc6565b6001600160a01b0316146114675760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d4565b6001600160a01b0382166114c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6114d460008261128b565b6001600160a01b03831660009081526003602052604081208054600192906114fd908490612223565b90915550506001600160a01b038216600090815260036020526040812080546001929061152b9084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106f0828260405180602001604052806000815250611880565b600061162584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b166020820152603481018890529092506054019050604051602081830303815290604052805190602001206118b3565b95945050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175a8484846113f0565b611766848484846118c9565b6111055760405162461bcd60e51b81526004016106d490612092565b6060816117a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d057806117ba816122a1565b91506117c99050600a836121f0565b91506117aa565b60008167ffffffffffffffff8111156117eb576117eb612312565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b84156113e85761182a600183612223565b9150611837600a866122bc565b6118429060306121d8565b60f81b818381518110611857576118576122fc565b60200101906001600160f81b031916908160001a905350611879600a866121f0565b9450611819565b61188a83836119d6565b61189760008484846118c9565b61092c5760405162461bcd60e51b81526004016106d490612092565b6000826118c08584611b18565b14949350505050565b60006001600160a01b0384163b156119cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190d903390899088908890600401612042565b602060405180830381600087803b15801561192757600080fd5b505af1925050508015611957575060408051601f3d908101601f1916820190925261195491810190611ee2565b60015b6119b1573d808015611985576040519150601f19603f3d011682016040523d82523d6000602084013e61198a565b606091505b5080516119a95760405162461bcd60e51b81526004016106d490612092565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e8565b506001949350505050565b6001600160a01b038216611a2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d4565b6000818152600260205260409020546001600160a01b031615611a915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d4565b6001600160a01b0382166000908152600360205260408120805460019290611aba9084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611b84576000858281518110611b3a57611b3a6122fc565b60200260200101519050808311611b605760008381526020829052604090209250611b71565b600081815260208490526040902092505b5080611b7c816122a1565b915050611b1d565b509392505050565b828054611b9890612266565b90600052602060002090601f016020900481019282611bba5760008555611c00565b82601f10611bd357805160ff1916838001178555611c00565b82800160010185558215611c00579182015b82811115611c00578251825591602001919060010190611be5565b50611c0c929150611c10565b5090565b5b80821115611c0c5760008155600101611c11565b600067ffffffffffffffff80841115611c4057611c40612312565b604051601f8501601f19908116603f01168101908282118183101715611c6857611c68612312565b81604052809350858152868686011115611c8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb257600080fd5b919050565b600060208284031215611cc957600080fd5b611cd282611c9b565b9392505050565b60008060408385031215611cec57600080fd5b611cf583611c9b565b9150611d0360208401611c9b565b90509250929050565b600080600060608486031215611d2157600080fd5b611d2a84611c9b565b9250611d3860208501611c9b565b9150604084013590509250925092565b60008060008060808587031215611d5e57600080fd5b611d6785611c9b565b9350611d7560208601611c9b565b925060408501359150606085013567ffffffffffffffff811115611d9857600080fd5b8501601f81018713611da957600080fd5b611db887823560208401611c25565b91505092959194509250565b60008060408385031215611dd757600080fd5b611de083611c9b565b915060208301358015158114611df557600080fd5b809150509250929050565b60008060408385031215611e1357600080fd5b611e1c83611c9b565b946020939093013593505050565b60008060008060608587031215611e4057600080fd5b843567ffffffffffffffff80821115611e5857600080fd5b818701915087601f830112611e6c57600080fd5b813581811115611e7b57600080fd5b8860208260051b8501011115611e9057600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611ebe57600080fd5b5035919050565b600060208284031215611ed757600080fd5b8135611cd281612328565b600060208284031215611ef457600080fd5b8151611cd281612328565b600060208284031215611f1157600080fd5b813567ffffffffffffffff811115611f2857600080fd5b8201601f81018413611f3957600080fd5b6113e884823560208401611c25565b60008151808452611f6081602086016020860161223a565b601f01601f19169290920160200192915050565b60008151611f8681856020860161223a565b9290920192915050565b600080845481600182811c915080831680611fac57607f831692505b6020808410821415611fcc57634e487b7160e01b86526022600452602486fd5b818015611fe05760018114611ff15761201e565b60ff1986168952848901965061201e565b60008b81526020902060005b868110156120165781548b820152908501908301611ffd565b505084890196505b5050505050506116256120318286611f74565b64173539b7b760d91b815260050190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207590830184611f48565b9695505050505050565b602081526000611cd26020830184611f48565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601b908201527f574e443a20776f756c6420657863656564204d4158535550504c590000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526019908201527f574e443a2063616e6e6f74206d696e74203020746f6b656e7300000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121eb576121eb6122d0565b500190565b6000826121ff576121ff6122e6565b500490565b600081600019048311821515161561221e5761221e6122d0565b500290565b600082821015612235576122356122d0565b500390565b60005b8381101561225557818101518382015260200161223d565b838111156111055750506000910152565b600181811c9082168061227a57607f821691505b6020821081141561229b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b5576122b56122d0565b5060010190565b6000826122cb576122cb6122e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2157600080fdfea26469706673582212200ba10269556f9d1a267e2310c7ba85e997cfb633ab4c0d5abdf5d38104e03ec764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040201f48fb2d516cfcf902419b84944d3f57f3b5b44dda1e7659f14de7e711549b0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556e626e3650596131533763765051525165316e6e7432553766515778336978416679656741345468624c322f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e1161011857806395d89b41116100a0578063c754da331161006f578063c754da3314610597578063c87b56dd146105af578063e985e9c5146105cf578063f19e75d414610618578063f2fde38b1461063857600080fd5b806395d89b411461052d578063a22cb46514610542578063a2309ff814610562578063b88d4fde1461057757600080fd5b8063744dab38116100e7578063744dab38146104ab5780637754305c146104c55780637824407f146104da5780637cb64759146104ef5780638da5cb5b1461050f57600080fd5b80636352211e1461044357806369d307251461046357806370a0823114610476578063715018a61461049657600080fd5b806324600fc31161019b57806342842e0e1161016a57806342842e0e146103b657806349590657146103d65780634d85c61c146103eb57806354214f69146104055780635d8c2efd1461042357600080fd5b806324600fc31461035c5780632db11544146103715780633057931f146103845780634047638d146103a157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063106466f3146102e557806316217113146102fa5780631f46452f1461032857806323b872dd1461033c57600080fd5b806301ffc9a71461021457806302fe53051461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611ec5565b610658565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611eff565b6106aa565b005b34801561027757600080fd5b506102806106f4565b604051610240919061207f565b34801561029957600080fd5b506102ad6102a8366004611eac565b610786565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004611e00565b61081b565b3480156102f157600080fd5b50610269610931565b34801561030657600080fd5b5061031a610315366004611cb7565b61096f565b604051908152602001610240565b34801561033457600080fd5b50600a61031a565b34801561034857600080fd5b50610269610357366004611d0c565b61098d565b34801561036857600080fd5b506102696109be565b61026961037f366004611eac565b610a24565b34801561039057600080fd5b50600b54610100900460ff16610234565b3480156103ad57600080fd5b50610269610c16565b3480156103c257600080fd5b506102696103d1366004611d0c565b610c5d565b3480156103e257600080fd5b50600a5461031a565b3480156103f757600080fd5b50668e1bc9bf04000061031a565b34801561041157600080fd5b50600b5462010000900460ff16610234565b34801561042f57600080fd5b5061026961043e366004611eff565b610c78565b34801561044f57600080fd5b506102ad61045e366004611eac565b610cc6565b610269610471366004611e2a565b610d3d565b34801561048257600080fd5b5061031a610491366004611cb7565b610fae565b3480156104a257600080fd5b50610269611035565b3480156104b757600080fd5b50669fdf42f6e4800061031a565b3480156104d157600080fd5b5061028061106b565b3480156104e657600080fd5b506122b861031a565b3480156104fb57600080fd5b5061026961050a366004611eac565b61107a565b34801561051b57600080fd5b506006546001600160a01b03166102ad565b34801561053957600080fd5b506102806110a9565b34801561054e57600080fd5b5061026961055d366004611dc4565b6110b8565b34801561056e57600080fd5b5061031a6110c3565b34801561058357600080fd5b50610269610592366004611d48565b6110d3565b3480156105a357600080fd5b50600b5460ff16610234565b3480156105bb57600080fd5b506102806105ca366004611eac565b61110b565b3480156105db57600080fd5b506102346105ea366004611cd9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062457600080fd5b50610269610633366004611eac565b61113f565b34801561064457600080fd5b50610269610653366004611cb7565b6111f3565b60006001600160e01b031982166380ac58cd60e01b148061068957506001600160e01b03198216635b5e139f60e01b145b806106a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106dd5760405162461bcd60e51b81526004016106d49061211b565b60405180910390fd5b80516106f0906009906020840190611b8c565b5050565b60606000805461070390612266565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90612266565b801561077c5780601f106107515761010080835404028352916020019161077c565b820191906000526020600020905b81548152906001019060200180831161075f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b506000908152600460205260409020546001600160a01b031690565b600061082682610cc6565b9050806001600160a01b0316836001600160a01b031614156108945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d4565b336001600160a01b03821614806108b057506108b081336105ea565b6109225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d4565b61092c838361128b565b505050565b6006546001600160a01b0316331461095b5760405162461bcd60e51b81526004016106d49061211b565b600b805460ff19811660ff90911615179055565b6001600160a01b0381166000908152600c60205260408120546106a4565b61099733826112f9565b6109b35760405162461bcd60e51b81526004016106d490612187565b61092c8383836113f0565b6006546001600160a01b031633146109e85760405162461bcd60e51b81526004016106d49061211b565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a21573d6000803e3d6000fd5b50565b60026007541415610a775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600755600b54610100900460ff16610ad35760405162461bcd60e51b815260206004820152601e60248201527f574e443a207075626c6963206d696e74696e67206e6f7420616374697665000060448201526064016106d4565b60008111610af35760405162461bcd60e51b81526004016106d490612150565b600a811115610b445760405162461bcd60e51b815260206004820152601b60248201527f574e443a20746f6f206d616e79206d696e7473207065722074786e000000000060448201526064016106d4565b6122b8610b5060085490565b610b5a90836121d8565b1115610b785760405162461bcd60e51b81526004016106d4906120e4565b610b8981669fdf42f6e48000612204565b341015610bd25760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106d4565b60005b81811015610c0d57610beb600880546001019055565b610bfd33610bf860085490565b61158c565b610c06816122a1565b9050610bd5565b50506001600755565b6006546001600160a01b03163314610c405760405162461bcd60e51b81526004016106d49061211b565b600b805461ff001981166101009182900460ff1615909102179055565b61092c838383604051806020016040528060008152506110d3565b6006546001600160a01b03163314610ca25760405162461bcd60e51b81526004016106d49061211b565b600b805462ff000019166201000017905580516106f0906009906020840190611b8c565b6000818152600260205260408120546001600160a01b0316806106a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d4565b60026007541415610d905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600755600b5460ff16610df15760405162461bcd60e51b815260206004820152602160248201527f574e443a2077686974656c697374206d696e74696e67206e6f742061637469766044820152606560f81b60648201526084016106d4565b60008111610e115760405162461bcd60e51b81526004016106d490612150565b610e1d338585856115a6565b610e5e5760405162461bcd60e51b81526020600482015260126024820152712ba7221d1034b73b30b634b210383937b7b360711b60448201526064016106d4565b336000908152600c60205260409020548290610e7a90836121d8565b1115610ec85760405162461bcd60e51b815260206004820152601b60248201527f574e443a206e6f7420656e6f75676820636c61696d73206c656674000000000060448201526064016106d4565b6122b8610ed460085490565b610ede90836121d8565b1115610efc5760405162461bcd60e51b81526004016106d4906120e4565b610f0d81668e1bc9bf040000612204565b341015610f565760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106d4565b60005b81811015610fa257336000908152600c6020526040902080546001019055610f85600880546001019055565b610f9233610bf860085490565b610f9b816122a1565b9050610f59565b50506001600755505050565b60006001600160a01b0382166110195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461105f5760405162461bcd60e51b81526004016106d49061211b565b611069600061162e565b565b60606009805461070390612266565b6006546001600160a01b031633146110a45760405162461bcd60e51b81526004016106d49061211b565b600a55565b60606001805461070390612266565b6106f0338383611680565b60006110ce60085490565b905090565b6110dd33836112f9565b6110f95760405162461bcd60e51b81526004016106d490612187565b6111058484848461174f565b50505050565b6060600961111883611782565b604051602001611129929190611f90565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111695760405162461bcd60e51b81526004016106d49061211b565b600081116111895760405162461bcd60e51b81526004016106d490612150565b6122b861119560085490565b61119f90836121d8565b11156111bd5760405162461bcd60e51b81526004016106d4906120e4565b60005b818110156106f0576111d6600880546001019055565b6111e333610bf860085490565b6111ec816122a1565b90506111c0565b6006546001600160a01b0316331461121d5760405162461bcd60e51b81526004016106d49061211b565b6001600160a01b0381166112825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610a218161162e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c082610cc6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b600061137d83610cc6565b9050806001600160a01b0316846001600160a01b031614806113b85750836001600160a01b03166113ad84610786565b6001600160a01b0316145b806113e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140382610cc6565b6001600160a01b0316146114675760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d4565b6001600160a01b0382166114c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6114d460008261128b565b6001600160a01b03831660009081526003602052604081208054600192906114fd908490612223565b90915550506001600160a01b038216600090815260036020526040812080546001929061152b9084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106f0828260405180602001604052806000815250611880565b600061162584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b166020820152603481018890529092506054019050604051602081830303815290604052805190602001206118b3565b95945050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175a8484846113f0565b611766848484846118c9565b6111055760405162461bcd60e51b81526004016106d490612092565b6060816117a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d057806117ba816122a1565b91506117c99050600a836121f0565b91506117aa565b60008167ffffffffffffffff8111156117eb576117eb612312565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b84156113e85761182a600183612223565b9150611837600a866122bc565b6118429060306121d8565b60f81b818381518110611857576118576122fc565b60200101906001600160f81b031916908160001a905350611879600a866121f0565b9450611819565b61188a83836119d6565b61189760008484846118c9565b61092c5760405162461bcd60e51b81526004016106d490612092565b6000826118c08584611b18565b14949350505050565b60006001600160a01b0384163b156119cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190d903390899088908890600401612042565b602060405180830381600087803b15801561192757600080fd5b505af1925050508015611957575060408051601f3d908101601f1916820190925261195491810190611ee2565b60015b6119b1573d808015611985576040519150601f19603f3d011682016040523d82523d6000602084013e61198a565b606091505b5080516119a95760405162461bcd60e51b81526004016106d490612092565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e8565b506001949350505050565b6001600160a01b038216611a2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d4565b6000818152600260205260409020546001600160a01b031615611a915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d4565b6001600160a01b0382166000908152600360205260408120805460019290611aba9084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611b84576000858281518110611b3a57611b3a6122fc565b60200260200101519050808311611b605760008381526020829052604090209250611b71565b600081815260208490526040902092505b5080611b7c816122a1565b915050611b1d565b509392505050565b828054611b9890612266565b90600052602060002090601f016020900481019282611bba5760008555611c00565b82601f10611bd357805160ff1916838001178555611c00565b82800160010185558215611c00579182015b82811115611c00578251825591602001919060010190611be5565b50611c0c929150611c10565b5090565b5b80821115611c0c5760008155600101611c11565b600067ffffffffffffffff80841115611c4057611c40612312565b604051601f8501601f19908116603f01168101908282118183101715611c6857611c68612312565b81604052809350858152868686011115611c8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb257600080fd5b919050565b600060208284031215611cc957600080fd5b611cd282611c9b565b9392505050565b60008060408385031215611cec57600080fd5b611cf583611c9b565b9150611d0360208401611c9b565b90509250929050565b600080600060608486031215611d2157600080fd5b611d2a84611c9b565b9250611d3860208501611c9b565b9150604084013590509250925092565b60008060008060808587031215611d5e57600080fd5b611d6785611c9b565b9350611d7560208601611c9b565b925060408501359150606085013567ffffffffffffffff811115611d9857600080fd5b8501601f81018713611da957600080fd5b611db887823560208401611c25565b91505092959194509250565b60008060408385031215611dd757600080fd5b611de083611c9b565b915060208301358015158114611df557600080fd5b809150509250929050565b60008060408385031215611e1357600080fd5b611e1c83611c9b565b946020939093013593505050565b60008060008060608587031215611e4057600080fd5b843567ffffffffffffffff80821115611e5857600080fd5b818701915087601f830112611e6c57600080fd5b813581811115611e7b57600080fd5b8860208260051b8501011115611e9057600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611ebe57600080fd5b5035919050565b600060208284031215611ed757600080fd5b8135611cd281612328565b600060208284031215611ef457600080fd5b8151611cd281612328565b600060208284031215611f1157600080fd5b813567ffffffffffffffff811115611f2857600080fd5b8201601f81018413611f3957600080fd5b6113e884823560208401611c25565b60008151808452611f6081602086016020860161223a565b601f01601f19169290920160200192915050565b60008151611f8681856020860161223a565b9290920192915050565b600080845481600182811c915080831680611fac57607f831692505b6020808410821415611fcc57634e487b7160e01b86526022600452602486fd5b818015611fe05760018114611ff15761201e565b60ff1986168952848901965061201e565b60008b81526020902060005b868110156120165781548b820152908501908301611ffd565b505084890196505b5050505050506116256120318286611f74565b64173539b7b760d91b815260050190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207590830184611f48565b9695505050505050565b602081526000611cd26020830184611f48565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601b908201527f574e443a20776f756c6420657863656564204d4158535550504c590000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526019908201527f574e443a2063616e6e6f74206d696e74203020746f6b656e7300000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121eb576121eb6122d0565b500190565b6000826121ff576121ff6122e6565b500490565b600081600019048311821515161561221e5761221e6122d0565b500290565b600082821015612235576122356122d0565b500390565b60005b8381101561225557818101518382015260200161223d565b838111156111055750506000910152565b600181811c9082168061227a57607f821691505b6020821081141561229b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b5576122b56122d0565b5060010190565b6000826122cb576122cb6122e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2157600080fdfea26469706673582212200ba10269556f9d1a267e2310c7ba85e997cfb633ab4c0d5abdf5d38104e03ec764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040201f48fb2d516cfcf902419b84944d3f57f3b5b44dda1e7659f14de7e711549b0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556e626e3650596131533763765051525165316e6e7432553766515778336978416679656741345468624c322f00000000000000000000

-----Decoded View---------------
Arg [0] : _URI (string): ipfs://QmUnbn6PYa1S7cvPQRQe1nnt2U7fQWx3ixAfyegA4ThbL2/
Arg [1] : _merkleRoot (bytes32): 0x201f48fb2d516cfcf902419b84944d3f57f3b5b44dda1e7659f14de7e711549b

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 201f48fb2d516cfcf902419b84944d3f57f3b5b44dda1e7659f14de7e711549b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d556e626e3650596131533763765051525165316e6e7432
Arg [4] : 553766515778336978416679656741345468624c322f00000000000000000000


Deployed Bytecode Sourcemap

44278:7408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30722:305;;;;;;;;;;-1:-1:-1;30722:305:0;;;;;:::i;:::-;;:::i;:::-;;;8031:14:1;;8024:22;8006:41;;7994:2;7979:18;30722:305:0;;;;;;;;48313:82;;;;;;;;;;-1:-1:-1;48313:82:0;;;;;:::i;:::-;;:::i;:::-;;31667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33226:221::-;;;;;;;;;;-1:-1:-1;33226:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7329:32:1;;;7311:51;;7299:2;7284:18;33226:221:0;7165:203:1;32749:411:0;;;;;;;;;;-1:-1:-1;32749:411:0;;;;;:::i;:::-;;:::i;47786:107::-;;;;;;;;;;;;;:::i;51531:152::-;;;;;;;;;;-1:-1:-1;51531:152:0;;;;;:::i;:::-;;:::i;:::-;;;8204:25:1;;;8192:2;8177:18;51531:152:0;8058:177:1;50976:80:0;;;;;;;;;;-1:-1:-1;45042:2:0;50976:80;;33976:339;;;;;;;;;;-1:-1:-1;33976:339:0;;;;;:::i;:::-;;:::i;48725:103::-;;;;;;;;;;;;;:::i;45496:593::-;;;;;;:::i;:::-;;:::i;50030:90::-;;;;;;;;;;-1:-1:-1;50096:18:0;;;;;;;50030:90;;47945:98;;;;;;;;;;;;;:::i;34386:185::-;;;;;;;;;;-1:-1:-1;34386:185:0;;;;;:::i;:::-;;:::i;51312:86::-;;;;;;;;;;-1:-1:-1;51382:10:0;;51312:86;;50486:88;;;;;;;;;;-1:-1:-1;44857:17:0;50486:88;;50180:78;;;;;;;;;;-1:-1:-1;50244:8:0;;;;;;;50180:78;;48156:110;;;;;;;;;;-1:-1:-1;48156:110:0;;;;;:::i;:::-;;:::i;31361:239::-;;;;;;;;;;-1:-1:-1;31361:239:0;;;;;:::i;:::-;;:::i;46309:891::-;;;;;;:::i;:::-;;:::i;31091:208::-;;;;;;;;;;-1:-1:-1;31091:208:0;;;;;:::i;:::-;;:::i;11343:103::-;;;;;;;;;;;;;:::i;50657:88::-;;;;;;;;;;-1:-1:-1;44926:17:0;50657:88;;50318:78;;;;;;;;;;;;;:::i;50815:83::-;;;;;;;;;;-1:-1:-1;44998:4:0;50815:83;;48557:98;;;;;;;;;;-1:-1:-1;48557:98:0;;;;;:::i;:::-;;:::i;10692:87::-;;;;;;;;;;-1:-1:-1;10765:6:0;;-1:-1:-1;;;;;10765:6:0;10692:87;;31836:104;;;;;;;;;;;;;:::i;33519:155::-;;;;;;;;;;-1:-1:-1;33519:155:0;;;;;:::i;:::-;;:::i;51146:96::-;;;;;;;;;;;;;:::i;34642:328::-;;;;;;;;;;-1:-1:-1;34642:328:0;;;;;:::i;:::-;;:::i;49869:96::-;;;;;;;;;;-1:-1:-1;49938:21:0;;;;49869:96;;49613:188;;;;;;;;;;-1:-1:-1;49613:188:0;;;;;:::i;:::-;;:::i;33745:164::-;;;;;;;;;;-1:-1:-1;33745:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33745:164;47358:373;;;;;;;;;;-1:-1:-1;47358:373:0;;;;;:::i;:::-;;:::i;11601:201::-;;;;;;;;;;-1:-1:-1;11601:201:0;;;;;:::i;:::-;;:::i;30722:305::-;30824:4;-1:-1:-1;;;;;;30861:40:0;;-1:-1:-1;;;30861:40:0;;:105;;-1:-1:-1;;;;;;;30918:48:0;;-1:-1:-1;;;30918:48:0;30861:105;:158;;;-1:-1:-1;;;;;;;;;;23585:40:0;;;30983:36;30841:178;30722:305;-1:-1:-1;;30722:305:0:o;48313:82::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;;;;;;;;;48376:13;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48313:82:::0;:::o;31667:100::-;31721:13;31754:5;31747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31667:100;:::o;33226:221::-;33302:7;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;33322:73;;;;-1:-1:-1;;;33322:73:0;;14101:2:1;33322:73:0;;;14083:21:1;14140:2;14120:18;;;14113:30;14179:34;14159:18;;;14152:62;-1:-1:-1;;;14230:18:1;;;14223:42;14282:19;;33322:73:0;13899:408:1;33322:73:0;-1:-1:-1;33415:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33415:24:0;;33226:221::o;32749:411::-;32830:13;32846:23;32861:7;32846:14;:23::i;:::-;32830:39;;32894:5;-1:-1:-1;;;;;32888:11:0;:2;-1:-1:-1;;;;;32888:11:0;;;32880:57;;;;-1:-1:-1;;;32880:57:0;;15624:2:1;32880:57:0;;;15606:21:1;15663:2;15643:18;;;15636:30;15702:34;15682:18;;;15675:62;-1:-1:-1;;;15753:18:1;;;15746:31;15794:19;;32880:57:0;15422:397:1;32880:57:0;9496:10;-1:-1:-1;;;;;32972:21:0;;;;:62;;-1:-1:-1;32997:37:0;33014:5;9496:10;33745:164;:::i;32997:37::-;32950:168;;;;-1:-1:-1;;;32950:168:0;;12135:2:1;32950:168:0;;;12117:21:1;12174:2;12154:18;;;12147:30;12213:34;12193:18;;;12186:62;12284:26;12264:18;;;12257:54;12328:19;;32950:168:0;11933:420:1;32950:168:0;33131:21;33140:2;33144:7;33131:8;:21::i;:::-;32819:341;32749:411;;:::o;47786:107::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47866:21:::1;::::0;;-1:-1:-1;;47841:46:0;::::1;47866:21;::::0;;::::1;47865:22;47841:46;::::0;;47786:107::o;51531:152::-;-1:-1:-1;;;;;51641:26:0;;51614:10;51641:26;;;:15;:26;;;;;6112:14;51641:36;6020:114;33976:339;34171:41;9496:10;34204:7;34171:18;:41::i;:::-;34163:103;;;;-1:-1:-1;;;34163:103:0;;;;;;;:::i;:::-;34279:28;34289:4;34295:2;34299:7;34279:9;:28::i;48725:103::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;10765:6;;48774:48:::1;::::0;-1:-1:-1;;;;;10765:6:0;;;;48800:21:::1;48774:48:::0;::::1;;;::::0;::::1;::::0;;;48800:21;10765:6;48774:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48725:103::o:0;45496:593::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17154:2:1;2402:63:0;;;17136:21:1;17193:2;17173:18;;;17166:30;17232:33;17212:18;;;17205:61;17283:18;;2402:63:0;16952:355:1;2402:63:0;1812:1;2543:7;:18;45577::::1;::::0;::::1;::::0;::::1;;;45569:61;;;::::0;-1:-1:-1;;;45569:61:0;;12560:2:1;45569:61:0::1;::::0;::::1;12542:21:1::0;12599:2;12579:18;;;12572:30;12638:32;12618:18;;;12611:60;12688:18;;45569:61:0::1;12358:354:1::0;45569:61:0::1;45656:1;45645:8;:12;45637:50;;;;-1:-1:-1::0;;;45637:50:0::1;;;;;;;:::i;:::-;45042:2;45702:8;:19;;45694:59;;;::::0;-1:-1:-1;;;45694:59:0;;16380:2:1;45694:59:0::1;::::0;::::1;16362:21:1::0;16419:2;16399:18;;;16392:30;16458:29;16438:18;;;16431:57;16505:18;;45694:59:0::1;16178:351:1::0;45694:59:0::1;44998:4;45787:22;:12;6112:14:::0;;6020:114;45787:22:::1;45776:33;::::0;:8;:33:::1;:::i;:::-;:46;;45760:107;;;;-1:-1:-1::0;;;45760:107:0::1;;;;;;;:::i;:::-;45895:18;45905:8:::0;44926:17:::1;45895:18;:::i;:::-;45882:9;:31;;45874:67;;;::::0;-1:-1:-1;;;45874:67:0;;10255:2:1;45874:67:0::1;::::0;::::1;10237:21:1::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:1;;;10306:53;10376:18;;45874:67:0::1;10053:347:1::0;45874:67:0::1;45955:9;45950:134;45974:8;45970:1;:12;45950:134;;;45998:24;:12;6231:19:::0;;6249:1;6231:19;;;6142:127;45998:24:::1;46031:45;46041:10;46053:22;:12;6112:14:::0;;6020:114;46053:22:::1;46031:9;:45::i;:::-;45984:3;::::0;::::1;:::i;:::-;;;45950:134;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;45496:593::o;47945:98::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;48019:18:::1;::::0;;-1:-1:-1;;47997:40:0;::::1;48019:18;::::0;;;::::1;;;48018:19;47997:40:::0;;::::1;;::::0;;47945:98::o;34386:185::-;34524:39;34541:4;34547:2;34551:7;34524:39;;;;;;;;;;;;:16;:39::i;48156:110::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;48225:8:::1;:15:::0;;-1:-1:-1;;48225:15:0::1;::::0;::::1;::::0;;48247:13;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;31361:239::-:0;31433:7;31469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31469:16:0;31504:19;31496:73;;;;-1:-1:-1;;;31496:73:0;;13330:2:1;31496:73:0;;;13312:21:1;13369:2;13349:18;;;13342:30;13408:34;13388:18;;;13381:62;-1:-1:-1;;;13459:18:1;;;13452:39;13508:19;;31496:73:0;13128:405:1;46309:891:0;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17154:2:1;2402:63:0;;;17136:21:1;17193:2;17173:18;;;17166:30;17232:33;17212:18;;;17205:61;17283:18;;2402:63:0;16952:355:1;2402:63:0;1812:1;2543:7;:18;46464:21:::1;::::0;::::1;;46456:67;;;::::0;-1:-1:-1;;;46456:67:0;;14875:2:1;46456:67:0::1;::::0;::::1;14857:21:1::0;14914:2;14894:18;;;14887:30;14953:34;14933:18;;;14926:62;-1:-1:-1;;;15004:18:1;;;14997:31;15045:19;;46456:67:0::1;14673:397:1::0;46456:67:0::1;46549:1;46538:8;:12;46530:50;;;;-1:-1:-1::0;;;46530:50:0::1;;;;;;;:::i;:::-;46603:48;46616:10;46628:12;;46642:8;46603:12;:48::i;:::-;46587:100;;;::::0;-1:-1:-1;;;46587:100:0;;15277:2:1;46587:100:0::1;::::0;::::1;15259:21:1::0;15316:2;15296:18;;;15289:30;-1:-1:-1;;;15335:18:1;;;15328:48;15393:18;;46587:100:0::1;15075:342:1::0;46587:100:0::1;46737:10;46721:27;::::0;;;:15:::1;:27;::::0;;;;6112:14;46762:8;;46710:48:::1;::::0;:8;:48:::1;:::i;:::-;:60;;46694:121;;;::::0;-1:-1:-1;;;46694:121:0;;17514:2:1;46694:121:0::1;::::0;::::1;17496:21:1::0;17553:2;17533:18;;;17526:30;17592:29;17572:18;;;17565:57;17639:18;;46694:121:0::1;17312:351:1::0;46694:121:0::1;44998:4;46849:22;:12;6112:14:::0;;6020:114;46849:22:::1;46838:33;::::0;:8;:33:::1;:::i;:::-;:46;;46822:107;;;;-1:-1:-1::0;;;46822:107:0::1;;;;;;;:::i;:::-;46957:19;46968:8:::0;44857:17:::1;46957:19;:::i;:::-;46944:9;:32;;46936:68;;;::::0;-1:-1:-1;;;46936:68:0;;10255:2:1;46936:68:0::1;::::0;::::1;10237:21:1::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:1;;;10306:53;10376:18;;46936:68:0::1;10053:347:1::0;46936:68:0::1;47018:9;47013:182;47037:8;47033:1;:12;47013:182;;;47077:10;47061:27;::::0;;;:15:::1;:27;::::0;;;;6231:19;;6249:1;6231:19;;;47109:24:::1;:12;6231:19:::0;;6249:1;6231:19;;;6142:127;47109:24:::1;47142:45;47152:10;47164:22;:12;6112:14:::0;;6020:114;47142:45:::1;47047:3;::::0;::::1;:::i;:::-;;;47013:182;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;;;46309:891:0:o;31091:208::-;31163:7;-1:-1:-1;;;;;31191:19:0;;31183:74;;;;-1:-1:-1;;;31183:74:0;;12919:2:1;31183:74:0;;;12901:21:1;12958:2;12938:18;;;12931:30;12997:34;12977:18;;;12970:62;-1:-1:-1;;;13048:18:1;;;13041:40;13098:19;;31183:74:0;12717:406:1;31183:74:0;-1:-1:-1;;;;;;31275:16:0;;;;;:9;:16;;;;;;;31091:208::o;11343:103::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;11408:30:::1;11435:1;11408:18;:30::i;:::-;11343:103::o:0;50318:78::-;50357:16;50387:3;50382:8;;;;;:::i;48557:98::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;48625:10:::1;:24:::0;48557:98::o;31836:104::-;31892:13;31925:7;31918:14;;;;;:::i;33519:155::-;33614:52;9496:10;33647:8;33657;33614:18;:52::i;51146:96::-;51190:10;51214:22;:12;6112:14;;6020:114;51214:22;51209:27;;51146:96;:::o;34642:328::-;34817:41;9496:10;34850:7;34817:18;:41::i;:::-;34809:103;;;;-1:-1:-1;;;34809:103:0;;;;;;;:::i;:::-;34923:39;34937:4;34943:2;34947:7;34956:5;34923:13;:39::i;:::-;34642:328;;;;:::o;49613:188::-;49699:18;49760:3;49765:19;:8;:17;:19::i;:::-;49743:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49729:66;;49613:188;;;:::o;47358:373::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47438:1:::1;47427:8;:12;47419:50;;;;-1:-1:-1::0;;;47419:50:0::1;;;;;;;:::i;:::-;44998:4;47503:22;:12;6112:14:::0;;6020:114;47503:22:::1;47492:33;::::0;:8;:33:::1;:::i;:::-;:46;;47476:107;;;;-1:-1:-1::0;;;47476:107:0::1;;;;;;;:::i;:::-;47597:9;47592:134;47616:8;47612:1;:12;47592:134;;;47640:24;:12;6231:19:::0;;6249:1;6231:19;;;6142:127;47640:24:::1;47673:45;47683:10;47695:22;:12;6112:14:::0;;6020:114;47673:45:::1;47626:3;::::0;::::1;:::i;:::-;;;47592:134;;11601:201:::0;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11690:22:0;::::1;11682:73;;;::::0;-1:-1:-1;;;11682:73:0;;9085:2:1;11682:73:0::1;::::0;::::1;9067:21:1::0;9124:2;9104:18;;;9097:30;9163:34;9143:18;;;9136:62;-1:-1:-1;;;9214:18:1;;;9207:36;9260:19;;11682:73:0::1;8883:402:1::0;11682:73:0::1;11766:28;11785:8;11766:18;:28::i;40626:174::-:0;40701:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40701:29:0;-1:-1:-1;;;;;40701:29:0;;;;;;;;:24;;40755:23;40701:24;40755:14;:23::i;:::-;-1:-1:-1;;;;;40746:46:0;;;;;;;;;;;40626:174;;:::o;36774:348::-;36867:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;36884:73;;;;-1:-1:-1;;;36884:73:0;;11722:2:1;36884:73:0;;;11704:21:1;11761:2;11741:18;;;11734:30;11800:34;11780:18;;;11773:62;-1:-1:-1;;;11851:18:1;;;11844:42;11903:19;;36884:73:0;11520:408:1;36884:73:0;36968:13;36984:23;36999:7;36984:14;:23::i;:::-;36968:39;;37037:5;-1:-1:-1;;;;;37026:16:0;:7;-1:-1:-1;;;;;37026:16:0;;:51;;;;37070:7;-1:-1:-1;;;;;37046:31:0;:20;37058:7;37046:11;:20::i;:::-;-1:-1:-1;;;;;37046:31:0;;37026:51;:87;;;-1:-1:-1;;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37081:32;37018:96;36774:348;-1:-1:-1;;;;36774:348:0:o;39883:625::-;40042:4;-1:-1:-1;;;;;40015:31:0;:23;40030:7;40015:14;:23::i;:::-;-1:-1:-1;;;;;40015:31:0;;40007:81;;;;-1:-1:-1;;;40007:81:0;;9492:2:1;40007:81:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:35;9666:19;;40007:81:0;9290:401:1;40007:81:0;-1:-1:-1;;;;;40107:16:0;;40099:65;;;;-1:-1:-1;;;40099:65:0;;10607:2:1;40099:65:0;;;10589:21:1;10646:2;10626:18;;;10619:30;10685:34;10665:18;;;10658:62;-1:-1:-1;;;10736:18:1;;;10729:34;10780:19;;40099:65:0;10405:400:1;40099:65:0;40281:29;40298:1;40302:7;40281:8;:29::i;:::-;-1:-1:-1;;;;;40323:15:0;;;;;;:9;:15;;;;;:20;;40342:1;;40323:15;:20;;40342:1;;40323:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40354:13:0;;;;;;:9;:13;;;;;:18;;40371:1;;40354:13;:18;;40371:1;;40354:18;:::i;:::-;;;;-1:-1:-1;;40383:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40383:21:0;-1:-1:-1;;;;;40383:21:0;;;;;;;;;40422:27;;40383:16;;40422:27;;;;;;;32819:341;32749:411;;:::o;37464:110::-;37540:26;37550:2;37554:7;37540:26;;;;;;;;;;;;:9;:26::i;49173:289::-;49310:7;49331:125;49358:12;;49331:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49379:10:0;;49408:40;;-1:-1:-1;;5737:2:1;5733:15;;;5729:53;49408:40:0;;;5717:66:1;5799:12;;;5792:28;;;49379:10:0;;-1:-1:-1;5836:12:1;;;-1:-1:-1;49408:40:0;;;;;;;;;;;;49398:51;;;;;;49331:18;:125::i;:::-;49326:130;49173:289;-1:-1:-1;;;;;49173:289:0:o;11962:191::-;12055:6;;;-1:-1:-1;;;;;12072:17:0;;;-1:-1:-1;;;;;;12072:17:0;;;;;;;12105:40;;12055:6;;;12072:17;12055:6;;12105:40;;12036:16;;12105:40;12025:128;11962:191;:::o;40942:315::-;41097:8;-1:-1:-1;;;;;41088:17:0;:5;-1:-1:-1;;;;;41088:17:0;;;41080:55;;;;-1:-1:-1;;;41080:55:0;;11012:2:1;41080:55:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:27;11070:18;;;11063:55;11135:18;;41080:55:0;10810:349:1;41080:55:0;-1:-1:-1;;;;;41146:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41146:46:0;;;;;;;;;;41208:41;;8006::1;;;41208::0;;7979:18:1;41208:41:0;;;;;;;40942:315;;;:::o;35852:::-;36009:28;36019:4;36025:2;36029:7;36009:9;:28::i;:::-;36056:48;36079:4;36085:2;36089:7;36098:5;36056:22;:48::i;:::-;36048:111;;;;-1:-1:-1;;;36048:111:0;;;;;;;:::i;6978:723::-;7034:13;7255:10;7251:53;;-1:-1:-1;;7282:10:0;;;;;;;;;;;;-1:-1:-1;;;7282:10:0;;;;;6978:723::o;7251:53::-;7329:5;7314:12;7370:78;7377:9;;7370:78;;7403:8;;;;:::i;:::-;;-1:-1:-1;7426:10:0;;-1:-1:-1;7434:2:0;7426:10;;:::i;:::-;;;7370:78;;;7458:19;7490:6;7480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7480:17:0;;7458:39;;7508:154;7515:10;;7508:154;;7542:11;7552:1;7542:11;;:::i;:::-;;-1:-1:-1;7611:10:0;7619:2;7611:5;:10;:::i;:::-;7598:24;;:2;:24;:::i;:::-;7585:39;;7568:6;7575;7568:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7568:56:0;;;;;;;;-1:-1:-1;7639:11:0;7648:2;7639:11;;:::i;:::-;;;7508:154;;37801:321;37931:18;37937:2;37941:7;37931:5;:18::i;:::-;37982:54;38013:1;38017:2;38021:7;38030:5;37982:22;:54::i;:::-;37960:154;;;;-1:-1:-1;;;37960:154:0;;;;;;;:::i;3682:190::-;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;;3682:190;-1:-1:-1;;;;3682:190:0:o;41822:799::-;41977:4;-1:-1:-1;;;;;41998:13:0;;13688:19;:23;41994:620;;42034:72;;-1:-1:-1;;;42034:72:0;;-1:-1:-1;;;;;42034:36:0;;;;;:72;;9496:10;;42085:4;;42091:7;;42100:5;;42034:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42034:72:0;;;;;;;;-1:-1:-1;;42034:72:0;;;;;;;;;;;;:::i;:::-;;;42030:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42276:13:0;;42272:272;;42319:60;;-1:-1:-1;;;42319:60:0;;;;;;;:::i;42272:272::-;42494:6;42488:13;42479:6;42475:2;42471:15;42464:38;42030:529;-1:-1:-1;;;;;;42157:51:0;-1:-1:-1;;;42157:51:0;;-1:-1:-1;42150:58:0;;41994:620;-1:-1:-1;42598:4:0;41822:799;;;;;;:::o;38458:439::-;-1:-1:-1;;;;;38538:16:0;;38530:61;;;;-1:-1:-1;;;38530:61:0;;13740:2:1;38530:61:0;;;13722:21:1;;;13759:18;;;13752:30;13818:34;13798:18;;;13791:62;13870:18;;38530:61:0;13538:356:1;38530:61:0;36545:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;:30;38602:58;;;;-1:-1:-1;;;38602:58:0;;9898:2:1;38602:58:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976;9956:18;;;9949:58;10024:18;;38602:58:0;9696:352:1;38602:58:0;-1:-1:-1;;;;;38731:13:0;;;;;;:9;:13;;;;;:18;;38748:1;;38731:13;:18;;38748:1;;38731:18;:::i;:::-;;;;-1:-1:-1;;38760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38760:21:0;-1:-1:-1;;;;;38760:21:0;;;;;;;;38799:33;;38760:16;;;38799:33;;38760:16;;38799:33;48376:13:::1;48313:82:::0;:::o;4234:675::-;4317:7;4360:4;4317:7;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4611:57;;4479:382;;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4788:57;;4479:382;-1:-1:-1;4413:3:0;;;;:::i;:::-;;;;4375:497;;;-1:-1:-1;4889:12:0;4234:675;-1:-1:-1;;;4234:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:757::-;3003:6;3011;3019;3027;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3136:9;3123:23;3165:18;3206:2;3198:6;3195:14;3192:34;;;3222:1;3219;3212:12;3192:34;3260:6;3249:9;3245:22;3235:32;;3305:7;3298:4;3294:2;3290:13;3286:27;3276:55;;3327:1;3324;3317:12;3276:55;3367:2;3354:16;3393:2;3385:6;3382:14;3379:34;;;3409:1;3406;3399:12;3379:34;3464:7;3457:4;3447:6;3444:1;3440:14;3436:2;3432:23;3428:34;3425:47;3422:67;;;3485:1;3482;3475:12;3422:67;3516:4;3508:13;;;;3540:6;;-1:-1:-1;3578:20:1;;;3565:34;;3646:2;3631:18;3618:32;;-1:-1:-1;2899:757:1;;-1:-1:-1;;;;2899:757:1:o;3661:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;-1:-1:-1;3812:23:1;;3661:180;-1:-1:-1;3661:180:1:o;3846:245::-;3904:6;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;4012:9;3999:23;4031:30;4055:5;4031:30;:::i;4096:249::-;4165:6;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4266:9;4260:16;4285:30;4309:5;4285:30;:::i;4350:450::-;4419:6;4472:2;4460:9;4451:7;4447:23;4443:32;4440:52;;;4488:1;4485;4478:12;4440:52;4528:9;4515:23;4561:18;4553:6;4550:30;4547:50;;;4593:1;4590;4583:12;4547:50;4616:22;;4669:4;4661:13;;4657:27;-1:-1:-1;4647:55:1;;4698:1;4695;4688:12;4647:55;4721:73;4786:7;4781:2;4768:16;4763:2;4759;4755:11;4721:73;:::i;4990:257::-;5031:3;5069:5;5063:12;5096:6;5091:3;5084:19;5112:63;5168:6;5161:4;5156:3;5152:14;5145:4;5138:5;5134:16;5112:63;:::i;:::-;5229:2;5208:15;-1:-1:-1;;5204:29:1;5195:39;;;;5236:4;5191:50;;4990:257;-1:-1:-1;;4990:257:1:o;5252:185::-;5294:3;5332:5;5326:12;5347:52;5392:6;5387:3;5380:4;5373:5;5369:16;5347:52;:::i;:::-;5415:16;;;;;5252:185;-1:-1:-1;;5252:185:1:o;5859:1301::-;6136:3;6165:1;6198:6;6192:13;6228:3;6250:1;6278:9;6274:2;6270:18;6260:28;;6338:2;6327:9;6323:18;6360;6350:61;;6404:4;6396:6;6392:17;6382:27;;6350:61;6430:2;6478;6470:6;6467:14;6447:18;6444:38;6441:165;;;-1:-1:-1;;;6505:33:1;;6561:4;6558:1;6551:15;6591:4;6512:3;6579:17;6441:165;6622:18;6649:104;;;;6767:1;6762:320;;;;6615:467;;6649:104;-1:-1:-1;;6682:24:1;;6670:37;;6727:16;;;;-1:-1:-1;6649:104:1;;6762:320;17923:1;17916:14;;;17960:4;17947:18;;6857:1;6871:165;6885:6;6882:1;6879:13;6871:165;;;6963:14;;6950:11;;;6943:35;7006:16;;;;6900:10;;6871:165;;;6875:3;;7065:6;7060:3;7056:16;7049:23;;6615:467;;;;;;;7098:56;7123:30;7149:3;7141:6;7123:30;:::i;:::-;-1:-1:-1;;;5502:20:1;;5547:1;5538:11;;5442:113;7373:488;-1:-1:-1;;;;;7642:15:1;;;7624:34;;7694:15;;7689:2;7674:18;;7667:43;7741:2;7726:18;;7719:34;;;7789:3;7784:2;7769:18;;7762:31;;;7567:4;;7810:45;;7835:19;;7827:6;7810:45;:::i;:::-;7802:53;7373:488;-1:-1:-1;;;;;;7373:488:1:o;8240:219::-;8389:2;8378:9;8371:21;8352:4;8409:44;8449:2;8438:9;8434:18;8426:6;8409:44;:::i;8464:414::-;8666:2;8648:21;;;8705:2;8685:18;;;8678:30;8744:34;8739:2;8724:18;;8717:62;-1:-1:-1;;;8810:2:1;8795:18;;8788:48;8868:3;8853:19;;8464:414::o;11164:351::-;11366:2;11348:21;;;11405:2;11385:18;;;11378:30;11444:29;11439:2;11424:18;;11417:57;11506:2;11491:18;;11164:351::o;14312:356::-;14514:2;14496:21;;;14533:18;;;14526:30;14592:34;14587:2;14572:18;;14565:62;14659:2;14644:18;;14312:356::o;15824:349::-;16026:2;16008:21;;;16065:2;16045:18;;;16038:30;16104:27;16099:2;16084:18;;16077:55;16164:2;16149:18;;15824:349::o;16534:413::-;16736:2;16718:21;;;16775:2;16755:18;;;16748:30;16814:34;16809:2;16794:18;;16787:62;-1:-1:-1;;;16880:2:1;16865:18;;16858:47;16937:3;16922:19;;16534:413::o;17976:128::-;18016:3;18047:1;18043:6;18040:1;18037:13;18034:39;;;18053:18;;:::i;:::-;-1:-1:-1;18089:9:1;;17976:128::o;18109:120::-;18149:1;18175;18165:35;;18180:18;;:::i;:::-;-1:-1:-1;18214:9:1;;18109:120::o;18234:168::-;18274:7;18340:1;18336;18332:6;18328:14;18325:1;18322:21;18317:1;18310:9;18303:17;18299:45;18296:71;;;18347:18;;:::i;:::-;-1:-1:-1;18387:9:1;;18234:168::o;18407:125::-;18447:4;18475:1;18472;18469:8;18466:34;;;18480:18;;:::i;:::-;-1:-1:-1;18517:9:1;;18407:125::o;18537:258::-;18609:1;18619:113;18633:6;18630:1;18627:13;18619:113;;;18709:11;;;18703:18;18690:11;;;18683:39;18655:2;18648:10;18619:113;;;18750:6;18747:1;18744:13;18741:48;;;-1:-1:-1;;18785:1:1;18767:16;;18760:27;18537:258::o;18800:380::-;18879:1;18875:12;;;;18922;;;18943:61;;18997:4;18989:6;18985:17;18975:27;;18943:61;19050:2;19042:6;19039:14;19019:18;19016:38;19013:161;;;19096:10;19091:3;19087:20;19084:1;19077:31;19131:4;19128:1;19121:15;19159:4;19156:1;19149:15;19013:161;;18800:380;;;:::o;19185:135::-;19224:3;-1:-1:-1;;19245:17:1;;19242:43;;;19265:18;;:::i;:::-;-1:-1:-1;19312:1:1;19301:13;;19185:135::o;19325:112::-;19357:1;19383;19373:35;;19388:18;;:::i;:::-;-1:-1:-1;19422:9:1;;19325:112::o;19442:127::-;19503:10;19498:3;19494:20;19491:1;19484:31;19534:4;19531:1;19524:15;19558:4;19555:1;19548:15;19574:127;19635:10;19630:3;19626:20;19623:1;19616:31;19666:4;19663:1;19656:15;19690:4;19687:1;19680:15;19706:127;19767:10;19762:3;19758:20;19755:1;19748:31;19798:4;19795:1;19788:15;19822:4;19819:1;19812:15;19838:127;19899:10;19894:3;19890:20;19887:1;19880:31;19930:4;19927:1;19920:15;19954:4;19951:1;19944:15;19970:131;-1:-1:-1;;;;;;20044:32:1;;20034:43;;20024:71;;20091:1;20088;20081:12

Swarm Source

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