ETH Price: $2,515.69 (+2.51%)

Token

Pussy Financial Punks (PFP)
 

Overview

Max Total Supply

49 PFP

Holders

13

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
PussyNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.9.2 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/math/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @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 / b + (a % b == 0 ? 0 : 1);
    }
}

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (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));
        }
    }

    /**
     * @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/introspection/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 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/introspection/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/security/[email protected]

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File contracts/PussyNFT.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.8.13;

contract PussyNFT is ERC721Enumerable, ReentrancyGuard, Ownable {
    using Strings for uint256;
    using SafeERC20 for IERC20;

    IERC20 private immutable _token;
    address private immutable _dao;
    uint256 private immutable _maxSupply;
    uint256 private immutable _mintPrice;
    uint256 private immutable _mintStartTime;
    string private _tempUri;
    string private _uri;
    bool private _mintFinished;

    event Finalized(string uri);

    constructor(
        IERC20 token,
        address dao,
        uint256 maxSupply,
        uint256 mintPrice,
        uint256 mintStartTime,
        string memory tempUri
    ) ERC721("Pussy Financial Punks", "PFP") {
        require(address(token) != address(0) && dao != address(0), "INVALID_ADDRESS");
        require(maxSupply > 0, "INVALID_MAX_SUPPLY");
        require(mintPrice > 0, "INVALID_PRICE");

        _token = token;
        _dao = dao;
        _maxSupply = maxSupply;
        _mintPrice = mintPrice;
        _mintStartTime = mintStartTime;
        _tempUri = tempUri;
    }

    /**
     * @dev Returns minting settings
     */
    function settings()
        external
        view
        returns (
            IERC20,
            address,
            uint256,
            uint256,
            uint256,
            string memory,
            bool
        )
    {
        return (_token, _dao, _maxSupply, _mintPrice, _mintStartTime, _tempUri, _mintFinished);
    }

    /**
     * @dev Returns the URI of the specified token.
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "TOKEN_DOES_NOT_EXIST");

        if (!_mintFinished) {
            return _tempUri;
        }

        string memory baseUri = _uri;
        return bytes(baseUri).length > 0 ? string.concat(baseUri, tokenId.toString(), ".json") : "";
    }

    /**
     * @dev Mints a single PFP.
     */
    function mint(uint256 quantity) external nonReentrant {
        require(_time() >= _mintStartTime, "MINT_NOT_STARTED");
        require(quantity > 0, "INVALID_QUANTITY");

        uint256 totalSupply = totalSupply();
        uint256 availableQuantity = Math.min(_maxSupply - totalSupply, quantity);

        require(availableQuantity > 0, "MAX_SUPPLY_REACHED");

        // Transfer the tokens to the DAO
        _token.safeTransferFrom(msg.sender, _dao, _mintPrice * availableQuantity);

        // Mint tokens to the purchaser (starting from token ID 1)
        uint256 tokenId = totalSupply;
        for (uint256 i = 0; i < availableQuantity; i++) {
            _safeMint(msg.sender, tokenId + i + 1);
        }
    }

    /**
     * @dev Finalizes the minting process.
     */
    function finalizeMint(string memory uri) external nonReentrant onlyOwner {
        require(!_mintFinished, "ALREADY_FINISHED");
        require(totalSupply() == _maxSupply, "MAX_SUPPLY_NOT_REACHED");

        bytes memory rawUri = bytes(uri);
        require(rawUri[rawUri.length - 1] == "/", "INVALID_TERMINATOR");

        _mintFinished = true;
        _uri = uri;

        emit Finalized(uri);
    }

    /**
     * @dev Returns the current time (and used for testing).
     */
    function _time() internal view virtual returns (uint256) {
        return block.timestamp;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"dao","type":"address"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintStartTime","type":"uint256"},{"internalType":"string","name":"tempUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"finalizeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settings","outputs":[{"internalType":"contract IERC20","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"string","name":"","type":"string"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040523480156200001257600080fd5b5060405162002e0a38038062002e0a833981016040819052620000359162000318565b604080518082018252601581527f50757373792046696e616e6369616c2050756e6b73000000000000000000000060208083019182528351808501909452600384526205046560ec1b908401528151919291620000959160009162000243565b508051620000ab90600190602084019062000243565b50506001600a5550620000be33620001f1565b6001600160a01b03861615801590620000df57506001600160a01b03851615155b620001235760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064015b60405180910390fd5b600084116200016a5760405162461bcd60e51b8152602060048201526012602482015271494e56414c49445f4d41585f535550504c5960701b60448201526064016200011a565b60008311620001ac5760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f505249434560981b60448201526064016200011a565b6001600160a01b03808716608052851660a05260c084905260e08390526101008290528051620001e490600c90602084019062000243565b505050505050506200047b565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000251906200043f565b90600052602060002090601f016020900481019282620002755760008555620002c0565b82601f106200029057805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002c0578251825591602001919060010190620002a3565b50620002ce929150620002d2565b5090565b5b80821115620002ce5760008155600101620002d3565b6001600160a01b0381168114620002ff57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b60008060008060008060c087890312156200033257600080fd5b86516200033f81620002e9565b809650506020808801516200035481620002e9565b604089015160608a015160808b015160a08c0151939950919750955093506001600160401b03808211156200038857600080fd5b818a0191508a601f8301126200039d57600080fd5b815181811115620003b257620003b262000302565b604051601f8201601f19908116603f01168101908382118183101715620003dd57620003dd62000302565b816040528281528d86848701011115620003f657600080fd5b600093505b828410156200041a5784840186015181850187015292850192620003fb565b828411156200042c5760008684830101525b8096505050505050509295509295509295565b600181811c908216806200045457607f821691505b6020821081036200047557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051612920620004ea60003960008181610c8801526111b4015260008181610e050152611193015260008181610a9201528181610d5e0152611172015260008181610de00152611151015260008181610e33015261113001526129206000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c8063715018a6116100d8578063a22cb4651161008c578063e06174e411610066578063e06174e414610308578063e985e9c514610323578063f2fde38b1461035f57600080fd5b8063a22cb465146102cf578063b88d4fde146102e2578063c87b56dd146102f557600080fd5b80638da5cb5b116100bd5780638da5cb5b146102a357806395d89b41146102b4578063a0712d68146102bc57600080fd5b8063715018a6146102885780638bbeb9c61461029057600080fd5b806323b872dd1161013a5780634f6ccce7116101145780634f6ccce71461024f5780636352211e1461026257806370a082311461027557600080fd5b806323b872dd146102165780632f745c591461022957806342842e0e1461023c57600080fd5b8063081812fc1161016b578063081812fc146101c4578063095ea7b3146101ef57806318160ddd1461020457600080fd5b806301ffc9a71461018757806306fdde03146101af575b600080fd5b61019a610195366004612385565b610372565b60405190151581526020015b60405180910390f35b6101b76103b6565b6040516101a691906123fa565b6101d76101d236600461240d565b610448565b6040516001600160a01b0390911681526020016101a6565b6102026101fd366004612442565b6104e2565b005b6008545b6040519081526020016101a6565b61020261022436600461246c565b610613565b610208610237366004612442565b61069a565b61020261024a36600461246c565b610742565b61020861025d36600461240d565b61075d565b6101d761027036600461240d565b610801565b6102086102833660046124a8565b61088c565b610202610926565b61020261029e36600461254f565b61098c565b600b546001600160a01b03166101d7565b6101b7610c20565b6102026102ca36600461240d565b610c2f565b6102026102dd3660046125a6565b610ea3565b6102026102f03660046125dd565b610eb2565b6101b761030336600461240d565b610f40565b610310611122565b6040516101a69796959493929190612659565b61019a6103313660046126ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020261036d3660046124a8565b611288565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806103b057506103b08261136a565b92915050565b6060600080546103c5906126e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103f1906126e0565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ed82610801565b9050806001600160a01b0316836001600160a01b0316036105765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b336001600160a01b038216148061059257506105928133610331565b6106045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104bd565b61060e8383611405565b505050565b61061d3382611480565b61068f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104bd565b61060e838383611577565b60006106a58361088c565b82106107195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016104bd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61060e83838360405180602001604052806000815250610eb2565b600061076860085490565b82106107dc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016104bd565b600882815481106107ef576107ef61271a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016104bd565b60006001600160a01b03821661090a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016104bd565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146109805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b61098a600061175c565b565b6002600a54036109de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104bd565b6002600a55600b546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b600e5460ff1615610a905760405162461bcd60e51b815260206004820152601060248201527f414c52454144595f46494e49534845440000000000000000000000000000000060448201526064016104bd565b7f0000000000000000000000000000000000000000000000000000000000000000610aba60085490565b14610b075760405162461bcd60e51b815260206004820152601660248201527f4d41585f535550504c595f4e4f545f524541434845440000000000000000000060448201526064016104bd565b805181908190610b1990600190612746565b81518110610b2957610b2961271a565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f2f0000000000000000000000000000000000000000000000000000000000000014610bbf5760405162461bcd60e51b815260206004820152601260248201527f494e56414c49445f5445524d494e41544f52000000000000000000000000000060448201526064016104bd565b600e805460ff191660011790558151610bdf90600d9060208501906122d6565b507f52414027544c1b3b1d95a71cc61278fad86f60cb49518b00697e287bbdae0a5d82604051610c0f91906123fa565b60405180910390a150506001600a55565b6060600180546103c5906126e0565b6002600a5403610c815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104bd565b6002600a557f0000000000000000000000000000000000000000000000000000000000000000421015610cf65760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f535441525445440000000000000000000000000000000060448201526064016104bd565b60008111610d465760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f5155414e544954590000000000000000000000000000000060448201526064016104bd565b6000610d5160085490565b90506000610d88610d82837f0000000000000000000000000000000000000000000000000000000000000000612746565b846117bb565b905060008111610dda5760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f52454143484544000000000000000000000000000060448201526064016104bd565b610e5b337f0000000000000000000000000000000000000000000000000000000000000000610e29847f000000000000000000000000000000000000000000000000000000000000000061275d565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169291906117d1565b8160005b82811015610e9757610e8533610e75838561277c565b610e8090600161277c565b611859565b80610e8f81612794565b915050610e5f565b50506001600a55505050565b610eae338383611873565b5050565b610ebc3383611480565b610f2e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104bd565b610f3a84848484611941565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fa75760405162461bcd60e51b815260206004820152601460248201527f544f4b454e5f444f45535f4e4f545f455849535400000000000000000000000060448201526064016104bd565b600e5460ff1661104357600c8054610fbe906126e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea906126e0565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b50505050509050919050565b6000600d8054611052906126e0565b80601f016020809104026020016040519081016040528092919081815260200182805461107e906126e0565b80156110cb5780601f106110a0576101008083540402835291602001916110cb565b820191906000526020600020905b8154815290600101906020018083116110ae57829003601f168201915b5050505050905060008151116110f0576040518060200160405280600081525061111b565b806110fa846119bf565b60405160200161110b9291906127ad565b6040516020818303038152906040525b9392505050565b6000806000806000606060007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600c600e60009054906101000a900460ff168180546111f1906126e0565b80601f016020809104026020016040519081016040528092919081815260200182805461121d906126e0565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b50505050509150965096509650965096509650965090919293949596565b600b546001600160a01b031633146112e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104bd565b6113678161175c565b50565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113cd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103b057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146103b0565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061144782610801565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104bd565b600061150483610801565b9050806001600160a01b0316846001600160a01b0316148061153f5750836001600160a01b031661153484610448565b6001600160a01b0316145b8061156f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661158a82610801565b6001600160a01b0316146116065760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016104bd565b6001600160a01b0382166116815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bd565b61168c838383611af4565b611697600082611405565b6001600160a01b03831660009081526003602052604081208054600192906116c0908490612746565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ee90849061277c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183106117ca578161111b565b5090919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610f3a908590611bac565b610eae828260405180602001604052806000815250611c91565b816001600160a01b0316836001600160a01b0316036118d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61194c848484611577565b61195884848484611d0f565b610f3a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b606081600003611a0257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a2c5780611a1681612794565b9150611a259050600a8361281a565b9150611a06565b60008167ffffffffffffffff811115611a4757611a476124c3565b6040519080825280601f01601f191660200182016040528015611a71576020820181803683370190505b5090505b841561156f57611a86600183612746565b9150611a93600a8661282e565b611a9e90603061277c565b60f81b818381518110611ab357611ab361271a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611aed600a8661281a565b9450611a75565b6001600160a01b038316611b4f57611b4a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b72565b816001600160a01b0316836001600160a01b031614611b7257611b728382611e5b565b6001600160a01b038216611b895761060e81611ef8565b826001600160a01b0316826001600160a01b03161461060e5761060e8282611fa7565b6000611c01826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611feb9092919063ffffffff16565b80519091501561060e5780806020019051810190611c1f9190612842565b61060e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104bd565b611c9b8383611ffa565b611ca86000848484611d0f565b61060e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b60006001600160a01b0384163b15611e5057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5390339089908890889060040161285f565b6020604051808303816000875af1925050508015611d8e575060408051601f3d908101601f19168201909252611d8b9181019061289b565b60015b611e36573d808015611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b508051600003611e2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061156f565b506001949350505050565b60006001611e688461088c565b611e729190612746565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a90600190612746565b60008381526009602052604081205460088054939450909284908110611f3257611f3261271a565b906000526020600020015490508060088381548110611f5357611f5361271a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b6128b8565b6001900381819060005260206000200160009055905550505050565b6000611fb28361088c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606061156f8484600085612155565b6001600160a01b0382166120505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104bd565b6000818152600260205260409020546001600160a01b0316156120b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104bd565b6120c160008383611af4565b6001600160a01b03821660009081526003602052604081208054600192906120ea90849061277c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156121cd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104bd565b6001600160a01b0385163b6122245760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104bd565b600080866001600160a01b0316858760405161224091906128ce565b60006040518083038185875af1925050503d806000811461227d576040519150601f19603f3d011682016040523d82523d6000602084013e612282565b606091505b509150915061229282828661229d565b979650505050505050565b606083156122ac57508161111b565b8251156122bc5782518084602001fd5b8160405162461bcd60e51b81526004016104bd91906123fa565b8280546122e2906126e0565b90600052602060002090601f016020900481019282612304576000855561234a565b82601f1061231d57805160ff191683800117855561234a565b8280016001018555821561234a579182015b8281111561234a57825182559160200191906001019061232f565b5061235692915061235a565b5090565b5b80821115612356576000815560010161235b565b6001600160e01b03198116811461136757600080fd5b60006020828403121561239757600080fd5b813561111b8161236f565b60005b838110156123bd5781810151838201526020016123a5565b83811115610f3a5750506000910152565b600081518084526123e68160208601602086016123a2565b601f01601f19169290920160200192915050565b60208152600061111b60208301846123ce565b60006020828403121561241f57600080fd5b5035919050565b80356001600160a01b038116811461243d57600080fd5b919050565b6000806040838503121561245557600080fd5b61245e83612426565b946020939093013593505050565b60008060006060848603121561248157600080fd5b61248a84612426565b925061249860208501612426565b9150604084013590509250925092565b6000602082840312156124ba57600080fd5b61111b82612426565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124f4576124f46124c3565b604051601f8501601f19908116603f0116810190828211818310171561251c5761251c6124c3565b8160405280935085815286868601111561253557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256157600080fd5b813567ffffffffffffffff81111561257857600080fd5b8201601f8101841361258957600080fd5b61156f848235602084016124d9565b801515811461136757600080fd5b600080604083850312156125b957600080fd5b6125c283612426565b915060208301356125d281612598565b809150509250929050565b600080600080608085870312156125f357600080fd5b6125fc85612426565b935061260a60208601612426565b925060408501359150606085013567ffffffffffffffff81111561262d57600080fd5b8501601f8101871361263e57600080fd5b61264d878235602084016124d9565b91505092959194509250565b60006001600160a01b03808a16835280891660208401525086604083015285606083015284608083015260e060a083015261269760e08301856123ce565b905082151560c083015298975050505050505050565b600080604083850312156126c057600080fd5b6126c983612426565b91506126d760208401612426565b90509250929050565b600181811c908216806126f457607f821691505b60208210810361271457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561275857612758612730565b500390565b600081600019048311821515161561277757612777612730565b500290565b6000821982111561278f5761278f612730565b500190565b6000600182016127a6576127a6612730565b5060010190565b600083516127bf8184602088016123a2565b8351908301906127d38183602088016123a2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261282957612829612804565b500490565b60008261283d5761283d612804565b500690565b60006020828403121561285457600080fd5b815161111b81612598565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289160808301846123ce565b9695505050505050565b6000602082840312156128ad57600080fd5b815161111b8161236f565b634e487b7160e01b600052603160045260246000fd5b600082516128e08184602087016123a2565b919091019291505056fea26469706673582212200f06483cc16c58e805fbf1b53b1b7e01cd36ea38d2f3f545d51ff3b5ca359ac364736f6c634300080d00330000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad000000000000000000000000f3e69118cb5bba5eb3483efa6b16e499777b78ce00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000000000000000006270708000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f707573737966696e616e6369616c2e6d7970696e6174612e636c6f75642f697066732f516d635766787935746939636b7462544a4c536e57326f484c56686e574846687956535a374d3147753650374d7800000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c8063715018a6116100d8578063a22cb4651161008c578063e06174e411610066578063e06174e414610308578063e985e9c514610323578063f2fde38b1461035f57600080fd5b8063a22cb465146102cf578063b88d4fde146102e2578063c87b56dd146102f557600080fd5b80638da5cb5b116100bd5780638da5cb5b146102a357806395d89b41146102b4578063a0712d68146102bc57600080fd5b8063715018a6146102885780638bbeb9c61461029057600080fd5b806323b872dd1161013a5780634f6ccce7116101145780634f6ccce71461024f5780636352211e1461026257806370a082311461027557600080fd5b806323b872dd146102165780632f745c591461022957806342842e0e1461023c57600080fd5b8063081812fc1161016b578063081812fc146101c4578063095ea7b3146101ef57806318160ddd1461020457600080fd5b806301ffc9a71461018757806306fdde03146101af575b600080fd5b61019a610195366004612385565b610372565b60405190151581526020015b60405180910390f35b6101b76103b6565b6040516101a691906123fa565b6101d76101d236600461240d565b610448565b6040516001600160a01b0390911681526020016101a6565b6102026101fd366004612442565b6104e2565b005b6008545b6040519081526020016101a6565b61020261022436600461246c565b610613565b610208610237366004612442565b61069a565b61020261024a36600461246c565b610742565b61020861025d36600461240d565b61075d565b6101d761027036600461240d565b610801565b6102086102833660046124a8565b61088c565b610202610926565b61020261029e36600461254f565b61098c565b600b546001600160a01b03166101d7565b6101b7610c20565b6102026102ca36600461240d565b610c2f565b6102026102dd3660046125a6565b610ea3565b6102026102f03660046125dd565b610eb2565b6101b761030336600461240d565b610f40565b610310611122565b6040516101a69796959493929190612659565b61019a6103313660046126ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020261036d3660046124a8565b611288565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806103b057506103b08261136a565b92915050565b6060600080546103c5906126e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103f1906126e0565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ed82610801565b9050806001600160a01b0316836001600160a01b0316036105765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b336001600160a01b038216148061059257506105928133610331565b6106045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104bd565b61060e8383611405565b505050565b61061d3382611480565b61068f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104bd565b61060e838383611577565b60006106a58361088c565b82106107195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016104bd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61060e83838360405180602001604052806000815250610eb2565b600061076860085490565b82106107dc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016104bd565b600882815481106107ef576107ef61271a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016104bd565b60006001600160a01b03821661090a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016104bd565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146109805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b61098a600061175c565b565b6002600a54036109de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104bd565b6002600a55600b546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b600e5460ff1615610a905760405162461bcd60e51b815260206004820152601060248201527f414c52454144595f46494e49534845440000000000000000000000000000000060448201526064016104bd565b7f00000000000000000000000000000000000000000000000000000000000001f4610aba60085490565b14610b075760405162461bcd60e51b815260206004820152601660248201527f4d41585f535550504c595f4e4f545f524541434845440000000000000000000060448201526064016104bd565b805181908190610b1990600190612746565b81518110610b2957610b2961271a565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f2f0000000000000000000000000000000000000000000000000000000000000014610bbf5760405162461bcd60e51b815260206004820152601260248201527f494e56414c49445f5445524d494e41544f52000000000000000000000000000060448201526064016104bd565b600e805460ff191660011790558151610bdf90600d9060208501906122d6565b507f52414027544c1b3b1d95a71cc61278fad86f60cb49518b00697e287bbdae0a5d82604051610c0f91906123fa565b60405180910390a150506001600a55565b6060600180546103c5906126e0565b6002600a5403610c815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104bd565b6002600a557f0000000000000000000000000000000000000000000000000000000062707080421015610cf65760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f535441525445440000000000000000000000000000000060448201526064016104bd565b60008111610d465760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f5155414e544954590000000000000000000000000000000060448201526064016104bd565b6000610d5160085490565b90506000610d88610d82837f00000000000000000000000000000000000000000000000000000000000001f4612746565b846117bb565b905060008111610dda5760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f52454143484544000000000000000000000000000060448201526064016104bd565b610e5b337f000000000000000000000000f3e69118cb5bba5eb3483efa6b16e499777b78ce610e29847f000000000000000000000000000000000000000000115eec47f6cf7e3500000061275d565b6001600160a01b037f0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad169291906117d1565b8160005b82811015610e9757610e8533610e75838561277c565b610e8090600161277c565b611859565b80610e8f81612794565b915050610e5f565b50506001600a55505050565b610eae338383611873565b5050565b610ebc3383611480565b610f2e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104bd565b610f3a84848484611941565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fa75760405162461bcd60e51b815260206004820152601460248201527f544f4b454e5f444f45535f4e4f545f455849535400000000000000000000000060448201526064016104bd565b600e5460ff1661104357600c8054610fbe906126e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea906126e0565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b50505050509050919050565b6000600d8054611052906126e0565b80601f016020809104026020016040519081016040528092919081815260200182805461107e906126e0565b80156110cb5780601f106110a0576101008083540402835291602001916110cb565b820191906000526020600020905b8154815290600101906020018083116110ae57829003601f168201915b5050505050905060008151116110f0576040518060200160405280600081525061111b565b806110fa846119bf565b60405160200161110b9291906127ad565b6040516020818303038152906040525b9392505050565b6000806000806000606060007f0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad7f000000000000000000000000f3e69118cb5bba5eb3483efa6b16e499777b78ce7f00000000000000000000000000000000000000000000000000000000000001f47f000000000000000000000000000000000000000000115eec47f6cf7e350000007f0000000000000000000000000000000000000000000000000000000062707080600c600e60009054906101000a900460ff168180546111f1906126e0565b80601f016020809104026020016040519081016040528092919081815260200182805461121d906126e0565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b50505050509150965096509650965096509650965090919293949596565b600b546001600160a01b031633146112e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104bd565b6113678161175c565b50565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113cd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103b057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146103b0565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061144782610801565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104bd565b600061150483610801565b9050806001600160a01b0316846001600160a01b0316148061153f5750836001600160a01b031661153484610448565b6001600160a01b0316145b8061156f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661158a82610801565b6001600160a01b0316146116065760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016104bd565b6001600160a01b0382166116815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bd565b61168c838383611af4565b611697600082611405565b6001600160a01b03831660009081526003602052604081208054600192906116c0908490612746565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ee90849061277c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183106117ca578161111b565b5090919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610f3a908590611bac565b610eae828260405180602001604052806000815250611c91565b816001600160a01b0316836001600160a01b0316036118d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61194c848484611577565b61195884848484611d0f565b610f3a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b606081600003611a0257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a2c5780611a1681612794565b9150611a259050600a8361281a565b9150611a06565b60008167ffffffffffffffff811115611a4757611a476124c3565b6040519080825280601f01601f191660200182016040528015611a71576020820181803683370190505b5090505b841561156f57611a86600183612746565b9150611a93600a8661282e565b611a9e90603061277c565b60f81b818381518110611ab357611ab361271a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611aed600a8661281a565b9450611a75565b6001600160a01b038316611b4f57611b4a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b72565b816001600160a01b0316836001600160a01b031614611b7257611b728382611e5b565b6001600160a01b038216611b895761060e81611ef8565b826001600160a01b0316826001600160a01b03161461060e5761060e8282611fa7565b6000611c01826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611feb9092919063ffffffff16565b80519091501561060e5780806020019051810190611c1f9190612842565b61060e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104bd565b611c9b8383611ffa565b611ca86000848484611d0f565b61060e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b60006001600160a01b0384163b15611e5057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5390339089908890889060040161285f565b6020604051808303816000875af1925050508015611d8e575060408051601f3d908101601f19168201909252611d8b9181019061289b565b60015b611e36573d808015611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b508051600003611e2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104bd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061156f565b506001949350505050565b60006001611e688461088c565b611e729190612746565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a90600190612746565b60008381526009602052604081205460088054939450909284908110611f3257611f3261271a565b906000526020600020015490508060088381548110611f5357611f5361271a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b6128b8565b6001900381819060005260206000200160009055905550505050565b6000611fb28361088c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606061156f8484600085612155565b6001600160a01b0382166120505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104bd565b6000818152600260205260409020546001600160a01b0316156120b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104bd565b6120c160008383611af4565b6001600160a01b03821660009081526003602052604081208054600192906120ea90849061277c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156121cd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104bd565b6001600160a01b0385163b6122245760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104bd565b600080866001600160a01b0316858760405161224091906128ce565b60006040518083038185875af1925050503d806000811461227d576040519150601f19603f3d011682016040523d82523d6000602084013e612282565b606091505b509150915061229282828661229d565b979650505050505050565b606083156122ac57508161111b565b8251156122bc5782518084602001fd5b8160405162461bcd60e51b81526004016104bd91906123fa565b8280546122e2906126e0565b90600052602060002090601f016020900481019282612304576000855561234a565b82601f1061231d57805160ff191683800117855561234a565b8280016001018555821561234a579182015b8281111561234a57825182559160200191906001019061232f565b5061235692915061235a565b5090565b5b80821115612356576000815560010161235b565b6001600160e01b03198116811461136757600080fd5b60006020828403121561239757600080fd5b813561111b8161236f565b60005b838110156123bd5781810151838201526020016123a5565b83811115610f3a5750506000910152565b600081518084526123e68160208601602086016123a2565b601f01601f19169290920160200192915050565b60208152600061111b60208301846123ce565b60006020828403121561241f57600080fd5b5035919050565b80356001600160a01b038116811461243d57600080fd5b919050565b6000806040838503121561245557600080fd5b61245e83612426565b946020939093013593505050565b60008060006060848603121561248157600080fd5b61248a84612426565b925061249860208501612426565b9150604084013590509250925092565b6000602082840312156124ba57600080fd5b61111b82612426565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124f4576124f46124c3565b604051601f8501601f19908116603f0116810190828211818310171561251c5761251c6124c3565b8160405280935085815286868601111561253557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256157600080fd5b813567ffffffffffffffff81111561257857600080fd5b8201601f8101841361258957600080fd5b61156f848235602084016124d9565b801515811461136757600080fd5b600080604083850312156125b957600080fd5b6125c283612426565b915060208301356125d281612598565b809150509250929050565b600080600080608085870312156125f357600080fd5b6125fc85612426565b935061260a60208601612426565b925060408501359150606085013567ffffffffffffffff81111561262d57600080fd5b8501601f8101871361263e57600080fd5b61264d878235602084016124d9565b91505092959194509250565b60006001600160a01b03808a16835280891660208401525086604083015285606083015284608083015260e060a083015261269760e08301856123ce565b905082151560c083015298975050505050505050565b600080604083850312156126c057600080fd5b6126c983612426565b91506126d760208401612426565b90509250929050565b600181811c908216806126f457607f821691505b60208210810361271457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561275857612758612730565b500390565b600081600019048311821515161561277757612777612730565b500290565b6000821982111561278f5761278f612730565b500190565b6000600182016127a6576127a6612730565b5060010190565b600083516127bf8184602088016123a2565b8351908301906127d38183602088016123a2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261282957612829612804565b500490565b60008261283d5761283d612804565b500690565b60006020828403121561285457600080fd5b815161111b81612598565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289160808301846123ce565b9695505050505050565b6000602082840312156128ad57600080fd5b815161111b8161236f565b634e487b7160e01b600052603160045260246000fd5b600082516128e08184602087016123a2565b919091019291505056fea26469706673582212200f06483cc16c58e805fbf1b53b1b7e01cd36ea38d2f3f545d51ff3b5ca359ac364736f6c634300080d0033

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

0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad000000000000000000000000f3e69118cb5bba5eb3483efa6b16e499777b78ce00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000000000000000006270708000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f707573737966696e616e6369616c2e6d7970696e6174612e636c6f75642f697066732f516d635766787935746939636b7462544a4c536e57326f484c56686e574846687956535a374d3147753650374d7800000000000000

-----Decoded View---------------
Arg [0] : token (address): 0x9196E18Bc349B1F64Bc08784eaE259525329a1ad
Arg [1] : dao (address): 0xF3e69118cB5Bba5Eb3483eFA6B16E499777B78CE
Arg [2] : maxSupply (uint256): 500
Arg [3] : mintPrice (uint256): 21000000000000000000000000
Arg [4] : mintStartTime (uint256): 1651536000
Arg [5] : tempUri (string): https://pussyfinancial.mypinata.cloud/ipfs/QmcWfxy5ti9cktbTJLSnW2oHLVhnWHFhyVSZ7M1Gu6P7Mx

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad
Arg [1] : 000000000000000000000000f3e69118cb5bba5eb3483efa6b16e499777b78ce
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 000000000000000000000000000000000000000000115eec47f6cf7e35000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000062707080
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [7] : 68747470733a2f2f707573737966696e616e6369616c2e6d7970696e6174612e
Arg [8] : 636c6f75642f697066732f516d635766787935746939636b7462544a4c536e57
Arg [9] : 326f484c56686e574846687956535a374d3147753650374d7800000000000000


Deployed Bytecode Sourcemap

56586:3404:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47579:224;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;47579:224:0;;;;;;;;33317:100;;;:::i;:::-;;;;;;;:::i;34876:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;34876:221:0;1574:226:1;34399:411:0;;;;;;:::i;:::-;;:::i;:::-;;48219:113;48307:10;:17;48219:113;;;2411:25:1;;;2399:2;2384:18;48219:113:0;2265:177:1;35626:339:0;;;;;;:::i;:::-;;:::i;47887:256::-;;;;;;:::i;:::-;;:::i;36036:185::-;;;;;;:::i;:::-;;:::i;48409:233::-;;;;;;:::i;:::-;;:::i;33011:239::-;;;;;;:::i;:::-;;:::i;32741:208::-;;;;;;:::i;:::-;;:::i;6105:103::-;;;:::i;59388:413::-;;;;;;:::i;:::-;;:::i;5454:87::-;5527:6;;-1:-1:-1;;;;;5527:6:0;5454:87;;33486:104;;;:::i;58581:737::-;;;;;;:::i;:::-;;:::i;35169:155::-;;;;;;:::i;:::-;;:::i;36292:328::-;;;;;;:::i;:::-;;:::i;58157:365::-;;;;;;:::i;:::-;;:::i;57731:347::-;;;:::i;:::-;;;;;;;;;;;;;:::i;35395:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35516:25:0;;;35492:4;35516:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35395:164;6363:201;;;;;;:::i;:::-;;:::i;47579:224::-;47681:4;-1:-1:-1;;;;;;47705:50:0;;47720:35;47705:50;;:90;;;47759:36;47783:11;47759:23;:36::i;:::-;47698:97;47579:224;-1:-1:-1;;47579:224:0:o;33317:100::-;33371:13;33404:5;33397:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33317:100;:::o;34876:221::-;34952:7;38219:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38219:16:0;34972:73;;;;-1:-1:-1;;;34972:73:0;;7036:2:1;34972:73:0;;;7018:21:1;7075:2;7055:18;;;7048:30;7114:34;7094:18;;;7087:62;-1:-1:-1;;;7165:18:1;;;7158:42;7217:19;;34972:73:0;;;;;;;;;-1:-1:-1;35065:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35065:24:0;;34876:221::o;34399:411::-;34480:13;34496:23;34511:7;34496:14;:23::i;:::-;34480:39;;34544:5;-1:-1:-1;;;;;34538:11:0;:2;-1:-1:-1;;;;;34538:11:0;;34530:57;;;;-1:-1:-1;;;34530:57:0;;7449:2:1;34530:57:0;;;7431:21:1;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;7598:3;7578:18;;;7571:31;7619:19;;34530:57:0;7247:397:1;34530:57:0;4256:10;-1:-1:-1;;;;;34622:21:0;;;;:62;;-1:-1:-1;34647:37:0;34664:5;4256:10;35395:164;:::i;34647:37::-;34600:168;;;;-1:-1:-1;;;34600:168:0;;7851:2:1;34600:168:0;;;7833:21:1;7890:2;7870:18;;;7863:30;7929:34;7909:18;;;7902:62;8000:26;7980:18;;;7973:54;8044:19;;34600:168:0;7649:420:1;34600:168:0;34781:21;34790:2;34794:7;34781:8;:21::i;:::-;34469:341;34399:411;;:::o;35626:339::-;35821:41;4256:10;35854:7;35821:18;:41::i;:::-;35813:103;;;;-1:-1:-1;;;35813:103:0;;8276:2:1;35813:103:0;;;8258:21:1;8315:2;8295:18;;;8288:30;8354:34;8334:18;;;8327:62;8425:19;8405:18;;;8398:47;8462:19;;35813:103:0;8074:413:1;35813:103:0;35929:28;35939:4;35945:2;35949:7;35929:9;:28::i;47887:256::-;47984:7;48020:23;48037:5;48020:16;:23::i;:::-;48012:5;:31;48004:87;;;;-1:-1:-1;;;48004:87:0;;8694:2:1;48004:87:0;;;8676:21:1;8733:2;8713:18;;;8706:30;8772:34;8752:18;;;8745:62;8843:13;8823:18;;;8816:41;8874:19;;48004:87:0;8492:407:1;48004:87:0;-1:-1:-1;;;;;;48109:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;47887:256::o;36036:185::-;36174:39;36191:4;36197:2;36201:7;36174:39;;;;;;;;;;;;:16;:39::i;48409:233::-;48484:7;48520:30;48307:10;:17;;48219:113;48520:30;48512:5;:38;48504:95;;;;-1:-1:-1;;;48504:95:0;;9106:2:1;48504:95:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;9255:14;9235:18;;;9228:42;9287:19;;48504:95:0;8904:408:1;48504:95:0;48617:10;48628:5;48617:17;;;;;;;;:::i;:::-;;;;;;;;;48610:24;;48409:233;;;:::o;33011:239::-;33083:7;33119:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33119:16:0;;33146:73;;;;-1:-1:-1;;;33146:73:0;;9708:2:1;33146:73:0;;;9690:21:1;9747:2;9727:18;;;9720:30;9786:34;9766:18;;;9759:62;9857:11;9837:18;;;9830:39;9886:19;;33146:73:0;9506:405:1;32741:208:0;32813:7;-1:-1:-1;;;;;32841:19:0;;32833:74;;;;-1:-1:-1;;;32833:74:0;;10118:2:1;32833:74:0;;;10100:21:1;10157:2;10137:18;;;10130:30;10196:34;10176:18;;;10169:62;10267:12;10247:18;;;10240:40;10297:19;;32833:74:0;9916:406:1;32833:74:0;-1:-1:-1;;;;;;32925:16:0;;;;;:9;:16;;;;;;;32741:208::o;6105:103::-;5527:6;;-1:-1:-1;;;;;5527:6:0;4256:10;5674:23;5666:68;;;;-1:-1:-1;;;5666:68:0;;10529:2:1;5666:68:0;;;10511:21:1;;;10548:18;;;10541:30;10607:34;10587:18;;;10580:62;10659:18;;5666:68:0;10327:356:1;5666:68:0;6170:30:::1;6197:1;6170:18;:30::i;:::-;6105:103::o:0;59388:413::-;55543:1;56141:7;;:19;56133:63;;;;-1:-1:-1;;;56133:63:0;;10890:2:1;56133:63:0;;;10872:21:1;10929:2;10909:18;;;10902:30;10968:33;10948:18;;;10941:61;11019:18;;56133:63:0;10688:355:1;56133:63:0;55543:1;56274:7;:18;5527:6;;-1:-1:-1;;;;;5527:6:0;4256:10;5674:23:::1;5666:68;;;::::0;-1:-1:-1;;;5666:68:0;;10529:2:1;5666:68:0::1;::::0;::::1;10511:21:1::0;;;10548:18;;;10541:30;10607:34;10587:18;;;10580:62;10659:18;;5666:68:0::1;10327:356:1::0;5666:68:0::1;59481:13:::2;::::0;::::2;;59480:14;59472:43;;;::::0;-1:-1:-1;;;59472:43:0;;11250:2:1;59472:43:0::2;::::0;::::2;11232:21:1::0;11289:2;11269:18;;;11262:30;11328:18;11308;;;11301:46;11364:18;;59472:43:0::2;11048:340:1::0;59472:43:0::2;59551:10;59534:13;48307:10:::0;:17;;48219:113;59534:13:::2;:27;59526:62;;;::::0;-1:-1:-1;;;59526:62:0;;11595:2:1;59526:62:0::2;::::0;::::2;11577:21:1::0;11634:2;11614:18;;;11607:30;11673:24;11653:18;;;11646:52;11715:18;;59526:62:0::2;11393:346:1::0;59526:62:0::2;59659:13:::0;;59629:3;;;;59659:17:::2;::::0;59675:1:::2;::::0;59659:17:::2;:::i;:::-;59652:25;;;;;;;;:::i;:::-;;::::0;;;;;;:32:::2;;59644:63;;;::::0;-1:-1:-1;;;59644:63:0;;12265:2:1;59644:63:0::2;::::0;::::2;12247:21:1::0;12304:2;12284:18;;;12277:30;12343:20;12323:18;;;12316:48;12381:18;;59644:63:0::2;12063:342:1::0;59644:63:0::2;59720:13;:20:::0;;-1:-1:-1;;59720:20:0::2;59736:4;59720:20;::::0;;59751:10;;::::2;::::0;:4:::2;::::0;:10:::2;::::0;::::2;::::0;::::2;:::i;:::-;;59779:14;59789:3;59779:14;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;55499:1:0;56453:7;:22;59388:413::o;33486:104::-;33542:13;33575:7;33568:14;;;;;:::i;58581:737::-;55543:1;56141:7;;:19;56133:63;;;;-1:-1:-1;;;56133:63:0;;10890:2:1;56133:63:0;;;10872:21:1;10929:2;10909:18;;;10902:30;10968:33;10948:18;;;10941:61;11019:18;;56133:63:0;10688:355:1;56133:63:0;55543:1;56274:7;:18;58665:14:::1;59964:15:::0;58654:25:::1;;58646:54;;;::::0;-1:-1:-1;;;58646:54:0;;12612:2:1;58646:54:0::1;::::0;::::1;12594:21:1::0;12651:2;12631:18;;;12624:30;12690:18;12670;;;12663:46;12726:18;;58646:54:0::1;12410:340:1::0;58646:54:0::1;58730:1;58719:8;:12;58711:41;;;::::0;-1:-1:-1;;;58711:41:0;;12957:2:1;58711:41:0::1;::::0;::::1;12939:21:1::0;12996:2;12976:18;;;12969:30;13035:18;13015;;;13008:46;13071:18;;58711:41:0::1;12755:340:1::0;58711:41:0::1;58765:19;58787:13;48307:10:::0;:17;;48219:113;58787:13:::1;58765:35:::0;-1:-1:-1;58811:25:0::1;58839:44;58848:24;58765:35:::0;58848:10:::1;:24;:::i;:::-;58874:8;58839;:44::i;:::-;58811:72;;58924:1;58904:17;:21;58896:52;;;::::0;-1:-1:-1;;;58896:52:0;;13302:2:1;58896:52:0::1;::::0;::::1;13284:21:1::0;13341:2;13321:18;;;13314:30;13380:20;13360:18;;;13353:48;13418:18;;58896:52:0::1;13100:342:1::0;58896:52:0::1;59004:73;59028:10;59040:4;59046:30;59059:17:::0;59046:10:::1;:30;:::i;:::-;-1:-1:-1::0;;;;;59004:6:0::1;:23;::::0;:73;;:23:::1;:73::i;:::-;59176:11:::0;59158:15:::1;59198:113;59222:17;59218:1;:21;59198:113;;;59261:38;59271:10;59283:11;59293:1:::0;59283:7;:11:::1;:::i;:::-;:15;::::0;59297:1:::1;59283:15;:::i;:::-;59261:9;:38::i;:::-;59241:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59198:113;;;-1:-1:-1::0;;55499:1:0;56453:7;:22;-1:-1:-1;;;58581:737:0:o;35169:155::-;35264:52;4256:10;35297:8;35307;35264:18;:52::i;:::-;35169:155;;:::o;36292:328::-;36467:41;4256:10;36500:7;36467:18;:41::i;:::-;36459:103;;;;-1:-1:-1;;;36459:103:0;;8276:2:1;36459:103:0;;;8258:21:1;8315:2;8295:18;;;8288:30;8354:34;8334:18;;;8327:62;8425:19;8405:18;;;8398:47;8462:19;;36459:103:0;8074:413:1;36459:103:0;36573:39;36587:4;36593:2;36597:7;36606:5;36573:13;:39::i;:::-;36292:328;;;;:::o;58157:365::-;38195:4;38219:16;;;:7;:16;;;;;;58222:13;;-1:-1:-1;;;;;38219:16:0;58248:49;;;;-1:-1:-1;;;58248:49:0;;14095:2:1;58248:49:0;;;14077:21:1;14134:2;14114:18;;;14107:30;14173:22;14153:18;;;14146:50;14213:18;;58248:49:0;13893:344:1;58248:49:0;58315:13;;;;58310:62;;58352:8;58345:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58157:365;;;:::o;58310:62::-;58384:21;58408:4;58384:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58454:1;58436:7;58430:21;:25;:84;;;;;;;;;;;;;;;;;58472:7;58481:18;:7;:16;:18::i;:::-;58458:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58430:84;58423:91;58157:365;-1:-1:-1;;;58157:365:0:o;57731:347::-;57815:6;57836:7;57858;57880;57902;57924:13;57952:4;57992:6;58000:4;58006:10;58018;58030:14;58046:8;58056:13;;;;;;;;;;;57984:86;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57731:347;;;;;;;:::o;6363:201::-;5527:6;;-1:-1:-1;;;;;5527:6:0;4256:10;5674:23;5666:68;;;;-1:-1:-1;;;5666:68:0;;10529:2:1;5666:68:0;;;10511:21:1;;;10548:18;;;10541:30;10607:34;10587:18;;;10580:62;10659:18;;5666:68:0;10327:356:1;5666:68:0;-1:-1:-1;;;;;6452:22:0;::::1;6444:73;;;::::0;-1:-1:-1;;;6444:73:0;;15075:2:1;6444:73:0::1;::::0;::::1;15057:21:1::0;15114:2;15094:18;;;15087:30;15153:34;15133:18;;;15126:62;15224:8;15204:18;;;15197:36;15250:19;;6444:73:0::1;14873:402:1::0;6444:73:0::1;6528:28;6547:8;6528:18;:28::i;:::-;6363:201:::0;:::o;32372:305::-;32474:4;-1:-1:-1;;;;;;32511:40:0;;32526:25;32511:40;;:105;;-1:-1:-1;;;;;;;32568:48:0;;32583:33;32568:48;32511:105;:158;;;-1:-1:-1;30935:25:0;-1:-1:-1;;;;;;30920:40:0;;;32633:36;30811:157;42276:174;42351:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;42351:29:0;-1:-1:-1;;;;;42351:29:0;;;;;;;;:24;;42405:23;42351:24;42405:14;:23::i;:::-;-1:-1:-1;;;;;42396:46:0;;;;;;;;;;;42276:174;;:::o;38424:348::-;38517:4;38219:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38219:16:0;38534:73;;;;-1:-1:-1;;;38534:73:0;;15482:2:1;38534:73:0;;;15464:21:1;15521:2;15501:18;;;15494:30;15560:34;15540:18;;;15533:62;-1:-1:-1;;;15611:18:1;;;15604:42;15663:19;;38534:73:0;15280:408:1;38534:73:0;38618:13;38634:23;38649:7;38634:14;:23::i;:::-;38618:39;;38687:5;-1:-1:-1;;;;;38676:16:0;:7;-1:-1:-1;;;;;38676:16:0;;:51;;;;38720:7;-1:-1:-1;;;;;38696:31:0;:20;38708:7;38696:11;:20::i;:::-;-1:-1:-1;;;;;38696:31:0;;38676:51;:87;;;-1:-1:-1;;;;;;35516:25:0;;;35492:4;35516:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38731:32;38668:96;38424:348;-1:-1:-1;;;;38424:348:0:o;41533:625::-;41692:4;-1:-1:-1;;;;;41665:31:0;:23;41680:7;41665:14;:23::i;:::-;-1:-1:-1;;;;;41665:31:0;;41657:81;;;;-1:-1:-1;;;41657:81:0;;15895:2:1;41657:81:0;;;15877:21:1;15934:2;15914:18;;;15907:30;15973:34;15953:18;;;15946:62;16044:7;16024:18;;;16017:35;16069:19;;41657:81:0;15693:401:1;41657:81:0;-1:-1:-1;;;;;41757:16:0;;41749:65;;;;-1:-1:-1;;;41749:65:0;;16301:2:1;41749:65:0;;;16283:21:1;16340:2;16320:18;;;16313:30;16379:34;16359:18;;;16352:62;16450:6;16430:18;;;16423:34;16474:19;;41749:65:0;16099:400:1;41749:65:0;41827:39;41848:4;41854:2;41858:7;41827:20;:39::i;:::-;41931:29;41948:1;41952:7;41931:8;:29::i;:::-;-1:-1:-1;;;;;41973:15:0;;;;;;:9;:15;;;;;:20;;41992:1;;41973:15;:20;;41992:1;;41973:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42004:13:0;;;;;;:9;:13;;;;;:18;;42021:1;;42004:13;:18;;42021:1;;42004:18;:::i;:::-;;;;-1:-1:-1;;42033:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;42033:21:0;-1:-1:-1;;;;;42033:21:0;;;;;;;;;42072:27;;42033:16;;42072:27;;;;;;;34469:341;34399:411;;:::o;6724:191::-;6817:6;;;-1:-1:-1;;;;;6834:17:0;;;-1:-1:-1;;6834:17:0;;;;;;;6867:40;;6817:6;;;6834:17;6817:6;;6867:40;;6798:16;;6867:40;6787:128;6724:191;:::o;2701:106::-;2759:7;2790:1;2786;:5;:13;;2798:1;2786:13;;;-1:-1:-1;2794:1:0;;2779:20;-1:-1:-1;2701:106:0:o;19232:248::-;19403:68;;;-1:-1:-1;;;;;16785:15:1;;;19403:68:0;;;16767:34:1;16837:15;;16817:18;;;16810:43;16869:18;;;;16862:34;;;19403:68:0;;;;;;;;;;16679:18:1;;;;19403:68:0;;;;;;;;;;19426:27;19403:68;;;19376:96;;19396:5;;19376:19;:96::i;39114:110::-;39190:26;39200:2;39204:7;39190:26;;;;;;;;;;;;:9;:26::i;42592:315::-;42747:8;-1:-1:-1;;;;;42738:17:0;:5;-1:-1:-1;;;;;42738:17:0;;42730:55;;;;-1:-1:-1;;;42730:55:0;;17109:2:1;42730:55:0;;;17091:21:1;17148:2;17128:18;;;17121:30;17187:27;17167:18;;;17160:55;17232:18;;42730:55:0;16907:349:1;42730:55:0;-1:-1:-1;;;;;42796:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42796:46:0;;;;;;;;;;42858:41;;586::1;;;42858::0;;559:18:1;42858:41:0;;;;;;;42592:315;;;:::o;37502:::-;37659:28;37669:4;37675:2;37679:7;37659:9;:28::i;:::-;37706:48;37729:4;37735:2;37739:7;37748:5;37706:22;:48::i;:::-;37698:111;;;;-1:-1:-1;;;37698:111:0;;17463:2:1;37698:111:0;;;17445:21:1;17502:2;17482:18;;;17475:30;17541:34;17521:18;;;17514:62;-1:-1:-1;;;17592:18:1;;;17585:48;17650:19;;37698:111:0;17261:414:1;433:723:0;489:13;710:5;719:1;710:10;706:53;;-1:-1:-1;;737:10:0;;;;;;;;;;;;;;;;;;433:723::o;706:53::-;784:5;769:12;825:78;832:9;;825:78;;858:8;;;;:::i;:::-;;-1:-1:-1;881:10:0;;-1:-1:-1;889:2:0;881:10;;:::i;:::-;;;825:78;;;913:19;945:6;935:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;935:17:0;;913:39;;963:154;970:10;;963:154;;997:11;1007:1;997:11;;:::i;:::-;;-1:-1:-1;1066:10:0;1074:2;1066:5;:10;:::i;:::-;1053:24;;:2;:24;:::i;:::-;1040:39;;1023:6;1030;1023:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1094:11:0;1103:2;1094:11;;:::i;:::-;;;963:154;;49255:589;-1:-1:-1;;;;;49461:18:0;;49457:187;;49496:40;49528:7;50671:10;:17;;50644:24;;;;:15;:24;;;;;:44;;;50699:24;;;;;;;;;;;;50567:164;49496:40;49457:187;;;49566:2;-1:-1:-1;;;;;49558:10:0;:4;-1:-1:-1;;;;;49558:10:0;;49554:90;;49585:47;49618:4;49624:7;49585:32;:47::i;:::-;-1:-1:-1;;;;;49658:16:0;;49654:183;;49691:45;49728:7;49691:36;:45::i;49654:183::-;49764:4;-1:-1:-1;;;;;49758:10:0;:2;-1:-1:-1;;;;;49758:10:0;;49754:83;;49785:40;49813:2;49817:7;49785:27;:40::i;21586:716::-;22010:23;22036:69;22064:4;22036:69;;;;;;;;;;;;;;;;;22044:5;-1:-1:-1;;;;;22036:27:0;;;:69;;;;;:::i;:::-;22120:17;;22010:95;;-1:-1:-1;22120:21:0;22116:179;;22217:10;22206:30;;;;;;;;;;;;:::i;:::-;22198:85;;;;-1:-1:-1;;;22198:85:0;;18563:2:1;22198:85:0;;;18545:21:1;18602:2;18582:18;;;18575:30;18641:34;18621:18;;;18614:62;18712:12;18692:18;;;18685:40;18742:19;;22198:85:0;18361:406:1;39451:321:0;39581:18;39587:2;39591:7;39581:5;:18::i;:::-;39632:54;39663:1;39667:2;39671:7;39680:5;39632:22;:54::i;:::-;39610:154;;;;-1:-1:-1;;;39610:154:0;;17463:2:1;39610:154:0;;;17445:21:1;17502:2;17482:18;;;17475:30;17541:34;17521:18;;;17514:62;-1:-1:-1;;;17592:18:1;;;17585:48;17650:19;;39610:154:0;17261:414:1;43472:799:0;43627:4;-1:-1:-1;;;;;43648:13:0;;11337:19;:23;43644:620;;43684:72;;-1:-1:-1;;;43684:72:0;;-1:-1:-1;;;;;43684:36:0;;;;;:72;;4256:10;;43735:4;;43741:7;;43750:5;;43684:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43684:72:0;;;;;;;;-1:-1:-1;;43684:72:0;;;;;;;;;;;;:::i;:::-;;;43680:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43926:6;:13;43943:1;43926:18;43922:272;;43969:60;;-1:-1:-1;;;43969:60:0;;17463:2:1;43969:60:0;;;17445:21:1;17502:2;17482:18;;;17475:30;17541:34;17521:18;;;17514:62;-1:-1:-1;;;17592:18:1;;;17585:48;17650:19;;43969:60:0;17261:414:1;43922:272:0;44144:6;44138:13;44129:6;44125:2;44121:15;44114:38;43680:529;-1:-1:-1;;;;;;43807:51:0;-1:-1:-1;;;43807:51:0;;-1:-1:-1;43800:58:0;;43644:620;-1:-1:-1;44248:4:0;43472:799;;;;;;:::o;51358:988::-;51624:22;51674:1;51649:22;51666:4;51649:16;:22::i;:::-;:26;;;;:::i;:::-;51686:18;51707:26;;;:17;:26;;;;;;51624:51;;-1:-1:-1;51840:28:0;;;51836:328;;-1:-1:-1;;;;;51907:18:0;;51885:19;51907:18;;;:12;:18;;;;;;;;:34;;;;;;;;;51958:30;;;;;;:44;;;52075:30;;:17;:30;;;;;:43;;;51836:328;-1:-1:-1;52260:26:0;;;;:17;:26;;;;;;;;52253:33;;;-1:-1:-1;;;;;52304:18:0;;;;;:12;:18;;;;;:34;;;;;;;52297:41;51358:988::o;52641:1079::-;52919:10;:17;52894:22;;52919:21;;52939:1;;52919:21;:::i;:::-;52951:18;52972:24;;;:15;:24;;;;;;53345:10;:26;;52894:46;;-1:-1:-1;52972:24:0;;52894:46;;53345:26;;;;;;:::i;:::-;;;;;;;;;53323:48;;53409:11;53384:10;53395;53384:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53489:28;;;:15;:28;;;;;;;:41;;;53661:24;;;;;53654:31;53696:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52712:1008;;;52641:1079;:::o;50145:221::-;50230:14;50247:20;50264:2;50247:16;:20::i;:::-;-1:-1:-1;;;;;50278:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50323:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50145:221:0:o;13789:229::-;13926:12;13958:52;13980:6;13988:4;13994:1;13997:12;13958:21;:52::i;40108:439::-;-1:-1:-1;;;;;40188:16:0;;40180:61;;;;-1:-1:-1;;;40180:61:0;;19934:2:1;40180:61:0;;;19916:21:1;;;19953:18;;;19946:30;20012:34;19992:18;;;19985:62;20064:18;;40180:61:0;19732:356:1;40180:61:0;38195:4;38219:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38219:16:0;:30;40252:58;;;;-1:-1:-1;;;40252:58:0;;20295:2:1;40252:58:0;;;20277:21:1;20334:2;20314:18;;;20307:30;20373;20353:18;;;20346:58;20421:18;;40252:58:0;20093:352:1;40252:58:0;40323:45;40352:1;40356:2;40360:7;40323:20;:45::i;:::-;-1:-1:-1;;;;;40381:13:0;;;;;;:9;:13;;;;;:18;;40398:1;;40381:13;:18;;40398:1;;40381:18;:::i;:::-;;;;-1:-1:-1;;40410:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;40410:21:0;-1:-1:-1;;;;;40410:21:0;;;;;;;;40449:33;;40410:16;;;40449:33;;40410:16;;40449:33;35169:155;;:::o;14909:512::-;15079:12;15137:5;15112:21;:30;;15104:81;;;;-1:-1:-1;;;15104:81:0;;20652:2:1;15104:81:0;;;20634:21:1;20691:2;20671:18;;;20664:30;20730:34;20710:18;;;20703:62;20801:8;20781:18;;;20774:36;20827:19;;15104:81:0;20450:402:1;15104:81:0;-1:-1:-1;;;;;11337:19:0;;;15196:60;;;;-1:-1:-1;;;15196:60:0;;21059:2:1;15196:60:0;;;21041:21:1;21098:2;21078:18;;;21071:30;21137:31;21117:18;;;21110:59;21186:18;;15196:60:0;20857:353:1;15196:60:0;15270:12;15284:23;15311:6;-1:-1:-1;;;;;15311:11:0;15331:5;15339:4;15311:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15269:75;;;;15362:51;15379:7;15388:10;15400:12;15362:16;:51::i;:::-;15355:58;14909:512;-1:-1:-1;;;;;;;14909:512:0:o;17597:712::-;17747:12;17776:7;17772:530;;;-1:-1:-1;17807:10:0;17800:17;;17772:530;17921:17;;:21;17917:374;;18119:10;18113:17;18180:15;18167:10;18163:2;18159:19;18152:44;17917:374;18262:12;18255:20;;-1:-1:-1;;;18255:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2447:328::-;2524:6;2532;2540;2593:2;2581:9;2572:7;2568:23;2564:32;2561:52;;;2609:1;2606;2599:12;2561:52;2632:29;2651:9;2632:29;:::i;:::-;2622:39;;2680:38;2714:2;2703:9;2699:18;2680:38;:::i;:::-;2670:48;;2765:2;2754:9;2750:18;2737:32;2727:42;;2447:328;;;;;:::o;2780:186::-;2839:6;2892:2;2880:9;2871:7;2867:23;2863:32;2860:52;;;2908:1;2905;2898:12;2860:52;2931:29;2950:9;2931:29;:::i;2971:184::-;-1:-1:-1;;;3020:1:1;3013:88;3120:4;3117:1;3110:15;3144:4;3141:1;3134:15;3160:632;3225:5;3255:18;3296:2;3288:6;3285:14;3282:40;;;3302:18;;:::i;:::-;3377:2;3371:9;3345:2;3431:15;;-1:-1:-1;;3427:24:1;;;3453:2;3423:33;3419:42;3407:55;;;3477:18;;;3497:22;;;3474:46;3471:72;;;3523:18;;:::i;:::-;3563:10;3559:2;3552:22;3592:6;3583:15;;3622:6;3614;3607:22;3662:3;3653:6;3648:3;3644:16;3641:25;3638:45;;;3679:1;3676;3669:12;3638:45;3729:6;3724:3;3717:4;3709:6;3705:17;3692:44;3784:1;3777:4;3768:6;3760;3756:19;3752:30;3745:41;;;;3160:632;;;;;:::o;3797:451::-;3866:6;3919:2;3907:9;3898:7;3894:23;3890:32;3887:52;;;3935:1;3932;3925:12;3887:52;3975:9;3962:23;4008:18;4000:6;3997:30;3994:50;;;4040:1;4037;4030:12;3994:50;4063:22;;4116:4;4108:13;;4104:27;-1:-1:-1;4094:55:1;;4145:1;4142;4135:12;4094:55;4168:74;4234:7;4229:2;4216:16;4211:2;4207;4203:11;4168:74;:::i;4253:118::-;4339:5;4332:13;4325:21;4318:5;4315:32;4305:60;;4361:1;4358;4351:12;4376:315;4441:6;4449;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4541:29;4560:9;4541:29;:::i;:::-;4531:39;;4620:2;4609:9;4605:18;4592:32;4633:28;4655:5;4633:28;:::i;:::-;4680:5;4670:15;;;4376:315;;;;;:::o;4696:667::-;4791:6;4799;4807;4815;4868:3;4856:9;4847:7;4843:23;4839:33;4836:53;;;4885:1;4882;4875:12;4836:53;4908:29;4927:9;4908:29;:::i;:::-;4898:39;;4956:38;4990:2;4979:9;4975:18;4956:38;:::i;:::-;4946:48;;5041:2;5030:9;5026:18;5013:32;5003:42;;5096:2;5085:9;5081:18;5068:32;5123:18;5115:6;5112:30;5109:50;;;5155:1;5152;5145:12;5109:50;5178:22;;5231:4;5223:13;;5219:27;-1:-1:-1;5209:55:1;;5260:1;5257;5250:12;5209:55;5283:74;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5283:74;:::i;:::-;5273:84;;;4696:667;;;;;;;:::o;5368:754::-;5656:4;-1:-1:-1;;;;;5766:2:1;5758:6;5754:15;5743:9;5736:34;5818:2;5810:6;5806:15;5801:2;5790:9;5786:18;5779:43;;5858:6;5853:2;5842:9;5838:18;5831:34;5901:6;5896:2;5885:9;5881:18;5874:34;5945:6;5939:3;5928:9;5924:19;5917:35;5989:3;5983;5972:9;5968:19;5961:32;6010:46;6051:3;6040:9;6036:19;6028:6;6010:46;:::i;:::-;6002:54;;6107:6;6100:14;6093:22;6087:3;6076:9;6072:19;6065:51;5368:754;;;;;;;;;;:::o;6127:260::-;6195:6;6203;6256:2;6244:9;6235:7;6231:23;6227:32;6224:52;;;6272:1;6269;6262:12;6224:52;6295:29;6314:9;6295:29;:::i;:::-;6285:39;;6343:38;6377:2;6366:9;6362:18;6343:38;:::i;:::-;6333:48;;6127:260;;;;;:::o;6392:437::-;6471:1;6467:12;;;;6514;;;6535:61;;6589:4;6581:6;6577:17;6567:27;;6535:61;6642:2;6634:6;6631:14;6611:18;6608:38;6605:218;;-1:-1:-1;;;6676:1:1;6669:88;6780:4;6777:1;6770:15;6808:4;6805:1;6798:15;6605:218;;6392:437;;;:::o;9317:184::-;-1:-1:-1;;;9366:1:1;9359:88;9466:4;9463:1;9456:15;9490:4;9487:1;9480:15;11744:184;-1:-1:-1;;;11793:1:1;11786:88;11893:4;11890:1;11883:15;11917:4;11914:1;11907:15;11933:125;11973:4;12001:1;11998;11995:8;11992:34;;;12006:18;;:::i;:::-;-1:-1:-1;12043:9:1;;11933:125::o;13447:168::-;13487:7;13553:1;13549;13545:6;13541:14;13538:1;13535:21;13530:1;13523:9;13516:17;13512:45;13509:71;;;13560:18;;:::i;:::-;-1:-1:-1;13600:9:1;;13447:168::o;13620:128::-;13660:3;13691:1;13687:6;13684:1;13681:13;13678:39;;;13697:18;;:::i;:::-;-1:-1:-1;13733:9:1;;13620:128::o;13753:135::-;13792:3;13813:17;;;13810:43;;13833:18;;:::i;:::-;-1:-1:-1;13880:1:1;13869:13;;13753:135::o;14242:626::-;14511:3;14549:6;14543:13;14565:53;14611:6;14606:3;14599:4;14591:6;14587:17;14565:53;:::i;:::-;14681:13;;14640:16;;;;14703:57;14681:13;14640:16;14737:4;14725:17;;14703:57;:::i;:::-;14825:7;14782:20;;14811:22;;;14860:1;14849:13;;14242:626;-1:-1:-1;;;;14242:626:1:o;17680:184::-;-1:-1:-1;;;17729:1:1;17722:88;17829:4;17826:1;17819:15;17853:4;17850:1;17843:15;17869:120;17909:1;17935;17925:35;;17940:18;;:::i;:::-;-1:-1:-1;17974:9:1;;17869:120::o;17994:112::-;18026:1;18052;18042:35;;18057:18;;:::i;:::-;-1:-1:-1;18091:9:1;;17994:112::o;18111:245::-;18178:6;18231:2;18219:9;18210:7;18206:23;18202:32;18199:52;;;18247:1;18244;18237:12;18199:52;18279:9;18273:16;18298:28;18320:5;18298:28;:::i;18772:512::-;18966:4;-1:-1:-1;;;;;19076:2:1;19068:6;19064:15;19053:9;19046:34;19128:2;19120:6;19116:15;19111:2;19100:9;19096:18;19089:43;;19168:6;19163:2;19152:9;19148:18;19141:34;19211:3;19206:2;19195:9;19191:18;19184:31;19232:46;19273:3;19262:9;19258:19;19250:6;19232:46;:::i;:::-;19224:54;18772:512;-1:-1:-1;;;;;;18772:512:1:o;19289:249::-;19358:6;19411:2;19399:9;19390:7;19386:23;19382:32;19379:52;;;19427:1;19424;19417:12;19379:52;19459:9;19453:16;19478:30;19502:5;19478:30;:::i;19543:184::-;-1:-1:-1;;;19592:1:1;19585:88;19692:4;19689:1;19682:15;19716:4;19713:1;19706:15;21215:274;21344:3;21382:6;21376:13;21398:53;21444:6;21439:3;21432:4;21424:6;21420:17;21398:53;:::i;:::-;21467:16;;;;;21215:274;-1:-1:-1;;21215:274:1:o

Swarm Source

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