ETH Price: $3,324.17 (+1.98%)
Gas: 2 Gwei

Token

NiceKids (NK)
 

Overview

Max Total Supply

4,996 NK

Holders

710

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 NK
0xd7efdfa5c4f87e3c9c49b03019dcd184faf6a879
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:
NiceKids

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-06-27
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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


// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

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

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/NiceKids.sol

pragma solidity ^0.8.0;

contract NiceKids is ERC721A, Ownable{
    using Strings for uint256;

    // Max Supply
    uint256 public constant MaxSupply = 5555;

    // Prices
    uint256 public constant FreeSalePrice = 0.00 ether;
    uint256 public constant PrivateSalePrice = 0.12 ether;
    uint256 public PublicSalePrice = 0.14 ether;

    // Max Mint / Wallet
    uint256 public constant MaxFreeMint = 2;
    uint256 public constant MaxPrivateMint = 4;

    mapping(address => uint256) public totalFreeMint;
    mapping(address => uint256) public totalWhitelistMint;

    // Reveal and unreveal CIDs
    string private  baseTokenUri;
    string public   placeholderTokenUri;

    // Phases
    bool public FreeSale;
    bool public PrivateSale;
    bool public PublicSale;
    bool public isRevealed;
    bool public pause;
    bool public teamMinted;

    address[] public whitelistedAddresses;


    // Name and symbol
    constructor() ERC721A("NiceKids", "NK"){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Cannot be called by a contract");
        _;
    }

    
    function FreeMint(uint256 _quantity) external payable callerIsUser{
        require(FreeSale, "Free sale not yet active.");
        require(isWhitelisted(msg.sender), "user is not whitelisted");
        require((totalSupply() + _quantity) <= MaxSupply, "Beyond max supply");
        require((totalFreeMint[msg.sender] + _quantity)  <= MaxFreeMint, "Cannot mint beyond whitelist max mint!");
        require(msg.value >= (FreeSalePrice * _quantity), "Payment is below the price");
        
        totalFreeMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function PrivateMint(uint256 _quantity) external payable callerIsUser{
        require(PrivateSale, "Private sale not yet active.");
        require(isWhitelisted(msg.sender), "user is not whitelisted");
        require((totalSupply() + _quantity) <= MaxSupply, "Beyond max supply");
        require((totalWhitelistMint[msg.sender] + _quantity)  <= MaxPrivateMint, "Cannot mint beyond whitelist max mint!");
        require(msg.value >= (PrivateSalePrice * _quantity), "Payment is below the price");
       

        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function PublicMint(uint256 _quantity) external payable callerIsUser{
        require(PublicSale, "Public sale not yet active.");
        require((totalSupply() + _quantity) <= MaxSupply, "Beyond Max Supply");
        require(msg.value >= (PublicSalePrice * _quantity), "Payment is below the price");

        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external onlyOwner{
        require(!teamMinted, "Team already minted");
        require((totalSupply() + 300) <= MaxSupply, "Beyond Max Supply");
        teamMinted = true;
        _safeMint(msg.sender, 300);
    }

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

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

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function airdrop(address _to, uint _quantity) external onlyOwner {
    require(totalSupply() + _quantity <= MaxSupply, "Reached max Supply");
     _safeMint(_to, _quantity);
    }

    
    function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
    }

    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setPublicSalePrice(uint256 _newPublicSalePrice) public onlyOwner {
    PublicSalePrice = _newPublicSalePrice;
  }


    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function toggleFreeSale() external onlyOwner{
        FreeSale = !FreeSale;
    }

    function togglePrivateSale() external onlyOwner{
        PrivateSale = !PrivateSale;
    }

    function togglePublicSale() external onlyOwner{
        PublicSale = !PublicSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner{
        uint256 withdrawAmount_30A = address(this).balance * 30/100;
        payable(0xE2d71B350421Fc1610cFeB2F0c41712daBFe13a2).transfer(withdrawAmount_30A);
        uint256 withdrawAmount_30B = address(this).balance * 30/100;
        payable(0xf6E76D756726C6cDB523D68835316e5f951260BE).transfer(withdrawAmount_30B);
        uint256 withdrawAmount_30C = address(this).balance * 30/100;
        payable(0xa7a2EF417075410c652520f8c22Cd2f0231dC284).transfer(withdrawAmount_30C);
        uint256 withdrawAmount_10 = address(this).balance * 10/100;
        payable(0x6Fbd09CcD3f389412B37C74286Db5941A1bcE02e).transfer(withdrawAmount_10);
        
        
        payable(msg.sender).transfer(address(this).balance);
    }
}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"FreeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPrivateMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PrivateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PrivateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrivateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","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":[{"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701f161421c8e00006008553480156200001d57600080fd5b5060408051808201825260088152674e6963654b69647360c01b6020808301918252835180850190945260028452614e4b60f01b9084015281519192916200006891600191620000f7565b5080516200007e906002906020840190620000f7565b5050506200009b62000095620000a160201b60201c565b620000a5565b620001da565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000105906200019d565b90600052602060002090601f01602090048101928262000129576000855562000174565b82601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b5b8082111562000182576000815560010162000187565b600181811c90821680620001b257607f821691505b60208210811415620001d457634e487b7160e01b600052602260045260246000fd5b50919050565b612ab680620001ea6000396000f3fe6080604052600436106102ff5760003560e01c806383a974a211610190578063ba4e5c49116100dc578063dd5d149111610095578063e8b5498d1161006f578063e8b5498d14610880578063e985e9c5146108a3578063edec5f27146108ec578063f2fde38b1461090c57600080fd5b8063dd5d149114610841578063dfe5dd6814610856578063e222c7f91461086b57600080fd5b8063ba4e5c49146107aa578063ba7a86b8146107ca578063bdfaa084146107df578063c4ae3168146107f2578063c87b56dd14610807578063d932199b1461082757600080fd5b80639fb17e3411610149578063b3536ef111610123578063b3536ef114610749578063b36c12841461075f578063b88d4fde14610775578063ba1bb6e01461079557600080fd5b80639fb17e34146106f6578063a22cb46514610709578063b0962c531461072957600080fd5b806383a974a2146106325780638456cb5914610654578063891084a3146106765780638ba4cc3c146106a35780638da5cb5b146106c357806395d89b41146106e157600080fd5b80633ccfd60b1161024f5780635b8ad42911610208578063715018a6116101e2578063715018a6146105d557806377a38c1a146105ea578063791a2519146105ff5780638075fa471461061f57600080fd5b80635b8ad429146105805780636352211e1461059557806370a08231146105b557600080fd5b80633ccfd60b146104d957806342842e0e146104ee5780634cf5f7a41461050e5780634f6ccce71461052357806354214f691461054357806358c7f2881461056457600080fd5b80630f59c6eb116102bc5780632b146407116102965780632b146407146104655780632ceb4974146104845780632f745c59146104995780633af32abf146104b957600080fd5b80630f59c6eb1461041057806318160ddd1461043057806323b872dd1461044557600080fd5b806301ffc9a7146103045780630345e3cb146103395780630675b7c61461037457806306fdde0314610396578063081812fc146103b8578063095ea7b3146103f0575b600080fd5b34801561031057600080fd5b5061032461031f3660046125e8565b61092c565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610366610354366004612407565b600a6020526000908152604090205481565b604051908152602001610330565b34801561038057600080fd5b5061039461038f366004612622565b610999565b005b3480156103a257600080fd5b506103ab6109e3565b6040516103309190612808565b3480156103c457600080fd5b506103d86103d336600461266b565b610a75565b6040516001600160a01b039091168152602001610330565b3480156103fc57600080fd5b5061039461040b366004612549565b610abb565b34801561041c57600080fd5b50600d546103249062010000900460ff1681565b34801561043c57600080fd5b50600054610366565b34801561045157600080fd5b50610394610460366004612455565b610b49565b34801561047157600080fd5b50600d5461032490610100900460ff1681565b34801561049057600080fd5b50610366600281565b3480156104a557600080fd5b506103666104b4366004612549565b610b54565b3480156104c557600080fd5b506103246104d4366004612407565b610c29565b3480156104e557600080fd5b50610394610c93565b3480156104fa57600080fd5b50610394610509366004612455565b610e68565b34801561051a57600080fd5b506103ab610e83565b34801561052f57600080fd5b5061036661053e36600461266b565b610f11565b34801561054f57600080fd5b50600d54610324906301000000900460ff1681565b34801561057057600080fd5b506103666701aa535d3d0c000081565b34801561058c57600080fd5b50610394610f38565b3480156105a157600080fd5b506103d86105b036600461266b565b610f83565b3480156105c157600080fd5b506103666105d0366004612407565b610f95565b3480156105e157600080fd5b50610394610fe3565b3480156105f657600080fd5b50610394611019565b34801561060b57600080fd5b5061039461061a36600461266b565b611057565b61039461062d36600461266b565b611086565b34801561063e57600080fd5b50610647611243565b60405161033091906127c4565b34801561066057600080fd5b50600d5461032490640100000000900460ff1681565b34801561068257600080fd5b50610366610691366004612407565b60096020526000908152604090205481565b3480156106af57600080fd5b506103946106be366004612549565b6112e6565b3480156106cf57600080fd5b506007546001600160a01b03166103d8565b3480156106ed57600080fd5b506103ab611374565b61039461070436600461266b565b611383565b34801561071557600080fd5b5061039461072436600461250d565b61148a565b34801561073557600080fd5b50610394610744366004612622565b611520565b34801561075557600080fd5b5061036660085481565b34801561076b57600080fd5b506103666115b381565b34801561078157600080fd5b50610394610790366004612491565b61155d565b3480156107a157600080fd5b50610366600081565b3480156107b657600080fd5b506103d86107c536600461266b565b611597565b3480156107d657600080fd5b506103946115c1565b6103946107ed36600461266b565b6116ba565b3480156107fe57600080fd5b50610394611858565b34801561081357600080fd5b506103ab61082236600461266b565b6118a5565b34801561083357600080fd5b50600d546103249060ff1681565b34801561084d57600080fd5b50610366600481565b34801561086257600080fd5b50610394611a28565b34801561087757600080fd5b50610394611a6f565b34801561088c57600080fd5b50600d546103249065010000000000900460ff1681565b3480156108af57600080fd5b506103246108be366004612422565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108f857600080fd5b50610394610907366004612573565b611ab8565b34801561091857600080fd5b50610394610927366004612407565b611afa565b60006001600160e01b031982166380ac58cd60e01b148061095d57506001600160e01b03198216635b5e139f60e01b145b8061097857506001600160e01b0319821663780e9d6360e01b145b8061099357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109cc5760405162461bcd60e51b81526004016109c390612852565b60405180910390fd5b80516109df90600b90602084019061226f565b5050565b6060600180546109f290612992565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612992565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b5050505050905090565b6000610a82826000541190565b610a9f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610ac682610f83565b9050806001600160a01b0316836001600160a01b03161415610afb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1b5750610b1981336108be565b155b15610b39576040516367d9dca160e11b815260040160405180910390fd5b610b44838383611b92565b505050565b610b44838383611bee565b6000610b5f83610f95565b8210610b7e576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd957805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c075750935061099392505050565b6001909301925b50600101610b86565b50610c206129fc565b50505092915050565b6000805b600e54811015610c8a57826001600160a01b0316600e8281548110610c5457610c54612a3e565b6000918252602090912001546001600160a01b03161415610c785750600192915050565b80610c82816129cd565b915050610c2d565b50600092915050565b6007546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016109c390612852565b60006064610ccc47601e612930565b610cd6919061291c565b60405190915073e2d71b350421fc1610cfeb2f0c41712dabfe13a29082156108fc029083906000818181858888f19350505050158015610d1a573d6000803e3d6000fd5b5060006064610d2a47601e612930565b610d34919061291c565b60405190915073f6e76d756726c6cdb523d68835316e5f951260be9082156108fc029083906000818181858888f19350505050158015610d78573d6000803e3d6000fd5b5060006064610d8847601e612930565b610d92919061291c565b60405190915073a7a2ef417075410c652520f8c22cd2f0231dc2849082156108fc029083906000818181858888f19350505050158015610dd6573d6000803e3d6000fd5b5060006064610de647600a612930565b610df0919061291c565b604051909150736fbd09ccd3f389412b37c74286db5941a1bce02e9082156108fc029083906000818181858888f19350505050158015610e34573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610e61573d6000803e3d6000fd5b5050505050565b610b448383836040518060200160405280600081525061155d565b600c8054610e9090612992565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612992565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505081565b600080548210610f34576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610f625760405162461bcd60e51b81526004016109c390612852565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6000610f8e82611e0a565b5192915050565b60006001600160a01b038216610fbe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461100d5760405162461bcd60e51b81526004016109c390612852565b6110176000611e9f565b565b6007546001600160a01b031633146110435760405162461bcd60e51b81526004016109c390612852565b600d805460ff19811660ff90911615179055565b6007546001600160a01b031633146110815760405162461bcd60e51b81526004016109c390612852565b600855565b3233146110a55760405162461bcd60e51b81526004016109c390612887565b600d54610100900460ff166110fc5760405162461bcd60e51b815260206004820152601c60248201527f507269766174652073616c65206e6f7420796574206163746976652e0000000060448201526064016109c3565b61110533610c29565b61114b5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016109c3565b6115b38161115860005490565b6111629190612904565b11156111a45760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016109c3565b336000908152600a60205260409020546004906111c2908390612904565b11156111e05760405162461bcd60e51b81526004016109c3906128be565b6111f2816701aa535d3d0c0000612930565b3410156112115760405162461bcd60e51b81526004016109c39061281b565b336000908152600a602052604081208054839290611230908490612904565b9091555061124090503382611ef1565b50565b606033600061125182610f95565b905060008167ffffffffffffffff81111561126e5761126e612a54565b604051908082528060200260200182016040528015611297578160200160208202803683370190505b50905060005b828110156112de576112af8482610b54565b8282815181106112c1576112c1612a3e565b6020908102919091010152806112d6816129cd565b91505061129d565b509392505050565b6007546001600160a01b031633146113105760405162461bcd60e51b81526004016109c390612852565b6115b38161131d60005490565b6113279190612904565b111561136a5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016109c3565b6109df8282611ef1565b6060600280546109f290612992565b3233146113a25760405162461bcd60e51b81526004016109c390612887565b600d5462010000900460ff166113fa5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c65206e6f7420796574206163746976652e000000000060448201526064016109c3565b6115b38161140760005490565b6114119190612904565b11156114535760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016109c3565b806008546114619190612930565b3410156114805760405162461bcd60e51b81526004016109c39061281b565b6112403382611ef1565b6001600160a01b0382163314156114b45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461154a5760405162461bcd60e51b81526004016109c390612852565b80516109df90600c90602084019061226f565b611568848484611bee565b61157484848484611f0b565b611591576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e81815481106115a757600080fd5b6000918252602090912001546001600160a01b0316905081565b6007546001600160a01b031633146115eb5760405162461bcd60e51b81526004016109c390612852565b600d5465010000000000900460ff161561163d5760405162461bcd60e51b81526020600482015260136024820152721519585b48185b1c9958591e481b5a5b9d1959606a1b60448201526064016109c3565b6115b361164960005490565b6116559061012c612904565b11156116975760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016109c3565b600d805465ff00000000001916650100000000001790556110173361012c611ef1565b3233146116d95760405162461bcd60e51b81526004016109c390612887565b600d5460ff1661172b5760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206e6f7420796574206163746976652e0000000000000060448201526064016109c3565b61173433610c29565b61177a5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016109c3565b6115b38161178760005490565b6117919190612904565b11156117d35760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016109c3565b336000908152600960205260409020546002906117f1908390612904565b111561180f5760405162461bcd60e51b81526004016109c3906128be565b61181a816000612930565b3410156118395760405162461bcd60e51b81526004016109c39061281b565b3360009081526009602052604081208054839290611230908490612904565b6007546001600160a01b031633146118825760405162461bcd60e51b81526004016109c390612852565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b60606118b2826000541190565b6119165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c3565b6000611923836001612904565b600d549091506301000000900460ff166119ca57600c805461194490612992565b80601f016020809104026020016040519081016040528092919081815260200182805461197090612992565b80156119bd5780601f10611992576101008083540402835291602001916119bd565b820191906000526020600020905b8154815290600101906020018083116119a057829003601f168201915b5050505050915050919050565b6000600b80546119d990612992565b9050116119f55760405180602001604052806000815250611a21565b600b611a008261201a565b604051602001611a119291906126cc565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a525760405162461bcd60e51b81526004016109c390612852565b600d805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b03163314611a995760405162461bcd60e51b81526004016109c390612852565b600d805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314611ae25760405162461bcd60e51b81526004016109c390612852565b611aee600e60006122ef565b610b44600e838361230d565b6007546001600160a01b03163314611b245760405162461bcd60e51b81526004016109c390612852565b6001600160a01b038116611b895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b61124081611e9f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bf982611e0a565b80519091506000906001600160a01b0316336001600160a01b03161480611c30575033611c2584610a75565b6001600160a01b0316145b80611c4257508151611c4290336108be565b905080611c6257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c975760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cbe57604051633a954ecd60e21b815260040160405180910390fd5b611cce6000848460000151611b92565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611dc357611d76816000541190565b15611dc3578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e61565b6040805180820190915260008082526020820152611e29826000541190565b611e4657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e95579392505050565b5060001901611e48565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109df828260405180602001604052806000815250612118565b60006001600160a01b0384163b1561200e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4f903390899088908890600401612787565b602060405180830381600087803b158015611f6957600080fd5b505af1925050508015611f99575060408051601f3d908101601f19168201909252611f9691810190612605565b60015b611ff4573d808015611fc7576040519150601f19603f3d011682016040523d82523d6000602084013e611fcc565b606091505b508051611fec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612012565b5060015b949350505050565b60608161203e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120685780612052816129cd565b91506120619050600a8361291c565b9150612042565b60008167ffffffffffffffff81111561208357612083612a54565b6040519080825280601f01601f1916602001820160405280156120ad576020820181803683370190505b5090505b8415612012576120c260018361294f565b91506120cf600a866129e8565b6120da906030612904565b60f81b8183815181106120ef576120ef612a3e565b60200101906001600160f81b031916908160001a905350612111600a8661291c565b94506120b1565b610b4483838360016000546001600160a01b03851661214957604051622e076360e81b815260040160405180910390fd5b836121675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156122665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561223c575061223a6000888488611f0b565b155b1561225a576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016121e5565b50600055610e61565b82805461227b90612992565b90600052602060002090601f01602090048101928261229d57600085556122e3565b82601f106122b657805160ff19168380011785556122e3565b828001600101855582156122e3579182015b828111156122e35782518255916020019190600101906122c8565b50610f34929150612360565b50805460008255906000526020600020908101906112409190612360565b8280548282559060005260206000209081019282156122e3579160200282015b828111156122e35781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061232d565b5b80821115610f345760008155600101612361565b600067ffffffffffffffff8084111561239057612390612a54565b604051601f8501601f19908116603f011681019082821181831017156123b8576123b8612a54565b816040528093508581528686860111156123d157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240257600080fd5b919050565b60006020828403121561241957600080fd5b611a21826123eb565b6000806040838503121561243557600080fd5b61243e836123eb565b915061244c602084016123eb565b90509250929050565b60008060006060848603121561246a57600080fd5b612473846123eb565b9250612481602085016123eb565b9150604084013590509250925092565b600080600080608085870312156124a757600080fd5b6124b0856123eb565b93506124be602086016123eb565b925060408501359150606085013567ffffffffffffffff8111156124e157600080fd5b8501601f810187136124f257600080fd5b61250187823560208401612375565b91505092959194509250565b6000806040838503121561252057600080fd5b612529836123eb565b91506020830135801515811461253e57600080fd5b809150509250929050565b6000806040838503121561255c57600080fd5b612565836123eb565b946020939093013593505050565b6000806020838503121561258657600080fd5b823567ffffffffffffffff8082111561259e57600080fd5b818501915085601f8301126125b257600080fd5b8135818111156125c157600080fd5b8660208260051b85010111156125d657600080fd5b60209290920196919550909350505050565b6000602082840312156125fa57600080fd5b8135611a2181612a6a565b60006020828403121561261757600080fd5b8151611a2181612a6a565b60006020828403121561263457600080fd5b813567ffffffffffffffff81111561264b57600080fd5b8201601f8101841361265c57600080fd5b61201284823560208401612375565b60006020828403121561267d57600080fd5b5035919050565b6000815180845261269c816020860160208601612966565b601f01601f19169290920160200192915050565b600081516126c2818560208601612966565b9290920192915050565b600080845481600182811c9150808316806126e857607f831692505b602080841082141561270857634e487b7160e01b86526022600452602486fd5b81801561271c576001811461272d5761275a565b60ff1986168952848901965061275a565b60008b81526020902060005b868110156127525781548b820152908501908301612739565b505084890196505b50505050505061277e61276d82866126b0565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ba90830184612684565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127fc578351835292840192918401916001016127e0565b50909695505050505050565b602081526000611a216020830184612684565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604082015260600190565b60208082526026908201527f43616e6e6f74206d696e74206265796f6e642077686974656c697374206d6178604082015265206d696e742160d01b606082015260800190565b6000821982111561291757612917612a12565b500190565b60008261292b5761292b612a28565b500490565b600081600019048311821515161561294a5761294a612a12565b500290565b60008282101561296157612961612a12565b500390565b60005b83811015612981578181015183820152602001612969565b838111156115915750506000910152565b600181811c908216806129a657607f821691505b602082108114156129c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e1576129e1612a12565b5060010190565b6000826129f7576129f7612a28565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461124057600080fdfea2646970667358221220cabb35c9c77a2790cc09ce96b270e7b3e7d1d94ccd51394a25656eb3428ba6f164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806383a974a211610190578063ba4e5c49116100dc578063dd5d149111610095578063e8b5498d1161006f578063e8b5498d14610880578063e985e9c5146108a3578063edec5f27146108ec578063f2fde38b1461090c57600080fd5b8063dd5d149114610841578063dfe5dd6814610856578063e222c7f91461086b57600080fd5b8063ba4e5c49146107aa578063ba7a86b8146107ca578063bdfaa084146107df578063c4ae3168146107f2578063c87b56dd14610807578063d932199b1461082757600080fd5b80639fb17e3411610149578063b3536ef111610123578063b3536ef114610749578063b36c12841461075f578063b88d4fde14610775578063ba1bb6e01461079557600080fd5b80639fb17e34146106f6578063a22cb46514610709578063b0962c531461072957600080fd5b806383a974a2146106325780638456cb5914610654578063891084a3146106765780638ba4cc3c146106a35780638da5cb5b146106c357806395d89b41146106e157600080fd5b80633ccfd60b1161024f5780635b8ad42911610208578063715018a6116101e2578063715018a6146105d557806377a38c1a146105ea578063791a2519146105ff5780638075fa471461061f57600080fd5b80635b8ad429146105805780636352211e1461059557806370a08231146105b557600080fd5b80633ccfd60b146104d957806342842e0e146104ee5780634cf5f7a41461050e5780634f6ccce71461052357806354214f691461054357806358c7f2881461056457600080fd5b80630f59c6eb116102bc5780632b146407116102965780632b146407146104655780632ceb4974146104845780632f745c59146104995780633af32abf146104b957600080fd5b80630f59c6eb1461041057806318160ddd1461043057806323b872dd1461044557600080fd5b806301ffc9a7146103045780630345e3cb146103395780630675b7c61461037457806306fdde0314610396578063081812fc146103b8578063095ea7b3146103f0575b600080fd5b34801561031057600080fd5b5061032461031f3660046125e8565b61092c565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610366610354366004612407565b600a6020526000908152604090205481565b604051908152602001610330565b34801561038057600080fd5b5061039461038f366004612622565b610999565b005b3480156103a257600080fd5b506103ab6109e3565b6040516103309190612808565b3480156103c457600080fd5b506103d86103d336600461266b565b610a75565b6040516001600160a01b039091168152602001610330565b3480156103fc57600080fd5b5061039461040b366004612549565b610abb565b34801561041c57600080fd5b50600d546103249062010000900460ff1681565b34801561043c57600080fd5b50600054610366565b34801561045157600080fd5b50610394610460366004612455565b610b49565b34801561047157600080fd5b50600d5461032490610100900460ff1681565b34801561049057600080fd5b50610366600281565b3480156104a557600080fd5b506103666104b4366004612549565b610b54565b3480156104c557600080fd5b506103246104d4366004612407565b610c29565b3480156104e557600080fd5b50610394610c93565b3480156104fa57600080fd5b50610394610509366004612455565b610e68565b34801561051a57600080fd5b506103ab610e83565b34801561052f57600080fd5b5061036661053e36600461266b565b610f11565b34801561054f57600080fd5b50600d54610324906301000000900460ff1681565b34801561057057600080fd5b506103666701aa535d3d0c000081565b34801561058c57600080fd5b50610394610f38565b3480156105a157600080fd5b506103d86105b036600461266b565b610f83565b3480156105c157600080fd5b506103666105d0366004612407565b610f95565b3480156105e157600080fd5b50610394610fe3565b3480156105f657600080fd5b50610394611019565b34801561060b57600080fd5b5061039461061a36600461266b565b611057565b61039461062d36600461266b565b611086565b34801561063e57600080fd5b50610647611243565b60405161033091906127c4565b34801561066057600080fd5b50600d5461032490640100000000900460ff1681565b34801561068257600080fd5b50610366610691366004612407565b60096020526000908152604090205481565b3480156106af57600080fd5b506103946106be366004612549565b6112e6565b3480156106cf57600080fd5b506007546001600160a01b03166103d8565b3480156106ed57600080fd5b506103ab611374565b61039461070436600461266b565b611383565b34801561071557600080fd5b5061039461072436600461250d565b61148a565b34801561073557600080fd5b50610394610744366004612622565b611520565b34801561075557600080fd5b5061036660085481565b34801561076b57600080fd5b506103666115b381565b34801561078157600080fd5b50610394610790366004612491565b61155d565b3480156107a157600080fd5b50610366600081565b3480156107b657600080fd5b506103d86107c536600461266b565b611597565b3480156107d657600080fd5b506103946115c1565b6103946107ed36600461266b565b6116ba565b3480156107fe57600080fd5b50610394611858565b34801561081357600080fd5b506103ab61082236600461266b565b6118a5565b34801561083357600080fd5b50600d546103249060ff1681565b34801561084d57600080fd5b50610366600481565b34801561086257600080fd5b50610394611a28565b34801561087757600080fd5b50610394611a6f565b34801561088c57600080fd5b50600d546103249065010000000000900460ff1681565b3480156108af57600080fd5b506103246108be366004612422565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108f857600080fd5b50610394610907366004612573565b611ab8565b34801561091857600080fd5b50610394610927366004612407565b611afa565b60006001600160e01b031982166380ac58cd60e01b148061095d57506001600160e01b03198216635b5e139f60e01b145b8061097857506001600160e01b0319821663780e9d6360e01b145b8061099357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109cc5760405162461bcd60e51b81526004016109c390612852565b60405180910390fd5b80516109df90600b90602084019061226f565b5050565b6060600180546109f290612992565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612992565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b5050505050905090565b6000610a82826000541190565b610a9f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610ac682610f83565b9050806001600160a01b0316836001600160a01b03161415610afb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1b5750610b1981336108be565b155b15610b39576040516367d9dca160e11b815260040160405180910390fd5b610b44838383611b92565b505050565b610b44838383611bee565b6000610b5f83610f95565b8210610b7e576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bd957805192505b876001600160a01b0316836001600160a01b03161415610c0e5786841415610c075750935061099392505050565b6001909301925b50600101610b86565b50610c206129fc565b50505092915050565b6000805b600e54811015610c8a57826001600160a01b0316600e8281548110610c5457610c54612a3e565b6000918252602090912001546001600160a01b03161415610c785750600192915050565b80610c82816129cd565b915050610c2d565b50600092915050565b6007546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016109c390612852565b60006064610ccc47601e612930565b610cd6919061291c565b60405190915073e2d71b350421fc1610cfeb2f0c41712dabfe13a29082156108fc029083906000818181858888f19350505050158015610d1a573d6000803e3d6000fd5b5060006064610d2a47601e612930565b610d34919061291c565b60405190915073f6e76d756726c6cdb523d68835316e5f951260be9082156108fc029083906000818181858888f19350505050158015610d78573d6000803e3d6000fd5b5060006064610d8847601e612930565b610d92919061291c565b60405190915073a7a2ef417075410c652520f8c22cd2f0231dc2849082156108fc029083906000818181858888f19350505050158015610dd6573d6000803e3d6000fd5b5060006064610de647600a612930565b610df0919061291c565b604051909150736fbd09ccd3f389412b37c74286db5941a1bce02e9082156108fc029083906000818181858888f19350505050158015610e34573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610e61573d6000803e3d6000fd5b5050505050565b610b448383836040518060200160405280600081525061155d565b600c8054610e9090612992565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612992565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505081565b600080548210610f34576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610f625760405162461bcd60e51b81526004016109c390612852565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6000610f8e82611e0a565b5192915050565b60006001600160a01b038216610fbe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461100d5760405162461bcd60e51b81526004016109c390612852565b6110176000611e9f565b565b6007546001600160a01b031633146110435760405162461bcd60e51b81526004016109c390612852565b600d805460ff19811660ff90911615179055565b6007546001600160a01b031633146110815760405162461bcd60e51b81526004016109c390612852565b600855565b3233146110a55760405162461bcd60e51b81526004016109c390612887565b600d54610100900460ff166110fc5760405162461bcd60e51b815260206004820152601c60248201527f507269766174652073616c65206e6f7420796574206163746976652e0000000060448201526064016109c3565b61110533610c29565b61114b5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016109c3565b6115b38161115860005490565b6111629190612904565b11156111a45760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016109c3565b336000908152600a60205260409020546004906111c2908390612904565b11156111e05760405162461bcd60e51b81526004016109c3906128be565b6111f2816701aa535d3d0c0000612930565b3410156112115760405162461bcd60e51b81526004016109c39061281b565b336000908152600a602052604081208054839290611230908490612904565b9091555061124090503382611ef1565b50565b606033600061125182610f95565b905060008167ffffffffffffffff81111561126e5761126e612a54565b604051908082528060200260200182016040528015611297578160200160208202803683370190505b50905060005b828110156112de576112af8482610b54565b8282815181106112c1576112c1612a3e565b6020908102919091010152806112d6816129cd565b91505061129d565b509392505050565b6007546001600160a01b031633146113105760405162461bcd60e51b81526004016109c390612852565b6115b38161131d60005490565b6113279190612904565b111561136a5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016109c3565b6109df8282611ef1565b6060600280546109f290612992565b3233146113a25760405162461bcd60e51b81526004016109c390612887565b600d5462010000900460ff166113fa5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c65206e6f7420796574206163746976652e000000000060448201526064016109c3565b6115b38161140760005490565b6114119190612904565b11156114535760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016109c3565b806008546114619190612930565b3410156114805760405162461bcd60e51b81526004016109c39061281b565b6112403382611ef1565b6001600160a01b0382163314156114b45760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461154a5760405162461bcd60e51b81526004016109c390612852565b80516109df90600c90602084019061226f565b611568848484611bee565b61157484848484611f0b565b611591576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e81815481106115a757600080fd5b6000918252602090912001546001600160a01b0316905081565b6007546001600160a01b031633146115eb5760405162461bcd60e51b81526004016109c390612852565b600d5465010000000000900460ff161561163d5760405162461bcd60e51b81526020600482015260136024820152721519585b48185b1c9958591e481b5a5b9d1959606a1b60448201526064016109c3565b6115b361164960005490565b6116559061012c612904565b11156116975760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016109c3565b600d805465ff00000000001916650100000000001790556110173361012c611ef1565b3233146116d95760405162461bcd60e51b81526004016109c390612887565b600d5460ff1661172b5760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206e6f7420796574206163746976652e0000000000000060448201526064016109c3565b61173433610c29565b61177a5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016109c3565b6115b38161178760005490565b6117919190612904565b11156117d35760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016109c3565b336000908152600960205260409020546002906117f1908390612904565b111561180f5760405162461bcd60e51b81526004016109c3906128be565b61181a816000612930565b3410156118395760405162461bcd60e51b81526004016109c39061281b565b3360009081526009602052604081208054839290611230908490612904565b6007546001600160a01b031633146118825760405162461bcd60e51b81526004016109c390612852565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b60606118b2826000541190565b6119165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c3565b6000611923836001612904565b600d549091506301000000900460ff166119ca57600c805461194490612992565b80601f016020809104026020016040519081016040528092919081815260200182805461197090612992565b80156119bd5780601f10611992576101008083540402835291602001916119bd565b820191906000526020600020905b8154815290600101906020018083116119a057829003601f168201915b5050505050915050919050565b6000600b80546119d990612992565b9050116119f55760405180602001604052806000815250611a21565b600b611a008261201a565b604051602001611a119291906126cc565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a525760405162461bcd60e51b81526004016109c390612852565b600d805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b03163314611a995760405162461bcd60e51b81526004016109c390612852565b600d805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314611ae25760405162461bcd60e51b81526004016109c390612852565b611aee600e60006122ef565b610b44600e838361230d565b6007546001600160a01b03163314611b245760405162461bcd60e51b81526004016109c390612852565b6001600160a01b038116611b895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b61124081611e9f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bf982611e0a565b80519091506000906001600160a01b0316336001600160a01b03161480611c30575033611c2584610a75565b6001600160a01b0316145b80611c4257508151611c4290336108be565b905080611c6257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c975760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cbe57604051633a954ecd60e21b815260040160405180910390fd5b611cce6000848460000151611b92565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611dc357611d76816000541190565b15611dc3578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e61565b6040805180820190915260008082526020820152611e29826000541190565b611e4657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e95579392505050565b5060001901611e48565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109df828260405180602001604052806000815250612118565b60006001600160a01b0384163b1561200e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4f903390899088908890600401612787565b602060405180830381600087803b158015611f6957600080fd5b505af1925050508015611f99575060408051601f3d908101601f19168201909252611f9691810190612605565b60015b611ff4573d808015611fc7576040519150601f19603f3d011682016040523d82523d6000602084013e611fcc565b606091505b508051611fec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612012565b5060015b949350505050565b60608161203e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120685780612052816129cd565b91506120619050600a8361291c565b9150612042565b60008167ffffffffffffffff81111561208357612083612a54565b6040519080825280601f01601f1916602001820160405280156120ad576020820181803683370190505b5090505b8415612012576120c260018361294f565b91506120cf600a866129e8565b6120da906030612904565b60f81b8183815181106120ef576120ef612a3e565b60200101906001600160f81b031916908160001a905350612111600a8661291c565b94506120b1565b610b4483838360016000546001600160a01b03851661214957604051622e076360e81b815260040160405180910390fd5b836121675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156122665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561223c575061223a6000888488611f0b565b155b1561225a576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016121e5565b50600055610e61565b82805461227b90612992565b90600052602060002090601f01602090048101928261229d57600085556122e3565b82601f106122b657805160ff19168380011785556122e3565b828001600101855582156122e3579182015b828111156122e35782518255916020019190600101906122c8565b50610f34929150612360565b50805460008255906000526020600020908101906112409190612360565b8280548282559060005260206000209081019282156122e3579160200282015b828111156122e35781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061232d565b5b80821115610f345760008155600101612361565b600067ffffffffffffffff8084111561239057612390612a54565b604051601f8501601f19908116603f011681019082821181831017156123b8576123b8612a54565b816040528093508581528686860111156123d157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240257600080fd5b919050565b60006020828403121561241957600080fd5b611a21826123eb565b6000806040838503121561243557600080fd5b61243e836123eb565b915061244c602084016123eb565b90509250929050565b60008060006060848603121561246a57600080fd5b612473846123eb565b9250612481602085016123eb565b9150604084013590509250925092565b600080600080608085870312156124a757600080fd5b6124b0856123eb565b93506124be602086016123eb565b925060408501359150606085013567ffffffffffffffff8111156124e157600080fd5b8501601f810187136124f257600080fd5b61250187823560208401612375565b91505092959194509250565b6000806040838503121561252057600080fd5b612529836123eb565b91506020830135801515811461253e57600080fd5b809150509250929050565b6000806040838503121561255c57600080fd5b612565836123eb565b946020939093013593505050565b6000806020838503121561258657600080fd5b823567ffffffffffffffff8082111561259e57600080fd5b818501915085601f8301126125b257600080fd5b8135818111156125c157600080fd5b8660208260051b85010111156125d657600080fd5b60209290920196919550909350505050565b6000602082840312156125fa57600080fd5b8135611a2181612a6a565b60006020828403121561261757600080fd5b8151611a2181612a6a565b60006020828403121561263457600080fd5b813567ffffffffffffffff81111561264b57600080fd5b8201601f8101841361265c57600080fd5b61201284823560208401612375565b60006020828403121561267d57600080fd5b5035919050565b6000815180845261269c816020860160208601612966565b601f01601f19169290920160200192915050565b600081516126c2818560208601612966565b9290920192915050565b600080845481600182811c9150808316806126e857607f831692505b602080841082141561270857634e487b7160e01b86526022600452602486fd5b81801561271c576001811461272d5761275a565b60ff1986168952848901965061275a565b60008b81526020902060005b868110156127525781548b820152908501908301612739565b505084890196505b50505050505061277e61276d82866126b0565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ba90830184612684565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127fc578351835292840192918401916001016127e0565b50909695505050505050565b602081526000611a216020830184612684565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604082015260600190565b60208082526026908201527f43616e6e6f74206d696e74206265796f6e642077686974656c697374206d6178604082015265206d696e742160d01b606082015260800190565b6000821982111561291757612917612a12565b500190565b60008261292b5761292b612a28565b500490565b600081600019048311821515161561294a5761294a612a12565b500290565b60008282101561296157612961612a12565b500390565b60005b83811015612981578181015183820152602001612969565b838111156115915750506000910152565b600181811c908216806129a657607f821691505b602082108114156129c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e1576129e1612a12565b5060010190565b6000826129f7576129f7612a28565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461124057600080fdfea2646970667358221220cabb35c9c77a2790cc09ce96b270e7b3e7d1d94ccd51394a25656eb3428ba6f164736f6c63430008070033

Deployed Bytecode Sourcemap

43468:6187:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30685:372;;;;;;;;;;-1:-1:-1;30685:372:0;;;;;:::i;:::-;;:::i;:::-;;;8042:14:1;;8035:22;8017:41;;8005:2;7990:18;30685:372:0;;;;;;;;43976:53;;;;;;;;;;-1:-1:-1;43976:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;13550:25:1;;;13538:2;13523:18;43976:53:0;13404:177:1;48014:115:0;;;;;;;;;;-1:-1:-1;48014:115:0;;;;;:::i;:::-;;:::i;:::-;;32501:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33978:204::-;;;;;;;;;;-1:-1:-1;33978:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6703:32:1;;;6685:51;;6673:2;6658:18;33978:204:0;6539:203:1;33567:345:0;;;;;;;;;;-1:-1:-1;33567:345:0;;;;;:::i;:::-;;:::i;44222:22::-;;;;;;;;;;-1:-1:-1;44222:22:0;;;;;;;;;;;28952:101;;;;;;;;;;-1:-1:-1;29005:7:0;29032:13;28952:101;;34835:170;;;;;;;;;;-1:-1:-1;34835:170:0;;;;;:::i;:::-;;:::i;44192:23::-;;;;;;;;;;-1:-1:-1;44192:23:0;;;;;;;;;;;43824:39;;;;;;;;;;;;43862:1;43824:39;;29606:1007;;;;;;;;;;-1:-1:-1;29606:1007:0;;;;;:::i;:::-;;:::i;47767:239::-;;;;;;;;;;-1:-1:-1;47767:239:0;;;;;:::i;:::-;;:::i;48882:770::-;;;;;;;;;;;;;:::i;35076:185::-;;;;;;;;;;-1:-1:-1;35076:185:0;;;;;:::i;:::-;;:::i;44106:35::-;;;;;;;;;;;;;:::i;29130:176::-;;;;;;;;;;-1:-1:-1;29130:176:0;;;;;:::i;:::-;;:::i;44251:22::-;;;;;;;;;;-1:-1:-1;44251:22:0;;;;;;;;;;;43686:53;;;;;;;;;;;;43729:10;43686:53;;48789:85;;;;;;;;;;;;;:::i;32310:124::-;;;;;;;;;;-1:-1:-1;32310:124:0;;;;;:::i;:::-;;:::i;31121:206::-;;;;;;;;;;-1:-1:-1;31121:206:0;;;;;:::i;:::-;;:::i;7448:103::-;;;;;;;;;;;;;:::i;48501:83::-;;;;;;;;;;;;;:::i;48285:124::-;;;;;;;;;;-1:-1:-1;48285:124:0;;;;;:::i;:::-;;:::i;45200:619::-;;;;;;:::i;:::-;;:::i;47003:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44280:17::-;;;;;;;;;;-1:-1:-1;44280:17:0;;;;;;;;;;;43921:48;;;;;;;;;;-1:-1:-1;43921:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;47417:182;;;;;;;;;;-1:-1:-1;47417:182:0;;;;;:::i;:::-;;:::i;6797:87::-;;;;;;;;;;-1:-1:-1;6870:6:0;;-1:-1:-1;;;;;6870:6:0;6797:87;;32670:104;;;;;;;;;;;;;:::i;45827:355::-;;;;;;:::i;:::-;;:::i;34254:279::-;;;;;;;;;;-1:-1:-1;34254:279:0;;;;;:::i;:::-;;:::i;48135:142::-;;;;;;;;;;-1:-1:-1;48135:142:0;;;;;:::i;:::-;;:::i;43746:43::-;;;;;;;;;;;;;;;;43565:40;;;;;;;;;;;;43601:4;43565:40;;35332:308;;;;;;;;;;-1:-1:-1;35332:308:0;;;;;:::i;:::-;;:::i;43629:50::-;;;;;;;;;;;;43669:10;43629:50;;44335:37;;;;;;;;;;-1:-1:-1;44335:37:0;;;;;:::i;:::-;;:::i;46190:240::-;;;;;;;;;;;;;:::i;44599:593::-;;;;;;:::i;:::-;;:::i;48419:74::-;;;;;;;;;;;;;:::i;46559:436::-;;;;;;;;;;-1:-1:-1;46559:436:0;;;;;:::i;:::-;;:::i;44165:20::-;;;;;;;;;;-1:-1:-1;44165:20:0;;;;;;;;43870:42;;;;;;;;;;;;43911:1;43870:42;;48592:92;;;;;;;;;;;;;:::i;48692:89::-;;;;;;;;;;;;;:::i;44304:22::-;;;;;;;;;;-1:-1:-1;44304:22:0;;;;;;;;;;;34604:164;;;;;;;;;;-1:-1:-1;34604:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34725:25:0;;;34701:4;34725:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34604:164;47613:146;;;;;;;;;;-1:-1:-1;47613:146:0;;;;;:::i;:::-;;:::i;7706:201::-;;;;;;;;;;-1:-1:-1;7706:201:0;;;;;:::i;:::-;;:::i;30685:372::-;30787:4;-1:-1:-1;;;;;;30824:40:0;;-1:-1:-1;;;30824:40:0;;:105;;-1:-1:-1;;;;;;;30881:48:0;;-1:-1:-1;;;30881:48:0;30824:105;:172;;;-1:-1:-1;;;;;;;30946:50:0;;-1:-1:-1;;;30946:50:0;30824:172;:225;;;-1:-1:-1;;;;;;;;;;19713:40:0;;;31013:36;30804:245;30685:372;-1:-1:-1;;30685:372:0:o;48014:115::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;;;;;;;;;48093:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48014:115:::0;:::o;32501:100::-;32555:13;32588:5;32581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32501:100;:::o;33978:204::-;34046:7;34071:16;34079:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;34071:16;34066:64;;34096:34;;-1:-1:-1;;;34096:34:0;;;;;;;;;;;34066:64;-1:-1:-1;34150:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34150:24:0;;33978:204::o;33567:345::-;33640:13;33656:24;33672:7;33656:15;:24::i;:::-;33640:40;;33701:5;-1:-1:-1;;;;;33695:11:0;:2;-1:-1:-1;;;;;33695:11:0;;33691:48;;;33715:24;;-1:-1:-1;;;33715:24:0;;;;;;;;;;;33691:48;5601:10;-1:-1:-1;;;;;33756:21:0;;;;;;:63;;-1:-1:-1;33782:37:0;33799:5;5601:10;34604:164;:::i;33782:37::-;33781:38;33756:63;33752:111;;;33828:35;;-1:-1:-1;;;33828:35:0;;;;;;;;;;;33752:111;33876:28;33885:2;33889:7;33898:5;33876:8;:28::i;:::-;33629:283;33567:345;;:::o;34835:170::-;34969:28;34979:4;34985:2;34989:7;34969:9;:28::i;29606:1007::-;29695:7;29728:16;29738:5;29728:9;:16::i;:::-;29719:5;:25;29715:61;;29753:23;;-1:-1:-1;;;29753:23:0;;;;;;;;;;;29715:61;29787:22;29032:13;;;29787:22;;30050:466;30070:14;30066:1;:18;30050:466;;;30110:31;30144:14;;;:11;:14;;;;;;;;;30110:48;;;;;;;;;-1:-1:-1;;;;;30110:48:0;;;;;-1:-1:-1;;;30110:48:0;;;;;;;;;;;;30181:28;30177:111;;30254:14;;;-1:-1:-1;30177:111:0;30331:5;-1:-1:-1;;;;;30310:26:0;:17;-1:-1:-1;;;;;30310:26:0;;30306:195;;;30380:5;30365:11;:20;30361:85;;;-1:-1:-1;30421:1:0;-1:-1:-1;30414:8:0;;-1:-1:-1;;;30414:8:0;30361:85;30468:13;;;;;30306:195;-1:-1:-1;30086:3:0;;30050:466;;;-1:-1:-1;30592:13:0;;:::i;:::-;29704:909;;;29606:1007;;;;:::o;47767:239::-;47826:4;;47839:143;47860:20;:27;47856:31;;47839:143;;;47934:5;-1:-1:-1;;;;;47907:32:0;:20;47928:1;47907:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47907:23:0;:32;47903:72;;;-1:-1:-1;47961:4:0;;47767:239;-1:-1:-1;;47767:239:0:o;47903:72::-;47889:3;;;;:::i;:::-;;;;47839:143;;;-1:-1:-1;47995:5:0;;47767:239;-1:-1:-1;;47767:239:0:o;48882:770::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48931:26:::1;48987:3;48960:26;:21;48984:2;48960:26;:::i;:::-;:30;;;;:::i;:::-;49001:80;::::0;48931:59;;-1:-1:-1;49009:42:0::1;::::0;49001:80;::::1;;;::::0;48931:59;;49001:80:::1;::::0;;;48931:59;49009:42;49001:80;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49092:26:0::1;49148:3;49121:26;:21;49145:2;49121:26;:::i;:::-;:30;;;;:::i;:::-;49162:80;::::0;49092:59;;-1:-1:-1;49170:42:0::1;::::0;49162:80;::::1;;;::::0;49092:59;;49162:80:::1;::::0;;;49092:59;49170:42;49162:80;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49253:26:0::1;49309:3;49282:26;:21;49306:2;49282:26;:::i;:::-;:30;;;;:::i;:::-;49323:80;::::0;49253:59;;-1:-1:-1;49331:42:0::1;::::0;49323:80;::::1;;;::::0;49253:59;;49323:80:::1;::::0;;;49253:59;49331:42;49323:80;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49414:25:0::1;49469:3;49442:26;:21;49466:2;49442:26;:::i;:::-;:30;;;;:::i;:::-;49483:79;::::0;49414:58;;-1:-1:-1;49491:42:0::1;::::0;49483:79;::::1;;;::::0;49414:58;;49483:79:::1;::::0;;;49414:58;49491:42;49483:79;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49593:51:0::1;::::0;49601:10:::1;::::0;49622:21:::1;49593:51:::0;::::1;;;::::0;::::1;::::0;;;49622:21;49601:10;49593:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48920:732;;;;48882:770::o:0;35076:185::-;35214:39;35231:4;35237:2;35241:7;35214:39;;;;;;;;;;;;:16;:39::i;44106:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29130:176::-;29197:7;29032:13;;29221:5;:22;29217:58;;29252:23;;-1:-1:-1;;;29252:23:0;;;;;;;;;;;29217:58;-1:-1:-1;29293:5:0;29130:176::o;48789:85::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48856:10:::1;::::0;;-1:-1:-1;;48842:24:0;::::1;48856:10:::0;;;;::::1;;;48855:11;48842:24:::0;;::::1;;::::0;;48789:85::o;32310:124::-;32374:7;32401:20;32413:7;32401:11;:20::i;:::-;:25;;32310:124;-1:-1:-1;;32310:124:0:o;31121:206::-;31185:7;-1:-1:-1;;;;;31209:19:0;;31205:60;;31237:28;;-1:-1:-1;;;31237:28:0;;;;;;;;;;;31205:60;-1:-1:-1;;;;;;31291:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31291:27:0;;31121:206::o;7448:103::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;7513:30:::1;7540:1;7513:18;:30::i;:::-;7448:103::o:0;48501:83::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48568:8:::1;::::0;;-1:-1:-1;;48556:20:0;::::1;48568:8;::::0;;::::1;48567:9;48556:20;::::0;;48501:83::o;48285:124::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48366:15:::1;:37:::0;48285:124::o;45200:619::-;44507:9;44520:10;44507:23;44499:66;;;;-1:-1:-1;;;44499:66:0;;;;;;;:::i;:::-;45288:11:::1;::::0;::::1;::::0;::::1;;;45280:52;;;::::0;-1:-1:-1;;;45280:52:0;;9605:2:1;45280:52:0::1;::::0;::::1;9587:21:1::0;9644:2;9624:18;;;9617:30;9683;9663:18;;;9656:58;9731:18;;45280:52:0::1;9403:352:1::0;45280:52:0::1;45351:25;45365:10;45351:13;:25::i;:::-;45343:61;;;::::0;-1:-1:-1;;;45343:61:0;;12847:2:1;45343:61:0::1;::::0;::::1;12829:21:1::0;12886:2;12866:18;;;12859:30;-1:-1:-1;;;12905:18:1;;;12898:53;12968:18;;45343:61:0::1;12645:347:1::0;45343:61:0::1;43601:4;45440:9;45424:13;29005:7:::0;29032:13;;28952:101;45424:13:::1;:25;;;;:::i;:::-;45423:40;;45415:70;;;::::0;-1:-1:-1;;;45415:70:0;;11796:2:1;45415:70:0::1;::::0;::::1;11778:21:1::0;11835:2;11815:18;;;11808:30;-1:-1:-1;;;11854:18:1;;;11847:47;11911:18;;45415:70:0::1;11594:341:1::0;45415:70:0::1;45524:10;45505:30;::::0;;;:18:::1;:30;::::0;;;;;43911:1:::1;::::0;45505:42:::1;::::0;45538:9;;45505:42:::1;:::i;:::-;45504:63;;45496:114;;;;-1:-1:-1::0;;;45496:114:0::1;;;;;;;:::i;:::-;45643:28;45662:9:::0;43729:10:::1;45643:28;:::i;:::-;45629:9;:43;;45621:82;;;;-1:-1:-1::0;;;45621:82:0::1;;;;;;;:::i;:::-;45744:10;45725:30;::::0;;;:18:::1;:30;::::0;;;;:43;;45759:9;;45725:30;:43:::1;::::0;45759:9;;45725:43:::1;:::i;:::-;::::0;;;-1:-1:-1;45779:32:0::1;::::0;-1:-1:-1;45789:10:0::1;45801:9:::0;45779::::1;:32::i;:::-;45200:619:::0;:::o;47003:406::-;47045:16;47090:10;47073:14;47138:17;47090:10;47138:9;:17::i;:::-;47111:44;;47166:25;47208:16;47194:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47194:31:0;;47166:59;;47242:13;47238:136;47269:16;47261:5;:24;47238:136;;;47328:34;47348:6;47356:5;47328:19;:34::i;:::-;47310:8;47319:5;47310:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;47287:7;;;;:::i;:::-;;;;47238:136;;;-1:-1:-1;47393:8:0;47003:406;-1:-1:-1;;;47003:406:0:o;47417:182::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;43601:4:::1;47513:9;47497:13;29005:7:::0;29032:13;;28952:101;47497:13:::1;:25;;;;:::i;:::-;:38;;47489:69;;;::::0;-1:-1:-1;;;47489:69:0;;10318:2:1;47489:69:0::1;::::0;::::1;10300:21:1::0;10357:2;10337:18;;;10330:30;-1:-1:-1;;;10376:18:1;;;10369:48;10434:18;;47489:69:0::1;10116:342:1::0;47489:69:0::1;47566:25;47576:3;47581:9;47566;:25::i;32670:104::-:0;32726:13;32759:7;32752:14;;;;;:::i;45827:355::-;44507:9;44520:10;44507:23;44499:66;;;;-1:-1:-1;;;44499:66:0;;;;;;;:::i;:::-;45914:10:::1;::::0;;;::::1;;;45906:50;;;::::0;-1:-1:-1;;;45906:50:0;;9962:2:1;45906:50:0::1;::::0;::::1;9944:21:1::0;10001:2;9981:18;;;9974:30;10040:29;10020:18;;;10013:57;10087:18;;45906:50:0::1;9760:351:1::0;45906:50:0::1;43601:4;45992:9;45976:13;29005:7:::0;29032:13;;28952:101;45976:13:::1;:25;;;;:::i;:::-;45975:40;;45967:70;;;::::0;-1:-1:-1;;;45967:70:0;;12142:2:1;45967:70:0::1;::::0;::::1;12124:21:1::0;12181:2;12161:18;;;12154:30;-1:-1:-1;;;12200:18:1;;;12193:47;12257:18;;45967:70:0::1;11940:341:1::0;45967:70:0::1;46088:9;46070:15;;:27;;;;:::i;:::-;46056:9;:42;;46048:81;;;;-1:-1:-1::0;;;46048:81:0::1;;;;;;;:::i;:::-;46142:32;46152:10;46164:9;46142;:32::i;34254:279::-:0;-1:-1:-1;;;;;34345:24:0;;5601:10;34345:24;34341:54;;;34378:17;;-1:-1:-1;;;34378:17:0;;;;;;;;;;;34341:54;5601:10;34408:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34408:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34408:53:0;;;;;;;;;;34477:48;;8017:41:1;;;34408:42:0;;5601:10;34477:48;;7990:18:1;34477:48:0;;;;;;;34254:279;;:::o;48135:142::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48227:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;35332:308::-:0;35491:28;35501:4;35507:2;35511:7;35491:9;:28::i;:::-;35535:48;35558:4;35564:2;35568:7;35577:5;35535:22;:48::i;:::-;35530:102;;35592:40;;-1:-1:-1;;;35592:40:0;;;;;;;;;;;35530:102;35332:308;;;;:::o;44335:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44335:37:0;;-1:-1:-1;44335:37:0;:::o;46190:240::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;46248:10:::1;::::0;;;::::1;;;46247:11;46239:43;;;::::0;-1:-1:-1;;;46239:43:0;;8902:2:1;46239:43:0::1;::::0;::::1;8884:21:1::0;8941:2;8921:18;;;8914:30;-1:-1:-1;;;8960:18:1;;;8953:49;9019:18;;46239:43:0::1;8700:343:1::0;46239:43:0::1;43601:4;46302:13;29005:7:::0;29032:13;;28952:101;46302:13:::1;:19;::::0;46318:3:::1;46302:19;:::i;:::-;46301:34;;46293:64;;;::::0;-1:-1:-1;;;46293:64:0;;12142:2:1;46293:64:0::1;::::0;::::1;12124:21:1::0;12181:2;12161:18;;;12154:30;-1:-1:-1;;;12200:18:1;;;12193:47;12257:18;;46293:64:0::1;11940:341:1::0;46293:64:0::1;46368:10;:17:::0;;-1:-1:-1;;46368:17:0::1;::::0;::::1;::::0;;46396:26:::1;46406:10;46418:3;46396:9;:26::i;44599:593::-:0;44507:9;44520:10;44507:23;44499:66;;;;-1:-1:-1;;;44499:66:0;;;;;;;:::i;:::-;44684:8:::1;::::0;::::1;;44676:46;;;::::0;-1:-1:-1;;;44676:46:0;;10665:2:1;44676:46:0::1;::::0;::::1;10647:21:1::0;10704:2;10684:18;;;10677:30;10743:27;10723:18;;;10716:55;10788:18;;44676:46:0::1;10463:349:1::0;44676:46:0::1;44741:25;44755:10;44741:13;:25::i;:::-;44733:61;;;::::0;-1:-1:-1;;;44733:61:0;;12847:2:1;44733:61:0::1;::::0;::::1;12829:21:1::0;12886:2;12866:18;;;12859:30;-1:-1:-1;;;12905:18:1;;;12898:53;12968:18;;44733:61:0::1;12645:347:1::0;44733:61:0::1;43601:4;44830:9;44814:13;29005:7:::0;29032:13;;28952:101;44814:13:::1;:25;;;;:::i;:::-;44813:40;;44805:70;;;::::0;-1:-1:-1;;;44805:70:0;;11796:2:1;44805:70:0::1;::::0;::::1;11778:21:1::0;11835:2;11815:18;;;11808:30;-1:-1:-1;;;11854:18:1;;;11847:47;11911:18;;44805:70:0::1;11594:341:1::0;44805:70:0::1;44909:10;44895:25;::::0;;;:13:::1;:25;::::0;;;;;43862:1:::1;::::0;44895:37:::1;::::0;44923:9;;44895:37:::1;:::i;:::-;44894:55;;44886:106;;;;-1:-1:-1::0;;;44886:106:0::1;;;;;;;:::i;:::-;45025:25;45041:9:::0;43669:10:::1;45025:25;:::i;:::-;45011:9;:40;;45003:79;;;;-1:-1:-1::0;;;45003:79:0::1;;;;;;;:::i;:::-;45117:10;45103:25;::::0;;;:13:::1;:25;::::0;;;;:38;;45132:9;;45103:25;:38:::1;::::0;45132:9;;45103:38:::1;:::i;48419:74::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48480:5:::1;::::0;;-1:-1:-1;;48471:14:0;::::1;48480:5:::0;;;;::::1;;;48479:6;48471:14:::0;;::::1;;::::0;;48419:74::o;46559:436::-;46632:13;46666:16;46674:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;46666:16;46658:76;;;;-1:-1:-1;;;46658:76:0;;11380:2:1;46658:76:0;;;11362:21:1;11419:2;11399:18;;;11392:30;11458:34;11438:18;;;11431:62;-1:-1:-1;;;11509:18:1;;;11502:45;11564:19;;46658:76:0;11178:411:1;46658:76:0;46747:14;46764:11;:7;46774:1;46764:11;:::i;:::-;46792:10;;46747:28;;-1:-1:-1;46792:10:0;;;;;46788:68;;46825:19;46818:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46559:436;;;:::o;46788:68::-;46912:1;46889:12;46883:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;46940:12;46954:17;:6;:15;:17::i;:::-;46923:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46883:104;46876:111;46559:436;-1:-1:-1;;;46559:436:0:o;48592:92::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48665:11:::1;::::0;;-1:-1:-1;;48650:26:0;::::1;48665:11;::::0;;;::::1;;;48664:12;48650:26:::0;;::::1;;::::0;;48592:92::o;48692:89::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;48763:10:::1;::::0;;-1:-1:-1;;48749:24:0;::::1;48763:10:::0;;;;::::1;;;48762:11;48749:24:::0;;::::1;;::::0;;48692:89::o;47613:146::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47688:27:::1;47695:20;;47688:27;:::i;:::-;47722:29;:20;47745:6:::0;;47722:29:::1;:::i;7706:201::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7795:22:0;::::1;7787:73;;;::::0;-1:-1:-1;;;7787:73:0;;8495:2:1;7787:73:0::1;::::0;::::1;8477:21:1::0;8534:2;8514:18;;;8507:30;8573:34;8553:18;;;8546:62;-1:-1:-1;;;8624:18:1;;;8617:36;8670:19;;7787:73:0::1;8293:402:1::0;7787:73:0::1;7871:28;7890:8;7871:18;:28::i;40658:196::-:0;40773:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40773:29:0;-1:-1:-1;;;;;40773:29:0;;;;;;;;;40818:28;;40773:24;;40818:28;;;;;;;40658:196;;;:::o;38578:1962::-;38693:35;38731:20;38743:7;38731:11;:20::i;:::-;38806:18;;38693:58;;-1:-1:-1;38764:22:0;;-1:-1:-1;;;;;38790:34:0;5601:10;-1:-1:-1;;;;;38790:34:0;;:87;;;-1:-1:-1;5601:10:0;38841:20;38853:7;38841:11;:20::i;:::-;-1:-1:-1;;;;;38841:36:0;;38790:87;:154;;;-1:-1:-1;38911:18:0;;38894:50;;5601:10;34604:164;:::i;38894:50::-;38764:181;;38963:17;38958:66;;38989:35;;-1:-1:-1;;;38989:35:0;;;;;;;;;;;38958:66;39061:4;-1:-1:-1;;;;;39039:26:0;:13;:18;;;-1:-1:-1;;;;;39039:26:0;;39035:67;;39074:28;;-1:-1:-1;;;39074:28:0;;;;;;;;;;;39035:67;-1:-1:-1;;;;;39117:16:0;;39113:52;;39142:23;;-1:-1:-1;;;39142:23:0;;;;;;;;;;;39113:52;39286:49;39303:1;39307:7;39316:13;:18;;;39286:8;:49::i;:::-;-1:-1:-1;;;;;39631:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39631:31:0;;;-1:-1:-1;;;;;39631:31:0;;;-1:-1:-1;;39631:31:0;;;;;;;39677:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39677:29:0;;;;;;;;;;;;;39723:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39768:61:0;;;;-1:-1:-1;;;39813:15:0;39768:61;;;;;;40103:11;;;40133:24;;;;;:29;40103:11;;40133:29;40129:295;;40201:20;40209:11;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;40201:20;40197:212;;;40278:18;;;40246:24;;;:11;:24;;;;;;;;:50;;40361:28;;;;40319:70;;-1:-1:-1;;;40319:70:0;-1:-1:-1;;;;;;40319:70:0;;;-1:-1:-1;;;;;40246:50:0;;;40319:70;;;;;;;40197:212;39606:829;40471:7;40467:2;-1:-1:-1;;;;;40452:27:0;40461:4;-1:-1:-1;;;;;40452:27:0;;;;;;;;;;;40490:42;35332:308;31744:504;-1:-1:-1;;;;;;;;;;;;;;;;;31844:16:0;31852:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;31844:16;31839:61;;31869:31;;-1:-1:-1;;;31869:31:0;;;;;;;;;;;31839:61;31958:7;31938:245;32005:31;32039:17;;;:11;:17;;;;;;;;;32005:51;;;;;;;;;-1:-1:-1;;;;;32005:51:0;;;;;-1:-1:-1;;;32005:51:0;;;;;;;;;;;;32079:28;32075:93;;32139:9;31744:504;-1:-1:-1;;;31744:504:0:o;32075:93::-;-1:-1:-1;;;31978:6:0;31938:245;;8067:191;8160:6;;;-1:-1:-1;;;;;8177:17:0;;;-1:-1:-1;;;;;;8177:17:0;;;;;;;8210:40;;8160:6;;;8177:17;8160:6;;8210:40;;8141:16;;8210:40;8130:128;8067:191;:::o;36015:104::-;36084:27;36094:2;36098:8;36084:27;;;;;;;;;;;;:9;:27::i;41419:765::-;41574:4;-1:-1:-1;;;;;41595:13:0;;9793:19;:23;41591:586;;41631:72;;-1:-1:-1;;;41631:72:0;;-1:-1:-1;;;;;41631:36:0;;;;;:72;;5601:10;;41682:4;;41688:7;;41697:5;;41631:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41631:72:0;;;;;;;;-1:-1:-1;;41631:72:0;;;;;;;;;;;;:::i;:::-;;;41627:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41877:13:0;;41873:234;;41904:40;;-1:-1:-1;;;41904:40:0;;;;;;;;;;;41873:234;42057:6;42051:13;42042:6;42038:2;42034:15;42027:38;41627:495;-1:-1:-1;;;;;;41754:55:0;-1:-1:-1;;;41754:55:0;;-1:-1:-1;41747:62:0;;41591:586;-1:-1:-1;42161:4:0;41591:586;41419:765;;;;;;:::o;3083:723::-;3139:13;3360:10;3356:53;;-1:-1:-1;;3387:10:0;;;;;;;;;;;;-1:-1:-1;;;3387:10:0;;;;;3083:723::o;3356:53::-;3434:5;3419:12;3475:78;3482:9;;3475:78;;3508:8;;;;:::i;:::-;;-1:-1:-1;3531:10:0;;-1:-1:-1;3539:2:0;3531:10;;:::i;:::-;;;3475:78;;;3563:19;3595:6;3585:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3585:17:0;;3563:39;;3613:154;3620:10;;3613:154;;3647:11;3657:1;3647:11;;:::i;:::-;;-1:-1:-1;3716:10:0;3724:2;3716:5;:10;:::i;:::-;3703:24;;:2;:24;:::i;:::-;3690:39;;3673:6;3680;3673:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3673:56:0;;;;;;;;-1:-1:-1;3744:11:0;3753:2;3744:11;;:::i;:::-;;;3613:154;;36482:163;36605:32;36611:2;36615:8;36625:5;36632:4;37043:20;37066:13;-1:-1:-1;;;;;37094:16:0;;37090:48;;37119:19;;-1:-1:-1;;;37119:19:0;;;;;;;;;;;37090:48;37153:13;37149:44;;37175:18;;-1:-1:-1;;;37175:18:0;;;;;;;;;;;37149:44;-1:-1:-1;;;;;37546:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37546:45:0;;-1:-1:-1;;;;;37546:45:0;;;;;;;;;;37606:50;;;;;;;;;;;;;;37673:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37723:66:0;;;;-1:-1:-1;;;37773:15:0;37723:66;;;;;;;37673:25;;37858:330;37878:8;37874:1;:12;37858:330;;;37917:38;;37942:12;;-1:-1:-1;;;;;37917:38:0;;;37934:1;;37917:38;;37934:1;;37917:38;37978:4;:68;;;;;37987:59;38018:1;38022:2;38026:12;38040:5;37987:22;:59::i;:::-;37986:60;37978:68;37974:164;;;38078:40;;-1:-1:-1;;;38078:40:0;;;;;;;;;;;37974:164;38158:14;;;;;37888:3;37858:330;;;-1:-1:-1;38204:13:0;:28;38256:60;35332:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:185::-;4967:3;5005:5;4999:12;5020:52;5065:6;5060:3;5053:4;5046:5;5042:16;5020:52;:::i;:::-;5088:16;;;;;4925:185;-1:-1:-1;;4925:185:1:o;5233:1301::-;5510:3;5539:1;5572:6;5566:13;5602:3;5624:1;5652:9;5648:2;5644:18;5634:28;;5712:2;5701:9;5697:18;5734;5724:61;;5778:4;5770:6;5766:17;5756:27;;5724:61;5804:2;5852;5844:6;5841:14;5821:18;5818:38;5815:165;;;-1:-1:-1;;;5879:33:1;;5935:4;5932:1;5925:15;5965:4;5886:3;5953:17;5815:165;5996:18;6023:104;;;;6141:1;6136:320;;;;5989:467;;6023:104;-1:-1:-1;;6056:24:1;;6044:37;;6101:16;;;;-1:-1:-1;6023:104:1;;6136:320;13659:1;13652:14;;;13696:4;13683:18;;6231:1;6245:165;6259:6;6256:1;6253:13;6245:165;;;6337:14;;6324:11;;;6317:35;6380:16;;;;6274:10;;6245:165;;;6249:3;;6439:6;6434:3;6430:16;6423:23;;5989:467;;;;;;;6472:56;6497:30;6523:3;6515:6;6497:30;:::i;:::-;-1:-1:-1;;;5175:20:1;;5220:1;5211:11;;5115:113;6472:56;6465:63;5233:1301;-1:-1:-1;;;;;5233:1301:1:o;6747:488::-;-1:-1:-1;;;;;7016:15:1;;;6998:34;;7068:15;;7063:2;7048:18;;7041:43;7115:2;7100:18;;7093:34;;;7163:3;7158:2;7143:18;;7136:31;;;6941:4;;7184:45;;7209:19;;7201:6;7184:45;:::i;:::-;7176:53;6747:488;-1:-1:-1;;;;;;6747:488:1:o;7240:632::-;7411:2;7463:21;;;7533:13;;7436:18;;;7555:22;;;7382:4;;7411:2;7634:15;;;;7608:2;7593:18;;;7382:4;7677:169;7691:6;7688:1;7685:13;7677:169;;;7752:13;;7740:26;;7821:15;;;;7786:12;;;;7713:1;7706:9;7677:169;;;-1:-1:-1;7863:3:1;;7240:632;-1:-1:-1;;;;;;7240:632:1:o;8069:219::-;8218:2;8207:9;8200:21;8181:4;8238:44;8278:2;8267:9;8263:18;8255:6;8238:44;:::i;9048:350::-;9250:2;9232:21;;;9289:2;9269:18;;;9262:30;9328:28;9323:2;9308:18;;9301:56;9389:2;9374:18;;9048:350::o;10817:356::-;11019:2;11001:21;;;11038:18;;;11031:30;11097:34;11092:2;11077:18;;11070:62;11164:2;11149:18;;10817:356::o;12286:354::-;12488:2;12470:21;;;12527:2;12507:18;;;12500:30;12566:32;12561:2;12546:18;;12539:60;12631:2;12616:18;;12286:354::o;12997:402::-;13199:2;13181:21;;;13238:2;13218:18;;;13211:30;13277:34;13272:2;13257:18;;13250:62;-1:-1:-1;;;13343:2:1;13328:18;;13321:36;13389:3;13374:19;;12997:402::o;13712:128::-;13752:3;13783:1;13779:6;13776:1;13773:13;13770:39;;;13789:18;;:::i;:::-;-1:-1:-1;13825:9:1;;13712:128::o;13845:120::-;13885:1;13911;13901:35;;13916:18;;:::i;:::-;-1:-1:-1;13950:9:1;;13845:120::o;13970:168::-;14010:7;14076:1;14072;14068:6;14064:14;14061:1;14058:21;14053:1;14046:9;14039:17;14035:45;14032:71;;;14083:18;;:::i;:::-;-1:-1:-1;14123:9:1;;13970:168::o;14143:125::-;14183:4;14211:1;14208;14205:8;14202:34;;;14216:18;;:::i;:::-;-1:-1:-1;14253:9:1;;14143:125::o;14273:258::-;14345:1;14355:113;14369:6;14366:1;14363:13;14355:113;;;14445:11;;;14439:18;14426:11;;;14419:39;14391:2;14384:10;14355:113;;;14486:6;14483:1;14480:13;14477:48;;;-1:-1:-1;;14521:1:1;14503:16;;14496:27;14273:258::o;14536:380::-;14615:1;14611:12;;;;14658;;;14679:61;;14733:4;14725:6;14721:17;14711:27;;14679:61;14786:2;14778:6;14775:14;14755:18;14752:38;14749:161;;;14832:10;14827:3;14823:20;14820:1;14813:31;14867:4;14864:1;14857:15;14895:4;14892:1;14885:15;14749:161;;14536:380;;;:::o;14921:135::-;14960:3;-1:-1:-1;;14981:17:1;;14978:43;;;15001:18;;:::i;:::-;-1:-1:-1;15048:1:1;15037:13;;14921:135::o;15061:112::-;15093:1;15119;15109:35;;15124:18;;:::i;:::-;-1:-1:-1;15158:9:1;;15061:112::o;15178:127::-;15239:10;15234:3;15230:20;15227:1;15220:31;15270:4;15267:1;15260:15;15294:4;15291:1;15284:15;15310:127;15371:10;15366:3;15362:20;15359:1;15352:31;15402:4;15399:1;15392:15;15426:4;15423:1;15416:15;15442:127;15503:10;15498:3;15494:20;15491:1;15484:31;15534:4;15531:1;15524:15;15558:4;15555:1;15548:15;15574:127;15635:10;15630:3;15626:20;15623:1;15616:31;15666:4;15663:1;15656:15;15690:4;15687:1;15680:15;15706:127;15767:10;15762:3;15758:20;15755:1;15748:31;15798:4;15795:1;15788:15;15822:4;15819:1;15812:15;15838:131;-1:-1:-1;;;;;;15912:32:1;;15902:43;;15892:71;;15959:1;15956;15949:12

Swarm Source

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