ETH Price: $3,325.00 (+1.27%)
 

Overview

Max Total Supply

29 COSMICNFT

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 COSMICNFT
0xf7b28cc6f7c614554dfcd37dadd24e764f253456
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CosmicOdysseyGenesis

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-08
*/

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

// SPDX-License-Identifier: MIT
// 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/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// 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/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.2) (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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: NFT.sol


/*
Κανείς δεν με λένε η μητέρα, ο πατέρας και όλοι οι σύντροφοί μου

Odysseus could not get to Greece without a ship.

https://cosmicodyssey.tech

twitter: @COGamesETH

telegram : https://t.me/CosmicOdysseyEntry


r/CosmicOdysseyGames
www.tiktok.com/@cosmicodysseygames
https://youtube.com/@CosmicOdysseyGames

https://green-careful-capybara-694.mypinata.cloud/ipfs/QmcugRY9n5JZtbEn9yMAhieFxzkYjeZYn6qGEmLUbvyqmW/
*/

pragma solidity =0.8.15;





contract CosmicOdysseyGenesis is ERC721, Ownable {
    //Libraries
    using SafeMath for uint256;
    using Strings for uint256;
    using Counters for Counters.Counter;
    using SafeERC20 for IERC20;

    Counters.Counter private _supply;

    //Variables public
    bool public pubMintActive = false;
    uint256 public PUB_MINT_PRICE;

    //Variables Private
    string private baseURI;
    string private baseExt = ".json";
    bool public revealed = false;
    bool public baseUriLock = false;
    string private notRevealedUri;
    bool private _locked = false; // for re-entrancy guard

    //Constants
    uint256 private PUB_MAX_PER_WALLET = 3; // 3/wallet (uses < to save gas)
    // Total supply
    uint256 public constant MAX_SUPPLY = 500;

    //events
    event Minted(address to, uint256 quantity);

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        uint256 PUB_PRICE
    ) ERC721("Cosmic Odyssey Genesis", "COSMICNFT") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        setPrice(PUB_PRICE);
        _supply.increment();
    }

    // Public mint - only publicly available mint function
    function publicMint(uint256 _quantity) external payable nonReentrant {
        require(pubMintActive, "Public sale is closed at the moment.");
        address _to = msg.sender;
        require(_quantity > 0, "Invalid mint quantity.");
        require(
            balanceOf(msg.sender).add(_quantity) <= PUB_MAX_PER_WALLET,
            "invalid mint quantity, cant mint that many"
        );
        require(
            msg.value == (PUB_MINT_PRICE.mul(_quantity)),
            "Must send exact amount to mint, either increase or decrease eth amount"
        );
        mint(_to, _quantity);
    }

    // Mint an NFT internal function
    function mint(address _to, uint256 _quantity) private {
        unchecked {
            require(
                (_quantity + _supply.current()) <= MAX_SUPPLY,
                "Max supply exceeded."
            );

            for (uint256 i = 0; i < _quantity; i++) {
                _safeMint(_to, _supply.current());
                _supply.increment();
            }
        }
        emit Minted(_to, _quantity);
    }

    function airDropMint(address _to, uint256 _quantity) external onlyOwner {
        require(_quantity > 0, "Invalid mint quantity.");
        mint(_to, _quantity);
    }

    // Get total supply
    function totalSupply() public view returns (uint256) {
        return _supply.current().sub(1);
    }

    // Set Mint price
    function setPrice(uint256 PUB_PRICE) public onlyOwner {
        PUB_MINT_PRICE = PUB_PRICE * 1e9;
    }

    //Set Max Wallet
    function setMaxNFTSPerWallet(uint256 PUB_MAX_WALLET) public onlyOwner {
        require(PUB_MAX_PER_WALLET > 0);
        PUB_MAX_PER_WALLET = PUB_MAX_WALLET;
    }

    // Toggle public sales activity
    function togglePubMintActive() public onlyOwner {
        pubMintActive = !pubMintActive;
    }

    // For locking Uri changing once the collection integrity is confirmed.
    function LockUriChange() public onlyOwner {
        baseUriLock = true;
    }

    // Base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // Set base URI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require(
            !baseUriLock,
            "changing the uri has been locked for security purposes"
        );
        baseURI = _newBaseURI;
    }

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

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

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

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

    // Set not revealed URI
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // Withdraw balance
    function withdraw() external onlyOwner {
        // Transfer the  balance  minus user rewards to the owner
        // Do not remove this line, else you won't be able to withdraw the funds
        (bool sent, ) = payable(owner()).call{value: address(this).balance}("");
        require(sent, "Failed to withdraw Ether.");
    }

    // Receive any funds sent to the contract
    receive() external payable {}

    // Reentrancy guard modifier
    modifier nonReentrant() {
        require(!_locked, "No re-entrant call.");
        _locked = true;
        _;
        _locked = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"uint256","name":"PUB_PRICE","type":"uint256"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LockUriChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUB_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airDropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUriLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"PUB_MAX_WALLET","type":"uint256"}],"name":"setMaxNFTSPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"PUB_PRICE","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePubMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600860006101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000659190620006d5565b506000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506003600f55348015620000c957600080fd5b5060405162004928380380620049288339818101604052810190620000ef91906200095b565b6040518060400160405280601681526020017f436f736d6963204f6479737365792047656e65736973000000000000000000008152506040518060400160405280600981526020017f434f534d49434e4654000000000000000000000000000000000000000000000081525081600090816200016c9190620006d5565b5080600190816200017e9190620006d5565b505050620001a162000195620001f460201b60201c565b620001fc60201b60201c565b620001b283620002c260201b60201c565b620001c3826200033a60201b60201c565b620001d4816200035f60201b60201c565b620001eb60076200038a60201b620014211760201c565b50505062000ba0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d2620003a060201b60201c565b600c60019054906101000a900460ff161562000325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031c9062000a7c565b60405180910390fd5b80600a9081620003369190620006d5565b5050565b6200034a620003a060201b60201c565b80600d90816200035b9190620006d5565b5050565b6200036f620003a060201b60201c565b633b9aca008162000381919062000acd565b60098190555050565b6001816000016000828254019250508190555050565b620003b0620001f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d66200043160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004269062000b7e565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004dd57607f821691505b602082108103620004f357620004f262000495565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051e565b6200056986836200051e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005b6620005b0620005aa8462000581565b6200058b565b62000581565b9050919050565b6000819050919050565b620005d28362000595565b620005ea620005e182620005bd565b8484546200052b565b825550505050565b600090565b62000601620005f2565b6200060e818484620005c7565b505050565b5b8181101562000636576200062a600082620005f7565b60018101905062000614565b5050565b601f82111562000685576200064f81620004f9565b6200065a846200050e565b810160208510156200066a578190505b6200068262000679856200050e565b83018262000613565b50505b505050565b600082821c905092915050565b6000620006aa600019846008026200068a565b1980831691505092915050565b6000620006c5838362000697565b9150826002028217905092915050565b620006e0826200045b565b67ffffffffffffffff811115620006fc57620006fb62000466565b5b620007088254620004c4565b620007158282856200063a565b600060209050601f8311600181146200074d576000841562000738578287015190505b620007448582620006b7565b865550620007b4565b601f1984166200075d86620004f9565b60005b82811015620007875784890151825560018201915060208501945060208101905062000760565b86831015620007a75784890151620007a3601f89168262000697565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007f682620007da565b810181811067ffffffffffffffff8211171562000818576200081762000466565b5b80604052505050565b60006200082d620007bc565b90506200083b8282620007eb565b919050565b600067ffffffffffffffff8211156200085e576200085d62000466565b5b6200086982620007da565b9050602081019050919050565b60005b838110156200089657808201518184015260208101905062000879565b83811115620008a6576000848401525b50505050565b6000620008c3620008bd8462000840565b62000821565b905082815260208101848484011115620008e257620008e1620007d5565b5b620008ef84828562000876565b509392505050565b600082601f8301126200090f576200090e620007d0565b5b815162000921848260208601620008ac565b91505092915050565b620009358162000581565b81146200094157600080fd5b50565b60008151905062000955816200092a565b92915050565b600080600060608486031215620009775762000976620007c6565b5b600084015167ffffffffffffffff811115620009985762000997620007cb565b5b620009a686828701620008f7565b935050602084015167ffffffffffffffff811115620009ca57620009c9620007cb565b5b620009d886828701620008f7565b9250506040620009eb8682870162000944565b9150509250925092565b600082825260208201905092915050565b7f6368616e67696e67207468652075726920686173206265656e206c6f636b656460008201527f20666f7220736563757269747920707572706f73657300000000000000000000602082015250565b600062000a64603683620009f5565b915062000a718262000a06565b604082019050919050565b6000602082019050818103600083015262000a978162000a55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ada8262000581565b915062000ae78362000581565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b235762000b2262000a9e565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b66602083620009f5565b915062000b738262000b2e565b602082019050919050565b6000602082019050818103600083015262000b998162000b57565b9050919050565b613d788062000bb06000396000f3fe6080604052600436106101e75760003560e01c806370a0823111610102578063a22cb46511610095578063cb6f7a6111610064578063cb6f7a611461067e578063e985e9c5146106a7578063f2c4ce1e146106e4578063f2fde38b1461070d576101ee565b8063a22cb465146105c4578063b153dc36146105ed578063b88d4fde14610618578063c87b56dd14610641576101ee565b80638da5cb5b116100d15780638da5cb5b1461052e57806391b7f5ed1461055957806395d89b411461058257806398360231146105ad576101ee565b806370a082311461049a578063715018a6146104d757806375a1ed08146104ee5780637664531514610517576101ee565b806332cb6b0c1161017a578063518302271161014957806351830227146103de57806355f804b3146104095780636352211e146104325780636eb48bcb1461046f576101ee565b806332cb6b0c1461035c5780633ccfd60b1461038757806342842e0e1461039e57806348ee7a8e146103c7576101ee565b8063095ea7b3116101b6578063095ea7b3146102c357806318160ddd146102ec57806323b872dd146103175780632db1154414610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307b575d01461025b578063081812fc14610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612543565b610736565b604051610227919061258b565b60405180910390f35b34801561023c57600080fd5b50610245610818565b604051610252919061263f565b60405180910390f35b34801561026757600080fd5b506102706108aa565b60405161027d919061267a565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906126c1565b6108b0565b6040516102ba919061272f565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612776565b6108f6565b005b3480156102f857600080fd5b50610301610a0d565b60405161030e919061267a565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906127b6565b610a31565b005b61035a600480360381019061035591906126c1565b610a91565b005b34801561036857600080fd5b50610371610c71565b60405161037e919061267a565b60405180910390f35b34801561039357600080fd5b5061039c610c77565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906127b6565b610d35565b005b3480156103d357600080fd5b506103dc610d55565b005b3480156103ea57600080fd5b506103f3610d7a565b604051610400919061258b565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061293e565b610d8d565b005b34801561043e57600080fd5b50610459600480360381019061045491906126c1565b610df8565b604051610466919061272f565b60405180910390f35b34801561047b57600080fd5b50610484610e7e565b604051610491919061258b565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612987565b610e91565b6040516104ce919061267a565b60405180910390f35b3480156104e357600080fd5b506104ec610f48565b005b3480156104fa57600080fd5b5061051560048036038101906105109190612776565b610f5c565b005b34801561052357600080fd5b5061052c610fb5565b005b34801561053a57600080fd5b50610543610fda565b604051610550919061272f565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906126c1565b611004565b005b34801561058e57600080fd5b50610597611025565b6040516105a4919061263f565b60405180910390f35b3480156105b957600080fd5b506105c26110b7565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906129e0565b6110eb565b005b3480156105f957600080fd5b50610602611101565b60405161060f919061258b565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612ac1565b611114565b005b34801561064d57600080fd5b50610668600480360381019061066391906126c1565b611176565b604051610675919061263f565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906126c1565b6112ce565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612b44565b6112ef565b6040516106db919061258b565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061293e565b611383565b005b34801561071957600080fd5b50610734600480360381019061072f9190612987565b61139e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610811575061081082611437565b5b9050919050565b60606000805461082790612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461085390612bb3565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60095481565b60006108bb826114a1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090182610df8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890612c56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109906114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806109bf57506109be816109b96114ec565b6112ef565b5b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590612ce8565b60405180910390fd5b610a0883836114f4565b505050565b6000610a2c6001610a1e60076115ad565b6115bb90919063ffffffff16565b905090565b610a42610a3c6114ec565b826115d1565b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612d7a565b60405180910390fd5b610a8c838383611666565b505050565b600e60009054906101000a900460ff1615610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890612de6565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550600860009054906101000a900460ff16610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612e78565b60405180910390fd5b600033905060008211610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90612ee4565b60405180910390fd5b600f54610bb183610ba333610e91565b61195f90919063ffffffff16565b1115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990612f76565b60405180910390fd5b610c078260095461197590919063ffffffff16565b3414610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061302e565b60405180910390fd5b610c52818361198b565b506000600e60006101000a81548160ff02191690831515021790555050565b6101f481565b610c7f611a4e565b6000610c89610fda565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cac9061307f565b60006040518083038185875af1925050503d8060008114610ce9576040519150601f19603f3d011682016040523d82523d6000602084013e610cee565b606091505b5050905080610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d29906130e0565b60405180910390fd5b50565b610d5083838360405180602001604052806000815250611114565b505050565b610d5d611a4e565b6001600c60016101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b610d95611a4e565b600c60019054906101000a900460ff1615610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613172565b60405180910390fd5b80600a9081610df4919061333e565b5050565b600080610e0483611acc565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c9061345c565b60405180910390fd5b80915050919050565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906134ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f50611a4e565b610f5a6000611b09565b565b610f64611a4e565b60008111610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612ee4565b60405180910390fd5b610fb1828261198b565b5050565b610fbd611a4e565b6001600c60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61100c611a4e565b633b9aca008161101c919061353d565b60098190555050565b60606001805461103490612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461106090612bb3565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b5050505050905090565b6110bf611a4e565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6110fd6110f66114ec565b8383611bcf565b5050565b600c60019054906101000a900460ff1681565b61112561111f6114ec565b836115d1565b611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90612d7a565b60405180910390fd5b61117084848484611d3b565b50505050565b606061118182611d97565b6111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790613609565b60405180910390fd5b60001515600c60009054906101000a900460ff1615150361126d57600d80546111e890612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461121490612bb3565b80156112615780601f1061123657610100808354040283529160200191611261565b820191906000526020600020905b81548152906001019060200180831161124457829003601f168201915b505050505090506112c9565b6000611277611dd8565b9050600081511161129757604051806020016040528060008152506112c5565b806112a184611e6a565b600b6040516020016112b5939291906136e8565b6040516020818303038152906040525b9150505b919050565b6112d6611a4e565b6000600f54116112e557600080fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138b611a4e565b80600d908161139a919061333e565b5050565b6113a6611a4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061378b565b60405180910390fd5b61141e81611b09565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6114aa81611d97565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061345c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156783610df8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600081836115c991906137ab565b905092915050565b6000806115dd83610df8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061161f575061161e81856112ef565b5b8061165d57508373ffffffffffffffffffffffffffffffffffffffff16611645846108b0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168682610df8565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906138e3565b60405180910390fd5b6117588383836001611f38565b8273ffffffffffffffffffffffffffffffffffffffff1661177882610df8565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613851565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461195a8383836001611f3e565b505050565b6000818361196d9190613903565b905092915050565b60008183611983919061353d565b905092915050565b6101f461199860076115ad565b820111156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906139a5565b60405180910390fd5b60005b81811015611a10576119f9836119f460076115ad565b611f44565b611a036007611421565b80806001019150506119de565b507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051611a429291906139c5565b60405180910390a15050565b611a566114ec565b73ffffffffffffffffffffffffffffffffffffffff16611a74610fda565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613a3a565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613aa6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2e919061258b565b60405180910390a3505050565b611d46848484611666565b611d5284848484611f62565b611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613b38565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611db983611acc565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611de790612bb3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1390612bb3565b8015611e605780601f10611e3557610100808354040283529160200191611e60565b820191906000526020600020905b815481529060010190602001808311611e4357829003601f168201915b5050505050905090565b606060006001611e79846120e9565b01905060008167ffffffffffffffff811115611e9857611e97612813565b5b6040519080825280601f01601f191660200182016040528015611eca5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f2157611f20613b58565b5b04945060008503611ed8575b819350505050919050565b50505050565b50505050565b611f5e82826040518060200160405280600081525061223c565b5050565b6000611f838473ffffffffffffffffffffffffffffffffffffffff16612297565b156120dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac6114ec565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613bdc565b6020604051808303816000875af192505050801561200a57506040513d601f19601f820116820180604052508101906120079190613c3d565b60015b61208c573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b506000815103612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613b38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120e1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612147577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161213d5761213c613b58565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612184576d04ee2d6d415b85acef8100000000838161217a57612179613b58565b5b0492506020810190505b662386f26fc1000083106121b357662386f26fc1000083816121a9576121a8613b58565b5b0492506010810190505b6305f5e10083106121dc576305f5e10083816121d2576121d1613b58565b5b0492506008810190505b61271083106122015761271083816121f7576121f6613b58565b5b0492506004810190505b60648310612224576064838161221a57612219613b58565b5b0492506002810190505b600a8310612233576001810190505b80915050919050565b61224683836122ba565b6122536000848484611f62565b612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990613b38565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090613cb6565b60405180910390fd5b61233281611d97565b15612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990613d22565b60405180910390fd5b612380600083836001611f38565b61238981611d97565b156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613d22565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d3600083836001611f3e565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612520816124eb565b811461252b57600080fd5b50565b60008135905061253d81612517565b92915050565b600060208284031215612559576125586124e1565b5b60006125678482850161252e565b91505092915050565b60008115159050919050565b61258581612570565b82525050565b60006020820190506125a0600083018461257c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e05780820151818401526020810190506125c5565b838111156125ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000612611826125a6565b61261b81856125b1565b935061262b8185602086016125c2565b612634816125f5565b840191505092915050565b600060208201905081810360008301526126598184612606565b905092915050565b6000819050919050565b61267481612661565b82525050565b600060208201905061268f600083018461266b565b92915050565b61269e81612661565b81146126a957600080fd5b50565b6000813590506126bb81612695565b92915050565b6000602082840312156126d7576126d66124e1565b5b60006126e5848285016126ac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612719826126ee565b9050919050565b6127298161270e565b82525050565b60006020820190506127446000830184612720565b92915050565b6127538161270e565b811461275e57600080fd5b50565b6000813590506127708161274a565b92915050565b6000806040838503121561278d5761278c6124e1565b5b600061279b85828601612761565b92505060206127ac858286016126ac565b9150509250929050565b6000806000606084860312156127cf576127ce6124e1565b5b60006127dd86828701612761565b93505060206127ee86828701612761565b92505060406127ff868287016126ac565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284b826125f5565b810181811067ffffffffffffffff8211171561286a57612869612813565b5b80604052505050565b600061287d6124d7565b90506128898282612842565b919050565b600067ffffffffffffffff8211156128a9576128a8612813565b5b6128b2826125f5565b9050602081019050919050565b82818337600083830152505050565b60006128e16128dc8461288e565b612873565b9050828152602081018484840111156128fd576128fc61280e565b5b6129088482856128bf565b509392505050565b600082601f83011261292557612924612809565b5b81356129358482602086016128ce565b91505092915050565b600060208284031215612954576129536124e1565b5b600082013567ffffffffffffffff811115612972576129716124e6565b5b61297e84828501612910565b91505092915050565b60006020828403121561299d5761299c6124e1565b5b60006129ab84828501612761565b91505092915050565b6129bd81612570565b81146129c857600080fd5b50565b6000813590506129da816129b4565b92915050565b600080604083850312156129f7576129f66124e1565b5b6000612a0585828601612761565b9250506020612a16858286016129cb565b9150509250929050565b600067ffffffffffffffff821115612a3b57612a3a612813565b5b612a44826125f5565b9050602081019050919050565b6000612a64612a5f84612a20565b612873565b905082815260208101848484011115612a8057612a7f61280e565b5b612a8b8482856128bf565b509392505050565b600082601f830112612aa857612aa7612809565b5b8135612ab8848260208601612a51565b91505092915050565b60008060008060808587031215612adb57612ada6124e1565b5b6000612ae987828801612761565b9450506020612afa87828801612761565b9350506040612b0b878288016126ac565b925050606085013567ffffffffffffffff811115612b2c57612b2b6124e6565b5b612b3887828801612a93565b91505092959194509250565b60008060408385031215612b5b57612b5a6124e1565b5b6000612b6985828601612761565b9250506020612b7a85828601612761565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bcb57607f821691505b602082108103612bde57612bdd612b84565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c406021836125b1565b9150612c4b82612be4565b604082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612cd2603d836125b1565b9150612cdd82612c76565b604082019050919050565b60006020820190508181036000830152612d0181612cc5565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d64602d836125b1565b9150612d6f82612d08565b604082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b7f4e6f2072652d656e7472616e742063616c6c2e00000000000000000000000000600082015250565b6000612dd06013836125b1565b9150612ddb82612d9a565b602082019050919050565b60006020820190508181036000830152612dff81612dc3565b9050919050565b7f5075626c69632073616c6520697320636c6f73656420617420746865206d6f6d60008201527f656e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000612e626024836125b1565b9150612e6d82612e06565b604082019050919050565b60006020820190508181036000830152612e9181612e55565b9050919050565b7f496e76616c6964206d696e74207175616e746974792e00000000000000000000600082015250565b6000612ece6016836125b1565b9150612ed982612e98565b602082019050919050565b60006020820190508181036000830152612efd81612ec1565b9050919050565b7f696e76616c6964206d696e74207175616e746974792c2063616e74206d696e7460008201527f2074686174206d616e7900000000000000000000000000000000000000000000602082015250565b6000612f60602a836125b1565b9150612f6b82612f04565b604082019050919050565b60006020820190508181036000830152612f8f81612f53565b9050919050565b7f4d7573742073656e6420657861637420616d6f756e7420746f206d696e742c2060008201527f65697468657220696e637265617365206f72206465637265617365206574682060208201527f616d6f756e740000000000000000000000000000000000000000000000000000604082015250565b60006130186046836125b1565b915061302382612f96565b606082019050919050565b600060208201905081810360008301526130478161300b565b9050919050565b600081905092915050565b50565b600061306960008361304e565b915061307482613059565b600082019050919050565b600061308a8261305c565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865722e00000000000000600082015250565b60006130ca6019836125b1565b91506130d582613094565b602082019050919050565b600060208201905081810360008301526130f9816130bd565b9050919050565b7f6368616e67696e67207468652075726920686173206265656e206c6f636b656460008201527f20666f7220736563757269747920707572706f73657300000000000000000000602082015250565b600061315c6036836125b1565b915061316782613100565b604082019050919050565b6000602082019050818103600083015261318b8161314f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b7565b6131fe86836131b7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323b61323661323184612661565b613216565b612661565b9050919050565b6000819050919050565b61325583613220565b61326961326182613242565b8484546131c4565b825550505050565b600090565b61327e613271565b61328981848461324c565b505050565b5b818110156132ad576132a2600082613276565b60018101905061328f565b5050565b601f8211156132f2576132c381613192565b6132cc846131a7565b810160208510156132db578190505b6132ef6132e7856131a7565b83018261328e565b50505b505050565b600082821c905092915050565b6000613315600019846008026132f7565b1980831691505092915050565b600061332e8383613304565b9150826002028217905092915050565b613347826125a6565b67ffffffffffffffff8111156133605761335f612813565b5b61336a8254612bb3565b6133758282856132b1565b600060209050601f8311600181146133a85760008415613396578287015190505b6133a08582613322565b865550613408565b601f1984166133b686613192565b60005b828110156133de578489015182556001820191506020850194506020810190506133b9565b868310156133fb57848901516133f7601f891682613304565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006134466018836125b1565b915061345182613410565b602082019050919050565b6000602082019050818103600083015261347581613439565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006134d86029836125b1565b91506134e38261347c565b604082019050919050565b60006020820190508181036000830152613507816134cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354882612661565b915061355383612661565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561358c5761358b61350e565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b60006135f36030836125b1565b91506135fe82613597565b604082019050919050565b60006020820190508181036000830152613622816135e6565b9050919050565b600081905092915050565b600061363f826125a6565b6136498185613629565b93506136598185602086016125c2565b80840191505092915050565b6000815461367281612bb3565b61367c8186613629565b9450600182166000811461369757600181146136ac576136df565b60ff19831686528115158202860193506136df565b6136b585613192565b60005b838110156136d7578154818901526001820191506020810190506136b8565b838801955050505b50505092915050565b60006136f48286613634565b91506137008285613634565b915061370c8284613665565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137756026836125b1565b915061378082613719565b604082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b60006137b682612661565b91506137c183612661565b9250828210156137d4576137d361350e565b5b828203905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061383b6025836125b1565b9150613846826137df565b604082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138cd6024836125b1565b91506138d882613871565b604082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612661565b915061391983612661565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394e5761394d61350e565b5b828201905092915050565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b600061398f6014836125b1565b915061399a82613959565b602082019050919050565b600060208201905081810360008301526139be81613982565b9050919050565b60006040820190506139da6000830185612720565b6139e7602083018461266b565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a246020836125b1565b9150613a2f826139ee565b602082019050919050565b60006020820190508181036000830152613a5381613a17565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a906019836125b1565b9150613a9b82613a5a565b602082019050919050565b60006020820190508181036000830152613abf81613a83565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b226032836125b1565b9150613b2d82613ac6565b604082019050919050565b60006020820190508181036000830152613b5181613b15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613bae82613b87565b613bb88185613b92565b9350613bc88185602086016125c2565b613bd1816125f5565b840191505092915050565b6000608082019050613bf16000830187612720565b613bfe6020830186612720565b613c0b604083018561266b565b8181036060830152613c1d8184613ba3565b905095945050505050565b600081519050613c3781612517565b92915050565b600060208284031215613c5357613c526124e1565b5b6000613c6184828501613c28565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca06020836125b1565b9150613cab82613c6a565b602082019050919050565b60006020820190508181036000830152613ccf81613c93565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d0c601c836125b1565b9150613d1782613cd6565b602082019050919050565b60006020820190508181036000830152613d3b81613cff565b905091905056fea264697066735822122011c41c275e255eb4e51c753c8a24d03944ca2739fe4a4f5d0f00d3940b0e003a64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f677265656e2d6361726566756c2d63617079626172612d3639342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c55627679716d572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f677265656e2d6361726566756c2d63617079626172612d3639342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c55627679716d572f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806370a0823111610102578063a22cb46511610095578063cb6f7a6111610064578063cb6f7a611461067e578063e985e9c5146106a7578063f2c4ce1e146106e4578063f2fde38b1461070d576101ee565b8063a22cb465146105c4578063b153dc36146105ed578063b88d4fde14610618578063c87b56dd14610641576101ee565b80638da5cb5b116100d15780638da5cb5b1461052e57806391b7f5ed1461055957806395d89b411461058257806398360231146105ad576101ee565b806370a082311461049a578063715018a6146104d757806375a1ed08146104ee5780637664531514610517576101ee565b806332cb6b0c1161017a578063518302271161014957806351830227146103de57806355f804b3146104095780636352211e146104325780636eb48bcb1461046f576101ee565b806332cb6b0c1461035c5780633ccfd60b1461038757806342842e0e1461039e57806348ee7a8e146103c7576101ee565b8063095ea7b3116101b6578063095ea7b3146102c357806318160ddd146102ec57806323b872dd146103175780632db1154414610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307b575d01461025b578063081812fc14610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612543565b610736565b604051610227919061258b565b60405180910390f35b34801561023c57600080fd5b50610245610818565b604051610252919061263f565b60405180910390f35b34801561026757600080fd5b506102706108aa565b60405161027d919061267a565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906126c1565b6108b0565b6040516102ba919061272f565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612776565b6108f6565b005b3480156102f857600080fd5b50610301610a0d565b60405161030e919061267a565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906127b6565b610a31565b005b61035a600480360381019061035591906126c1565b610a91565b005b34801561036857600080fd5b50610371610c71565b60405161037e919061267a565b60405180910390f35b34801561039357600080fd5b5061039c610c77565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906127b6565b610d35565b005b3480156103d357600080fd5b506103dc610d55565b005b3480156103ea57600080fd5b506103f3610d7a565b604051610400919061258b565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061293e565b610d8d565b005b34801561043e57600080fd5b50610459600480360381019061045491906126c1565b610df8565b604051610466919061272f565b60405180910390f35b34801561047b57600080fd5b50610484610e7e565b604051610491919061258b565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612987565b610e91565b6040516104ce919061267a565b60405180910390f35b3480156104e357600080fd5b506104ec610f48565b005b3480156104fa57600080fd5b5061051560048036038101906105109190612776565b610f5c565b005b34801561052357600080fd5b5061052c610fb5565b005b34801561053a57600080fd5b50610543610fda565b604051610550919061272f565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906126c1565b611004565b005b34801561058e57600080fd5b50610597611025565b6040516105a4919061263f565b60405180910390f35b3480156105b957600080fd5b506105c26110b7565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906129e0565b6110eb565b005b3480156105f957600080fd5b50610602611101565b60405161060f919061258b565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612ac1565b611114565b005b34801561064d57600080fd5b50610668600480360381019061066391906126c1565b611176565b604051610675919061263f565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906126c1565b6112ce565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612b44565b6112ef565b6040516106db919061258b565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061293e565b611383565b005b34801561071957600080fd5b50610734600480360381019061072f9190612987565b61139e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610811575061081082611437565b5b9050919050565b60606000805461082790612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461085390612bb3565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60095481565b60006108bb826114a1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090182610df8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890612c56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109906114ec565b73ffffffffffffffffffffffffffffffffffffffff1614806109bf57506109be816109b96114ec565b6112ef565b5b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590612ce8565b60405180910390fd5b610a0883836114f4565b505050565b6000610a2c6001610a1e60076115ad565b6115bb90919063ffffffff16565b905090565b610a42610a3c6114ec565b826115d1565b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612d7a565b60405180910390fd5b610a8c838383611666565b505050565b600e60009054906101000a900460ff1615610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890612de6565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550600860009054906101000a900460ff16610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612e78565b60405180910390fd5b600033905060008211610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90612ee4565b60405180910390fd5b600f54610bb183610ba333610e91565b61195f90919063ffffffff16565b1115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990612f76565b60405180910390fd5b610c078260095461197590919063ffffffff16565b3414610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061302e565b60405180910390fd5b610c52818361198b565b506000600e60006101000a81548160ff02191690831515021790555050565b6101f481565b610c7f611a4e565b6000610c89610fda565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cac9061307f565b60006040518083038185875af1925050503d8060008114610ce9576040519150601f19603f3d011682016040523d82523d6000602084013e610cee565b606091505b5050905080610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d29906130e0565b60405180910390fd5b50565b610d5083838360405180602001604052806000815250611114565b505050565b610d5d611a4e565b6001600c60016101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b610d95611a4e565b600c60019054906101000a900460ff1615610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613172565b60405180910390fd5b80600a9081610df4919061333e565b5050565b600080610e0483611acc565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c9061345c565b60405180910390fd5b80915050919050565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906134ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f50611a4e565b610f5a6000611b09565b565b610f64611a4e565b60008111610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612ee4565b60405180910390fd5b610fb1828261198b565b5050565b610fbd611a4e565b6001600c60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61100c611a4e565b633b9aca008161101c919061353d565b60098190555050565b60606001805461103490612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461106090612bb3565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b5050505050905090565b6110bf611a4e565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6110fd6110f66114ec565b8383611bcf565b5050565b600c60019054906101000a900460ff1681565b61112561111f6114ec565b836115d1565b611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90612d7a565b60405180910390fd5b61117084848484611d3b565b50505050565b606061118182611d97565b6111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790613609565b60405180910390fd5b60001515600c60009054906101000a900460ff1615150361126d57600d80546111e890612bb3565b80601f016020809104026020016040519081016040528092919081815260200182805461121490612bb3565b80156112615780601f1061123657610100808354040283529160200191611261565b820191906000526020600020905b81548152906001019060200180831161124457829003601f168201915b505050505090506112c9565b6000611277611dd8565b9050600081511161129757604051806020016040528060008152506112c5565b806112a184611e6a565b600b6040516020016112b5939291906136e8565b6040516020818303038152906040525b9150505b919050565b6112d6611a4e565b6000600f54116112e557600080fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138b611a4e565b80600d908161139a919061333e565b5050565b6113a6611a4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061378b565b60405180910390fd5b61141e81611b09565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6114aa81611d97565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061345c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156783610df8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600081836115c991906137ab565b905092915050565b6000806115dd83610df8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061161f575061161e81856112ef565b5b8061165d57508373ffffffffffffffffffffffffffffffffffffffff16611645846108b0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168682610df8565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906138e3565b60405180910390fd5b6117588383836001611f38565b8273ffffffffffffffffffffffffffffffffffffffff1661177882610df8565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613851565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461195a8383836001611f3e565b505050565b6000818361196d9190613903565b905092915050565b60008183611983919061353d565b905092915050565b6101f461199860076115ad565b820111156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906139a5565b60405180910390fd5b60005b81811015611a10576119f9836119f460076115ad565b611f44565b611a036007611421565b80806001019150506119de565b507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051611a429291906139c5565b60405180910390a15050565b611a566114ec565b73ffffffffffffffffffffffffffffffffffffffff16611a74610fda565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613a3a565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613aa6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2e919061258b565b60405180910390a3505050565b611d46848484611666565b611d5284848484611f62565b611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613b38565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611db983611acc565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611de790612bb3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1390612bb3565b8015611e605780601f10611e3557610100808354040283529160200191611e60565b820191906000526020600020905b815481529060010190602001808311611e4357829003601f168201915b5050505050905090565b606060006001611e79846120e9565b01905060008167ffffffffffffffff811115611e9857611e97612813565b5b6040519080825280601f01601f191660200182016040528015611eca5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f2157611f20613b58565b5b04945060008503611ed8575b819350505050919050565b50505050565b50505050565b611f5e82826040518060200160405280600081525061223c565b5050565b6000611f838473ffffffffffffffffffffffffffffffffffffffff16612297565b156120dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac6114ec565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613bdc565b6020604051808303816000875af192505050801561200a57506040513d601f19601f820116820180604052508101906120079190613c3d565b60015b61208c573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b506000815103612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613b38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120e1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612147577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161213d5761213c613b58565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612184576d04ee2d6d415b85acef8100000000838161217a57612179613b58565b5b0492506020810190505b662386f26fc1000083106121b357662386f26fc1000083816121a9576121a8613b58565b5b0492506010810190505b6305f5e10083106121dc576305f5e10083816121d2576121d1613b58565b5b0492506008810190505b61271083106122015761271083816121f7576121f6613b58565b5b0492506004810190505b60648310612224576064838161221a57612219613b58565b5b0492506002810190505b600a8310612233576001810190505b80915050919050565b61224683836122ba565b6122536000848484611f62565b612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990613b38565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090613cb6565b60405180910390fd5b61233281611d97565b15612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990613d22565b60405180910390fd5b612380600083836001611f38565b61238981611d97565b156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613d22565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d3600083836001611f3e565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612520816124eb565b811461252b57600080fd5b50565b60008135905061253d81612517565b92915050565b600060208284031215612559576125586124e1565b5b60006125678482850161252e565b91505092915050565b60008115159050919050565b61258581612570565b82525050565b60006020820190506125a0600083018461257c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e05780820151818401526020810190506125c5565b838111156125ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000612611826125a6565b61261b81856125b1565b935061262b8185602086016125c2565b612634816125f5565b840191505092915050565b600060208201905081810360008301526126598184612606565b905092915050565b6000819050919050565b61267481612661565b82525050565b600060208201905061268f600083018461266b565b92915050565b61269e81612661565b81146126a957600080fd5b50565b6000813590506126bb81612695565b92915050565b6000602082840312156126d7576126d66124e1565b5b60006126e5848285016126ac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612719826126ee565b9050919050565b6127298161270e565b82525050565b60006020820190506127446000830184612720565b92915050565b6127538161270e565b811461275e57600080fd5b50565b6000813590506127708161274a565b92915050565b6000806040838503121561278d5761278c6124e1565b5b600061279b85828601612761565b92505060206127ac858286016126ac565b9150509250929050565b6000806000606084860312156127cf576127ce6124e1565b5b60006127dd86828701612761565b93505060206127ee86828701612761565b92505060406127ff868287016126ac565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284b826125f5565b810181811067ffffffffffffffff8211171561286a57612869612813565b5b80604052505050565b600061287d6124d7565b90506128898282612842565b919050565b600067ffffffffffffffff8211156128a9576128a8612813565b5b6128b2826125f5565b9050602081019050919050565b82818337600083830152505050565b60006128e16128dc8461288e565b612873565b9050828152602081018484840111156128fd576128fc61280e565b5b6129088482856128bf565b509392505050565b600082601f83011261292557612924612809565b5b81356129358482602086016128ce565b91505092915050565b600060208284031215612954576129536124e1565b5b600082013567ffffffffffffffff811115612972576129716124e6565b5b61297e84828501612910565b91505092915050565b60006020828403121561299d5761299c6124e1565b5b60006129ab84828501612761565b91505092915050565b6129bd81612570565b81146129c857600080fd5b50565b6000813590506129da816129b4565b92915050565b600080604083850312156129f7576129f66124e1565b5b6000612a0585828601612761565b9250506020612a16858286016129cb565b9150509250929050565b600067ffffffffffffffff821115612a3b57612a3a612813565b5b612a44826125f5565b9050602081019050919050565b6000612a64612a5f84612a20565b612873565b905082815260208101848484011115612a8057612a7f61280e565b5b612a8b8482856128bf565b509392505050565b600082601f830112612aa857612aa7612809565b5b8135612ab8848260208601612a51565b91505092915050565b60008060008060808587031215612adb57612ada6124e1565b5b6000612ae987828801612761565b9450506020612afa87828801612761565b9350506040612b0b878288016126ac565b925050606085013567ffffffffffffffff811115612b2c57612b2b6124e6565b5b612b3887828801612a93565b91505092959194509250565b60008060408385031215612b5b57612b5a6124e1565b5b6000612b6985828601612761565b9250506020612b7a85828601612761565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bcb57607f821691505b602082108103612bde57612bdd612b84565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c406021836125b1565b9150612c4b82612be4565b604082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612cd2603d836125b1565b9150612cdd82612c76565b604082019050919050565b60006020820190508181036000830152612d0181612cc5565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d64602d836125b1565b9150612d6f82612d08565b604082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b7f4e6f2072652d656e7472616e742063616c6c2e00000000000000000000000000600082015250565b6000612dd06013836125b1565b9150612ddb82612d9a565b602082019050919050565b60006020820190508181036000830152612dff81612dc3565b9050919050565b7f5075626c69632073616c6520697320636c6f73656420617420746865206d6f6d60008201527f656e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000612e626024836125b1565b9150612e6d82612e06565b604082019050919050565b60006020820190508181036000830152612e9181612e55565b9050919050565b7f496e76616c6964206d696e74207175616e746974792e00000000000000000000600082015250565b6000612ece6016836125b1565b9150612ed982612e98565b602082019050919050565b60006020820190508181036000830152612efd81612ec1565b9050919050565b7f696e76616c6964206d696e74207175616e746974792c2063616e74206d696e7460008201527f2074686174206d616e7900000000000000000000000000000000000000000000602082015250565b6000612f60602a836125b1565b9150612f6b82612f04565b604082019050919050565b60006020820190508181036000830152612f8f81612f53565b9050919050565b7f4d7573742073656e6420657861637420616d6f756e7420746f206d696e742c2060008201527f65697468657220696e637265617365206f72206465637265617365206574682060208201527f616d6f756e740000000000000000000000000000000000000000000000000000604082015250565b60006130186046836125b1565b915061302382612f96565b606082019050919050565b600060208201905081810360008301526130478161300b565b9050919050565b600081905092915050565b50565b600061306960008361304e565b915061307482613059565b600082019050919050565b600061308a8261305c565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865722e00000000000000600082015250565b60006130ca6019836125b1565b91506130d582613094565b602082019050919050565b600060208201905081810360008301526130f9816130bd565b9050919050565b7f6368616e67696e67207468652075726920686173206265656e206c6f636b656460008201527f20666f7220736563757269747920707572706f73657300000000000000000000602082015250565b600061315c6036836125b1565b915061316782613100565b604082019050919050565b6000602082019050818103600083015261318b8161314f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b7565b6131fe86836131b7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323b61323661323184612661565b613216565b612661565b9050919050565b6000819050919050565b61325583613220565b61326961326182613242565b8484546131c4565b825550505050565b600090565b61327e613271565b61328981848461324c565b505050565b5b818110156132ad576132a2600082613276565b60018101905061328f565b5050565b601f8211156132f2576132c381613192565b6132cc846131a7565b810160208510156132db578190505b6132ef6132e7856131a7565b83018261328e565b50505b505050565b600082821c905092915050565b6000613315600019846008026132f7565b1980831691505092915050565b600061332e8383613304565b9150826002028217905092915050565b613347826125a6565b67ffffffffffffffff8111156133605761335f612813565b5b61336a8254612bb3565b6133758282856132b1565b600060209050601f8311600181146133a85760008415613396578287015190505b6133a08582613322565b865550613408565b601f1984166133b686613192565b60005b828110156133de578489015182556001820191506020850194506020810190506133b9565b868310156133fb57848901516133f7601f891682613304565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006134466018836125b1565b915061345182613410565b602082019050919050565b6000602082019050818103600083015261347581613439565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006134d86029836125b1565b91506134e38261347c565b604082019050919050565b60006020820190508181036000830152613507816134cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354882612661565b915061355383612661565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561358c5761358b61350e565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b60006135f36030836125b1565b91506135fe82613597565b604082019050919050565b60006020820190508181036000830152613622816135e6565b9050919050565b600081905092915050565b600061363f826125a6565b6136498185613629565b93506136598185602086016125c2565b80840191505092915050565b6000815461367281612bb3565b61367c8186613629565b9450600182166000811461369757600181146136ac576136df565b60ff19831686528115158202860193506136df565b6136b585613192565b60005b838110156136d7578154818901526001820191506020810190506136b8565b838801955050505b50505092915050565b60006136f48286613634565b91506137008285613634565b915061370c8284613665565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137756026836125b1565b915061378082613719565b604082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b60006137b682612661565b91506137c183612661565b9250828210156137d4576137d361350e565b5b828203905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061383b6025836125b1565b9150613846826137df565b604082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138cd6024836125b1565b91506138d882613871565b604082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612661565b915061391983612661565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394e5761394d61350e565b5b828201905092915050565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b600061398f6014836125b1565b915061399a82613959565b602082019050919050565b600060208201905081810360008301526139be81613982565b9050919050565b60006040820190506139da6000830185612720565b6139e7602083018461266b565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a246020836125b1565b9150613a2f826139ee565b602082019050919050565b60006020820190508181036000830152613a5381613a17565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a906019836125b1565b9150613a9b82613a5a565b602082019050919050565b60006020820190508181036000830152613abf81613a83565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b226032836125b1565b9150613b2d82613ac6565b604082019050919050565b60006020820190508181036000830152613b5181613b15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613bae82613b87565b613bb88185613b92565b9350613bc88185602086016125c2565b613bd1816125f5565b840191505092915050565b6000608082019050613bf16000830187612720565b613bfe6020830186612720565b613c0b604083018561266b565b8181036060830152613c1d8184613ba3565b905095945050505050565b600081519050613c3781612517565b92915050565b600060208284031215613c5357613c526124e1565b5b6000613c6184828501613c28565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca06020836125b1565b9150613cab82613c6a565b602082019050919050565b60006020820190508181036000830152613ccf81613c93565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d0c601c836125b1565b9150613d1782613cd6565b602082019050919050565b60006020820190508181036000830152613d3b81613cff565b905091905056fea264697066735822122011c41c275e255eb4e51c753c8a24d03944ca2739fe4a4f5d0f00d3940b0e003a64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f677265656e2d6361726566756c2d63617079626172612d3639342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c55627679716d572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f677265656e2d6361726566756c2d63617079626172612d3639342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c55627679716d572f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://green-careful-capybara-694.mypinata.cloud/ipfs/QmcugRY9n5JZtbEn9yMAhieFxzkYjeZYn6qGEmLUbvyqmW/
