ETH Price: $2,872.84 (-9.25%)
Gas: 16 Gwei

Token

Unemployables (UNE)
 

Overview

Max Total Supply

5,001 UNE

Holders

2,428

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
niopower.eth
Balance
3 UNE
0xEfdB9BA6b79E76f9E2bF937bba861Fe110143C77
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

For people who do what they love. A collection of 5,000 NFTs by the team. Read the story at [unemployables.io](https://unemployables.io)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Unemployables

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/ERC721A.sol







pragma solidity ^0.8.0;


/**
 * @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 (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 = 0;

    // 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) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        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) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            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()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } 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/nnft.sol


pragma solidity ^0.8.8;



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

  uint256 public constant maxSupply = 5001;
  uint256 public constant PIXELIST_SALE_PRICE = 0.025 ether;
  uint256 public constant PUBLIC_SALE_PRICE = 0.025 ether;

  uint256 public pixelistSaleEpoch;
  uint256 public publicSaleEpoch;

  bytes32 public pixelistMerkleRoot;

  string public baseURI;
  string public notRevealedUri;

  mapping(address => uint256) public usedAddresses;

  bool public revealed = false;

  event Revealed(uint256 _tokenId);

  constructor(uint256 _pixelistSaleEpoch, uint256 _publicSaleEpoch, string memory _initBaseURI, string memory _initNotRevealedUri)
    ERC721A("Unemployables", "UNE")
  {
    pixelistSaleEpoch = _pixelistSaleEpoch;
    publicSaleEpoch = _publicSaleEpoch;
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

   function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        }

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

  function pixelistMint(bytes32[] calldata merkleProof, uint256 count)
    external
    payable
  {
    require(block.timestamp >= pixelistSaleEpoch, "Too soon");
    require(block.timestamp < publicSaleEpoch, "Whitelist sale over");
    require(
      MerkleProof.verify(
        merkleProof,
        pixelistMerkleRoot,
        keccak256(abi.encodePacked(msg.sender))
      ),
      "Address not in the whitelist"
    );
    require(msg.value >= PIXELIST_SALE_PRICE * count, "Ether value sent is below the price");
    require(usedAddresses[msg.sender] + count <= 3, "max per wallet reached");
    require(count > 0 && count <= 3, "You can drop minimum 1, maximum 3 NFTs");
    require(totalSupply() + count <= maxSupply, "Cannot exceeds max supply");

    usedAddresses[msg.sender] += count;

    _mint(msg.sender, count);
  }

  function publicMint(uint256 count) external payable {
    require(block.timestamp >= publicSaleEpoch, "Too soon");
    require(msg.value >= PUBLIC_SALE_PRICE * count,
           "Ether value sent is below the price");
    require(totalSupply() + count <= maxSupply, "Cannot Eexceeds max supply");
    require(usedAddresses[msg.sender] + count <= 2, "max per wallet reached");
    require(count > 0 && count <= 2, "You can drop minimum 1, maximum 2 NFTs");

    usedAddresses[msg.sender] += count;

    _mint(msg.sender, count);
  }

  function reservedMint(address _addrs, uint256 count) public onlyOwner {
    require(count <= maxSupply, "Not enough NFTs left");
      _mint(_addrs, count);
  }


   /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to, uint256 count) internal virtual returns (uint256){
    _safeMint(to, count);

    return count;
  }

  function reveal() public onlyOwner {
    revealed = true;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setPixelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    pixelistMerkleRoot = _merkleRoot;
  }

  function setPixelistSaleEpoch(uint256 _epoch) external onlyOwner {
    pixelistSaleEpoch = _epoch;
  }

  function setPublicSaleEpoch(uint256 _epoch) external onlyOwner {
    publicSaleEpoch = _epoch;
  }

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

  function withdrawTokens(IERC20 token) external onlyOwner {
    uint256 balance = token.balanceOf(address(this));
    token.transfer(msg.sender, balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_pixelistSaleEpoch","type":"uint256"},{"internalType":"uint256","name":"_publicSaleEpoch","type":"uint256"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PIXELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pixelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"pixelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pixelistSaleEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addrs","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPixelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epoch","type":"uint256"}],"name":"setPixelistSaleEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epoch","type":"uint256"}],"name":"setPublicSaleEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usedAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260008055600e805460ff191690553480156200001f57600080fd5b5060405162002e1f38038062002e1f83398101604081905262000042916200037b565b604080518082018252600d81526c556e656d706c6f7961626c657360981b602080830191825283518085019094526003845262554e4560e81b908401528151919291620000929160019162000208565b508051620000a890600290602084019062000208565b505050620000c5620000bf620000ef60201b60201c565b620000f3565b60088490556009839055620000da8262000145565b620000e581620001ad565b5050505062000436565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001945760405162461bcd60e51b8152602060048201819052602482015260008051602062002dff83398151915260448201526064015b60405180910390fd5b8051620001a990600b90602084019062000208565b5050565b6007546001600160a01b03163314620001f85760405162461bcd60e51b8152602060048201819052602482015260008051602062002dff83398151915260448201526064016200018b565b8051620001a990600c9060208401905b8280546200021690620003f9565b90600052602060002090601f0160209004810192826200023a576000855562000285565b82601f106200025557805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028557825182559160200191906001019062000268565b506200029392915062000297565b5090565b5b8082111562000293576000815560010162000298565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d657600080fd5b81516001600160401b0380821115620002f357620002f3620002ae565b604051601f8301601f19908116603f011681019082821181831017156200031e576200031e620002ae565b816040528381526020925086838588010111156200033b57600080fd5b600091505b838210156200035f578582018301518183018401529082019062000340565b83821115620003715760008385830101525b9695505050505050565b600080600080608085870312156200039257600080fd5b84516020860151604087015191955093506001600160401b0380821115620003b957600080fd5b620003c788838901620002c4565b93506060870151915080821115620003de57600080fd5b50620003ed87828801620002c4565b91505092959194509250565b600181811c908216806200040e57607f821691505b602082108114156200043057634e487b7160e01b600052602260045260246000fd5b50919050565b6129b980620004466000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a61b8dbb116100ab578063d5abeb011161006f578063d5abeb011461065a578063e2f7651014610297578063e985e9c514610670578063f2c4ce1e146106b9578063f2fde38b146106d957600080fd5b8063a61b8dbb146105ad578063acdce273146105cd578063b7a34c8a146105fa578063b88d4fde1461061a578063c87b56dd1461063a57600080fd5b80638da5cb5b116100f25780638da5cb5b1461052557806391db27581461054357806395d89b4114610563578063a22cb46514610578578063a475b5dd1461059857600080fd5b80636352211e146104a85780636c0360eb146104c85780636d9c5ec3146104dd57806370a08231146104f0578063715018a61461051057600080fd5b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461040e57806349df728c1461042e5780634f6ccce71461044e578063518302271461046e57806355f804b31461048857600080fd5b806323b872dd146103905780632db11544146103b05780632dbb444f146103c35780632f745c59146103d95780633ccfd60b146103f957600080fd5b8063095ea7b311610203578063095ea7b31461030d5780630bca1bd31461032f57806310f38d3f1461034557806318160ddd146103655780631f64cade1461037a57600080fd5b806301ffc9a71461024057806306fdde031461027557806307e89ec014610297578063081812fc146102c0578063081c8c44146102f8575b600080fd5b34801561024c57600080fd5b5061026061025b366004612333565b6106f9565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610766565b60405161026c91906123a8565b3480156102a357600080fd5b506102b26658d15e1762800081565b60405190815260200161026c565b3480156102cc57600080fd5b506102e06102db3660046123bb565b6107f8565b6040516001600160a01b03909116815260200161026c565b34801561030457600080fd5b5061028a610888565b34801561031957600080fd5b5061032d6103283660046123e9565b610916565b005b34801561033b57600080fd5b506102b260085481565b34801561035157600080fd5b5061032d6103603660046123bb565b610a2e565b34801561037157600080fd5b506000546102b2565b34801561038657600080fd5b506102b2600a5481565b34801561039c57600080fd5b5061032d6103ab366004612415565b610a5d565b61032d6103be3660046123bb565b610a68565b3480156103cf57600080fd5b506102b260095481565b3480156103e557600080fd5b506102b26103f43660046123e9565b610c3e565b34801561040557600080fd5b5061032d610dac565b34801561041a57600080fd5b5061032d610429366004612415565b610e05565b34801561043a57600080fd5b5061032d610449366004612456565b610e20565b34801561045a57600080fd5b506102b26104693660046123bb565b610f29565b34801561047a57600080fd5b50600e546102609060ff1681565b34801561049457600080fd5b5061032d6104a33660046124ff565b610f8b565b3480156104b457600080fd5b506102e06104c33660046123bb565b610fc8565b3480156104d457600080fd5b5061028a610fda565b61032d6104eb366004612548565b610fe7565b3480156104fc57600080fd5b506102b261050b366004612456565b6112c7565b34801561051c57600080fd5b5061032d611358565b34801561053157600080fd5b506007546001600160a01b03166102e0565b34801561054f57600080fd5b5061032d61055e3660046123bb565b61138e565b34801561056f57600080fd5b5061028a6113bd565b34801561058457600080fd5b5061032d6105933660046125d1565b6113cc565b3480156105a457600080fd5b5061032d611491565b3480156105b957600080fd5b5061032d6105c83660046123bb565b6114ca565b3480156105d957600080fd5b506102b26105e8366004612456565b600d6020526000908152604090205481565b34801561060657600080fd5b5061032d6106153660046123e9565b6114f9565b34801561062657600080fd5b5061032d61063536600461260a565b611576565b34801561064657600080fd5b5061028a6106553660046123bb565b6115a9565b34801561066657600080fd5b506102b261138981565b34801561067c57600080fd5b5061026061068b36600461268a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b5061032d6106d43660046124ff565b611771565b3480156106e557600080fd5b5061032d6106f4366004612456565b6117ae565b60006001600160e01b031982166380ac58cd60e01b148061072a57506001600160e01b03198216635b5e139f60e01b145b8061074557506001600160e01b0319821663780e9d6360e01b145b8061076057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610775906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546107a1906126b8565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b6000610805826000541190565b61086c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600c8054610895906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906126b8565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b505050505081565b600061092182610fc8565b9050806001600160a01b0316836001600160a01b031614156109905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610863565b336001600160a01b03821614806109ac57506109ac813361068b565b610a1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610863565b610a29838383611849565b505050565b6007546001600160a01b03163314610a585760405162461bcd60e51b8152600401610863906126ed565b600955565b610a298383836118a5565b600954421015610aa55760405162461bcd60e51b81526020600482015260086024820152672a37b79039b7b7b760c11b6044820152606401610863565b610ab6816658d15e17628000612738565b341015610ad55760405162461bcd60e51b815260040161086390612757565b61138981610ae260005490565b610aec919061279a565b1115610b3a5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74204565786365656473206d617820737570706c790000000000006044820152606401610863565b336000908152600d6020526040902054600290610b5890839061279a565b1115610b9f5760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c881dd85b1b195d081c995858da195960521b6044820152606401610863565b600081118015610bb0575060028111155b610c0b5760405162461bcd60e51b815260206004820152602660248201527f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060448201526532204e46547360d01b6064820152608401610863565b336000908152600d602052604081208054839290610c2a90849061279a565b90915550610c3a90503382611bec565b5050565b6000610c49836112c7565b8210610ca25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610863565b600080549080805b83811015610d4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cfd57805192505b876001600160a01b0316836001600160a01b03161415610d395786841415610d2b5750935061076092505050565b83610d35816127b2565b9450505b5080610d44816127b2565b915050610caa565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610863565b6007546001600160a01b03163314610dd65760405162461bcd60e51b8152600401610863906126ed565b6040514790339082156108fc029083906000818181858888f19350505050158015610c3a573d6000803e3d6000fd5b610a2983838360405180602001604052806000815250611576565b6007546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610863906126ed565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb591906127cd565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2991906127e6565b600080548210610f875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610863565b5090565b6007546001600160a01b03163314610fb55760405162461bcd60e51b8152600401610863906126ed565b8051610c3a90600b90602084019061228d565b6000610fd382611bfe565b5192915050565b600b8054610895906126b8565b6008544210156110245760405162461bcd60e51b81526020600482015260086024820152672a37b79039b7b7b760c11b6044820152606401610863565b600954421061106b5760405162461bcd60e51b81526020600482015260136024820152722bb434ba32b634b9ba1039b0b6329037bb32b960691b6044820152606401610863565b6110e083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cde565b61112c5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206e6f7420696e207468652077686974656c697374000000006044820152606401610863565b61113d816658d15e17628000612738565b34101561115c5760405162461bcd60e51b815260040161086390612757565b336000908152600d602052604090205460039061117a90839061279a565b11156111c15760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c881dd85b1b195d081c995858da195960521b6044820152606401610863565b6000811180156111d2575060038111155b61122d5760405162461bcd60e51b815260206004820152602660248201527f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060448201526533204e46547360d01b6064820152608401610863565b6113898161123a60005490565b611244919061279a565b11156112925760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742065786365656473206d617820737570706c79000000000000006044820152606401610863565b336000908152600d6020526040812080548392906112b190849061279a565b909155506112c190503382611bec565b50505050565b60006001600160a01b0382166113335760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610863565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146113825760405162461bcd60e51b8152600401610863906126ed565b61138c6000611cf4565b565b6007546001600160a01b031633146113b85760405162461bcd60e51b8152600401610863906126ed565b600a55565b606060028054610775906126b8565b6001600160a01b0382163314156114255760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610863565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114bb5760405162461bcd60e51b8152600401610863906126ed565b600e805460ff19166001179055565b6007546001600160a01b031633146114f45760405162461bcd60e51b8152600401610863906126ed565b600855565b6007546001600160a01b031633146115235760405162461bcd60e51b8152600401610863906126ed565b61138981111561156c5760405162461bcd60e51b8152602060048201526014602482015273139bdd08195b9bdd59da081391951cc81b19599d60621b6044820152606401610863565b610a298282611bec565b6115818484846118a5565b61158d84848484611d46565b6112c15760405162461bcd60e51b815260040161086390612803565b60606115b6826000541190565b6115f65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610863565b600e5460ff1661169257600c805461160d906126b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611639906126b8565b80156116865780601f1061165b57610100808354040283529160200191611686565b820191906000526020600020905b81548152906001019060200180831161166957829003601f168201915b50505050509050919050565b6000600b80546116a1906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cd906126b8565b801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b50505050509050600081511161173f576040518060200160405280600081525061176a565b8061174984611e45565b60405160200161175a929190612856565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461179b5760405162461bcd60e51b8152600401610863906126ed565b8051610c3a90600c90602084019061228d565b6007546001600160a01b031633146117d85760405162461bcd60e51b8152600401610863906126ed565b6001600160a01b03811661183d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610863565b61184681611cf4565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118b082611bfe565b80519091506000906001600160a01b0316336001600160a01b031614806118e75750336118dc846107f8565b6001600160a01b0316145b806118f9575081516118f9903361068b565b9050806119635760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610863565b846001600160a01b031682600001516001600160a01b0316146119d75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610863565b6001600160a01b038416611a3b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610863565b611a4b6000848460000151611849565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611b1090859061279a565b6000818152600360205260409020549091506001600160a01b0316611ba257611b3a816000541190565b15611ba25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611bf88383611f43565b50919050565b6040805180820190915260008082526020820152611c1d826000541190565b611c7c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610863565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ccb579392505050565b5080611cd681612885565b915050611c7e565b600082611ceb8584611f5d565b14949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8a90339089908890889060040161289c565b6020604051808303816000875af1925050508015611dc5575060408051601f3d908101601f19168201909252611dc2918101906128d9565b60015b611e1f573d808015611df3576040519150601f19603f3d011682016040523d82523d6000602084013e611df8565b606091505b508051611e175760405162461bcd60e51b815260040161086390612803565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3d565b5060015b949350505050565b606081611e695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e935780611e7d816127b2565b9150611e8c9050600a8361290c565b9150611e6d565b60008167ffffffffffffffff811115611eae57611eae612473565b6040519080825280601f01601f191660200182016040528015611ed8576020820181803683370190505b5090505b8415611e3d57611eed600183612920565b9150611efa600a86612937565b611f0590603061279a565b60f81b818381518110611f1a57611f1a61294b565b60200101906001600160f81b031916908160001a905350611f3c600a8661290c565b9450611edc565b610c3a828260405180602001604052806000815250611fd1565b600081815b8451811015611fc9576000858281518110611f7f57611f7f61294b565b60200260200101519050808311611fa55760008381526020829052604090209250611fb6565b600081815260208490526040902092505b5080611fc1816127b2565b915050611f62565b509392505050565b6000546001600160a01b0384166120345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610863565b61203f816000541190565b1561208c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610863565b600083116120e85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610863565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612144908790612961565b6001600160801b031681526020018583602001516121629190612961565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122466000888488611d46565b6122625760405162461bcd60e51b815260040161086390612803565b8161226c816127b2565b925050808061227a906127b2565b9150506121f9565b506000819055611be4565b828054612299906126b8565b90600052602060002090601f0160209004810192826122bb5760008555612301565b82601f106122d457805160ff1916838001178555612301565b82800160010185558215612301579182015b828111156123015782518255916020019190600101906122e6565b50610f879291505b80821115610f875760008155600101612309565b6001600160e01b03198116811461184657600080fd5b60006020828403121561234557600080fd5b813561176a8161231d565b60005b8381101561236b578181015183820152602001612353565b838111156112c15750506000910152565b60008151808452612394816020860160208601612350565b601f01601f19169290920160200192915050565b60208152600061176a602083018461237c565b6000602082840312156123cd57600080fd5b5035919050565b6001600160a01b038116811461184657600080fd5b600080604083850312156123fc57600080fd5b8235612407816123d4565b946020939093013593505050565b60008060006060848603121561242a57600080fd5b8335612435816123d4565b92506020840135612445816123d4565b929592945050506040919091013590565b60006020828403121561246857600080fd5b813561176a816123d4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a4576124a4612473565b604051601f8501601f19908116603f011681019082821181831017156124cc576124cc612473565b816040528093508581528686860111156124e557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251157600080fd5b813567ffffffffffffffff81111561252857600080fd5b8201601f8101841361253957600080fd5b611e3d84823560208401612489565b60008060006040848603121561255d57600080fd5b833567ffffffffffffffff8082111561257557600080fd5b818601915086601f83011261258957600080fd5b81358181111561259857600080fd5b8760208260051b85010111156125ad57600080fd5b6020928301989097509590910135949350505050565b801515811461184657600080fd5b600080604083850312156125e457600080fd5b82356125ef816123d4565b915060208301356125ff816125c3565b809150509250929050565b6000806000806080858703121561262057600080fd5b843561262b816123d4565b9350602085013561263b816123d4565b925060408501359150606085013567ffffffffffffffff81111561265e57600080fd5b8501601f8101871361266f57600080fd5b61267e87823560208401612489565b91505092959194509250565b6000806040838503121561269d57600080fd5b82356126a8816123d4565b915060208301356125ff816123d4565b600181811c908216806126cc57607f821691505b60208210811415611bf857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561275257612752612722565b500290565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b600082198211156127ad576127ad612722565b500190565b60006000198214156127c6576127c6612722565b5060010190565b6000602082840312156127df57600080fd5b5051919050565b6000602082840312156127f857600080fd5b815161176a816125c3565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612868818460208801612350565b83519083019061287c818360208801612350565b01949350505050565b60008161289457612894612722565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cf9083018461237c565b9695505050505050565b6000602082840312156128eb57600080fd5b815161176a8161231d565b634e487b7160e01b600052601260045260246000fd5b60008261291b5761291b6128f6565b500490565b60008282101561293257612932612722565b500390565b600082612946576129466128f6565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b0380831681851680830382111561287c5761287c61272256fea2646970667358221220b0cf1436ddb24be8def50fcee05bf16e660f1fc0af80e3c2bfcadeb447aad76064736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000062571db0000000000000000000000000000000000000000000000000000000006259c0b0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a7844616e6f6a4c766a677a684d65316742614e644d7967716837343378594834755a70635a5673687855632f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d635459433554577966314458636758423362384159595746456e6765794b6d5436746d4e7a4b636d684e7a422f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a61b8dbb116100ab578063d5abeb011161006f578063d5abeb011461065a578063e2f7651014610297578063e985e9c514610670578063f2c4ce1e146106b9578063f2fde38b146106d957600080fd5b8063a61b8dbb146105ad578063acdce273146105cd578063b7a34c8a146105fa578063b88d4fde1461061a578063c87b56dd1461063a57600080fd5b80638da5cb5b116100f25780638da5cb5b1461052557806391db27581461054357806395d89b4114610563578063a22cb46514610578578063a475b5dd1461059857600080fd5b80636352211e146104a85780636c0360eb146104c85780636d9c5ec3146104dd57806370a08231146104f0578063715018a61461051057600080fd5b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461040e57806349df728c1461042e5780634f6ccce71461044e578063518302271461046e57806355f804b31461048857600080fd5b806323b872dd146103905780632db11544146103b05780632dbb444f146103c35780632f745c59146103d95780633ccfd60b146103f957600080fd5b8063095ea7b311610203578063095ea7b31461030d5780630bca1bd31461032f57806310f38d3f1461034557806318160ddd146103655780631f64cade1461037a57600080fd5b806301ffc9a71461024057806306fdde031461027557806307e89ec014610297578063081812fc146102c0578063081c8c44146102f8575b600080fd5b34801561024c57600080fd5b5061026061025b366004612333565b6106f9565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610766565b60405161026c91906123a8565b3480156102a357600080fd5b506102b26658d15e1762800081565b60405190815260200161026c565b3480156102cc57600080fd5b506102e06102db3660046123bb565b6107f8565b6040516001600160a01b03909116815260200161026c565b34801561030457600080fd5b5061028a610888565b34801561031957600080fd5b5061032d6103283660046123e9565b610916565b005b34801561033b57600080fd5b506102b260085481565b34801561035157600080fd5b5061032d6103603660046123bb565b610a2e565b34801561037157600080fd5b506000546102b2565b34801561038657600080fd5b506102b2600a5481565b34801561039c57600080fd5b5061032d6103ab366004612415565b610a5d565b61032d6103be3660046123bb565b610a68565b3480156103cf57600080fd5b506102b260095481565b3480156103e557600080fd5b506102b26103f43660046123e9565b610c3e565b34801561040557600080fd5b5061032d610dac565b34801561041a57600080fd5b5061032d610429366004612415565b610e05565b34801561043a57600080fd5b5061032d610449366004612456565b610e20565b34801561045a57600080fd5b506102b26104693660046123bb565b610f29565b34801561047a57600080fd5b50600e546102609060ff1681565b34801561049457600080fd5b5061032d6104a33660046124ff565b610f8b565b3480156104b457600080fd5b506102e06104c33660046123bb565b610fc8565b3480156104d457600080fd5b5061028a610fda565b61032d6104eb366004612548565b610fe7565b3480156104fc57600080fd5b506102b261050b366004612456565b6112c7565b34801561051c57600080fd5b5061032d611358565b34801561053157600080fd5b506007546001600160a01b03166102e0565b34801561054f57600080fd5b5061032d61055e3660046123bb565b61138e565b34801561056f57600080fd5b5061028a6113bd565b34801561058457600080fd5b5061032d6105933660046125d1565b6113cc565b3480156105a457600080fd5b5061032d611491565b3480156105b957600080fd5b5061032d6105c83660046123bb565b6114ca565b3480156105d957600080fd5b506102b26105e8366004612456565b600d6020526000908152604090205481565b34801561060657600080fd5b5061032d6106153660046123e9565b6114f9565b34801561062657600080fd5b5061032d61063536600461260a565b611576565b34801561064657600080fd5b5061028a6106553660046123bb565b6115a9565b34801561066657600080fd5b506102b261138981565b34801561067c57600080fd5b5061026061068b36600461268a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b5061032d6106d43660046124ff565b611771565b3480156106e557600080fd5b5061032d6106f4366004612456565b6117ae565b60006001600160e01b031982166380ac58cd60e01b148061072a57506001600160e01b03198216635b5e139f60e01b145b8061074557506001600160e01b0319821663780e9d6360e01b145b8061076057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610775906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546107a1906126b8565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b6000610805826000541190565b61086c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600c8054610895906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906126b8565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b505050505081565b600061092182610fc8565b9050806001600160a01b0316836001600160a01b031614156109905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610863565b336001600160a01b03821614806109ac57506109ac813361068b565b610a1e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610863565b610a29838383611849565b505050565b6007546001600160a01b03163314610a585760405162461bcd60e51b8152600401610863906126ed565b600955565b610a298383836118a5565b600954421015610aa55760405162461bcd60e51b81526020600482015260086024820152672a37b79039b7b7b760c11b6044820152606401610863565b610ab6816658d15e17628000612738565b341015610ad55760405162461bcd60e51b815260040161086390612757565b61138981610ae260005490565b610aec919061279a565b1115610b3a5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74204565786365656473206d617820737570706c790000000000006044820152606401610863565b336000908152600d6020526040902054600290610b5890839061279a565b1115610b9f5760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c881dd85b1b195d081c995858da195960521b6044820152606401610863565b600081118015610bb0575060028111155b610c0b5760405162461bcd60e51b815260206004820152602660248201527f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060448201526532204e46547360d01b6064820152608401610863565b336000908152600d602052604081208054839290610c2a90849061279a565b90915550610c3a90503382611bec565b5050565b6000610c49836112c7565b8210610ca25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610863565b600080549080805b83811015610d4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cfd57805192505b876001600160a01b0316836001600160a01b03161415610d395786841415610d2b5750935061076092505050565b83610d35816127b2565b9450505b5080610d44816127b2565b915050610caa565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610863565b6007546001600160a01b03163314610dd65760405162461bcd60e51b8152600401610863906126ed565b6040514790339082156108fc029083906000818181858888f19350505050158015610c3a573d6000803e3d6000fd5b610a2983838360405180602001604052806000815250611576565b6007546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610863906126ed565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb591906127cd565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2991906127e6565b600080548210610f875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610863565b5090565b6007546001600160a01b03163314610fb55760405162461bcd60e51b8152600401610863906126ed565b8051610c3a90600b90602084019061228d565b6000610fd382611bfe565b5192915050565b600b8054610895906126b8565b6008544210156110245760405162461bcd60e51b81526020600482015260086024820152672a37b79039b7b7b760c11b6044820152606401610863565b600954421061106b5760405162461bcd60e51b81526020600482015260136024820152722bb434ba32b634b9ba1039b0b6329037bb32b960691b6044820152606401610863565b6110e083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cde565b61112c5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206e6f7420696e207468652077686974656c697374000000006044820152606401610863565b61113d816658d15e17628000612738565b34101561115c5760405162461bcd60e51b815260040161086390612757565b336000908152600d602052604090205460039061117a90839061279a565b11156111c15760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c881dd85b1b195d081c995858da195960521b6044820152606401610863565b6000811180156111d2575060038111155b61122d5760405162461bcd60e51b815260206004820152602660248201527f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060448201526533204e46547360d01b6064820152608401610863565b6113898161123a60005490565b611244919061279a565b11156112925760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742065786365656473206d617820737570706c79000000000000006044820152606401610863565b336000908152600d6020526040812080548392906112b190849061279a565b909155506112c190503382611bec565b50505050565b60006001600160a01b0382166113335760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610863565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146113825760405162461bcd60e51b8152600401610863906126ed565b61138c6000611cf4565b565b6007546001600160a01b031633146113b85760405162461bcd60e51b8152600401610863906126ed565b600a55565b606060028054610775906126b8565b6001600160a01b0382163314156114255760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610863565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114bb5760405162461bcd60e51b8152600401610863906126ed565b600e805460ff19166001179055565b6007546001600160a01b031633146114f45760405162461bcd60e51b8152600401610863906126ed565b600855565b6007546001600160a01b031633146115235760405162461bcd60e51b8152600401610863906126ed565b61138981111561156c5760405162461bcd60e51b8152602060048201526014602482015273139bdd08195b9bdd59da081391951cc81b19599d60621b6044820152606401610863565b610a298282611bec565b6115818484846118a5565b61158d84848484611d46565b6112c15760405162461bcd60e51b815260040161086390612803565b60606115b6826000541190565b6115f65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610863565b600e5460ff1661169257600c805461160d906126b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611639906126b8565b80156116865780601f1061165b57610100808354040283529160200191611686565b820191906000526020600020905b81548152906001019060200180831161166957829003601f168201915b50505050509050919050565b6000600b80546116a1906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cd906126b8565b801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b50505050509050600081511161173f576040518060200160405280600081525061176a565b8061174984611e45565b60405160200161175a929190612856565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461179b5760405162461bcd60e51b8152600401610863906126ed565b8051610c3a90600c90602084019061228d565b6007546001600160a01b031633146117d85760405162461bcd60e51b8152600401610863906126ed565b6001600160a01b03811661183d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610863565b61184681611cf4565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118b082611bfe565b80519091506000906001600160a01b0316336001600160a01b031614806118e75750336118dc846107f8565b6001600160a01b0316145b806118f9575081516118f9903361068b565b9050806119635760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610863565b846001600160a01b031682600001516001600160a01b0316146119d75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610863565b6001600160a01b038416611a3b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610863565b611a4b6000848460000151611849565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611b1090859061279a565b6000818152600360205260409020549091506001600160a01b0316611ba257611b3a816000541190565b15611ba25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611bf88383611f43565b50919050565b6040805180820190915260008082526020820152611c1d826000541190565b611c7c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610863565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ccb579392505050565b5080611cd681612885565b915050611c7e565b600082611ceb8584611f5d565b14949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8a90339089908890889060040161289c565b6020604051808303816000875af1925050508015611dc5575060408051601f3d908101601f19168201909252611dc2918101906128d9565b60015b611e1f573d808015611df3576040519150601f19603f3d011682016040523d82523d6000602084013e611df8565b606091505b508051611e175760405162461bcd60e51b815260040161086390612803565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3d565b5060015b949350505050565b606081611e695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e935780611e7d816127b2565b9150611e8c9050600a8361290c565b9150611e6d565b60008167ffffffffffffffff811115611eae57611eae612473565b6040519080825280601f01601f191660200182016040528015611ed8576020820181803683370190505b5090505b8415611e3d57611eed600183612920565b9150611efa600a86612937565b611f0590603061279a565b60f81b818381518110611f1a57611f1a61294b565b60200101906001600160f81b031916908160001a905350611f3c600a8661290c565b9450611edc565b610c3a828260405180602001604052806000815250611fd1565b600081815b8451811015611fc9576000858281518110611f7f57611f7f61294b565b60200260200101519050808311611fa55760008381526020829052604090209250611fb6565b600081815260208490526040902092505b5080611fc1816127b2565b915050611f62565b509392505050565b6000546001600160a01b0384166120345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610863565b61203f816000541190565b1561208c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610863565b600083116120e85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610863565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612144908790612961565b6001600160801b031681526020018583602001516121629190612961565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122466000888488611d46565b6122625760405162461bcd60e51b815260040161086390612803565b8161226c816127b2565b925050808061227a906127b2565b9150506121f9565b506000819055611be4565b828054612299906126b8565b90600052602060002090601f0160209004810192826122bb5760008555612301565b82601f106122d457805160ff1916838001178555612301565b82800160010185558215612301579182015b828111156123015782518255916020019190600101906122e6565b50610f879291505b80821115610f875760008155600101612309565b6001600160e01b03198116811461184657600080fd5b60006020828403121561234557600080fd5b813561176a8161231d565b60005b8381101561236b578181015183820152602001612353565b838111156112c15750506000910152565b60008151808452612394816020860160208601612350565b601f01601f19169290920160200192915050565b60208152600061176a602083018461237c565b6000602082840312156123cd57600080fd5b5035919050565b6001600160a01b038116811461184657600080fd5b600080604083850312156123fc57600080fd5b8235612407816123d4565b946020939093013593505050565b60008060006060848603121561242a57600080fd5b8335612435816123d4565b92506020840135612445816123d4565b929592945050506040919091013590565b60006020828403121561246857600080fd5b813561176a816123d4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a4576124a4612473565b604051601f8501601f19908116603f011681019082821181831017156124cc576124cc612473565b816040528093508581528686860111156124e557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251157600080fd5b813567ffffffffffffffff81111561252857600080fd5b8201601f8101841361253957600080fd5b611e3d84823560208401612489565b60008060006040848603121561255d57600080fd5b833567ffffffffffffffff8082111561257557600080fd5b818601915086601f83011261258957600080fd5b81358181111561259857600080fd5b8760208260051b85010111156125ad57600080fd5b6020928301989097509590910135949350505050565b801515811461184657600080fd5b600080604083850312156125e457600080fd5b82356125ef816123d4565b915060208301356125ff816125c3565b809150509250929050565b6000806000806080858703121561262057600080fd5b843561262b816123d4565b9350602085013561263b816123d4565b925060408501359150606085013567ffffffffffffffff81111561265e57600080fd5b8501601f8101871361266f57600080fd5b61267e87823560208401612489565b91505092959194509250565b6000806040838503121561269d57600080fd5b82356126a8816123d4565b915060208301356125ff816123d4565b600181811c908216806126cc57607f821691505b60208210811415611bf857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561275257612752612722565b500290565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b600082198211156127ad576127ad612722565b500190565b60006000198214156127c6576127c6612722565b5060010190565b6000602082840312156127df57600080fd5b5051919050565b6000602082840312156127f857600080fd5b815161176a816125c3565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612868818460208801612350565b83519083019061287c818360208801612350565b01949350505050565b60008161289457612894612722565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cf9083018461237c565b9695505050505050565b6000602082840312156128eb57600080fd5b815161176a8161231d565b634e487b7160e01b600052601260045260246000fd5b60008261291b5761291b6128f6565b500490565b60008282101561293257612932612722565b500390565b600082612946576129466128f6565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b0380831681851680830382111561287c5761287c61272256fea2646970667358221220b0cf1436ddb24be8def50fcee05bf16e660f1fc0af80e3c2bfcadeb447aad76064736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000062571db0000000000000000000000000000000000000000000000000000000006259c0b0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a7844616e6f6a4c766a677a684d65316742614e644d7967716837343378594834755a70635a5673687855632f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d635459433554577966314458636758423362384159595746456e6765794b6d5436746d4e7a4b636d684e7a422f00000000000000000000

-----Decoded View---------------
Arg [0] : _pixelistSaleEpoch (uint256): 1649876400
Arg [1] : _publicSaleEpoch (uint256): 1650049200
Arg [2] : _initBaseURI (string): ipfs://QmZxDanojLvjgzhMe1gBaNdMygqh743xYH4uZpcZVshxUc/
Arg [3] : _initNotRevealedUri (string): ipfs://QmcTYC5TWyf1DXcgXB3b8AYYWFEngeyKmT6tmNzKcmhNzB/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000062571db0
Arg [1] : 000000000000000000000000000000000000000000000000000000006259c0b0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d5a7844616e6f6a4c766a677a684d65316742614e644d79
Arg [6] : 67716837343378594834755a70635a5673687855632f00000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d6354594335545779663144586367584233623841595957
Arg [9] : 46456e6765794b6d5436746d4e7a4b636d684e7a422f00000000000000000000


Deployed Bytecode Sourcemap

66311:4179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54261:372;;;;;;;;;;-1:-1:-1;54261:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54261:372:0;;;;;;;;55888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66498:55::-;;;;;;;;;;;;66542:11;66498:55;;;;;1489:25:1;;;1477:2;1462:18;66498:55:0;1343:177:1;57449:214:0;;;;;;;;;;-1:-1:-1;57449:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;57449:214:0;1710:203:1;66700:28:0;;;;;;;;;;;;;:::i;56970:413::-;;;;;;;;;;-1:-1:-1;56970:413:0;;;;;:::i;:::-;;:::i;:::-;;66560:32;;;;;;;;;;;;;;;;70080:100;;;;;;;;;;-1:-1:-1;70080:100:0;;;;;:::i;:::-;;:::i;52702:::-;;;;;;;;;;-1:-1:-1;52755:7:0;52782:12;52702:100;;66634:33;;;;;;;;;;;;;;;;58325:162;;;;;;;;;;-1:-1:-1;58325:162:0;;;;;:::i;:::-;;:::i;68561:542::-;;;;;;:::i;:::-;;:::i;66597:30::-;;;;;;;;;;;;;;;;53366:823;;;;;;;;;;-1:-1:-1;53366:823:0;;;;;:::i;:::-;;:::i;70186:135::-;;;;;;;;;;;;;:::i;58558:177::-;;;;;;;;;;-1:-1:-1;58558:177:0;;;;;:::i;:::-;;:::i;70327:160::-;;;;;;;;;;-1:-1:-1;70327:160:0;;;;;:::i;:::-;;:::i;52879:187::-;;;;;;;;;;-1:-1:-1;52879:187:0;;;;;:::i;:::-;;:::i;66790:28::-;;;;;;;;;;-1:-1:-1;66790:28:0;;;;;;;;69744:98;;;;;;;;;;-1:-1:-1;69744:98:0;;;;;:::i;:::-;;:::i;55697:124::-;;;;;;;;;;-1:-1:-1;55697:124:0;;;;;:::i;:::-;;:::i;66674:21::-;;;;;;;;;;;;;:::i;67706:849::-;;;;;;:::i;:::-;;:::i;54697:221::-;;;;;;;;;;-1:-1:-1;54697:221:0;;;;;:::i;:::-;;:::i;10187:103::-;;;;;;;;;;;;;:::i;9536:87::-;;;;;;;;;;-1:-1:-1;9609:6:0;;-1:-1:-1;;;;;9609:6:0;9536:87;;69848:116;;;;;;;;;;-1:-1:-1;69848:116:0;;;;;:::i;:::-;;:::i;56057:104::-;;;;;;;;;;;;;:::i;57735:288::-;;;;;;;;;;-1:-1:-1;57735:288:0;;;;;:::i;:::-;;:::i;69549:63::-;;;;;;;;;;;;;:::i;69970:104::-;;;;;;;;;;-1:-1:-1;69970:104:0;;;;;:::i;:::-;;:::i;66735:48::-;;;;;;;;;;-1:-1:-1;66735:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;69109:163;;;;;;;;;;-1:-1:-1;69109:163:0;;;;;:::i;:::-;;:::i;58806:355::-;;;;;;;;;;-1:-1:-1;58806:355:0;;;;;:::i;:::-;;:::i;67208:492::-;;;;;;;;;;-1:-1:-1;67208:492:0;;;;;:::i;:::-;;:::i;66391:40::-;;;;;;;;;;;;66427:4;66391:40;;58094:164;;;;;;;;;;-1:-1:-1;58094:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;58215:25:0;;;58191:4;58215:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58094:164;69618:120;;;;;;;;;;-1:-1:-1;69618:120:0;;;;;:::i;:::-;;:::i;10445:201::-;;;;;;;;;;-1:-1:-1;10445:201:0;;;;;:::i;:::-;;:::i;54261:372::-;54363:4;-1:-1:-1;;;;;;54400:40:0;;-1:-1:-1;;;54400:40:0;;:105;;-1:-1:-1;;;;;;;54457:48:0;;-1:-1:-1;;;54457:48:0;54400:105;:172;;;-1:-1:-1;;;;;;;54522:50:0;;-1:-1:-1;;;54522:50:0;54400:172;:225;;;-1:-1:-1;;;;;;;;;;22429:40:0;;;54589:36;54380:245;54261:372;-1:-1:-1;;54261:372:0:o;55888:100::-;55942:13;55975:5;55968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55888:100;:::o;57449:214::-;57517:7;57545:16;57553:7;59473:4;59507:12;-1:-1:-1;59497:22:0;59416:111;57545:16;57537:74;;;;-1:-1:-1;;;57537:74:0;;7929:2:1;57537:74:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:43;8111:19;;57537:74:0;;;;;;;;;-1:-1:-1;57631:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57631:24:0;;57449:214::o;66700:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56970:413::-;57043:13;57059:24;57075:7;57059:15;:24::i;:::-;57043:40;;57108:5;-1:-1:-1;;;;;57102:11:0;:2;-1:-1:-1;;;;;57102:11:0;;;57094:58;;;;-1:-1:-1;;;57094:58:0;;8343:2:1;57094:58:0;;;8325:21:1;8382:2;8362:18;;;8355:30;8421:34;8401:18;;;8394:62;-1:-1:-1;;;8472:18:1;;;8465:32;8514:19;;57094:58:0;8141:398:1;57094:58:0;8340:10;-1:-1:-1;;;;;57187:21:0;;;;:62;;-1:-1:-1;57212:37:0;57229:5;8340:10;58094:164;:::i;57212:37::-;57165:169;;;;-1:-1:-1;;;57165:169:0;;8746:2:1;57165:169:0;;;8728:21:1;8785:2;8765:18;;;8758:30;8824:34;8804:18;;;8797:62;8895:27;8875:18;;;8868:55;8940:19;;57165:169:0;8544:421:1;57165:169:0;57347:28;57356:2;57360:7;57369:5;57347:8;:28::i;:::-;57032:351;56970:413;;:::o;70080:100::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;70150:15:::1;:24:::0;70080:100::o;58325:162::-;58451:28;58461:4;58467:2;58471:7;58451:9;:28::i;68561:542::-;68647:15;;68628;:34;;68620:55;;;;-1:-1:-1;;;68620:55:0;;9533:2:1;68620:55:0;;;9515:21:1;9572:1;9552:18;;;9545:29;-1:-1:-1;;;9590:18:1;;;9583:38;9638:18;;68620:55:0;9331:331:1;68620:55:0;68703:25;68723:5;66542:11;68703:25;:::i;:::-;68690:9;:38;;68682:98;;;;-1:-1:-1;;;68682:98:0;;;;;;;:::i;:::-;66427:4;68811:5;68795:13;52755:7;52782:12;;52702:100;68795:13;:21;;;;:::i;:::-;:34;;68787:73;;;;-1:-1:-1;;;68787:73:0;;10711:2:1;68787:73:0;;;10693:21:1;10750:2;10730:18;;;10723:30;10789:28;10769:18;;;10762:56;10835:18;;68787:73:0;10509:350:1;68787:73:0;68889:10;68875:25;;;;:13;:25;;;;;;68912:1;;68875:33;;68903:5;;68875:33;:::i;:::-;:38;;68867:73;;;;-1:-1:-1;;;68867:73:0;;11066:2:1;68867:73:0;;;11048:21:1;11105:2;11085:18;;;11078:30;-1:-1:-1;;;11124:18:1;;;11117:52;11186:18;;68867:73:0;10864:346:1;68867:73:0;68963:1;68955:5;:9;:23;;;;;68977:1;68968:5;:10;;68955:23;68947:74;;;;-1:-1:-1;;;68947:74:0;;11417:2:1;68947:74:0;;;11399:21:1;11456:2;11436:18;;;11429:30;11495:34;11475:18;;;11468:62;-1:-1:-1;;;11546:18:1;;;11539:36;11592:19;;68947:74:0;11215:402:1;68947:74:0;69044:10;69030:25;;;;:13;:25;;;;;:34;;69059:5;;69030:25;:34;;69059:5;;69030:34;:::i;:::-;;;;-1:-1:-1;69073:24:0;;-1:-1:-1;69079:10:0;69091:5;69073;:24::i;:::-;;68561:542;:::o;53366:823::-;53455:7;53491:16;53501:5;53491:9;:16::i;:::-;53483:5;:24;53475:71;;;;-1:-1:-1;;;53475:71:0;;11824:2:1;53475:71:0;;;11806:21:1;11863:2;11843:18;;;11836:30;11902:34;11882:18;;;11875:62;-1:-1:-1;;;11953:18:1;;;11946:32;11995:19;;53475:71:0;11622:398:1;53475:71:0;53557:22;52782:12;;;53557:22;;53689:426;53713:14;53709:1;:18;53689:426;;;53749:31;53783:14;;;:11;:14;;;;;;;;;53749:48;;;;;;;;;-1:-1:-1;;;;;53749:48:0;;;;;-1:-1:-1;;;53749:48:0;;;;;;;;;;;;53816:28;53812:103;;53885:14;;;-1:-1:-1;53812:103:0;53954:5;-1:-1:-1;;;;;53933:26:0;:17;-1:-1:-1;;;;;53933:26:0;;53929:175;;;53999:5;53984:11;:20;53980:77;;;-1:-1:-1;54036:1:0;-1:-1:-1;54029:8:0;;-1:-1:-1;;;54029:8:0;53980:77;54075:13;;;;:::i;:::-;;;;53929:175;-1:-1:-1;53729:3:0;;;;:::i;:::-;;;;53689:426;;;-1:-1:-1;54125:56:0;;-1:-1:-1;;;54125:56:0;;12367:2:1;54125:56:0;;;12349:21:1;12406:2;12386:18;;;12379:30;12445:34;12425:18;;;12418:62;-1:-1:-1;;;12496:18:1;;;12489:44;12550:19;;54125:56:0;12165:410:1;70186:135:0;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;70278:37:::1;::::0;70250:21:::1;::::0;70286:10:::1;::::0;70278:37;::::1;;;::::0;70250:21;;70232:15:::1;70278:37:::0;70232:15;70278:37;70250:21;70286:10;70278:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;58558:177:::0;58688:39;58705:4;58711:2;58715:7;58688:39;;;;;;;;;;;;:16;:39::i;70327:160::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;70409:30:::1;::::0;-1:-1:-1;;;70409:30:0;;70433:4:::1;70409:30;::::0;::::1;1856:51:1::0;70391:15:0::1;::::0;-1:-1:-1;;;;;70409:15:0;::::1;::::0;::::1;::::0;1829:18:1;;70409:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70446:35;::::0;-1:-1:-1;;;70446:35:0;;70461:10:::1;70446:35;::::0;::::1;12943:51:1::0;13010:18;;;13003:34;;;70391:48:0;;-1:-1:-1;;;;;;70446:14:0;::::1;::::0;::::1;::::0;12916:18:1;;70446:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;52879:187::-:0;52946:7;52782:12;;52974:5;:21;52966:69;;;;-1:-1:-1;;;52966:69:0;;13500:2:1;52966:69:0;;;13482:21:1;13539:2;13519:18;;;13512:30;13578:34;13558:18;;;13551:62;-1:-1:-1;;;13629:18:1;;;13622:33;13672:19;;52966:69:0;13298:399:1;52966:69:0;-1:-1:-1;53053:5:0;52879:187::o;69744:98::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;69815:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;55697:124::-:0;55761:7;55788:20;55800:7;55788:11;:20::i;:::-;:25;;55697:124;-1:-1:-1;;55697:124:0:o;66674:21::-;;;;;;;:::i;67706:849::-;67839:17;;67820:15;:36;;67812:57;;;;-1:-1:-1;;;67812:57:0;;9533:2:1;67812:57:0;;;9515:21:1;9572:1;9552:18;;;9545:29;-1:-1:-1;;;9590:18:1;;;9583:38;9638:18;;67812:57:0;9331:331:1;67812:57:0;67902:15;;67884;:33;67876:65;;;;-1:-1:-1;;;67876:65:0;;13904:2:1;67876:65:0;;;13886:21:1;13943:2;13923:18;;;13916:30;-1:-1:-1;;;13962:18:1;;;13955:49;14021:18;;67876:65:0;13702:343:1;67876:65:0;67964:128;67993:11;;67964:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68015:18:0;;68054:28;;-1:-1:-1;;68071:10:0;14199:2:1;14195:15;14191:53;68054:28:0;;;14179:66:1;68015:18:0;;-1:-1:-1;14261:12:1;;;-1:-1:-1;68054:28:0;;;;;;;;;;;;68044:39;;;;;;67964:18;:128::i;:::-;67948:190;;;;-1:-1:-1;;;67948:190:0;;14486:2:1;67948:190:0;;;14468:21:1;14525:2;14505:18;;;14498:30;14564;14544:18;;;14537:58;14612:18;;67948:190:0;14284:352:1;67948:190:0;68166:27;68188:5;66482:11;68166:27;:::i;:::-;68153:9;:40;;68145:88;;;;-1:-1:-1;;;68145:88:0;;;;;;;:::i;:::-;68262:10;68248:25;;;;:13;:25;;;;;;68285:1;;68248:33;;68276:5;;68248:33;:::i;:::-;:38;;68240:73;;;;-1:-1:-1;;;68240:73:0;;11066:2:1;68240:73:0;;;11048:21:1;11105:2;11085:18;;;11078:30;-1:-1:-1;;;11124:18:1;;;11117:52;11186:18;;68240:73:0;10864:346:1;68240:73:0;68336:1;68328:5;:9;:23;;;;;68350:1;68341:5;:10;;68328:23;68320:74;;;;-1:-1:-1;;;68320:74:0;;14843:2:1;68320:74:0;;;14825:21:1;14882:2;14862:18;;;14855:30;14921:34;14901:18;;;14894:62;-1:-1:-1;;;14972:18:1;;;14965:36;15018:19;;68320:74:0;14641:402:1;68320:74:0;66427:4;68425:5;68409:13;52755:7;52782:12;;52702:100;68409:13;:21;;;;:::i;:::-;:34;;68401:72;;;;-1:-1:-1;;;68401:72:0;;15250:2:1;68401:72:0;;;15232:21:1;15289:2;15269:18;;;15262:30;15328:27;15308:18;;;15301:55;15373:18;;68401:72:0;15048:349:1;68401:72:0;68496:10;68482:25;;;;:13;:25;;;;;:34;;68511:5;;68482:25;:34;;68511:5;;68482:34;:::i;:::-;;;;-1:-1:-1;68525:24:0;;-1:-1:-1;68531:10:0;68543:5;68525;:24::i;:::-;;67706:849;;;:::o;54697:221::-;54761:7;-1:-1:-1;;;;;54789:19:0;;54781:75;;;;-1:-1:-1;;;54781:75:0;;15604:2:1;54781:75:0;;;15586:21:1;15643:2;15623:18;;;15616:30;15682:34;15662:18;;;15655:62;-1:-1:-1;;;15733:18:1;;;15726:41;15784:19;;54781:75:0;15402:407:1;54781:75:0;-1:-1:-1;;;;;;54882:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54882:27:0;;54697:221::o;10187:103::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;10252:30:::1;10279:1;10252:18;:30::i;:::-;10187:103::o:0;69848:116::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;69926:18:::1;:32:::0;69848:116::o;56057:104::-;56113:13;56146:7;56139:14;;;;;:::i;57735:288::-;-1:-1:-1;;;;;57830:24:0;;8340:10;57830:24;;57822:63;;;;-1:-1:-1;;;57822:63:0;;16016:2:1;57822:63:0;;;15998:21:1;16055:2;16035:18;;;16028:30;16094:28;16074:18;;;16067:56;16140:18;;57822:63:0;15814:350:1;57822:63:0;8340:10;57898:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;57898:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;57898:53:0;;;;;;;;;;57967:48;;540:41:1;;;57898:42:0;;8340:10;57967:48;;513:18:1;57967:48:0;;;;;;;57735:288;;:::o;69549:63::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;69591:8:::1;:15:::0;;-1:-1:-1;;69591:15:0::1;69602:4;69591:15;::::0;;69549:63::o;69970:104::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;70042:17:::1;:26:::0;69970:104::o;69109:163::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;66427:4:::1;69194:5;:18;;69186:51;;;::::0;-1:-1:-1;;;69186:51:0;;16371:2:1;69186:51:0::1;::::0;::::1;16353:21:1::0;16410:2;16390:18;;;16383:30;-1:-1:-1;;;16429:18:1;;;16422:50;16489:18;;69186:51:0::1;16169:344:1::0;69186:51:0::1;69246:20;69252:6;69260:5;69246;:20::i;58806:355::-:0;58965:28;58975:4;58981:2;58985:7;58965:9;:28::i;:::-;59026:48;59049:4;59055:2;59059:7;59068:5;59026:22;:48::i;:::-;59004:149;;;;-1:-1:-1;;;59004:149:0;;;;;;;:::i;67208:492::-;67318:13;67357:16;67365:7;59473:4;59507:12;-1:-1:-1;59497:22:0;59416:111;67357:16;67349:46;;;;-1:-1:-1;;;67349:46:0;;17140:2:1;67349:46:0;;;17122:21:1;17179:2;17159:18;;;17152:30;-1:-1:-1;;;17198:18:1;;;17191:47;17255:18;;67349:46:0;16938:341:1;67349:46:0;67410:8;;;;67406:71;;67451:14;67444:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67208:492;;;:::o;67406:71::-;67489:28;67520:7;67489:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67589:1;67564:14;67558:28;:32;:134;;;;;;;;;;;;;;;;;67634:14;67650:18;:7;:16;:18::i;:::-;67617:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67558:134;67538:154;67208:492;-1:-1:-1;;;67208:492:0:o;69618:120::-;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;69700:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;10445:201::-:0;9609:6;;-1:-1:-1;;;;;9609:6:0;8340:10;9756:23;9748:68;;;;-1:-1:-1;;;9748:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10534:22:0;::::1;10526:73;;;::::0;-1:-1:-1;;;10526:73:0;;17961:2:1;10526:73:0::1;::::0;::::1;17943:21:1::0;18000:2;17980:18;;;17973:30;18039:34;18019:18;;;18012:62;-1:-1:-1;;;18090:18:1;;;18083:36;18136:19;;10526:73:0::1;17759:402:1::0;10526:73:0::1;10610:28;10629:8;10610:18;:28::i;:::-;10445:201:::0;:::o;63460:196::-;63575:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;63575:29:0;-1:-1:-1;;;;;63575:29:0;;;;;;;;;63620:28;;63575:24;;63620:28;;;;;;;63460:196;;;:::o;61559:1783::-;61674:35;61712:20;61724:7;61712:11;:20::i;:::-;61787:18;;61674:58;;-1:-1:-1;61745:22:0;;-1:-1:-1;;;;;61771:34:0;8340:10;-1:-1:-1;;;;;61771:34:0;;:87;;;-1:-1:-1;8340:10:0;61822:20;61834:7;61822:11;:20::i;:::-;-1:-1:-1;;;;;61822:36:0;;61771:87;:154;;;-1:-1:-1;61892:18:0;;61875:50;;8340:10;58094:164;:::i;61875:50::-;61745:181;;61947:17;61939:80;;;;-1:-1:-1;;;61939:80:0;;18368:2:1;61939:80:0;;;18350:21:1;18407:2;18387:18;;;18380:30;18446:34;18426:18;;;18419:62;-1:-1:-1;;;18497:18:1;;;18490:48;18555:19;;61939:80:0;18166:414:1;61939:80:0;62062:4;-1:-1:-1;;;;;62040:26:0;:13;:18;;;-1:-1:-1;;;;;62040:26:0;;62032:77;;;;-1:-1:-1;;;62032:77:0;;18787:2:1;62032:77:0;;;18769:21:1;18826:2;18806:18;;;18799:30;18865:34;18845:18;;;18838:62;-1:-1:-1;;;18916:18:1;;;18909:36;18962:19;;62032:77:0;18585:402:1;62032:77:0;-1:-1:-1;;;;;62128:16:0;;62120:66;;;;-1:-1:-1;;;62120:66:0;;19194:2:1;62120:66:0;;;19176:21:1;19233:2;19213:18;;;19206:30;19272:34;19252:18;;;19245:62;-1:-1:-1;;;19323:18:1;;;19316:35;19368:19;;62120:66:0;18992:401:1;62120:66:0;62307:49;62324:1;62328:7;62337:13;:18;;;62307:8;:49::i;:::-;-1:-1:-1;;;;;62561:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;62561:31:0;;;-1:-1:-1;;;;;62561:31:0;;;-1:-1:-1;;62561:31:0;;;;;;;62607:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;62607:29:0;;;;;;;;;;;;;62683:43;;;;;;;;;;62709:15;62683:43;;;;;;;;;;62660:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;62660:66:0;;;;;;;-1:-1:-1;;;62660:66:0;;;;;;;;;;;;62561:18;62988:11;;62660:20;;62988:11;:::i;:::-;63055:1;63014:24;;;:11;:24;;;;;:29;62966:33;;-1:-1:-1;;;;;;63014:29:0;63010:227;;63078:20;63086:11;59473:4;59507:12;-1:-1:-1;59497:22:0;59416:111;63078:20;63074:152;;;63146:64;;;;;;;;63161:18;;-1:-1:-1;;;;;63146:64:0;;;;;;63181:28;;;;63146:64;;;;;;;;;;-1:-1:-1;63119:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;63119:91:0;-1:-1:-1;;;;;;63119:91:0;;;;;;;;;;;;63074:152;63273:7;63269:2;-1:-1:-1;;;;;63254:27:0;63263:4;-1:-1:-1;;;;;63254:27:0;;;;;;;;;;;63292:42;61663:1679;;;61559:1783;;;:::o;69413:130::-;69481:7;69496:20;69506:2;69510:5;69496:9;:20::i;:::-;-1:-1:-1;69532:5:0;69413:130;-1:-1:-1;69413:130:0:o;55163:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;55266:16:0;55274:7;59473:4;59507:12;-1:-1:-1;59497:22:0;59416:111;55266:16;55258:71;;;;-1:-1:-1;;;55258:71:0;;19600:2:1;55258:71:0;;;19582:21:1;19639:2;19619:18;;;19612:30;19678:34;19658:18;;;19651:62;-1:-1:-1;;;19729:18:1;;;19722:40;19779:19;;55258:71:0;19398:406:1;55258:71:0;55362:7;55342:216;55396:31;55430:17;;;:11;:17;;;;;;;;;55396:51;;;;;;;;;-1:-1:-1;;;;;55396:51:0;;;;;-1:-1:-1;;;55396:51:0;;;;;;;;;;;;55466:28;55462:85;;55522:9;55163:472;-1:-1:-1;;;55163:472:0:o;55462:85::-;-1:-1:-1;55373:6:0;;;;:::i;:::-;;;;55342:216;;963:190;1088:4;1141;1112:25;1125:5;1132:4;1112:12;:25::i;:::-;:33;;963:190;-1:-1:-1;;;;963:190:0:o;10806:191::-;10899:6;;;-1:-1:-1;;;;;10916:17:0;;;-1:-1:-1;;;;;;10916:17:0;;;;;;;10949:40;;10899:6;;;10916:17;10899:6;;10949:40;;10880:16;;10949:40;10869:128;10806:191;:::o;64221:804::-;64376:4;-1:-1:-1;;;;;64397:13:0;;12532:19;:23;64393:625;;64433:72;;-1:-1:-1;;;64433:72:0;;-1:-1:-1;;;;;64433:36:0;;;;;:72;;8340:10;;64484:4;;64490:7;;64499:5;;64433:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64433:72:0;;;;;;;;-1:-1:-1;;64433:72:0;;;;;;;;;;;;:::i;:::-;;;64429:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64679:13:0;;64675:273;;64722:61;;-1:-1:-1;;;64722:61:0;;;;;;;:::i;64675:273::-;64898:6;64892:13;64883:6;64879:2;64875:15;64868:38;64429:534;-1:-1:-1;;;;;;64556:55:0;-1:-1:-1;;;64556:55:0;;-1:-1:-1;64549:62:0;;64393:625;-1:-1:-1;65002:4:0;64393:625;64221:804;;;;;;:::o;5822:723::-;5878:13;6099:10;6095:53;;-1:-1:-1;;6126:10:0;;;;;;;;;;;;-1:-1:-1;;;6126:10:0;;;;;5822:723::o;6095:53::-;6173:5;6158:12;6214:78;6221:9;;6214:78;;6247:8;;;;:::i;:::-;;-1:-1:-1;6270:10:0;;-1:-1:-1;6278:2:0;6270:10;;:::i;:::-;;;6214:78;;;6302:19;6334:6;6324:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6324:17:0;;6302:39;;6352:154;6359:10;;6352:154;;6386:11;6396:1;6386:11;;:::i;:::-;;-1:-1:-1;6455:10:0;6463:2;6455:5;:10;:::i;:::-;6442:24;;:2;:24;:::i;:::-;6429:39;;6412:6;6419;6412:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6412:56:0;;;;;;;;-1:-1:-1;6483:11:0;6492:2;6483:11;;:::i;:::-;;;6352:154;;59535:104;59604:27;59614:2;59618:8;59604:27;;;;;;;;;;;;:9;:27::i;1515:675::-;1598:7;1641:4;1598:7;1656:497;1680:5;:12;1676:1;:16;1656:497;;;1714:20;1737:5;1743:1;1737:8;;;;;;;;:::i;:::-;;;;;;;1714:31;;1780:12;1764;:28;1760:382;;2266:13;2316:15;;;2352:4;2345:15;;;2399:4;2383:21;;1892:57;;1760:382;;;2266:13;2316:15;;;2352:4;2345:15;;;2399:4;2383:21;;2069:57;;1760:382;-1:-1:-1;1694:3:0;;;;:::i;:::-;;;;1656:497;;;-1:-1:-1;2170:12:0;1515:675;-1:-1:-1;;;1515:675:0:o;59916:1389::-;60039:20;60062:12;-1:-1:-1;;;;;60093:16:0;;60085:62;;;;-1:-1:-1;;;60085:62:0;;21952:2:1;60085:62:0;;;21934:21:1;21991:2;21971:18;;;21964:30;22030:34;22010:18;;;22003:62;-1:-1:-1;;;22081:18:1;;;22074:31;22122:19;;60085:62:0;21750:397:1;60085:62:0;60292:21;60300:12;59473:4;59507:12;-1:-1:-1;59497:22:0;59416:111;60292:21;60291:22;60283:64;;;;-1:-1:-1;;;60283:64:0;;22354:2:1;60283:64:0;;;22336:21:1;22393:2;22373:18;;;22366:30;22432:31;22412:18;;;22405:59;22481:18;;60283:64:0;22152:353:1;60283:64:0;60377:1;60366:8;:12;60358:60;;;;-1:-1:-1;;;60358:60:0;;22712:2:1;60358:60:0;;;22694:21:1;22751:2;22731:18;;;22724:30;22790:34;22770:18;;;22763:62;-1:-1:-1;;;22841:18:1;;;22834:33;22884:19;;60358:60:0;22510:399:1;60358:60:0;-1:-1:-1;;;;;60538:16:0;;60505:30;60538:16;;;:12;:16;;;;;;;;;60505:49;;;;;;;;;-1:-1:-1;;;;;60505:49:0;;;;;-1:-1:-1;;;60505:49:0;;;;;;;;;;;60584:135;;;;;;;;60610:19;;60505:49;;60584:135;;;60610:39;;60640:8;;60610:39;:::i;:::-;-1:-1:-1;;;;;60584:135:0;;;;;60699:8;60664:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60584:135:0;;;;;;-1:-1:-1;;;;;60565:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;60565:154:0;;;;;;;;;;;;60758:43;;;;;;;;;;;60784:15;60758:43;;;;;;;;60730:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60730:71:0;-1:-1:-1;;;;;;60730:71:0;;;;;;;;;;;;;;;;;;60742:12;;60862:325;60886:8;60882:1;:12;60862:325;;;60921:38;;60946:12;;-1:-1:-1;;;;;60921:38:0;;;60938:1;;60921:38;;60938:1;;60921:38;61000:59;61031:1;61035:2;61039:12;61053:5;61000:22;:59::i;:::-;60974:172;;;;-1:-1:-1;;;60974:172:0;;;;;;;:::i;:::-;61161:14;;;;:::i;:::-;;;;60896:3;;;;;:::i;:::-;;;;60862:325;;;-1:-1:-1;61199:12:0;:27;;;61237:60;67706:849;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:131::-;-1:-1:-1;;;;;1993:31:1;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:1:o;2556:456::-;2633:6;2641;2649;2702:2;2690:9;2681:7;2677:23;2673:32;2670:52;;;2718:1;2715;2708:12;2670:52;2757:9;2744:23;2776:31;2801:5;2776:31;:::i;:::-;2826:5;-1:-1:-1;2883:2:1;2868:18;;2855:32;2896:33;2855:32;2896:33;:::i;:::-;2556:456;;2948:7;;-1:-1:-1;;;3002:2:1;2987:18;;;;2974:32;;2556:456::o;3017:261::-;3090:6;3143:2;3131:9;3122:7;3118:23;3114:32;3111:52;;;3159:1;3156;3149:12;3111:52;3198:9;3185:23;3217:31;3242:5;3217:31;:::i;3283:127::-;3344:10;3339:3;3335:20;3332:1;3325:31;3375:4;3372:1;3365:15;3399:4;3396:1;3389:15;3415:632;3480:5;3510:18;3551:2;3543:6;3540:14;3537:40;;;3557:18;;:::i;:::-;3632:2;3626:9;3600:2;3686:15;;-1:-1:-1;;3682:24:1;;;3708:2;3678:33;3674:42;3662:55;;;3732:18;;;3752:22;;;3729:46;3726:72;;;3778:18;;:::i;:::-;3818:10;3814:2;3807:22;3847:6;3838:15;;3877:6;3869;3862:22;3917:3;3908:6;3903:3;3899:16;3896:25;3893:45;;;3934:1;3931;3924:12;3893:45;3984:6;3979:3;3972:4;3964:6;3960:17;3947:44;4039:1;4032:4;4023:6;4015;4011:19;4007:30;4000:41;;;;3415:632;;;;;:::o;4052:451::-;4121:6;4174:2;4162:9;4153:7;4149:23;4145:32;4142:52;;;4190:1;4187;4180:12;4142:52;4230:9;4217:23;4263:18;4255:6;4252:30;4249:50;;;4295:1;4292;4285:12;4249:50;4318:22;;4371:4;4363:13;;4359:27;-1:-1:-1;4349:55:1;;4400:1;4397;4390:12;4349:55;4423:74;4489:7;4484:2;4471:16;4466:2;4462;4458:11;4423:74;:::i;4508:689::-;4603:6;4611;4619;4672:2;4660:9;4651:7;4647:23;4643:32;4640:52;;;4688:1;4685;4678:12;4640:52;4728:9;4715:23;4757:18;4798:2;4790:6;4787:14;4784:34;;;4814:1;4811;4804:12;4784:34;4852:6;4841:9;4837:22;4827:32;;4897:7;4890:4;4886:2;4882:13;4878:27;4868:55;;4919:1;4916;4909:12;4868:55;4959:2;4946:16;4985:2;4977:6;4974:14;4971:34;;;5001:1;4998;4991:12;4971:34;5056:7;5049:4;5039:6;5036:1;5032:14;5028:2;5024:23;5020:34;5017:47;5014:67;;;5077:1;5074;5067:12;5014:67;5108:4;5100:13;;;;5132:6;;-1:-1:-1;5170:20:1;;;;5157:34;;4508:689;-1:-1:-1;;;;4508:689:1:o;5639:118::-;5725:5;5718:13;5711:21;5704:5;5701:32;5691:60;;5747:1;5744;5737:12;5762:382;5827:6;5835;5888:2;5876:9;5867:7;5863:23;5859:32;5856:52;;;5904:1;5901;5894:12;5856:52;5943:9;5930:23;5962:31;5987:5;5962:31;:::i;:::-;6012:5;-1:-1:-1;6069:2:1;6054:18;;6041:32;6082:30;6041:32;6082:30;:::i;:::-;6131:7;6121:17;;;5762:382;;;;;:::o;6149:795::-;6244:6;6252;6260;6268;6321:3;6309:9;6300:7;6296:23;6292:33;6289:53;;;6338:1;6335;6328:12;6289:53;6377:9;6364:23;6396:31;6421:5;6396:31;:::i;:::-;6446:5;-1:-1:-1;6503:2:1;6488:18;;6475:32;6516:33;6475:32;6516:33;:::i;:::-;6568:7;-1:-1:-1;6622:2:1;6607:18;;6594:32;;-1:-1:-1;6677:2:1;6662:18;;6649:32;6704:18;6693:30;;6690:50;;;6736:1;6733;6726:12;6690:50;6759:22;;6812:4;6804:13;;6800:27;-1:-1:-1;6790:55:1;;6841:1;6838;6831:12;6790:55;6864:74;6930:7;6925:2;6912:16;6907:2;6903;6899:11;6864:74;:::i;:::-;6854:84;;;6149:795;;;;;;;:::o;6949:388::-;7017:6;7025;7078:2;7066:9;7057:7;7053:23;7049:32;7046:52;;;7094:1;7091;7084:12;7046:52;7133:9;7120:23;7152:31;7177:5;7152:31;:::i;:::-;7202:5;-1:-1:-1;7259:2:1;7244:18;;7231:32;7272:33;7231:32;7272:33;:::i;7342:380::-;7421:1;7417:12;;;;7464;;;7485:61;;7539:4;7531:6;7527:17;7517:27;;7485:61;7592:2;7584:6;7581:14;7561:18;7558:38;7555:161;;;7638:10;7633:3;7629:20;7626:1;7619:31;7673:4;7670:1;7663:15;7701:4;7698:1;7691:15;8970:356;9172:2;9154:21;;;9191:18;;;9184:30;9250:34;9245:2;9230:18;;9223:62;9317:2;9302:18;;8970:356::o;9667:127::-;9728:10;9723:3;9719:20;9716:1;9709:31;9759:4;9756:1;9749:15;9783:4;9780:1;9773:15;9799:168;9839:7;9905:1;9901;9897:6;9893:14;9890:1;9887:21;9882:1;9875:9;9868:17;9864:45;9861:71;;;9912:18;;:::i;:::-;-1:-1:-1;9952:9:1;;9799:168::o;9972:399::-;10174:2;10156:21;;;10213:2;10193:18;;;10186:30;10252:34;10247:2;10232:18;;10225:62;-1:-1:-1;;;10318:2:1;10303:18;;10296:33;10361:3;10346:19;;9972:399::o;10376:128::-;10416:3;10447:1;10443:6;10440:1;10437:13;10434:39;;;10453:18;;:::i;:::-;-1:-1:-1;10489:9:1;;10376:128::o;12025:135::-;12064:3;-1:-1:-1;;12085:17:1;;12082:43;;;12105:18;;:::i;:::-;-1:-1:-1;12152:1:1;12141:13;;12025:135::o;12580:184::-;12650:6;12703:2;12691:9;12682:7;12678:23;12674:32;12671:52;;;12719:1;12716;12709:12;12671:52;-1:-1:-1;12742:16:1;;12580:184;-1:-1:-1;12580:184:1:o;13048:245::-;13115:6;13168:2;13156:9;13147:7;13143:23;13139:32;13136:52;;;13184:1;13181;13174:12;13136:52;13216:9;13210:16;13235:28;13257:5;13235:28;:::i;16518:415::-;16720:2;16702:21;;;16759:2;16739:18;;;16732:30;16798:34;16793:2;16778:18;;16771:62;-1:-1:-1;;;16864:2:1;16849:18;;16842:49;16923:3;16908:19;;16518:415::o;17284:470::-;17463:3;17501:6;17495:13;17517:53;17563:6;17558:3;17551:4;17543:6;17539:17;17517:53;:::i;:::-;17633:13;;17592:16;;;;17655:57;17633:13;17592:16;17689:4;17677:17;;17655:57;:::i;:::-;17728:20;;17284:470;-1:-1:-1;;;;17284:470:1:o;19809:136::-;19848:3;19876:5;19866:39;;19885:18;;:::i;:::-;-1:-1:-1;;;19921:18:1;;19809:136::o;20366:489::-;-1:-1:-1;;;;;20635:15:1;;;20617:34;;20687:15;;20682:2;20667:18;;20660:43;20734:2;20719:18;;20712:34;;;20782:3;20777:2;20762:18;;20755:31;;;20560:4;;20803:46;;20829:19;;20821:6;20803:46;:::i;:::-;20795:54;20366:489;-1:-1:-1;;;;;;20366:489:1:o;20860:249::-;20929:6;20982:2;20970:9;20961:7;20957:23;20953:32;20950:52;;;20998:1;20995;20988:12;20950:52;21030:9;21024:16;21049:30;21073:5;21049:30;:::i;21114:127::-;21175:10;21170:3;21166:20;21163:1;21156:31;21206:4;21203:1;21196:15;21230:4;21227:1;21220:15;21246:120;21286:1;21312;21302:35;;21317:18;;:::i;:::-;-1:-1:-1;21351:9:1;;21246:120::o;21371:125::-;21411:4;21439:1;21436;21433:8;21430:34;;;21444:18;;:::i;:::-;-1:-1:-1;21481:9:1;;21371:125::o;21501:112::-;21533:1;21559;21549:35;;21564:18;;:::i;:::-;-1:-1:-1;21598:9:1;;21501:112::o;21618:127::-;21679:10;21674:3;21670:20;21667:1;21660:31;21710:4;21707:1;21700:15;21734:4;21731:1;21724:15;22914:253;22954:3;-1:-1:-1;;;;;23043:2:1;23040:1;23036:10;23073:2;23070:1;23066:10;23104:3;23100:2;23096:12;23091:3;23088:21;23085:47;;;23112:18;;:::i

Swarm Source

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