ETH Price: $2,848.39 (+3.75%)
 

Overview

Max Total Supply

28 ELEMENTS

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ELEMENTS
0x67348FAA08C2aA475bf61C0717739654879636cD
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:
Elementals

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-09-08
*/

/*

Developed by https://twitter.com/ViperwareLabs

*/

// 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/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/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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// 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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;



contract Elementals is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public constant MINT_PRICE = 0.005 ether;
	uint public constant MAX_NFT_PER_TRAN = 4;
    uint public constant MAX_PER_WALLET = 20;
    uint public MAX_FREE_MINT = 0;
	uint public maxSupply = 444;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;
    bool public isMetadataFinal;
    string private _baseURL = "ipfs://bafybeigq27d5ll6eipymjlsoqlsadsopd7zpoojke3snd3j53adi5c4chm/";
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

    // Name
	constructor()
	ERC721A('Elementals', 'ELEMENTS') {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setRoot(bytes32 _root) external onlyOwner {
		root = _root;
	}

	function setPublicState(bool value) external onlyOwner {
		isPublicMint = value;
	}

    function setWhitelistState(bool value) external onlyOwner {
		isWhitelistMint = value;
	}

    /*
    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable1 = balance * 50 / 100;
        payable(_wallet1).transfer(_payable1);

        address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable2 = balance * 25 / 100;
        payable(_wallet2).transfer(_payable2);

        address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable3 = balance * 25 / 100;
        payable(_wallet3).transfer(_payable3);
    }*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

    function setNumFreeMints(uint newFreeMints) external onlyOwner {
		MAX_FREE_MINT = newFreeMints;
	}

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

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

	function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function WHITELIST_MINT(bytes32[] memory proof, uint count) external payable {
		require(isWhitelistMint, "Whitelist mint has not started");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');

		require(
			msg.value >= count * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
    
    function PUBLIC_MINT(uint count) external payable {
		require(isPublicMint, "Public mint has not started");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');

		require(
			msg.value >= count * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"PUBLIC_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"WHITELIST_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600a556101bc600b55600c805461ffff1916905561010060405260436080818152906200254660a03980516200004091600d9160209091019062000143565b506040805160208101918290526000908190526200006191600e9162000143565b503480156200006f57600080fd5b50604080518082018252600a815269456c656d656e74616c7360b01b602080830191825283518085019094526008845267454c454d454e545360c01b908401528151919291620000c29160029162000143565b508051620000d890600390602084019062000143565b5050600160005550620000eb33620000f1565b62000226565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620001e9565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b600181811c90821680620001fe57607f821691505b602082108114156200022057634e487b7160e01b600052602260045260246000fd5b50919050565b61231080620002366000396000f3fe6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d48514610669578063e985e9c51461068a578063ebf0c717146106d3578063f2fde38b146106e9578063f4a560a514610709578063fddcb5ea1461071e57600080fd5b8063c87b56dd146105e9578063d5abeb0114610609578063d82104821461061f578063dab5f34014610634578063e193e7e21461065457600080fd5b8063b88d4fde116100fd578063b88d4fde1461054f578063b8a20ed01461056f578063c002d23d1461058f578063c48156af146105aa578063c754da33146105ca57600080fd5b806380623444146104bc5780638ba4cc3c146104dc5780638da5cb5b146104fc57806395d89b411461051a578063a22cb4651461052f57600080fd5b80633057931f116101c75780634c2612471161018b5780634c261247146104345780636352211e14610454578063681b498d1461047457806370a0823114610487578063715018a6146104a757600080fd5b80633057931f146103bc578063352343ec146103d65780633ccfd60b146103e957806341cda203146103fe57806342842e0e1461041457600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f23565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a6565b604051610277919061204d565b3480156102ae57600080fd5b506102c26102bd366004611f0a565b610838565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611e81565b61087c565b005b34801561030857600080fd5b506102fa610317366004611f0a565b610903565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351601481565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611eef565b61093b565b3480156103a857600080fd5b506102fa6103b7366004611da0565b61097f565b3480156103c857600080fd5b50600c5461026b9060ff1681565b6102fa6103e4366004611eab565b61098a565b3480156103f557600080fd5b506102fa610b8e565b34801561040a57600080fd5b50610351600a5481565b34801561042057600080fd5b506102fa61042f366004611da0565b610be7565b34801561044057600080fd5b506102fa61044f366004611f5d565b610c02565b34801561046057600080fd5b506102c261046f366004611f0a565b610c90565b6102fa610482366004611f0a565b610ca2565b34801561049357600080fd5b506103516104a2366004611d52565b610e15565b3480156104b357600080fd5b506102fa610e63565b3480156104c857600080fd5b506102fa6104d7366004611f0a565b610e99565b3480156104e857600080fd5b506102fa6104f7366004611e81565b610ec8565b34801561050857600080fd5b506008546001600160a01b03166102c2565b34801561052657600080fd5b50610295610f35565b34801561053b57600080fd5b506102fa61054a366004611e57565b610f44565b34801561055b57600080fd5b506102fa61056a366004611ddc565b610fda565b34801561057b57600080fd5b5061026b61058a366004611eab565b611024565b34801561059b57600080fd5b506103516611c37937e0800081565b3480156105b657600080fd5b506102fa6105c5366004611eef565b61103a565b3480156105d657600080fd5b50600c5461026b90610100900460ff1681565b3480156105f557600080fd5b50610295610604366004611f0a565b611077565b34801561061557600080fd5b50610351600b5481565b34801561062b57600080fd5b506102956111bd565b34801561064057600080fd5b506102fa61064f366004611f0a565b61124b565b34801561066057600080fd5b50610351600481565b34801561067557600080fd5b50604080516020810190915260008152610295565b34801561069657600080fd5b5061026b6106a5366004611d6d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106df57600080fd5b5061035160095481565b3480156106f557600080fd5b506102fa610704366004611d52565b61127a565b34801561071557600080fd5b506102fa611312565b34801561072a57600080fd5b50610351610739366004611d52565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107b590612202565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190612202565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b60006108438261134f565b610860576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088782610c90565b9050806001600160a01b0316836001600160a01b031614156108bc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108f3576108d681336106a5565b6108f3576040516367d9dca160e11b815260040160405180910390fd5b6108fe838383611388565b505050565b6008546001600160a01b031633146109365760405162461bcd60e51b815260040161092d9061210f565b60405180910390fd5b600a55565b6008546001600160a01b031633146109655760405162461bcd60e51b815260040161092d9061210f565b600c80549115156101000261ff0019909216919091179055565b6108fe8383836113e4565b600c54610100900460ff166109e15760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161092d565b6040516bffffffffffffffffffffffff193360601b166020820152610a2090839060340160405160208183030381529060405280519060200120611024565b610a6c5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161092d565b600b5481610a7d6000546000190190565b610a879190612174565b1115610aa55760405162461bcd60e51b815260040161092d906120a1565b336000908152600f6020526040902054601490610ac3908390612174565b1115610b0a5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161092d565b6004811115610b2b5760405162461bcd60e51b815260040161092d90612060565b610b3c6611c37937e08000826121a0565b341015610b5b5760405162461bcd60e51b815260040161092d906120cd565b336000908152600f602052604081208054839290610b7a908490612174565b90915550610b8a905033826115d1565b5050565b6008546001600160a01b03163314610bb85760405162461bcd60e51b815260040161092d9061210f565b6040514790339082156108fc029083906000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b6108fe83838360405180602001604052806000815250610fda565b6008546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161092d9061210f565b600c5462010000900460ff1615610c7d5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161092d565b8051610b8a90600d906020840190611bb1565b6000610c9b826115eb565b5192915050565b600c5460ff16610cf45760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161092d565b600b5481610d056000546000190190565b610d0f9190612174565b1115610d2d5760405162461bcd60e51b815260040161092d906120a1565b336000908152600f6020526040902054601490610d4b908390612174565b1115610d925760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161092d565b6004811115610db35760405162461bcd60e51b815260040161092d90612060565b610dc46611c37937e08000826121a0565b341015610de35760405162461bcd60e51b815260040161092d906120cd565b336000908152600f602052604081208054839290610e02908490612174565b90915550610e12905033826115d1565b50565b60006001600160a01b038216610e3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e8d5760405162461bcd60e51b815260040161092d9061210f565b610e97600061170d565b565b6008546001600160a01b03163314610ec35760405162461bcd60e51b815260040161092d9061210f565b600b55565b6008546001600160a01b03163314610ef25760405162461bcd60e51b815260040161092d9061210f565b600b5481610f036000546000190190565b610f0d9190612174565b1115610f2b5760405162461bcd60e51b815260040161092d906120a1565b610b8a82826115d1565b6060600380546107b590612202565b6001600160a01b038216331415610f6e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe58484846113e4565b6001600160a01b0383163b1561101e576110018484848461175f565b61101e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006110338360095484611857565b9392505050565b6008546001600160a01b031633146110645760405162461bcd60e51b815260040161092d9061210f565b600c805460ff1916911515919091179055565b60606110828261134f565b6110e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092d565b60006110f061186d565b511161118657600e805461110390612202565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90612202565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b50505050506107a0565b61118e61186d565b6111978361187c565b6040516020016111a8929190611fd1565b60405160208183030381529060405292915050565b600e80546111ca90612202565b80601f01602080910402602001604051908101604052809291908181526020018280546111f690612202565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b505050505081565b6008546001600160a01b031633146112755760405162461bcd60e51b815260040161092d9061210f565b600955565b6008546001600160a01b031633146112a45760405162461bcd60e51b815260040161092d9061210f565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092d565b610e128161170d565b6008546001600160a01b0316331461133c5760405162461bcd60e51b815260040161092d9061210f565b600c805462ff0000191662010000179055565b600081600111158015611363575060005482105b80156107a0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113ef826115eb565b9050836001600160a01b031681600001516001600160a01b0316146114265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611444575061144485336106a5565b8061145f57503361145484610838565b6001600160a01b0316145b90508061147f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114a657604051633a954ecd60e21b815260040160405180910390fd5b6114b260008487611388565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661158657600054821461158657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610b8a828260405180602001604052806000815250611979565b604080516060810182526000808252602082018190529181019190915281806001116116f4576000548110156116f457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116f25780516001600160a01b031615611689579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116ed579392505050565b611689565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611794903390899088908890600401612010565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117de575060408051601f3d908101601f191682019092526117db91810190611f40565b60015b611839573d80801561180c576040519150601f19603f3d011682016040523d82523d6000602084013e611811565b606091505b508051611831576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118648584611b3d565b14949350505050565b6060600d80546107b590612202565b6060816118a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ca57806118b48161223d565b91506118c39050600a8361218c565b91506118a4565b6000816001600160401b038111156118e4576118e46122ae565b6040519080825280601f01601f19166020018201604052801561190e576020820181803683370190505b5090505b841561184f576119236001836121bf565b9150611930600a86612258565b61193b906030612174565b60f81b81838151811061195057611950612298565b60200101906001600160f81b031916908160001a905350611972600a8661218c565b9450611912565b6000546001600160a01b0384166119a257604051622e076360e81b815260040160405180910390fd5b826119c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ae8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ab1600087848060010195508761175f565b611ace576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a66578260005414611ae357600080fd5b611b2d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ae9575b50600090815561101e9085838684565b600081815b8451811015611ba9576000858281518110611b5f57611b5f612298565b60200260200101519050808311611b855760008381526020829052604090209250611b96565b600081815260208490526040902092505b5080611ba18161223d565b915050611b42565b509392505050565b828054611bbd90612202565b90600052602060002090601f016020900481019282611bdf5760008555611c25565b82601f10611bf857805160ff1916838001178555611c25565b82800160010185558215611c25579182015b82811115611c25578251825591602001919060010190611c0a565b50611c31929150611c35565b5090565b5b80821115611c315760008155600101611c36565b60006001600160401b03831115611c6357611c636122ae565b611c76601f8401601f1916602001612144565b9050828152838383011115611c8a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cb857600080fd5b919050565b600082601f830112611cce57600080fd5b813560206001600160401b03821115611ce957611ce96122ae565b8160051b611cf8828201612144565b838152828101908684018388018501891015611d1357600080fd5b600093505b85841015611d36578035835260019390930192918401918401611d18565b50979650505050505050565b80358015158114611cb857600080fd5b600060208284031215611d6457600080fd5b61103382611ca1565b60008060408385031215611d8057600080fd5b611d8983611ca1565b9150611d9760208401611ca1565b90509250929050565b600080600060608486031215611db557600080fd5b611dbe84611ca1565b9250611dcc60208501611ca1565b9150604084013590509250925092565b60008060008060808587031215611df257600080fd5b611dfb85611ca1565b9350611e0960208601611ca1565b92506040850135915060608501356001600160401b03811115611e2b57600080fd5b8501601f81018713611e3c57600080fd5b611e4b87823560208401611c4a565b91505092959194509250565b60008060408385031215611e6a57600080fd5b611e7383611ca1565b9150611d9760208401611d42565b60008060408385031215611e9457600080fd5b611e9d83611ca1565b946020939093013593505050565b60008060408385031215611ebe57600080fd5b82356001600160401b03811115611ed457600080fd5b611ee085828601611cbd565b95602094909401359450505050565b600060208284031215611f0157600080fd5b61103382611d42565b600060208284031215611f1c57600080fd5b5035919050565b600060208284031215611f3557600080fd5b8135611033816122c4565b600060208284031215611f5257600080fd5b8151611033816122c4565b600060208284031215611f6f57600080fd5b81356001600160401b03811115611f8557600080fd5b8201601f81018413611f9657600080fd5b61184f84823560208401611c4a565b60008151808452611fbd8160208601602086016121d6565b601f01601f19169290920160200192915050565b60008351611fe38184602088016121d6565b835190830190611ff78183602088016121d6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204390830184611fa5565b9695505050505050565b6020815260006110336020830184611fa5565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561216c5761216c6122ae565b604052919050565b600082198211156121875761218761226c565b500190565b60008261219b5761219b612282565b500490565b60008160001904831182151516156121ba576121ba61226c565b500290565b6000828210156121d1576121d161226c565b500390565b60005b838110156121f15781810151838201526020016121d9565b8381111561101e5750506000910152565b600181811c9082168061221657607f821691505b6020821081141561223757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122515761225161226c565b5060010190565b60008261226757612267612282565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e1257600080fdfea26469706673582212203dafce944eb4b0414370170656a5276bfd63f6263c003a78850029ade505b79864736f6c63430008070033697066733a2f2f626166796265696771323764356c6c36656970796d6a6c736f716c736164736f7064377a706f6f6a6b6533736e64336a353361646935633463686d2f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d48514610669578063e985e9c51461068a578063ebf0c717146106d3578063f2fde38b146106e9578063f4a560a514610709578063fddcb5ea1461071e57600080fd5b8063c87b56dd146105e9578063d5abeb0114610609578063d82104821461061f578063dab5f34014610634578063e193e7e21461065457600080fd5b8063b88d4fde116100fd578063b88d4fde1461054f578063b8a20ed01461056f578063c002d23d1461058f578063c48156af146105aa578063c754da33146105ca57600080fd5b806380623444146104bc5780638ba4cc3c146104dc5780638da5cb5b146104fc57806395d89b411461051a578063a22cb4651461052f57600080fd5b80633057931f116101c75780634c2612471161018b5780634c261247146104345780636352211e14610454578063681b498d1461047457806370a0823114610487578063715018a6146104a757600080fd5b80633057931f146103bc578063352343ec146103d65780633ccfd60b146103e957806341cda203146103fe57806342842e0e1461041457600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f23565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a6565b604051610277919061204d565b3480156102ae57600080fd5b506102c26102bd366004611f0a565b610838565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611e81565b61087c565b005b34801561030857600080fd5b506102fa610317366004611f0a565b610903565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351601481565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611eef565b61093b565b3480156103a857600080fd5b506102fa6103b7366004611da0565b61097f565b3480156103c857600080fd5b50600c5461026b9060ff1681565b6102fa6103e4366004611eab565b61098a565b3480156103f557600080fd5b506102fa610b8e565b34801561040a57600080fd5b50610351600a5481565b34801561042057600080fd5b506102fa61042f366004611da0565b610be7565b34801561044057600080fd5b506102fa61044f366004611f5d565b610c02565b34801561046057600080fd5b506102c261046f366004611f0a565b610c90565b6102fa610482366004611f0a565b610ca2565b34801561049357600080fd5b506103516104a2366004611d52565b610e15565b3480156104b357600080fd5b506102fa610e63565b3480156104c857600080fd5b506102fa6104d7366004611f0a565b610e99565b3480156104e857600080fd5b506102fa6104f7366004611e81565b610ec8565b34801561050857600080fd5b506008546001600160a01b03166102c2565b34801561052657600080fd5b50610295610f35565b34801561053b57600080fd5b506102fa61054a366004611e57565b610f44565b34801561055b57600080fd5b506102fa61056a366004611ddc565b610fda565b34801561057b57600080fd5b5061026b61058a366004611eab565b611024565b34801561059b57600080fd5b506103516611c37937e0800081565b3480156105b657600080fd5b506102fa6105c5366004611eef565b61103a565b3480156105d657600080fd5b50600c5461026b90610100900460ff1681565b3480156105f557600080fd5b50610295610604366004611f0a565b611077565b34801561061557600080fd5b50610351600b5481565b34801561062b57600080fd5b506102956111bd565b34801561064057600080fd5b506102fa61064f366004611f0a565b61124b565b34801561066057600080fd5b50610351600481565b34801561067557600080fd5b50604080516020810190915260008152610295565b34801561069657600080fd5b5061026b6106a5366004611d6d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106df57600080fd5b5061035160095481565b3480156106f557600080fd5b506102fa610704366004611d52565b61127a565b34801561071557600080fd5b506102fa611312565b34801561072a57600080fd5b50610351610739366004611d52565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107b590612202565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190612202565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b60006108438261134f565b610860576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088782610c90565b9050806001600160a01b0316836001600160a01b031614156108bc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108f3576108d681336106a5565b6108f3576040516367d9dca160e11b815260040160405180910390fd5b6108fe838383611388565b505050565b6008546001600160a01b031633146109365760405162461bcd60e51b815260040161092d9061210f565b60405180910390fd5b600a55565b6008546001600160a01b031633146109655760405162461bcd60e51b815260040161092d9061210f565b600c80549115156101000261ff0019909216919091179055565b6108fe8383836113e4565b600c54610100900460ff166109e15760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161092d565b6040516bffffffffffffffffffffffff193360601b166020820152610a2090839060340160405160208183030381529060405280519060200120611024565b610a6c5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161092d565b600b5481610a7d6000546000190190565b610a879190612174565b1115610aa55760405162461bcd60e51b815260040161092d906120a1565b336000908152600f6020526040902054601490610ac3908390612174565b1115610b0a5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161092d565b6004811115610b2b5760405162461bcd60e51b815260040161092d90612060565b610b3c6611c37937e08000826121a0565b341015610b5b5760405162461bcd60e51b815260040161092d906120cd565b336000908152600f602052604081208054839290610b7a908490612174565b90915550610b8a905033826115d1565b5050565b6008546001600160a01b03163314610bb85760405162461bcd60e51b815260040161092d9061210f565b6040514790339082156108fc029083906000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b6108fe83838360405180602001604052806000815250610fda565b6008546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161092d9061210f565b600c5462010000900460ff1615610c7d5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161092d565b8051610b8a90600d906020840190611bb1565b6000610c9b826115eb565b5192915050565b600c5460ff16610cf45760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161092d565b600b5481610d056000546000190190565b610d0f9190612174565b1115610d2d5760405162461bcd60e51b815260040161092d906120a1565b336000908152600f6020526040902054601490610d4b908390612174565b1115610d925760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161092d565b6004811115610db35760405162461bcd60e51b815260040161092d90612060565b610dc46611c37937e08000826121a0565b341015610de35760405162461bcd60e51b815260040161092d906120cd565b336000908152600f602052604081208054839290610e02908490612174565b90915550610e12905033826115d1565b50565b60006001600160a01b038216610e3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e8d5760405162461bcd60e51b815260040161092d9061210f565b610e97600061170d565b565b6008546001600160a01b03163314610ec35760405162461bcd60e51b815260040161092d9061210f565b600b55565b6008546001600160a01b03163314610ef25760405162461bcd60e51b815260040161092d9061210f565b600b5481610f036000546000190190565b610f0d9190612174565b1115610f2b5760405162461bcd60e51b815260040161092d906120a1565b610b8a82826115d1565b6060600380546107b590612202565b6001600160a01b038216331415610f6e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe58484846113e4565b6001600160a01b0383163b1561101e576110018484848461175f565b61101e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006110338360095484611857565b9392505050565b6008546001600160a01b031633146110645760405162461bcd60e51b815260040161092d9061210f565b600c805460ff1916911515919091179055565b60606110828261134f565b6110e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092d565b60006110f061186d565b511161118657600e805461110390612202565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90612202565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b50505050506107a0565b61118e61186d565b6111978361187c565b6040516020016111a8929190611fd1565b60405160208183030381529060405292915050565b600e80546111ca90612202565b80601f01602080910402602001604051908101604052809291908181526020018280546111f690612202565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b505050505081565b6008546001600160a01b031633146112755760405162461bcd60e51b815260040161092d9061210f565b600955565b6008546001600160a01b031633146112a45760405162461bcd60e51b815260040161092d9061210f565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092d565b610e128161170d565b6008546001600160a01b0316331461133c5760405162461bcd60e51b815260040161092d9061210f565b600c805462ff0000191662010000179055565b600081600111158015611363575060005482105b80156107a0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113ef826115eb565b9050836001600160a01b031681600001516001600160a01b0316146114265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611444575061144485336106a5565b8061145f57503361145484610838565b6001600160a01b0316145b90508061147f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114a657604051633a954ecd60e21b815260040160405180910390fd5b6114b260008487611388565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661158657600054821461158657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610b8a828260405180602001604052806000815250611979565b604080516060810182526000808252602082018190529181019190915281806001116116f4576000548110156116f457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116f25780516001600160a01b031615611689579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116ed579392505050565b611689565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611794903390899088908890600401612010565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117de575060408051601f3d908101601f191682019092526117db91810190611f40565b60015b611839573d80801561180c576040519150601f19603f3d011682016040523d82523d6000602084013e611811565b606091505b508051611831576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118648584611b3d565b14949350505050565b6060600d80546107b590612202565b6060816118a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ca57806118b48161223d565b91506118c39050600a8361218c565b91506118a4565b6000816001600160401b038111156118e4576118e46122ae565b6040519080825280601f01601f19166020018201604052801561190e576020820181803683370190505b5090505b841561184f576119236001836121bf565b9150611930600a86612258565b61193b906030612174565b60f81b81838151811061195057611950612298565b60200101906001600160f81b031916908160001a905350611972600a8661218c565b9450611912565b6000546001600160a01b0384166119a257604051622e076360e81b815260040160405180910390fd5b826119c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ae8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ab1600087848060010195508761175f565b611ace576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a66578260005414611ae357600080fd5b611b2d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ae9575b50600090815561101e9085838684565b600081815b8451811015611ba9576000858281518110611b5f57611b5f612298565b60200260200101519050808311611b855760008381526020829052604090209250611b96565b600081815260208490526040902092505b5080611ba18161223d565b915050611b42565b509392505050565b828054611bbd90612202565b90600052602060002090601f016020900481019282611bdf5760008555611c25565b82601f10611bf857805160ff1916838001178555611c25565b82800160010185558215611c25579182015b82811115611c25578251825591602001919060010190611c0a565b50611c31929150611c35565b5090565b5b80821115611c315760008155600101611c36565b60006001600160401b03831115611c6357611c636122ae565b611c76601f8401601f1916602001612144565b9050828152838383011115611c8a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cb857600080fd5b919050565b600082601f830112611cce57600080fd5b813560206001600160401b03821115611ce957611ce96122ae565b8160051b611cf8828201612144565b838152828101908684018388018501891015611d1357600080fd5b600093505b85841015611d36578035835260019390930192918401918401611d18565b50979650505050505050565b80358015158114611cb857600080fd5b600060208284031215611d6457600080fd5b61103382611ca1565b60008060408385031215611d8057600080fd5b611d8983611ca1565b9150611d9760208401611ca1565b90509250929050565b600080600060608486031215611db557600080fd5b611dbe84611ca1565b9250611dcc60208501611ca1565b9150604084013590509250925092565b60008060008060808587031215611df257600080fd5b611dfb85611ca1565b9350611e0960208601611ca1565b92506040850135915060608501356001600160401b03811115611e2b57600080fd5b8501601f81018713611e3c57600080fd5b611e4b87823560208401611c4a565b91505092959194509250565b60008060408385031215611e6a57600080fd5b611e7383611ca1565b9150611d9760208401611d42565b60008060408385031215611e9457600080fd5b611e9d83611ca1565b946020939093013593505050565b60008060408385031215611ebe57600080fd5b82356001600160401b03811115611ed457600080fd5b611ee085828601611cbd565b95602094909401359450505050565b600060208284031215611f0157600080fd5b61103382611d42565b600060208284031215611f1c57600080fd5b5035919050565b600060208284031215611f3557600080fd5b8135611033816122c4565b600060208284031215611f5257600080fd5b8151611033816122c4565b600060208284031215611f6f57600080fd5b81356001600160401b03811115611f8557600080fd5b8201601f81018413611f9657600080fd5b61184f84823560208401611c4a565b60008151808452611fbd8160208601602086016121d6565b601f01601f19169290920160200192915050565b60008351611fe38184602088016121d6565b835190830190611ff78183602088016121d6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204390830184611fa5565b9695505050505050565b6020815260006110336020830184611fa5565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561216c5761216c6122ae565b604052919050565b600082198211156121875761218761226c565b500190565b60008261219b5761219b612282565b500490565b60008160001904831182151516156121ba576121ba61226c565b500290565b6000828210156121d1576121d161226c565b500390565b60005b838110156121f15781810151838201526020016121d9565b8381111561101e5750506000910152565b600181811c9082168061221657607f821691505b6020821081141561223757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122515761225161226c565b5060010190565b60008261226757612267612282565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e1257600080fdfea26469706673582212203dafce944eb4b0414370170656a5276bfd63f6263c003a78850029ade505b79864736f6c63430008070033

Deployed Bytecode Sourcemap

49774:4491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:305;;;;;;;;;;-1:-1:-1;28395:305:0;;;;;:::i;:::-;;:::i;:::-;;;7834:14:1;;7827:22;7809:41;;7797:2;7782:18;28395:305:0;;;;;;;;31510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33014:204::-;;;;;;;;;;-1:-1:-1;33014:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7132:32:1;;;7114:51;;7102:2;7087:18;33014:204:0;6968:203:1;32576:372:0;;;;;;;;;;-1:-1:-1;32576:372:0;;;;;:::i;:::-;;:::i;:::-;;52436:101;;;;;;;;;;-1:-1:-1;52436:101:0;;;;;:::i;:::-;;:::i;50163:27::-;;;;;;;;;;-1:-1:-1;50163:27:0;;;;;;;;;;;49969:40;;;;;;;;;;;;50007:2;49969:40;;;;;8007:25:1;;;7995:2;7980:18;49969:40:0;7861:177:1;27635:312:0;;;;;;;;;;-1:-1:-1;50636:1:0;27898:12;27688:7;27882:13;:28;-1:-1:-1;;27882:46:0;27635:312;;51268:91;;;;;;;;;;-1:-1:-1;51268:91:0;;;;;:::i;:::-;;:::i;33879:170::-;;;;;;;;;;-1:-1:-1;33879:170:0;;;;;:::i;:::-;;:::i;50082:32::-;;;;;;;;;;-1:-1:-1;50082:32:0;;;;;;;;53041:674;;;;;;:::i;:::-;;:::i;52007:143::-;;;;;;;;;;;;;:::i;50016:29::-;;;;;;;;;;;;;;;;34120:185;;;;;;;;;;-1:-1:-1;34120:185:0;;;;;:::i;:::-;;:::i;50826:139::-;;;;;;;;;;-1:-1:-1;50826:139:0;;;;;:::i;:::-;;:::i;31318:125::-;;;;;;;;;;-1:-1:-1;31318:125:0;;;;;:::i;:::-;;:::i;53727:535::-;;;;;;:::i;:::-;;:::i;28764:206::-;;;;;;;;;;-1:-1:-1;28764:206:0;;;;;:::i;:::-;;:::i;48922:103::-;;;;;;;;;;;;;:::i;52334:94::-;;;;;;;;;;-1:-1:-1;52334:94:0;;;;;:::i;:::-;;:::i;52155:174::-;;;;;;;;;;-1:-1:-1;52155:174:0;;;;;:::i;:::-;;:::i;48271:87::-;;;;;;;;;;-1:-1:-1;48344:6:0;;-1:-1:-1;;;;;48344:6:0;48271:87;;31679:104;;;;;;;;;;;;;:::i;33290:287::-;;;;;;;;;;-1:-1:-1;33290:287:0;;;;;:::i;:::-;;:::i;34376:370::-;;;;;;;;;;-1:-1:-1;34376:370:0;;;;;:::i;:::-;;:::i;52888:145::-;;;;;;;;;;-1:-1:-1;52888:145:0;;;;;:::i;:::-;;:::i;49872:45::-;;;;;;;;;;;;49906:11;49872:45;;51175:85;;;;;;;;;;-1:-1:-1;51175:85:0;;;;;:::i;:::-;;:::i;50121:35::-;;;;;;;;;;-1:-1:-1;50121:35:0;;;;;;;;;;;52542:341;;;;;;;;;;-1:-1:-1;52542:341:0;;;;;:::i;:::-;;:::i;50049:27::-;;;;;;;;;;;;;;;;50296:31;;;;;;;;;;;;;:::i;51097:73::-;;;;;;;;;;-1:-1:-1;51097:73:0;;;;;:::i;:::-;;:::i;49921:41::-;;;;;;;;;;;;49961:1;49921:41;;50647:78;;;;;;;;;;-1:-1:-1;50711:9:0;;;;;;;;;-1:-1:-1;50711:9:0;;50647:78;;33648:164;;;;;;;;;;-1:-1:-1;33648:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33769:25:0;;;33745:4;33769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33648:164;49821:19;;;;;;;;;;;;;;;;49180:201;;;;;;;;;;-1:-1:-1;49180:201:0;;;;;:::i;:::-;;:::i;50733:88::-;;;;;;;;;;;;;:::i;50973:116::-;;;;;;;;;;-1:-1:-1;50973:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51056:25:0;51032:4;51056:25;;;:18;:25;;;;;;;50973:116;28395:305;28497:4;-1:-1:-1;;;;;;28534:40:0;;-1:-1:-1;;;28534:40:0;;:105;;-1:-1:-1;;;;;;;28591:48:0;;-1:-1:-1;;;28591:48:0;28534:105;:158;;;-1:-1:-1;;;;;;;;;;15952:40:0;;;28656:36;28514:178;28395:305;-1:-1:-1;;28395:305:0:o;31510:100::-;31564:13;31597:5;31590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31510:100;:::o;33014:204::-;33082:7;33107:16;33115:7;33107;:16::i;:::-;33102:64;;33132:34;;-1:-1:-1;;;33132:34:0;;;;;;;;;;;33102:64;-1:-1:-1;33186:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33186:24:0;;33014:204::o;32576:372::-;32649:13;32665:24;32681:7;32665:15;:24::i;:::-;32649:40;;32710:5;-1:-1:-1;;;;;32704:11:0;:2;-1:-1:-1;;;;;32704:11:0;;32700:48;;;32724:24;;-1:-1:-1;;;32724:24:0;;;;;;;;;;;32700:48;25412:10;-1:-1:-1;;;;;32765:21:0;;;32761:139;;32792:37;32809:5;25412:10;33648:164;:::i;32792:37::-;32788:112;;32853:35;;-1:-1:-1;;;32853:35:0;;;;;;;;;;;32788:112;32912:28;32921:2;32925:7;32934:5;32912:8;:28::i;:::-;32638:310;32576:372;;:::o;52436:101::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;;;;;;;;;52504:13:::1;:28:::0;52436:101::o;51268:91::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51331:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51331:23:0;;::::1;::::0;;;::::1;::::0;;51268:91::o;33879:170::-;34013:28;34023:4;34029:2;34033:7;34013:9;:28::i;53041:674::-;53131:15;;;;;;;53123:58;;;;-1:-1:-1;;;53123:58:0;;9226:2:1;53123:58:0;;;9208:21:1;9265:2;9245:18;;;9238:30;9304:32;9284:18;;;9277:60;9354:18;;53123:58:0;9024:354:1;53123:58:0;53225:28;;-1:-1:-1;;53242:10:0;6241:2:1;6237:15;6233:53;53225:28:0;;;6221:66:1;53200:55:0;;53208:5;;6303:12:1;;53225:28:0;;;;;;;;;;;;53215:39;;;;;;53200:7;:55::i;:::-;53192:95;;;;-1:-1:-1;;;53192:95:0;;9585:2:1;53192:95:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:29;9643:18;;;9636:57;9710:18;;53192:95:0;9383:351:1;53192:95:0;53326:9;;53317:5;53300:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53300:14;:22;;;;:::i;:::-;:35;;53292:65;;;;-1:-1:-1;;;53292:65:0;;;;;;;:::i;:::-;53395:10;53376:30;;;;:18;:30;;;;;;50007:2;;53376:38;;53409:5;;53376:38;:::i;:::-;:56;;53368:90;;;;-1:-1:-1;;;53368:90:0;;12226:2:1;53368:90:0;;;12208:21:1;12265:2;12245:18;;;12238:30;-1:-1:-1;;;12284:18:1;;;12277:52;12346:18;;53368:90:0;12024:346:1;53368:90:0;49961:1;53471:5;:25;;53463:70;;;;-1:-1:-1;;;53463:70:0;;;;;;;:::i;:::-;53566:18;49906:11;53566:5;:18;:::i;:::-;53553:9;:31;;53540:91;;;;-1:-1:-1;;;53540:91:0;;;;;;;:::i;:::-;53657:10;53638:30;;;;:18;:30;;;;;:39;;53672:5;;53638:30;:39;;53672:5;;53638:39;:::i;:::-;;;;-1:-1:-1;53682:28:0;;-1:-1:-1;53692:10:0;53704:5;53682:9;:28::i;:::-;53041:674;;:::o;52007:143::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52105:37:::1;::::0;52073:21:::1;::::0;52113:10:::1;::::0;52105:37;::::1;;;::::0;52073:21;;52055:15:::1;52105:37:::0;52055:15;52105:37;52073:21;52113:10;52105:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;34120:185:::0;34258:39;34275:4;34281:2;34285:7;34258:39;;;;;;;;;;;;:16;:39::i;50826:139::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50900:15:::1;::::0;;;::::1;;;50899:16;50891:50;;;::::0;-1:-1:-1;;;50891:50:0;;8469:2:1;50891:50:0::1;::::0;::::1;8451:21:1::0;8508:2;8488:18;;;8481:30;-1:-1:-1;;;8527:18:1;;;8520:51;8588:18;;50891:50:0::1;8267:345:1::0;50891:50:0::1;50946:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31318:125::-:0;31382:7;31409:21;31422:7;31409:12;:21::i;:::-;:26;;31318:125;-1:-1:-1;;31318:125:0:o;53727:535::-;53790:12;;;;53782:52;;;;-1:-1:-1;;;53782:52:0;;9941:2:1;53782:52:0;;;9923:21:1;9980:2;9960:18;;;9953:30;10019:29;9999:18;;;9992:57;10066:18;;53782:52:0;9739:351:1;53782:52:0;53873:9;;53864:5;53847:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53847:14;:22;;;;:::i;:::-;:35;;53839:65;;;;-1:-1:-1;;;53839:65:0;;;;;;;:::i;:::-;53942:10;53923:30;;;;:18;:30;;;;;;50007:2;;53923:38;;53956:5;;53923:38;:::i;:::-;:56;;53915:90;;;;-1:-1:-1;;;53915:90:0;;12226:2:1;53915:90:0;;;12208:21:1;12265:2;12245:18;;;12238:30;-1:-1:-1;;;12284:18:1;;;12277:52;12346:18;;53915:90:0;12024:346:1;53915:90:0;49961:1;54018:5;:25;;54010:70;;;;-1:-1:-1;;;54010:70:0;;;;;;;:::i;:::-;54113:18;49906:11;54113:5;:18;:::i;:::-;54100:9;:31;;54087:91;;;;-1:-1:-1;;;54087:91:0;;;;;;;:::i;:::-;54204:10;54185:30;;;;:18;:30;;;;;:39;;54219:5;;54185:30;:39;;54219:5;;54185:39;:::i;:::-;;;;-1:-1:-1;54229:28:0;;-1:-1:-1;54239:10:0;54251:5;54229:9;:28::i;:::-;53727:535;:::o;28764:206::-;28828:7;-1:-1:-1;;;;;28852:19:0;;28848:60;;28880:28;;-1:-1:-1;;;28880:28:0;;;;;;;;;;;28848:60;-1:-1:-1;;;;;;28934:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28934:27:0;;28764:206::o;48922:103::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;48987:30:::1;49014:1;48987:18;:30::i;:::-;48922:103::o:0;52334:94::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52399:9:::1;:24:::0;52334:94::o;52155:174::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52259:9:::1;;52250:5;52233:14;28087:7:::0;28273:13;-1:-1:-1;;28273:31:0;;28040:283;52233:14:::1;:22;;;;:::i;:::-;:35;;52220:79;;;;-1:-1:-1::0;;;52220:79:0::1;;;;;;;:::i;:::-;52304:20;52314:2;52318:5;52304:9;:20::i;31679:104::-:0;31735:13;31768:7;31761:14;;;;;:::i;33290:287::-;-1:-1:-1;;;;;33389:24:0;;25412:10;33389:24;33385:54;;;33422:17;;-1:-1:-1;;;33422:17:0;;;;;;;;;;;33385:54;25412:10;33452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33452:53:0;;;;;;;;;;33521:48;;7809:41:1;;;33452:42:0;;25412:10;33521:48;;7782:18:1;33521:48:0;;;;;;;33290:287;;:::o;34376:370::-;34543:28;34553:4;34559:2;34563:7;34543:9;:28::i;:::-;-1:-1:-1;;;;;34586:13:0;;6032:19;:23;34582:157;;34607:56;34638:4;34644:2;34648:7;34657:5;34607:30;:56::i;:::-;34603:136;;34687:40;;-1:-1:-1;;;34687:40:0;;;;;;;;;;;34603:136;34376:370;;;;:::o;52888:145::-;52964:4;52988:37;53007:5;53014:4;;53020;52988:18;:37::i;:::-;52981:44;52888:145;-1:-1:-1;;;52888:145:0:o;51175:85::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51235:12:::1;:20:::0;;-1:-1:-1;;51235:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51175:85::o;52542:341::-;52616:13;52652:16;52660:7;52652;:16::i;:::-;52644:76;;;;-1:-1:-1;;;52644:76:0;;11810:2:1;52644:76:0;;;11792:21:1;11849:2;11829:18;;;11822:30;11888:34;11868:18;;;11861:62;-1:-1:-1;;;11939:18:1;;;11932:45;11994:19;;52644:76:0;11608:411:1;52644:76:0;52767:1;52746:10;:8;:10::i;:::-;52740:24;:28;:138;;52866:12;52740:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52809:10;:8;:10::i;:::-;52821:18;:7;:16;:18::i;:::-;52792:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52733:145;52542:341;-1:-1:-1;;52542:341:0:o;50296:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51097:73::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51153:4:::1;:12:::0;51097:73::o;49180:201::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49269:22:0;::::1;49261:73;;;::::0;-1:-1:-1;;;49261:73:0;;8819:2:1;49261:73:0::1;::::0;::::1;8801:21:1::0;8858:2;8838:18;;;8831:30;8897:34;8877:18;;;8870:62;-1:-1:-1;;;8948:18:1;;;8941:36;8994:19;;49261:73:0::1;8617:402:1::0;49261:73:0::1;49345:28;49364:8;49345:18;:28::i;50733:88::-:0;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50791:15:::1;:22:::0;;-1:-1:-1;;50791:22:0::1;::::0;::::1;::::0;;50733:88::o;35001:174::-;35058:4;35101:7;50636:1;35082:26;;:53;;;;;35122:13;;35112:7;:23;35082:53;:85;;;;-1:-1:-1;;35140:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35140:27:0;;;;35139:28;;35001:174::o;44223:196::-;44338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44338:29:0;-1:-1:-1;;;;;44338:29:0;;;;;;;;;44383:28;;44338:24;;44383:28;;;;;;;44223:196;;;:::o;39171:2130::-;39286:35;39324:21;39337:7;39324:12;:21::i;:::-;39286:59;;39384:4;-1:-1:-1;;;;;39362:26:0;:13;:18;;;-1:-1:-1;;;;;39362:26:0;;39358:67;;39397:28;;-1:-1:-1;;;39397:28:0;;;;;;;;;;;39358:67;39438:22;25412:10;-1:-1:-1;;;;;39464:20:0;;;;:73;;-1:-1:-1;39501:36:0;39518:4;25412:10;33648:164;:::i;39501:36::-;39464:126;;;-1:-1:-1;25412:10:0;39554:20;39566:7;39554:11;:20::i;:::-;-1:-1:-1;;;;;39554:36:0;;39464:126;39438:153;;39609:17;39604:66;;39635:35;;-1:-1:-1;;;39635:35:0;;;;;;;;;;;39604:66;-1:-1:-1;;;;;39685:16:0;;39681:52;;39710:23;;-1:-1:-1;;;39710:23:0;;;;;;;;;;;39681:52;39854:35;39871:1;39875:7;39884:4;39854:8;:35::i;:::-;-1:-1:-1;;;;;40185:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40185:31:0;;;-1:-1:-1;;;;;40185:31:0;;;-1:-1:-1;;40185:31:0;;;;;;;40231:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40231:29:0;;;;;;;;;;;40311:20;;;:11;:20;;;;;;40346:18;;-1:-1:-1;;;;;;40379:49:0;;;;-1:-1:-1;;;40412:15:0;40379:49;;;;;;;;;;40702:11;;40762:24;;;;;40805:13;;40311:20;;40762:24;;40805:13;40801:384;;41015:13;;41000:11;:28;40996:174;;41053:20;;41122:28;;;;-1:-1:-1;;;;;41096:54:0;-1:-1:-1;;;41096:54:0;-1:-1:-1;;;;;;41096:54:0;;;-1:-1:-1;;;;;41053:20:0;;41096:54;;;;40996:174;40160:1036;;;41232:7;41228:2;-1:-1:-1;;;;;41213:27:0;41222:4;-1:-1:-1;;;;;41213:27:0;;;;;;;;;;;39275:2026;;39171:2130;;;:::o;35259:104::-;35328:27;35338:2;35342:8;35328:27;;;;;;;;;;;;:9;:27::i;30145:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30256:7:0;;50636:1;30305:23;30301:888;;30341:13;;30334:4;:20;30330:859;;;30375:31;30409:17;;;:11;:17;;;;;;;;;30375:51;;;;;;;;;-1:-1:-1;;;;;30375:51:0;;;;-1:-1:-1;;;30375:51:0;;-1:-1:-1;;;;;30375:51:0;;;;;;;;-1:-1:-1;;;30375:51:0;;;;;;;;;;;;;;30445:729;;30495:14;;-1:-1:-1;;;;;30495:28:0;;30491:101;;30559:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;30491:101::-;-1:-1:-1;;;30934:6:0;30979:17;;;;:11;:17;;;;;;;;;30967:29;;;;;;;;;-1:-1:-1;;;;;30967:29:0;;;;;-1:-1:-1;;;30967:29:0;;-1:-1:-1;;;;;30967:29:0;;;;;;;;-1:-1:-1;;;30967:29:0;;;;;;;;;;;;;31027:28;31023:109;;31095:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;31023:109::-;30894:261;;;30356:833;30330:859;31217:31;;-1:-1:-1;;;31217:31:0;;;;;;;;;;;49541:191;49634:6;;;-1:-1:-1;;;;;49651:17:0;;;-1:-1:-1;;;;;;49651:17:0;;;;;;;49684:40;;49634:6;;;49651:17;49634:6;;49684:40;;49615:16;;49684:40;49604:128;49541:191;:::o;44911:667::-;45095:72;;-1:-1:-1;;;45095:72:0;;45074:4;;-1:-1:-1;;;;;45095:36:0;;;;;:72;;25412:10;;45146:4;;45152:7;;45161:5;;45095:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45095:72:0;;;;;;;;-1:-1:-1;;45095:72:0;;;;;;;;;;;;:::i;:::-;;;45091:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45329:13:0;;45325:235;;45375:40;;-1:-1:-1;;;45375:40:0;;;;;;;;;;;45325:235;45518:6;45512:13;45503:6;45499:2;45495:15;45488:38;45091:480;-1:-1:-1;;;;;;45214:55:0;-1:-1:-1;;;45214:55:0;;-1:-1:-1;45091:480:0;44911:667;;;;;;:::o;912:190::-;1037:4;1090;1061:25;1074:5;1081:4;1061:12;:25::i;:::-;:33;;912:190;-1:-1:-1;;;;912:190:0:o;50464:92::-;50516:13;50543:8;50536:15;;;;;:::i;2745:723::-;2801:13;3022:10;3018:53;;-1:-1:-1;;3049:10:0;;;;;;;;;;;;-1:-1:-1;;;3049:10:0;;;;;2745:723::o;3018:53::-;3096:5;3081:12;3137:78;3144:9;;3137:78;;3170:8;;;;:::i;:::-;;-1:-1:-1;3193:10:0;;-1:-1:-1;3201:2:0;3193:10;;:::i;:::-;;;3137:78;;;3225:19;3257:6;-1:-1:-1;;;;;3247:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3247:17:0;;3225:39;;3275:154;3282:10;;3275:154;;3309:11;3319:1;3309:11;;:::i;:::-;;-1:-1:-1;3378:10:0;3386:2;3378:5;:10;:::i;:::-;3365:24;;:2;:24;:::i;:::-;3352:39;;3335:6;3342;3335:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3335:56:0;;;;;;;;-1:-1:-1;3406:11:0;3415:2;3406:11;;:::i;:::-;;;3275:154;;35736:1749;35859:20;35882:13;-1:-1:-1;;;;;35910:16:0;;35906:48;;35935:19;;-1:-1:-1;;;35935:19:0;;;;;;;;;;;35906:48;35969:13;35965:44;;35991:18;;-1:-1:-1;;;35991:18:0;;;;;;;;;;;35965:44;-1:-1:-1;;;;;36360:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36419:49:0;;-1:-1:-1;;;;;36360:44:0;;;;;;;36419:49;;;;-1:-1:-1;;36360:44:0;;;;;;36419:49;;;;;;;;;;;;;;;;36485:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36535:66:0;;;-1:-1:-1;;;36585:15:0;36535:66;;;;;;;;;;;;;36485:25;;36682:23;;;;6032:19;:23;36722:631;;36762:313;36793:38;;36818:12;;-1:-1:-1;;;;;36793:38:0;;;36810:1;;36793:38;;36810:1;;36793:38;36859:69;36898:1;36902:2;36906:14;;;;;;36922:5;36859:30;:69::i;:::-;36854:174;;36964:40;;-1:-1:-1;;;36964:40:0;;;;;;;;;;;36854:174;37070:3;37055:12;:18;36762:313;;37156:12;37139:13;;:29;37135:43;;37170:8;;;37135:43;36722:631;;;37219:119;37250:40;;37275:14;;;;;-1:-1:-1;;;;;37250:40:0;;;37267:1;;37250:40;;37267:1;;37250:40;37333:3;37318:12;:18;37219:119;;36722:631;-1:-1:-1;37367:13:0;:28;;;37417:60;;37450:2;37454:12;37468:8;37417:60;:::i;1464:675::-;1547:7;1590:4;1547:7;1605:497;1629:5;:12;1625:1;:16;1605:497;;;1663:20;1686:5;1692:1;1686:8;;;;;;;;:::i;:::-;;;;;;;1663:31;;1729:12;1713;:28;1709:382;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;1841:57;;1709:382;;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;2018:57;;1709:382;-1:-1:-1;1643:3:0;;;;:::i;:::-;;;;1605:497;;;-1:-1:-1;2119:12:0;1464:675;-1:-1:-1;;;1464:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:416::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;-1:-1:-1;;;;;3709:6:1;3706:30;3703:50;;;3749:1;3746;3739:12;3703:50;3772:61;3825:7;3816:6;3805:9;3801:22;3772:61;:::i;:::-;3762:71;3880:2;3865:18;;;;3852:32;;-1:-1:-1;;;;3474:416:1:o;4316:180::-;4372:6;4425:2;4413:9;4404:7;4400:23;4396:32;4393:52;;;4441:1;4438;4431:12;4393:52;4464:26;4480:9;4464:26;:::i;4501:180::-;4560:6;4613:2;4601:9;4592:7;4588:23;4584:32;4581:52;;;4629:1;4626;4619:12;4581:52;-1:-1:-1;4652:23:1;;4501:180;-1:-1:-1;4501:180:1:o;4686:245::-;4744:6;4797:2;4785:9;4776:7;4772:23;4768:32;4765:52;;;4813:1;4810;4803:12;4765:52;4852:9;4839:23;4871:30;4895:5;4871:30;:::i;4936:249::-;5005:6;5058:2;5046:9;5037:7;5033:23;5029:32;5026:52;;;5074:1;5071;5064:12;5026:52;5106:9;5100:16;5125:30;5149:5;5125:30;:::i;5190:450::-;5259:6;5312:2;5300:9;5291:7;5287:23;5283:32;5280:52;;;5328:1;5325;5318:12;5280:52;5368:9;5355:23;-1:-1:-1;;;;;5393:6:1;5390:30;5387:50;;;5433:1;5430;5423:12;5387:50;5456:22;;5509:4;5501:13;;5497:27;-1:-1:-1;5487:55:1;;5538:1;5535;5528:12;5487:55;5561:73;5626:7;5621:2;5608:16;5603:2;5599;5595:11;5561:73;:::i;5830:257::-;5871:3;5909:5;5903:12;5936:6;5931:3;5924:19;5952:63;6008:6;6001:4;5996:3;5992:14;5985:4;5978:5;5974:16;5952:63;:::i;:::-;6069:2;6048:15;-1:-1:-1;;6044:29:1;6035:39;;;;6076:4;6031:50;;5830:257;-1:-1:-1;;5830:257:1:o;6326:637::-;6606:3;6644:6;6638:13;6660:53;6706:6;6701:3;6694:4;6686:6;6682:17;6660:53;:::i;:::-;6776:13;;6735:16;;;;6798:57;6776:13;6735:16;6832:4;6820:17;;6798:57;:::i;:::-;-1:-1:-1;;;6877:20:1;;6906:22;;;6955:1;6944:13;;6326:637;-1:-1:-1;;;;6326:637:1:o;7176:488::-;-1:-1:-1;;;;;7445:15:1;;;7427:34;;7497:15;;7492:2;7477:18;;7470:43;7544:2;7529:18;;7522:34;;;7592:3;7587:2;7572:18;;7565:31;;;7370:4;;7613:45;;7638:19;;7630:6;7613:45;:::i;:::-;7605:53;7176:488;-1:-1:-1;;;;;;7176:488:1:o;8043:219::-;8192:2;8181:9;8174:21;8155:4;8212:44;8252:2;8241:9;8237:18;8229:6;8212:44;:::i;10095:397::-;10297:2;10279:21;;;10336:2;10316:18;;;10309:30;10375:34;10370:2;10355:18;;10348:62;-1:-1:-1;;;10441:2:1;10426:18;;10419:31;10482:3;10467:19;;10095:397::o;10497:342::-;10699:2;10681:21;;;10738:2;10718:18;;;10711:30;-1:-1:-1;;;10772:2:1;10757:18;;10750:48;10830:2;10815:18;;10497:342::o;10844:398::-;11046:2;11028:21;;;11085:2;11065:18;;;11058:30;11124:34;11119:2;11104:18;;11097:62;-1:-1:-1;;;11190:2:1;11175:18;;11168:32;11232:3;11217:19;;10844:398::o;11247:356::-;11449:2;11431:21;;;11468:18;;;11461:30;11527:34;11522:2;11507:18;;11500:62;11594:2;11579:18;;11247:356::o;12557:275::-;12628:2;12622:9;12693:2;12674:13;;-1:-1:-1;;12670:27:1;12658:40;;-1:-1:-1;;;;;12713:34:1;;12749:22;;;12710:62;12707:88;;;12775:18;;:::i;:::-;12811:2;12804:22;12557:275;;-1:-1:-1;12557:275:1:o;12837:128::-;12877:3;12908:1;12904:6;12901:1;12898:13;12895:39;;;12914:18;;:::i;:::-;-1:-1:-1;12950:9:1;;12837:128::o;12970:120::-;13010:1;13036;13026:35;;13041:18;;:::i;:::-;-1:-1:-1;13075:9:1;;12970:120::o;13095:168::-;13135:7;13201:1;13197;13193:6;13189:14;13186:1;13183:21;13178:1;13171:9;13164:17;13160:45;13157:71;;;13208:18;;:::i;:::-;-1:-1:-1;13248:9:1;;13095:168::o;13268:125::-;13308:4;13336:1;13333;13330:8;13327:34;;;13341:18;;:::i;:::-;-1:-1:-1;13378:9:1;;13268:125::o;13398:258::-;13470:1;13480:113;13494:6;13491:1;13488:13;13480:113;;;13570:11;;;13564:18;13551:11;;;13544:39;13516:2;13509:10;13480:113;;;13611:6;13608:1;13605:13;13602:48;;;-1:-1:-1;;13646:1:1;13628:16;;13621:27;13398:258::o;13661:380::-;13740:1;13736:12;;;;13783;;;13804:61;;13858:4;13850:6;13846:17;13836:27;;13804:61;13911:2;13903:6;13900:14;13880:18;13877:38;13874:161;;;13957:10;13952:3;13948:20;13945:1;13938:31;13992:4;13989:1;13982:15;14020:4;14017:1;14010:15;13874:161;;13661:380;;;:::o;14046:135::-;14085:3;-1:-1:-1;;14106:17:1;;14103:43;;;14126:18;;:::i;:::-;-1:-1:-1;14173:1:1;14162:13;;14046:135::o;14186:112::-;14218:1;14244;14234:35;;14249:18;;:::i;:::-;-1:-1:-1;14283:9:1;;14186:112::o;14303:127::-;14364:10;14359:3;14355:20;14352:1;14345:31;14395:4;14392:1;14385:15;14419:4;14416:1;14409:15;14435:127;14496:10;14491:3;14487:20;14484:1;14477:31;14527:4;14524:1;14517:15;14551:4;14548:1;14541:15;14567:127;14628:10;14623:3;14619:20;14616:1;14609:31;14659:4;14656:1;14649:15;14683:4;14680:1;14673:15;14699:127;14760:10;14755:3;14751:20;14748:1;14741:31;14791:4;14788:1;14781:15;14815:4;14812:1;14805:15;14831:131;-1:-1:-1;;;;;;14905:32:1;;14895:43;;14885:71;;14952:1;14949;14942:12

Swarm Source

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