Arg [1] : _initNotRevealedUri (string): https://green-careful-capybara-694.mypinata.cloud/ipfs/QmcugRY9n5JZtbEn9yMAhieFxzkYjeZYn6qGEmLUbvyqmW/
Arg [2] : PUB_PRICE (uint256): 50000000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [4] : 68747470733a2f2f677265656e2d6361726566756c2d63617079626172612d36
Arg [5] : 39342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e
Arg [6] : 354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c5562
Arg [7] : 7679716d572f0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [9] : 68747470733a2f2f677265656e2d6361726566756c2d63617079626172612d36
Arg [10] : 39342e6d7970696e6174612e636c6f75642f697066732f516d6375675259396e
Arg [11] : 354a5a7462456e39794d4168696546787a6b596a655a596e367147456d4c5562
Arg [12] : 7679716d572f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73556:5343:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35865:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73876:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38305:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37823:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76106:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39005:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74802:611;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74294:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78293:331;;;;;;;;;;;;;:::i;:::-;;39411:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76768:79;;;;;;;;;;;;;:::i;:::-;;74007:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77009:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36503:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73836:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36234:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55406:103;;;;;;;;;;;;;:::i;:::-;;75903:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78025:72;;;;;;;;;;;;;:::i;:::-;;54758:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76240:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36962:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76586:97;;;;;;;;;;;;;:::i;:::-;;38548:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74042:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39667:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77273:720;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76375:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38774:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78134:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55664:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35865:305;35967:4;36019:25;36004:40;;;:11;:40;;;;:105;;;;36076:33;36061:48;;;:11;:48;;;;36004:105;:158;;;;36126:36;36150:11;36126:23;:36::i;:::-;36004:158;35984:178;;35865:305;;;:::o;36793:100::-;36847:13;36880:5;36873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36793:100;:::o;73876:29::-;;;;:::o;38305:171::-;38381:7;38401:23;38416:7;38401:14;:23::i;:::-;38444:15;:24;38460:7;38444:24;;;;;;;;;;;;;;;;;;;;;38437:31;;38305:171;;;:::o;37823:416::-;37904:13;37920:23;37935:7;37920:14;:23::i;:::-;37904:39;;37968:5;37962:11;;:2;:11;;;37954:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38062:5;38046:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38071:37;38088:5;38095:12;:10;:12::i;:::-;38071:16;:37::i;:::-;38046:62;38024:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38210:21;38219:2;38223:7;38210:8;:21::i;:::-;37893:346;37823:416;;:::o;76106:103::-;76150:7;76177:24;76199:1;76177:17;:7;:15;:17::i;:::-;:21;;:24;;;;:::i;:::-;76170:31;;76106:103;:::o;39005:335::-;39200:41;39219:12;:10;:12::i;:::-;39233:7;39200:18;:41::i;:::-;39192:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:28;39314:4;39320:2;39324:7;39304:9;:28::i;:::-;39005:335;;;:::o;74802:611::-;78794:7;;;;;;;;;;;78793:8;78785:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;78846:4;78836:7;;:14;;;;;;;;;;;;;;;;;;74890:13:::1;;;;;;;;;;;74882:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;74955:11;74969:10;74955:24;;75010:1;74998:9;:13;74990:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;75111:18;;75071:36;75097:9;75071:21;75081:10;75071:9;:21::i;:::-;:25;;:36;;;;:::i;:::-;:58;;75049:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;75246:29;75265:9;75246:14;;:18;;:29;;;;:::i;:::-;75232:9;:44;75210:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;75385:20;75390:3;75395:9;75385:4;:20::i;:::-;74871:542;78883:5:::0;78873:7;;:15;;;;;;;;;;;;;;;;;;74802:611;:::o;74294:40::-;74331:3;74294:40;:::o;78293:331::-;54644:13;:11;:13::i;:::-;78493:9:::1;78516:7;:5;:7::i;:::-;78508:21;;78537;78508:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78492:71;;;78582:4;78574:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;78332:292;78293:331::o:0;39411:185::-;39549:39;39566:4;39572:2;39576:7;39549:39;;;;;;;;;;;;:16;:39::i;:::-;39411:185;;;:::o;76768:79::-;54644:13;:11;:13::i;:::-;76835:4:::1;76821:11;;:18;;;;;;;;;;;;;;;;;;76768:79::o:0;74007:28::-;;;;;;;;;;;;;:::o;77009:231::-;54644:13;:11;:13::i;:::-;77107:11:::1;;;;;;;;;;;77106:12;77084:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;77221:11;77211:7;:21;;;;;;:::i;:::-;;77009:231:::0;:::o;36503:223::-;36575:7;36595:13;36611:17;36620:7;36611:8;:17::i;:::-;36595:33;;36664:1;36647:19;;:5;:19;;;36639:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36713:5;36706:12;;;36503:223;;;:::o;73836:33::-;;;;;;;;;;;;;:::o;36234:207::-;36306:7;36351:1;36334:19;;:5;:19;;;36326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36417:9;:16;36427:5;36417:16;;;;;;;;;;;;;;;;36410:23;;36234:207;;;:::o;55406:103::-;54644:13;:11;:13::i;:::-;55471:30:::1;55498:1;55471:18;:30::i;:::-;55406:103::o:0;75903:170::-;54644:13;:11;:13::i;:::-;76006:1:::1;75994:9;:13;75986:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;76045:20;76050:3;76055:9;76045:4;:20::i;:::-;75903:170:::0;;:::o;78025:72::-;54644:13;:11;:13::i;:::-;78085:4:::1;78074:8;;:15;;;;;;;;;;;;;;;;;;78025:72::o:0;54758:87::-;54804:7;54831:6;;;;;;;;;;;54824:13;;54758:87;:::o;76240:105::-;54644:13;:11;:13::i;:::-;76334:3:::1;76322:9;:15;;;;:::i;:::-;76305:14;:32;;;;76240:105:::0;:::o;36962:104::-;37018:13;37051:7;37044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36962:104;:::o;76586:97::-;54644:13;:11;:13::i;:::-;76662::::1;;;;;;;;;;;76661:14;76645:13;;:30;;;;;;;;;;;;;;;;;;76586:97::o:0;38548:155::-;38643:52;38662:12;:10;:12::i;:::-;38676:8;38686;38643:18;:52::i;:::-;38548:155;;:::o;74042:31::-;;;;;;;;;;;;;:::o;39667:322::-;39841:41;39860:12;:10;:12::i;:::-;39874:7;39841:18;:41::i;:::-;39833:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39943:38;39957:4;39963:2;39967:7;39976:4;39943:13;:38::i;:::-;39667:322;;;;:::o;77273:720::-;77391:13;77444:16;77452:7;77444;:16::i;:::-;77422:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;77565:5;77553:17;;:8;;;;;;;;;;;:17;;;77549:71;;77594:14;77587:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77549:71;77632:28;77663:10;:8;:10::i;:::-;77632:41;;77735:1;77710:14;77704:28;:32;:281;;;;;;;;;;;;;;;;;77828:14;77869:18;:7;:16;:18::i;:::-;77914:7;77785:159;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77704:281;77684:301;;;77273:720;;;;:::o;76375:166::-;54644:13;:11;:13::i;:::-;76485:1:::1;76464:18;;:22;76456:31;;;::::0;::::1;;76519:14;76498:18;:35;;;;76375:166:::0;:::o;38774:164::-;38871:4;38895:18;:25;38914:5;38895:25;;;;;;;;;;;;;;;:35;38921:8;38895:35;;;;;;;;;;;;;;;;;;;;;;;;;38888:42;;38774:164;;;;:::o;78134:126::-;54644:13;:11;:13::i;:::-;78237:15:::1;78220:14;:32;;;;;;:::i;:::-;;78134:126:::0;:::o;55664:201::-;54644:13;:11;:13::i;:::-;55773:1:::1;55753:22;;:8;:22;;::::0;55745:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55829:28;55848:8;55829:18;:28::i;:::-;55664:201:::0;:::o;53054:127::-;53161:1;53143:7;:14;;;:19;;;;;;;;;;;53054:127;:::o;34296:157::-;34381:4;34420:25;34405:40;;;:11;:40;;;;34398:47;;34296:157;;;:::o;48124:135::-;48206:16;48214:7;48206;:16::i;:::-;48198:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48124:135;:::o;18022:98::-;18075:7;18102:10;18095:17;;18022:98;:::o;47403:174::-;47505:2;47478:15;:24;47494:7;47478:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47561:7;47557:2;47523:46;;47532:23;47547:7;47532:14;:23::i;:::-;47523:46;;;;;;;;;;;;47403:174;;:::o;52932:114::-;52997:7;53024;:14;;;53017:21;;52932:114;;;:::o;69226:98::-;69284:7;69315:1;69311;:5;;;;:::i;:::-;69304:12;;69226:98;;;;:::o;42022:264::-;42115:4;42132:13;42148:23;42163:7;42148:14;:23::i;:::-;42132:39;;42201:5;42190:16;;:7;:16;;;:52;;;;42210:32;42227:5;42234:7;42210:16;:32::i;:::-;42190:52;:87;;;;42270:7;42246:31;;:20;42258:7;42246:11;:20::i;:::-;:31;;;42190:87;42182:96;;;42022:264;;;;:::o;46021:1263::-;46180:4;46153:31;;:23;46168:7;46153:14;:23::i;:::-;:31;;;46145:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46259:1;46245:16;;:2;:16;;;46237:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46315:42;46336:4;46342:2;46346:7;46355:1;46315:20;:42::i;:::-;46487:4;46460:31;;:23;46475:7;46460:14;:23::i;:::-;:31;;;46452:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46605:15;:24;46621:7;46605:24;;;;;;;;;;;;46598:31;;;;;;;;;;;47100:1;47081:9;:15;47091:4;47081:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47133:1;47116:9;:13;47126:2;47116:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47175:2;47156:7;:16;47164:7;47156:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47214:7;47210:2;47195:27;;47204:4;47195:27;;;;;;;;;;;;47235:41;47255:4;47261:2;47265:7;47274:1;47235:19;:41::i;:::-;46021:1263;;;:::o;68845:98::-;68903:7;68934:1;68930;:5;;;;:::i;:::-;68923:12;;68845:98;;;;:::o;69583:::-;69641:7;69672:1;69668;:5;;;;:::i;:::-;69661:12;;69583:98;;;;:::o;75459:436::-;74331:3;75588:17;:7;:15;:17::i;:::-;75576:9;:29;75575:45;;75549:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;75698:9;75693:146;75717:9;75713:1;:13;75693:146;;;75752:33;75762:3;75767:17;:7;:15;:17::i;:::-;75752:9;:33::i;:::-;75804:19;:7;:17;:19::i;:::-;75728:3;;;;;;;75693:146;;;;75865:22;75872:3;75877:9;75865:22;;;;;;;:::i;:::-;;;;;;;;75459:436;;:::o;54923:132::-;54998:12;:10;:12::i;:::-;54987:23;;:7;:5;:7::i;:::-;:23;;;54979:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54923:132::o;41297:117::-;41363:7;41390;:16;41398:7;41390:16;;;;;;;;;;;;;;;;;;;;;41383:23;;41297:117;;;:::o;56025:191::-;56099:16;56118:6;;;;;;;;;;;56099:25;;56144:8;56135:6;;:17;;;;;;;;;;;;;;;;;;56199:8;56168:40;;56189:8;56168:40;;;;;;;;;;;;56088:128;56025:191;:::o;47720:315::-;47875:8;47866:17;;:5;:17;;;47858:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47962:8;47924:18;:25;47943:5;47924:25;;;;;;;;;;;;;;;:35;47950:8;47924:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;48008:8;47986:41;;48001:5;47986:41;;;48018:8;47986:41;;;;;;:::i;:::-;;;;;;;;47720:315;;;:::o;40870:313::-;41026:28;41036:4;41042:2;41046:7;41026:9;:28::i;:::-;41073:47;41096:4;41102:2;41106:7;41115:4;41073:22;:47::i;:::-;41065:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40870:313;;;;:::o;41727:128::-;41792:4;41845:1;41816:31;;:17;41825:7;41816:8;:17::i;:::-;:31;;;;41809:38;;41727:128;;;:::o;76872:108::-;76932:13;76965:7;76958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76872:108;:::o;31539:716::-;31595:13;31646:14;31683:1;31663:17;31674:5;31663:10;:17::i;:::-;:21;31646:38;;31699:20;31733:6;31722:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31699:41;;31755:11;31884:6;31880:2;31876:15;31868:6;31864:28;31857:35;;31921:288;31928:4;31921:288;;;31953:5;;;;;;;;32095:8;32090:2;32083:5;32079:14;32074:30;32069:3;32061:44;32151:2;32142:11;;;;;;:::i;:::-;;;;;32185:1;32176:5;:10;31921:288;32172:21;31921:288;32230:6;32223:13;;;;;31539:716;;;:::o;50408:159::-;;;;;:::o;51289:158::-;;;;;:::o;42628:110::-;42704:26;42714:2;42718:7;42704:26;;;;;;;;;;;;:9;:26::i;:::-;42628:110;;:::o;48823:853::-;48977:4;48998:15;:2;:13;;;:15::i;:::-;48994:675;;;49050:2;49034:36;;;49071:12;:10;:12::i;:::-;49085:4;49091:7;49100:4;49034:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49030:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49292:1;49275:6;:13;:18;49271:328;;49318:60;;;;;;;;;;:::i;:::-;;;;;;;;49271:328;49549:6;49543:13;49534:6;49530:2;49526:15;49519:38;49030:584;49166:41;;;49156:51;;;:6;:51;;;;49149:58;;;;;48994:675;49653:4;49646:11;;48823:853;;;;;;;:::o;28407:922::-;28460:7;28480:14;28497:1;28480:18;;28547:6;28538:5;:15;28534:102;;28583:6;28574:15;;;;;;:::i;:::-;;;;;28618:2;28608:12;;;;28534:102;28663:6;28654:5;:15;28650:102;;28699:6;28690:15;;;;;;:::i;:::-;;;;;28734:2;28724:12;;;;28650:102;28779:6;28770:5;:15;28766:102;;28815:6;28806:15;;;;;;:::i;:::-;;;;;28850:2;28840:12;;;;28766:102;28895:5;28886;:14;28882:99;;28930:5;28921:14;;;;;;:::i;:::-;;;;;28964:1;28954:11;;;;28882:99;29008:5;28999;:14;28995:99;;29043:5;29034:14;;;;;;:::i;:::-;;;;;29077:1;29067:11;;;;28995:99;29121:5;29112;:14;29108:99;;29156:5;29147:14;;;;;;:::i;:::-;;;;;29190:1;29180:11;;;;29108:99;29234:5;29225;:14;29221:66;;29270:1;29260:11;;;;29221:66;29315:6;29308:13;;;28407:922;;;:::o;42965:319::-;43094:18;43100:2;43104:7;43094:5;:18::i;:::-;43145:53;43176:1;43180:2;43184:7;43193:4;43145:22;:53::i;:::-;43123:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42965:319;;;:::o;9148:326::-;9208:4;9465:1;9443:7;:19;;;:23;9436:30;;9148:326;;;:::o;43620:942::-;43714:1;43700:16;;:2;:16;;;43692:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43773:16;43781:7;43773;:16::i;:::-;43772:17;43764:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43835:48;43864:1;43868:2;43872:7;43881:1;43835:20;:48::i;:::-;43982:16;43990:7;43982;:16::i;:::-;43981:17;43973:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44397:1;44380:9;:13;44390:2;44380:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44441:2;44422:7;:16;44430:7;44422:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44486:7;44482:2;44461:33;;44478:1;44461:33;;;;;;;;;;;;44507:47;44535:1;44539:2;44543:7;44552:1;44507:19;:47::i;:::-;43620:942;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:220::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:3;12837:2;12829:6;12825:15;12818:28;12633:220;:::o;12859:366::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:419::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:248::-;13796:34;13792:1;13784:6;13780:14;13773:58;13865:31;13860:2;13852:6;13848:15;13841:56;13656:248;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:232::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:15;14911:2;14903:6;14899:15;14892:40;14707:232;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:169::-;15882:21;15878:1;15870:6;15866:14;15859:45;15742:169;:::o;15917:366::-;16059:3;16080:67;16144:2;16139:3;16080:67;:::i;:::-;16073:74;;16156:93;16245:3;16156:93;:::i;:::-;16274:2;16269:3;16265:12;16258:19;;15917:366;;;:::o;16289:419::-;16455:4;16493:2;16482:9;16478:18;16470:26;;16542:9;16536:4;16532:20;16528:1;16517:9;16513:17;16506:47;16570:131;16696:4;16570:131;:::i;:::-;16562:139;;16289:419;;;:::o;16714:223::-;16854:34;16850:1;16842:6;16838:14;16831:58;16923:6;16918:2;16910:6;16906:15;16899:31;16714:223;:::o;16943:366::-;17085:3;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17182:93;17271:3;17182:93;:::i;:::-;17300:2;17295:3;17291:12;17284:19;;16943:366;;;:::o;17315:419::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17568:9;17562:4;17558:20;17554:1;17543:9;17539:17;17532:47;17596:131;17722:4;17596:131;:::i;:::-;17588:139;;17315:419;;;:::o;17740:172::-;17880:24;17876:1;17868:6;17864:14;17857:48;17740:172;:::o;17918:366::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:419::-;18456:4;18494:2;18483:9;18479:18;18471:26;;18543:9;18537:4;18533:20;18529:1;18518:9;18514:17;18507:47;18571:131;18697:4;18571:131;:::i;:::-;18563:139;;18290:419;;;:::o;18715:229::-;18855:34;18851:1;18843:6;18839:14;18832:58;18924:12;18919:2;18911:6;18907:15;18900:37;18715:229;:::o;18950:366::-;19092:3;19113:67;19177:2;19172:3;19113:67;:::i;:::-;19106:74;;19189:93;19278:3;19189:93;:::i;:::-;19307:2;19302:3;19298:12;19291:19;;18950:366;;;:::o;19322:419::-;19488:4;19526:2;19515:9;19511:18;19503:26;;19575:9;19569:4;19565:20;19561:1;19550:9;19546:17;19539:47;19603:131;19729:4;19603:131;:::i;:::-;19595:139;;19322:419;;;:::o;19747:294::-;19887:34;19883:1;19875:6;19871:14;19864:58;19956:34;19951:2;19943:6;19939:15;19932:59;20025:8;20020:2;20012:6;20008:15;20001:33;19747:294;:::o;20047:366::-;20189:3;20210:67;20274:2;20269:3;20210:67;:::i;:::-;20203:74;;20286:93;20375:3;20286:93;:::i;:::-;20404:2;20399:3;20395:12;20388:19;;20047:366;;;:::o;20419:419::-;20585:4;20623:2;20612:9;20608:18;20600:26;;20672:9;20666:4;20662:20;20658:1;20647:9;20643:17;20636:47;20700:131;20826:4;20700:131;:::i;:::-;20692:139;;20419:419;;;:::o;20844:147::-;20945:11;20982:3;20967:18;;20844:147;;;;:::o;20997:114::-;;:::o;21117:398::-;21276:3;21297:83;21378:1;21373:3;21297:83;:::i;:::-;21290:90;;21389:93;21478:3;21389:93;:::i;:::-;21507:1;21502:3;21498:11;21491:18;;21117:398;;;:::o;21521:379::-;21705:3;21727:147;21870:3;21727:147;:::i;:::-;21720:154;;21891:3;21884:10;;21521:379;;;:::o;21906:175::-;22046:27;22042:1;22034:6;22030:14;22023:51;21906:175;:::o;22087:366::-;22229:3;22250:67;22314:2;22309:3;22250:67;:::i;:::-;22243:74;;22326:93;22415:3;22326:93;:::i;:::-;22444:2;22439:3;22435:12;22428:19;;22087:366;;;:::o;22459:419::-;22625:4;22663:2;22652:9;22648:18;22640:26;;22712:9;22706:4;22702:20;22698:1;22687:9;22683:17;22676:47;22740:131;22866:4;22740:131;:::i;:::-;22732:139;;22459:419;;;:::o;22884:241::-;23024:34;23020:1;23012:6;23008:14;23001:58;23093:24;23088:2;23080:6;23076:15;23069:49;22884:241;:::o;23131:366::-;23273:3;23294:67;23358:2;23353:3;23294:67;:::i;:::-;23287:74;;23370:93;23459:3;23370:93;:::i;:::-;23488:2;23483:3;23479:12;23472:19;;23131:366;;;:::o;23503:419::-;23669:4;23707:2;23696:9;23692:18;23684:26;;23756:9;23750:4;23746:20;23742:1;23731:9;23727:17;23720:47;23784:131;23910:4;23784:131;:::i;:::-;23776:139;;23503:419;;;:::o;23928:141::-;23977:4;24000:3;23992:11;;24023:3;24020:1;24013:14;24057:4;24054:1;24044:18;24036:26;;23928:141;;;:::o;24075:93::-;24112:6;24159:2;24154;24147:5;24143:14;24139:23;24129:33;;24075:93;;;:::o;24174:107::-;24218:8;24268:5;24262:4;24258:16;24237:37;;24174:107;;;;:::o;24287:393::-;24356:6;24406:1;24394:10;24390:18;24429:97;24459:66;24448:9;24429:97;:::i;:::-;24547:39;24577:8;24566:9;24547:39;:::i;:::-;24535:51;;24619:4;24615:9;24608:5;24604:21;24595:30;;24668:4;24658:8;24654:19;24647:5;24644:30;24634:40;;24363:317;;24287:393;;;;;:::o;24686:60::-;24714:3;24735:5;24728:12;;24686:60;;;:::o;24752:142::-;24802:9;24835:53;24853:34;24862:24;24880:5;24862:24;:::i;:::-;24853:34;:::i;:::-;24835:53;:::i;:::-;24822:66;;24752:142;;;:::o;24900:75::-;24943:3;24964:5;24957:12;;24900:75;;;:::o;24981:269::-;25091:39;25122:7;25091:39;:::i;:::-;25152:91;25201:41;25225:16;25201:41;:::i;:::-;25193:6;25186:4;25180:11;25152:91;:::i;:::-;25146:4;25139:105;25057:193;24981:269;;;:::o;25256:73::-;25301:3;25256:73;:::o;25335:189::-;25412:32;;:::i;:::-;25453:65;25511:6;25503;25497:4;25453:65;:::i;:::-;25388:136;25335:189;;:::o;25530:186::-;25590:120;25607:3;25600:5;25597:14;25590:120;;;25661:39;25698:1;25691:5;25661:39;:::i;:::-;25634:1;25627:5;25623:13;25614:22;;25590:120;;;25530:186;;:::o;25722:543::-;25823:2;25818:3;25815:11;25812:446;;;25857:38;25889:5;25857:38;:::i;:::-;25941:29;25959:10;25941:29;:::i;:::-;25931:8;25927:44;26124:2;26112:10;26109:18;26106:49;;;26145:8;26130:23;;26106:49;26168:80;26224:22;26242:3;26224:22;:::i;:::-;26214:8;26210:37;26197:11;26168:80;:::i;:::-;25827:431;;25812:446;25722:543;;;:::o;26271:117::-;26325:8;26375:5;26369:4;26365:16;26344:37;;26271:117;;;;:::o;26394:169::-;26438:6;26471:51;26519:1;26515:6;26507:5;26504:1;26500:13;26471:51;:::i;:::-;26467:56;26552:4;26546;26542:15;26532:25;;26445:118;26394:169;;;;:::o;26568:295::-;26644:4;26790:29;26815:3;26809:4;26790:29;:::i;:::-;26782:37;;26852:3;26849:1;26845:11;26839:4;26836:21;26828:29;;26568:295;;;;:::o;26868:1395::-;26985:37;27018:3;26985:37;:::i;:::-;27087:18;27079:6;27076:30;27073:56;;;27109:18;;:::i;:::-;27073:56;27153:38;27185:4;27179:11;27153:38;:::i;:::-;27238:67;27298:6;27290;27284:4;27238:67;:::i;:::-;27332:1;27356:4;27343:17;;27388:2;27380:6;27377:14;27405:1;27400:618;;;;28062:1;28079:6;28076:77;;;28128:9;28123:3;28119:19;28113:26;28104:35;;28076:77;28179:67;28239:6;28232:5;28179:67;:::i;:::-;28173:4;28166:81;28035:222;27370:887;;27400:618;27452:4;27448:9;27440:6;27436:22;27486:37;27518:4;27486:37;:::i;:::-;27545:1;27559:208;27573:7;27570:1;27567:14;27559:208;;;27652:9;27647:3;27643:19;27637:26;27629:6;27622:42;27703:1;27695:6;27691:14;27681:24;;27750:2;27739:9;27735:18;27722:31;;27596:4;27593:1;27589:12;27584:17;;27559:208;;;27795:6;27786:7;27783:19;27780:179;;;27853:9;27848:3;27844:19;27838:26;27896:48;27938:4;27930:6;27926:17;27915:9;27896:48;:::i;:::-;27888:6;27881:64;27803:156;27780:179;28005:1;28001;27993:6;27989:14;27985:22;27979:4;27972:36;27407:611;;;27370:887;;26960:1303;;;26868:1395;;:::o;28269:174::-;28409:26;28405:1;28397:6;28393:14;28386:50;28269:174;:::o;28449:366::-;28591:3;28612:67;28676:2;28671:3;28612:67;:::i;:::-;28605:74;;28688:93;28777:3;28688:93;:::i;:::-;28806:2;28801:3;28797:12;28790:19;;28449:366;;;:::o;28821:419::-;28987:4;29025:2;29014:9;29010:18;29002:26;;29074:9;29068:4;29064:20;29060:1;29049:9;29045:17;29038:47;29102:131;29228:4;29102:131;:::i;:::-;29094:139;;28821:419;;;:::o;29246:228::-;29386:34;29382:1;29374:6;29370:14;29363:58;29455:11;29450:2;29442:6;29438:15;29431:36;29246:228;:::o;29480:366::-;29622:3;29643:67;29707:2;29702:3;29643:67;:::i;:::-;29636:74;;29719:93;29808:3;29719:93;:::i;:::-;29837:2;29832:3;29828:12;29821:19;;29480:366;;;:::o;29852:419::-;30018:4;30056:2;30045:9;30041:18;30033:26;;30105:9;30099:4;30095:20;30091:1;30080:9;30076:17;30069:47;30133:131;30259:4;30133:131;:::i;:::-;30125:139;;29852:419;;;:::o;30277:180::-;30325:77;30322:1;30315:88;30422:4;30419:1;30412:15;30446:4;30443:1;30436:15;30463:348;30503:7;30526:20;30544:1;30526:20;:::i;:::-;30521:25;;30560:20;30578:1;30560:20;:::i;:::-;30555:25;;30748:1;30680:66;30676:74;30673:1;30670:81;30665:1;30658:9;30651:17;30647:105;30644:131;;;30755:18;;:::i;:::-;30644:131;30803:1;30800;30796:9;30785:20;;30463:348;;;;:::o;30817:235::-;30957:34;30953:1;30945:6;30941:14;30934:58;31026:18;31021:2;31013:6;31009:15;31002:43;30817:235;:::o;31058:366::-;31200:3;31221:67;31285:2;31280:3;31221:67;:::i;:::-;31214:74;;31297:93;31386:3;31297:93;:::i;:::-;31415:2;31410:3;31406:12;31399:19;;31058:366;;;:::o;31430:419::-;31596:4;31634:2;31623:9;31619:18;31611:26;;31683:9;31677:4;31673:20;31669:1;31658:9;31654:17;31647:47;31711:131;31837:4;31711:131;:::i;:::-;31703:139;;31430:419;;;:::o;31855:148::-;31957:11;31994:3;31979:18;;31855:148;;;;:::o;32009:377::-;32115:3;32143:39;32176:5;32143:39;:::i;:::-;32198:89;32280:6;32275:3;32198:89;:::i;:::-;32191:96;;32296:52;32341:6;32336:3;32329:4;32322:5;32318:16;32296:52;:::i;:::-;32373:6;32368:3;32364:16;32357:23;;32119:267;32009:377;;;;:::o;32416:874::-;32519:3;32556:5;32550:12;32585:36;32611:9;32585:36;:::i;:::-;32637:89;32719:6;32714:3;32637:89;:::i;:::-;32630:96;;32757:1;32746:9;32742:17;32773:1;32768:166;;;;32948:1;32943:341;;;;32735:549;;32768:166;32852:4;32848:9;32837;32833:25;32828:3;32821:38;32914:6;32907:14;32900:22;32892:6;32888:35;32883:3;32879:45;32872:52;;32768:166;;32943:341;33010:38;33042:5;33010:38;:::i;:::-;33070:1;33084:154;33098:6;33095:1;33092:13;33084:154;;;33172:7;33166:14;33162:1;33157:3;33153:11;33146:35;33222:1;33213:7;33209:15;33198:26;;33120:4;33117:1;33113:12;33108:17;;33084:154;;;33267:6;33262:3;33258:16;33251:23;;32950:334;;32735:549;;32523:767;;32416:874;;;;:::o;33296:589::-;33521:3;33543:95;33634:3;33625:6;33543:95;:::i;:::-;33536:102;;33655:95;33746:3;33737:6;33655:95;:::i;:::-;33648:102;;33767:92;33855:3;33846:6;33767:92;:::i;:::-;33760:99;;33876:3;33869:10;;33296:589;;;;;;:::o;33891:225::-;34031:34;34027:1;34019:6;34015:14;34008:58;34100:8;34095:2;34087:6;34083:15;34076:33;33891:225;:::o;34122:366::-;34264:3;34285:67;34349:2;34344:3;34285:67;:::i;:::-;34278:74;;34361:93;34450:3;34361:93;:::i;:::-;34479:2;34474:3;34470:12;34463:19;;34122:366;;;:::o;34494:419::-;34660:4;34698:2;34687:9;34683:18;34675:26;;34747:9;34741:4;34737:20;34733:1;34722:9;34718:17;34711:47;34775:131;34901:4;34775:131;:::i;:::-;34767:139;;34494:419;;;:::o;34919:191::-;34959:4;34979:20;34997:1;34979:20;:::i;:::-;34974:25;;35013:20;35031:1;35013:20;:::i;:::-;35008:25;;35052:1;35049;35046:8;35043:34;;;35057:18;;:::i;:::-;35043:34;35102:1;35099;35095:9;35087:17;;34919:191;;;;:::o;35116:224::-;35256:34;35252:1;35244:6;35240:14;35233:58;35325:7;35320:2;35312:6;35308:15;35301:32;35116:224;:::o;35346:366::-;35488:3;35509:67;35573:2;35568:3;35509:67;:::i;:::-;35502:74;;35585:93;35674:3;35585:93;:::i;:::-;35703:2;35698:3;35694:12;35687:19;;35346:366;;;:::o;35718:419::-;35884:4;35922:2;35911:9;35907:18;35899:26;;35971:9;35965:4;35961:20;35957:1;35946:9;35942:17;35935:47;35999:131;36125:4;35999:131;:::i;:::-;35991:139;;35718:419;;;:::o;36143:223::-;36283:34;36279:1;36271:6;36267:14;36260:58;36352:6;36347:2;36339:6;36335:15;36328:31;36143:223;:::o;36372:366::-;36514:3;36535:67;36599:2;36594:3;36535:67;:::i;:::-;36528:74;;36611:93;36700:3;36611:93;:::i;:::-;36729:2;36724:3;36720:12;36713:19;;36372:366;;;:::o;36744:419::-;36910:4;36948:2;36937:9;36933:18;36925:26;;36997:9;36991:4;36987:20;36983:1;36972:9;36968:17;36961:47;37025:131;37151:4;37025:131;:::i;:::-;37017:139;;36744:419;;;:::o;37169:305::-;37209:3;37228:20;37246:1;37228:20;:::i;:::-;37223:25;;37262:20;37280:1;37262:20;:::i;:::-;37257:25;;37416:1;37348:66;37344:74;37341:1;37338:81;37335:107;;;37422:18;;:::i;:::-;37335:107;37466:1;37463;37459:9;37452:16;;37169:305;;;;:::o;37480:170::-;37620:22;37616:1;37608:6;37604:14;37597:46;37480:170;:::o;37656:366::-;37798:3;37819:67;37883:2;37878:3;37819:67;:::i;:::-;37812:74;;37895:93;37984:3;37895:93;:::i;:::-;38013:2;38008:3;38004:12;37997:19;;37656:366;;;:::o;38028:419::-;38194:4;38232:2;38221:9;38217:18;38209:26;;38281:9;38275:4;38271:20;38267:1;38256:9;38252:17;38245:47;38309:131;38435:4;38309:131;:::i;:::-;38301:139;;38028:419;;;:::o;38453:332::-;38574:4;38612:2;38601:9;38597:18;38589:26;;38625:71;38693:1;38682:9;38678:17;38669:6;38625:71;:::i;:::-;38706:72;38774:2;38763:9;38759:18;38750:6;38706:72;:::i;:::-;38453:332;;;;;:::o;38791:182::-;38931:34;38927:1;38919:6;38915:14;38908:58;38791:182;:::o;38979:366::-;39121:3;39142:67;39206:2;39201:3;39142:67;:::i;:::-;39135:74;;39218:93;39307:3;39218:93;:::i;:::-;39336:2;39331:3;39327:12;39320:19;;38979:366;;;:::o;39351:419::-;39517:4;39555:2;39544:9;39540:18;39532:26;;39604:9;39598:4;39594:20;39590:1;39579:9;39575:17;39568:47;39632:131;39758:4;39632:131;:::i;:::-;39624:139;;39351:419;;;:::o;39776:175::-;39916:27;39912:1;39904:6;39900:14;39893:51;39776:175;:::o;39957:366::-;40099:3;40120:67;40184:2;40179:3;40120:67;:::i;:::-;40113:74;;40196:93;40285:3;40196:93;:::i;:::-;40314:2;40309:3;40305:12;40298:19;;39957:366;;;:::o;40329:419::-;40495:4;40533:2;40522:9;40518:18;40510:26;;40582:9;40576:4;40572:20;40568:1;40557:9;40553:17;40546:47;40610:131;40736:4;40610:131;:::i;:::-;40602:139;;40329:419;;;:::o;40754:237::-;40894:34;40890:1;40882:6;40878:14;40871:58;40963:20;40958:2;40950:6;40946:15;40939:45;40754:237;:::o;40997:366::-;41139:3;41160:67;41224:2;41219:3;41160:67;:::i;:::-;41153:74;;41236:93;41325:3;41236:93;:::i;:::-;41354:2;41349:3;41345:12;41338:19;;40997:366;;;:::o;41369:419::-;41535:4;41573:2;41562:9;41558:18;41550:26;;41622:9;41616:4;41612:20;41608:1;41597:9;41593:17;41586:47;41650:131;41776:4;41650:131;:::i;:::-;41642:139;;41369:419;;;:::o;41794:180::-;41842:77;41839:1;41832:88;41939:4;41936:1;41929:15;41963:4;41960:1;41953:15;41980:98;42031:6;42065:5;42059:12;42049:22;;41980:98;;;:::o;42084:168::-;42167:11;42201:6;42196:3;42189:19;42241:4;42236:3;42232:14;42217:29;;42084:168;;;;:::o;42258:360::-;42344:3;42372:38;42404:5;42372:38;:::i;:::-;42426:70;42489:6;42484:3;42426:70;:::i;:::-;42419:77;;42505:52;42550:6;42545:3;42538:4;42531:5;42527:16;42505:52;:::i;:::-;42582:29;42604:6;42582:29;:::i;:::-;42577:3;42573:39;42566:46;;42348:270;42258:360;;;;:::o;42624:640::-;42819:4;42857:3;42846:9;42842:19;42834:27;;42871:71;42939:1;42928:9;42924:17;42915:6;42871:71;:::i;:::-;42952:72;43020:2;43009:9;43005:18;42996:6;42952:72;:::i;:::-;43034;43102:2;43091:9;43087:18;43078:6;43034:72;:::i;:::-;43153:9;43147:4;43143:20;43138:2;43127:9;43123:18;43116:48;43181:76;43252:4;43243:6;43181:76;:::i;:::-;43173:84;;42624:640;;;;;;;:::o;43270:141::-;43326:5;43357:6;43351:13;43342:22;;43373:32;43399:5;43373:32;:::i;:::-;43270:141;;;;:::o;43417:349::-;43486:6;43535:2;43523:9;43514:7;43510:23;43506:32;43503:119;;;43541:79;;:::i;:::-;43503:119;43661:1;43686:63;43741:7;43732:6;43721:9;43717:22;43686:63;:::i;:::-;43676:73;;43632:127;43417:349;;;;:::o;43772:182::-;43912:34;43908:1;43900:6;43896:14;43889:58;43772:182;:::o;43960:366::-;44102:3;44123:67;44187:2;44182:3;44123:67;:::i;:::-;44116:74;;44199:93;44288:3;44199:93;:::i;:::-;44317:2;44312:3;44308:12;44301:19;;43960:366;;;:::o;44332:419::-;44498:4;44536:2;44525:9;44521:18;44513:26;;44585:9;44579:4;44575:20;44571:1;44560:9;44556:17;44549:47;44613:131;44739:4;44613:131;:::i;:::-;44605:139;;44332:419;;;:::o;44757:178::-;44897:30;44893:1;44885:6;44881:14;44874:54;44757:178;:::o;44941:366::-;45083:3;45104:67;45168:2;45163:3;45104:67;:::i;:::-;45097:74;;45180:93;45269:3;45180:93;:::i;:::-;45298:2;45293:3;45289:12;45282:19;;44941:366;;;:::o;45313:419::-;45479:4;45517:2;45506:9;45502:18;45494:26;;45566:9;45560:4;45556:20;45552:1;45541:9;45537:17;45530:47;45594:131;45720:4;45594:131;:::i;:::-;45586:139;;45313:419;;;:::o

Swarm Source

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