ETH Price: $3,676.82 (+0.14%)
 

Overview

Max Total Supply

210 PNP

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PNP
0x1fc0fac7ecff51122d69864fb5e3a5d317e07269
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:
PNightmareP

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/PNightmareP.sol



pragma solidity ^0.8.7;











contract PNightmareP is ERC721A, Ownable {
    using Strings for uint256;
    
    uint public maxSupply = 1010;
    uint public mintPrice = 0.00666 ether;
    uint public maxMintPerTx = 6;
    uint public maxFreeMintPerWallet = 1;
    bool public salesStarted = false;
    bool public reveal =false;

    mapping(address => uint) private _accountToFreeMint;
    string private uriPrefix;
    string private uriSuffix = ".json";
    string public hiddenURL;

    constructor() ERC721A("Pumpkins Nightmare Party", "PNP") {
    }

    function mint(uint amount) external payable {
        require(totalSupply() < maxSupply, "sold out");
        require(salesStarted, "sales is not active");
        require(amount > 0, "invalid amount");
        require(amount <= maxMintPerTx, "max tokens per tx reached");
        require(msg.value >= amount * mintPrice, "invalid mint price");
        require(amount + totalSupply() <= maxSupply, "amount exceeds max supply");

        _safeMint(msg.sender, amount);
    }

    function freeMint(uint amount) external {
        require(totalSupply() < maxSupply, "sold out");
        require(salesStarted, "sales is not active");
        require(amount > 0, "invalid amount");
        require(amount <= maxMintPerTx, "max tokens per tx reached");
        require(amount + _accountToFreeMint[msg.sender] <= maxFreeMintPerWallet, "amount exceeds max free mint per wallet");

        _accountToFreeMint[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function batchMint(address[] calldata addresses, uint[] calldata amounts) external onlyOwner {
        require(addresses.length == amounts.length, "addresses and amounts doesn't match");

        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], amounts[i]);
        }
    }

    function startSales() external onlyOwner {
        salesStarted = true;
    }

    function stopSales() external onlyOwner {
        salesStarted = false;
    }

    function setMaxSupply(uint v) external onlyOwner {
        maxSupply = v;
    }

    function setMintPrice(uint v) external onlyOwner {
        mintPrice = v;
    }

    function setMaxFreeMintPerWallet(uint v) external onlyOwner {
        maxFreeMintPerWallet = v;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
    
        if ( reveal == false)
    {
        return hiddenURL;
    }
    
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
    }

    function setUriPrefix(string memory _uriPrefix) external onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setHiddenUri(string memory _uriPrefix) external onlyOwner {
        hiddenURL = _uriPrefix;
    }

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

    function setRevealed() external onlyOwner{
        reveal = !reveal;
    }
 
    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","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":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"salesStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103f26009556617a93c16344000600a556006600b556001600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060109080519060200190620000a292919062000260565b50348015620000b057600080fd5b506040518060400160405280601881526020017f50756d706b696e73204e696768746d61726520506172747900000000000000008152506040518060400160405280600381526020017f504e50000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013592919062000260565b5080600390805190602001906200014e92919062000260565b506200015f6200018d60201b60201c565b6000819055505050620001876200017b6200019260201b60201c565b6200019a60201b60201c565b62000375565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135de80620003856000396000f3fe60806040526004361061020f5760003560e01c80637ec4a65911610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146106e8578063eef440af14610725578063f2fde38b14610750578063f4a0a52814610779578063f77b1edd146107a25761020f565b8063b88d4fde14610639578063c87b56dd14610655578063d5abeb0114610692578063de7fcb1d146106bd5761020f565b806395d89b41116100e757806395d89b4114610573578063a0712d681461059e578063a22cb465146105ba578063a475b5dd146105e3578063b75ecf131461060e5761020f565b80637ec4a659146104dd578063845bb3bb14610506578063853828b6146105315780638da5cb5b146105485761020f565b806342842e0e1161019b578063685731071161016a578063685731071461040e5780636f8b44b01461043757806370a0823114610460578063715018a61461049d5780637c928fe9146104b45761020f565b806342842e0e1461037357806356cba0081461038f5780636352211e146103a65780636817c76c146103e35761020f565b80630a3c3295116101e25780630a3c3295146102d55780631067fcc7146102ec57806318160ddd1461031557806323b872dd146103405780633bd649681461035c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612860565b6107cb565b6040516102489190612c98565b60405180910390f35b34801561025d57600080fd5b5061026661085d565b6040516102739190612cb3565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612903565b6108ef565b6040516102b09190612c31565b60405180910390f35b6102d360048036038101906102ce919061279f565b61096e565b005b3480156102e157600080fd5b506102ea610ab2565b005b3480156102f857600080fd5b50610313600480360381019061030e91906128ba565b610ad7565b005b34801561032157600080fd5b5061032a610af9565b6040516103379190612e35565b60405180910390f35b61035a60048036038101906103559190612689565b610b10565b005b34801561036857600080fd5b50610371610e35565b005b61038d60048036038101906103889190612689565b610e69565b005b34801561039b57600080fd5b506103a4610e89565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612903565b610eae565b6040516103da9190612c31565b60405180910390f35b3480156103ef57600080fd5b506103f8610ec0565b6040516104059190612e35565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906127df565b610ec6565b005b34801561044357600080fd5b5061045e60048036038101906104599190612903565b610f88565b005b34801561046c57600080fd5b506104876004803603810190610482919061261c565b610f9a565b6040516104949190612e35565b60405180910390f35b3480156104a957600080fd5b506104b2611053565b005b3480156104c057600080fd5b506104db60048036038101906104d69190612903565b611067565b005b3480156104e957600080fd5b5061050460048036038101906104ff91906128ba565b61127b565b005b34801561051257600080fd5b5061051b61129d565b6040516105289190612e35565b60405180910390f35b34801561053d57600080fd5b506105466112a3565b005b34801561055457600080fd5b5061055d6112eb565b60405161056a9190612c31565b60405180910390f35b34801561057f57600080fd5b50610588611315565b6040516105959190612cb3565b60405180910390f35b6105b860048036038101906105b39190612903565b6113a7565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061275f565b61157d565b005b3480156105ef57600080fd5b506105f8611688565b6040516106059190612c98565b60405180910390f35b34801561061a57600080fd5b5061062361169b565b6040516106309190612c98565b60405180910390f35b610653600480360381019061064e91906126dc565b6116ae565b005b34801561066157600080fd5b5061067c60048036038101906106779190612903565b611721565b6040516106899190612cb3565b60405180910390f35b34801561069e57600080fd5b506106a761187a565b6040516106b49190612e35565b60405180910390f35b3480156106c957600080fd5b506106d2611880565b6040516106df9190612e35565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190612649565b611886565b60405161071c9190612c98565b60405180910390f35b34801561073157600080fd5b5061073a61191a565b6040516107479190612cb3565b60405180910390f35b34801561075c57600080fd5b506107776004803603810190610772919061261c565b6119a8565b005b34801561078557600080fd5b506107a0600480360381019061079b9190612903565b611a2c565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612903565b611a3e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086c906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610898906130fa565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fa82611a50565b610930576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610eae565b90508073ffffffffffffffffffffffffffffffffffffffff1661099a611aaf565b73ffffffffffffffffffffffffffffffffffffffff16146109fd576109c6816109c1611aaf565b611886565b6109fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aba611ab7565b6001600d60006101000a81548160ff021916908315150217905550565b610adf611ab7565b8060119080519060200190610af5929190612384565b5050565b6000610b03611b35565b6001546000540303905090565b6000610b1b82611b3a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8e84611c08565b91509150610ba48187610b9f611aaf565b611c2f565b610bf057610bb986610bb4611aaf565b611886565b610bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c648686866001611c73565b8015610c6f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3d85610d19888887611c79565b7c020000000000000000000000000000000000000000000000000000000017611ca1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc5576000600185019050600060046000838152602001908152602001600020541415610dc3576000548114610dc2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2d8686866001611ccc565b505050505050565b610e3d611ab7565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e84838383604051806020016040528060008152506116ae565b505050565b610e91611ab7565b6000600d60006101000a81548160ff021916908315150217905550565b6000610eb982611b3a565b9050919050565b600a5481565b610ece611ab7565b818190508484905014610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612d75565b60405180910390fd5b60005b84849050811015610f8157610f6e858583818110610f3a57610f39613264565b5b9050602002016020810190610f4f919061261c565b848484818110610f6257610f61613264565b5b90506020020135611cd2565b8080610f799061315d565b915050610f19565b5050505050565b610f90611ab7565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61105b611ab7565b6110656000611cf0565b565b600954611072610af9565b106110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612d15565b60405180910390fd5b600d60009054906101000a900460ff16611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612dd5565b60405180910390fd5b60008111611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90612cf5565b60405180910390fd5b600b54811115611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612df5565b60405180910390fd5b600c54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111d79190612f2f565b1115611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90612e15565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112679190612f2f565b925050819055506112783382611cd2565b50565b611283611ab7565b80600f9080519060200190611299929190612384565b5050565b600c5481565b6112ab611ab7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112e957600080fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611324906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611350906130fa565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050905090565b6009546113b2610af9565b106113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612d15565b60405180910390fd5b600d60009054906101000a900460ff16611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890612dd5565b60405180910390fd5b60008111611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90612cf5565b60405180910390fd5b600b548111156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612df5565b60405180910390fd5b600a54816114d79190612fb6565b341015611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090612d55565b60405180910390fd5b600954611524610af9565b8261152f9190612f2f565b1115611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612d35565b60405180910390fd5b61157a3382611cd2565b50565b806007600061158a611aaf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611637611aaf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167c9190612c98565b60405180910390a35050565b600d60019054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b6116b9848484610b10565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461171b576116e484848484611db6565b61171a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172c82611a50565b61176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290612db5565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514156118195760118054611794906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546117c0906130fa565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b50505050509050611875565b6000611823611f16565b905060008151116118435760405180602001604052806000815250611871565b8061184d84611fa8565b601060405160200161186193929190612c00565b6040516020818303038152906040525b9150505b919050565b60095481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60118054611927906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611953906130fa565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b505050505081565b6119b0611ab7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790612cd5565b60405180910390fd5b611a2981611cf0565b50565b611a34611ab7565b80600a8190555050565b611a46611ab7565b80600c8190555050565b600081611a5b611b35565b11158015611a6a575060005482105b8015611aa8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611abf612109565b73ffffffffffffffffffffffffffffffffffffffff16611add6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612d95565b60405180910390fd5b565b600090565b60008082905080611b49611b35565b11611bd157600054811015611bd05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bce575b6000811415611bc4576004600083600190039350838152602001908152602001600020549050611b99565b8092505050611c03565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c90868684612111565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611cec82826040518060200160405280600081525061211a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ddc611aaf565b8786866040518563ffffffff1660e01b8152600401611dfe9493929190612c4c565b602060405180830381600087803b158015611e1857600080fd5b505af1925050508015611e4957506040513d601f19601f82011682018060405250810190611e46919061288d565b60015b611ec3573d8060008114611e79576040519150601f19603f3d011682016040523d82523d6000602084013e611e7e565b606091505b50600081511415611ebb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f25906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611f51906130fa565b8015611f9e5780601f10611f7357610100808354040283529160200191611f9e565b820191906000526020600020905b815481529060010190602001808311611f8157829003601f168201915b5050505050905090565b60606000821415611ff0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612104565b600082905060005b6000821461202257808061200b9061315d565b915050600a8261201b9190612f85565b9150611ff8565b60008167ffffffffffffffff81111561203e5761203d613293565b5b6040519080825280601f01601f1916602001820160405280156120705781602001600182028036833780820191505090505b5090505b600085146120fd576001826120899190613010565b9150600a8561209891906131a6565b60306120a49190612f2f565b60f81b8183815181106120ba576120b9613264565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f69190612f85565b9450612074565b8093505050505b919050565b600033905090565b60009392505050565b61212483836121b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b257600080549050600083820390505b6121646000868380600101945086611db6565b61219a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121515781600054146121af57600080fd5b50505b505050565b60008054905060008214156121f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122056000848385611c73565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227c8361226d6000866000611c79565b61227685612374565b17611ca1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e2565b506000821415612359576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061236f6000848385611ccc565b505050565b60006001821460e11b9050919050565b828054612390906130fa565b90600052602060002090601f0160209004810192826123b257600085556123f9565b82601f106123cb57805160ff19168380011785556123f9565b828001600101855582156123f9579182015b828111156123f85782518255916020019190600101906123dd565b5b509050612406919061240a565b5090565b5b8082111561242357600081600090555060010161240b565b5090565b600061243a61243584612e75565b612e50565b905082815260208101848484011115612456576124556132d1565b5b6124618482856130b8565b509392505050565b600061247c61247784612ea6565b612e50565b905082815260208101848484011115612498576124976132d1565b5b6124a38482856130b8565b509392505050565b6000813590506124ba8161354c565b92915050565b60008083601f8401126124d6576124d56132c7565b5b8235905067ffffffffffffffff8111156124f3576124f26132c2565b5b60208301915083602082028301111561250f5761250e6132cc565b5b9250929050565b60008083601f84011261252c5761252b6132c7565b5b8235905067ffffffffffffffff811115612549576125486132c2565b5b602083019150836020820283011115612565576125646132cc565b5b9250929050565b60008135905061257b81613563565b92915050565b6000813590506125908161357a565b92915050565b6000815190506125a58161357a565b92915050565b600082601f8301126125c0576125bf6132c7565b5b81356125d0848260208601612427565b91505092915050565b600082601f8301126125ee576125ed6132c7565b5b81356125fe848260208601612469565b91505092915050565b60008135905061261681613591565b92915050565b600060208284031215612632576126316132db565b5b6000612640848285016124ab565b91505092915050565b600080604083850312156126605761265f6132db565b5b600061266e858286016124ab565b925050602061267f858286016124ab565b9150509250929050565b6000806000606084860312156126a2576126a16132db565b5b60006126b0868287016124ab565b93505060206126c1868287016124ab565b92505060406126d286828701612607565b9150509250925092565b600080600080608085870312156126f6576126f56132db565b5b6000612704878288016124ab565b9450506020612715878288016124ab565b935050604061272687828801612607565b925050606085013567ffffffffffffffff811115612747576127466132d6565b5b612753878288016125ab565b91505092959194509250565b60008060408385031215612776576127756132db565b5b6000612784858286016124ab565b92505060206127958582860161256c565b9150509250929050565b600080604083850312156127b6576127b56132db565b5b60006127c4858286016124ab565b92505060206127d585828601612607565b9150509250929050565b600080600080604085870312156127f9576127f86132db565b5b600085013567ffffffffffffffff811115612817576128166132d6565b5b612823878288016124c0565b9450945050602085013567ffffffffffffffff811115612846576128456132d6565b5b61285287828801612516565b925092505092959194509250565b600060208284031215612876576128756132db565b5b600061288484828501612581565b91505092915050565b6000602082840312156128a3576128a26132db565b5b60006128b184828501612596565b91505092915050565b6000602082840312156128d0576128cf6132db565b5b600082013567ffffffffffffffff8111156128ee576128ed6132d6565b5b6128fa848285016125d9565b91505092915050565b600060208284031215612919576129186132db565b5b600061292784828501612607565b91505092915050565b61293981613044565b82525050565b61294881613056565b82525050565b600061295982612eec565b6129638185612f02565b93506129738185602086016130c7565b61297c816132e0565b840191505092915050565b600061299282612ef7565b61299c8185612f13565b93506129ac8185602086016130c7565b6129b5816132e0565b840191505092915050565b60006129cb82612ef7565b6129d58185612f24565b93506129e58185602086016130c7565b80840191505092915050565b600081546129fe816130fa565b612a088186612f24565b94506001821660008114612a235760018114612a3457612a67565b60ff19831686528186019350612a67565b612a3d85612ed7565b60005b83811015612a5f57815481890152600182019150602081019050612a40565b838801955050505b50505092915050565b6000612a7d602683612f13565b9150612a88826132f1565b604082019050919050565b6000612aa0600e83612f13565b9150612aab82613340565b602082019050919050565b6000612ac3600883612f13565b9150612ace82613369565b602082019050919050565b6000612ae6601983612f13565b9150612af182613392565b602082019050919050565b6000612b09601283612f13565b9150612b14826133bb565b602082019050919050565b6000612b2c602383612f13565b9150612b37826133e4565b604082019050919050565b6000612b4f602083612f13565b9150612b5a82613433565b602082019050919050565b6000612b72602f83612f13565b9150612b7d8261345c565b604082019050919050565b6000612b95601383612f13565b9150612ba0826134ab565b602082019050919050565b6000612bb8601983612f13565b9150612bc3826134d4565b602082019050919050565b6000612bdb602783612f13565b9150612be6826134fd565b604082019050919050565b612bfa816130ae565b82525050565b6000612c0c82866129c0565b9150612c1882856129c0565b9150612c2482846129f1565b9150819050949350505050565b6000602082019050612c466000830184612930565b92915050565b6000608082019050612c616000830187612930565b612c6e6020830186612930565b612c7b6040830185612bf1565b8181036060830152612c8d818461294e565b905095945050505050565b6000602082019050612cad600083018461293f565b92915050565b60006020820190508181036000830152612ccd8184612987565b905092915050565b60006020820190508181036000830152612cee81612a70565b9050919050565b60006020820190508181036000830152612d0e81612a93565b9050919050565b60006020820190508181036000830152612d2e81612ab6565b9050919050565b60006020820190508181036000830152612d4e81612ad9565b9050919050565b60006020820190508181036000830152612d6e81612afc565b9050919050565b60006020820190508181036000830152612d8e81612b1f565b9050919050565b60006020820190508181036000830152612dae81612b42565b9050919050565b60006020820190508181036000830152612dce81612b65565b9050919050565b60006020820190508181036000830152612dee81612b88565b9050919050565b60006020820190508181036000830152612e0e81612bab565b9050919050565b60006020820190508181036000830152612e2e81612bce565b9050919050565b6000602082019050612e4a6000830184612bf1565b92915050565b6000612e5a612e6b565b9050612e66828261312c565b919050565b6000604051905090565b600067ffffffffffffffff821115612e9057612e8f613293565b5b612e99826132e0565b9050602081019050919050565b600067ffffffffffffffff821115612ec157612ec0613293565b5b612eca826132e0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f3a826130ae565b9150612f45836130ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7a57612f796131d7565b5b828201905092915050565b6000612f90826130ae565b9150612f9b836130ae565b925082612fab57612faa613206565b5b828204905092915050565b6000612fc1826130ae565b9150612fcc836130ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613005576130046131d7565b5b828202905092915050565b600061301b826130ae565b9150613026836130ae565b925082821015613039576130386131d7565b5b828203905092915050565b600061304f8261308e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130e55780820151818401526020810190506130ca565b838111156130f4576000848401525b50505050565b6000600282049050600182168061311257607f821691505b6020821081141561312657613125613235565b5b50919050565b613135826132e0565b810181811067ffffffffffffffff8211171561315457613153613293565b5b80604052505050565b6000613168826130ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561319b5761319a6131d7565b5b600182019050919050565b60006131b1826130ae565b91506131bc836130ae565b9250826131cc576131cb613206565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f616d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b7f696e76616c6964206d696e742070726963650000000000000000000000000000600082015250565b7f61646472657373657320616e6420616d6f756e747320646f65736e2774206d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742061637469766500000000000000000000000000600082015250565b7f6d617820746f6b656e7320706572207478207265616368656400000000000000600082015250565b7f616d6f756e742065786365656473206d61782066726565206d696e742070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b61355581613044565b811461356057600080fd5b50565b61356c81613056565b811461357757600080fd5b50565b61358381613062565b811461358e57600080fd5b50565b61359a816130ae565b81146135a557600080fd5b5056fea2646970667358221220f9ca659b98cf0706cb0a8176885b75ddf772e5c4008a68e2b1c6721999dc7f6364736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637ec4a65911610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146106e8578063eef440af14610725578063f2fde38b14610750578063f4a0a52814610779578063f77b1edd146107a25761020f565b8063b88d4fde14610639578063c87b56dd14610655578063d5abeb0114610692578063de7fcb1d146106bd5761020f565b806395d89b41116100e757806395d89b4114610573578063a0712d681461059e578063a22cb465146105ba578063a475b5dd146105e3578063b75ecf131461060e5761020f565b80637ec4a659146104dd578063845bb3bb14610506578063853828b6146105315780638da5cb5b146105485761020f565b806342842e0e1161019b578063685731071161016a578063685731071461040e5780636f8b44b01461043757806370a0823114610460578063715018a61461049d5780637c928fe9146104b45761020f565b806342842e0e1461037357806356cba0081461038f5780636352211e146103a65780636817c76c146103e35761020f565b80630a3c3295116101e25780630a3c3295146102d55780631067fcc7146102ec57806318160ddd1461031557806323b872dd146103405780633bd649681461035c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612860565b6107cb565b6040516102489190612c98565b60405180910390f35b34801561025d57600080fd5b5061026661085d565b6040516102739190612cb3565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612903565b6108ef565b6040516102b09190612c31565b60405180910390f35b6102d360048036038101906102ce919061279f565b61096e565b005b3480156102e157600080fd5b506102ea610ab2565b005b3480156102f857600080fd5b50610313600480360381019061030e91906128ba565b610ad7565b005b34801561032157600080fd5b5061032a610af9565b6040516103379190612e35565b60405180910390f35b61035a60048036038101906103559190612689565b610b10565b005b34801561036857600080fd5b50610371610e35565b005b61038d60048036038101906103889190612689565b610e69565b005b34801561039b57600080fd5b506103a4610e89565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612903565b610eae565b6040516103da9190612c31565b60405180910390f35b3480156103ef57600080fd5b506103f8610ec0565b6040516104059190612e35565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906127df565b610ec6565b005b34801561044357600080fd5b5061045e60048036038101906104599190612903565b610f88565b005b34801561046c57600080fd5b506104876004803603810190610482919061261c565b610f9a565b6040516104949190612e35565b60405180910390f35b3480156104a957600080fd5b506104b2611053565b005b3480156104c057600080fd5b506104db60048036038101906104d69190612903565b611067565b005b3480156104e957600080fd5b5061050460048036038101906104ff91906128ba565b61127b565b005b34801561051257600080fd5b5061051b61129d565b6040516105289190612e35565b60405180910390f35b34801561053d57600080fd5b506105466112a3565b005b34801561055457600080fd5b5061055d6112eb565b60405161056a9190612c31565b60405180910390f35b34801561057f57600080fd5b50610588611315565b6040516105959190612cb3565b60405180910390f35b6105b860048036038101906105b39190612903565b6113a7565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061275f565b61157d565b005b3480156105ef57600080fd5b506105f8611688565b6040516106059190612c98565b60405180910390f35b34801561061a57600080fd5b5061062361169b565b6040516106309190612c98565b60405180910390f35b610653600480360381019061064e91906126dc565b6116ae565b005b34801561066157600080fd5b5061067c60048036038101906106779190612903565b611721565b6040516106899190612cb3565b60405180910390f35b34801561069e57600080fd5b506106a761187a565b6040516106b49190612e35565b60405180910390f35b3480156106c957600080fd5b506106d2611880565b6040516106df9190612e35565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190612649565b611886565b60405161071c9190612c98565b60405180910390f35b34801561073157600080fd5b5061073a61191a565b6040516107479190612cb3565b60405180910390f35b34801561075c57600080fd5b506107776004803603810190610772919061261c565b6119a8565b005b34801561078557600080fd5b506107a0600480360381019061079b9190612903565b611a2c565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612903565b611a3e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086c906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610898906130fa565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fa82611a50565b610930576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610eae565b90508073ffffffffffffffffffffffffffffffffffffffff1661099a611aaf565b73ffffffffffffffffffffffffffffffffffffffff16146109fd576109c6816109c1611aaf565b611886565b6109fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aba611ab7565b6001600d60006101000a81548160ff021916908315150217905550565b610adf611ab7565b8060119080519060200190610af5929190612384565b5050565b6000610b03611b35565b6001546000540303905090565b6000610b1b82611b3a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8e84611c08565b91509150610ba48187610b9f611aaf565b611c2f565b610bf057610bb986610bb4611aaf565b611886565b610bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c648686866001611c73565b8015610c6f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3d85610d19888887611c79565b7c020000000000000000000000000000000000000000000000000000000017611ca1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc5576000600185019050600060046000838152602001908152602001600020541415610dc3576000548114610dc2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2d8686866001611ccc565b505050505050565b610e3d611ab7565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610e84838383604051806020016040528060008152506116ae565b505050565b610e91611ab7565b6000600d60006101000a81548160ff021916908315150217905550565b6000610eb982611b3a565b9050919050565b600a5481565b610ece611ab7565b818190508484905014610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612d75565b60405180910390fd5b60005b84849050811015610f8157610f6e858583818110610f3a57610f39613264565b5b9050602002016020810190610f4f919061261c565b848484818110610f6257610f61613264565b5b90506020020135611cd2565b8080610f799061315d565b915050610f19565b5050505050565b610f90611ab7565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61105b611ab7565b6110656000611cf0565b565b600954611072610af9565b106110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612d15565b60405180910390fd5b600d60009054906101000a900460ff16611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612dd5565b60405180910390fd5b60008111611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90612cf5565b60405180910390fd5b600b54811115611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612df5565b60405180910390fd5b600c54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111d79190612f2f565b1115611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90612e15565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112679190612f2f565b925050819055506112783382611cd2565b50565b611283611ab7565b80600f9080519060200190611299929190612384565b5050565b600c5481565b6112ab611ab7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112e957600080fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611324906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611350906130fa565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050905090565b6009546113b2610af9565b106113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612d15565b60405180910390fd5b600d60009054906101000a900460ff16611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890612dd5565b60405180910390fd5b60008111611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90612cf5565b60405180910390fd5b600b548111156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612df5565b60405180910390fd5b600a54816114d79190612fb6565b341015611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090612d55565b60405180910390fd5b600954611524610af9565b8261152f9190612f2f565b1115611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612d35565b60405180910390fd5b61157a3382611cd2565b50565b806007600061158a611aaf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611637611aaf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167c9190612c98565b60405180910390a35050565b600d60019054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b6116b9848484610b10565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461171b576116e484848484611db6565b61171a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172c82611a50565b61176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290612db5565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514156118195760118054611794906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546117c0906130fa565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b50505050509050611875565b6000611823611f16565b905060008151116118435760405180602001604052806000815250611871565b8061184d84611fa8565b601060405160200161186193929190612c00565b6040516020818303038152906040525b9150505b919050565b60095481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60118054611927906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611953906130fa565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b505050505081565b6119b0611ab7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790612cd5565b60405180910390fd5b611a2981611cf0565b50565b611a34611ab7565b80600a8190555050565b611a46611ab7565b80600c8190555050565b600081611a5b611b35565b11158015611a6a575060005482105b8015611aa8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611abf612109565b73ffffffffffffffffffffffffffffffffffffffff16611add6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612d95565b60405180910390fd5b565b600090565b60008082905080611b49611b35565b11611bd157600054811015611bd05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bce575b6000811415611bc4576004600083600190039350838152602001908152602001600020549050611b99565b8092505050611c03565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c90868684612111565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611cec82826040518060200160405280600081525061211a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ddc611aaf565b8786866040518563ffffffff1660e01b8152600401611dfe9493929190612c4c565b602060405180830381600087803b158015611e1857600080fd5b505af1925050508015611e4957506040513d601f19601f82011682018060405250810190611e46919061288d565b60015b611ec3573d8060008114611e79576040519150601f19603f3d011682016040523d82523d6000602084013e611e7e565b606091505b50600081511415611ebb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f25906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611f51906130fa565b8015611f9e5780601f10611f7357610100808354040283529160200191611f9e565b820191906000526020600020905b815481529060010190602001808311611f8157829003601f168201915b5050505050905090565b60606000821415611ff0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612104565b600082905060005b6000821461202257808061200b9061315d565b915050600a8261201b9190612f85565b9150611ff8565b60008167ffffffffffffffff81111561203e5761203d613293565b5b6040519080825280601f01601f1916602001820160405280156120705781602001600182028036833780820191505090505b5090505b600085146120fd576001826120899190613010565b9150600a8561209891906131a6565b60306120a49190612f2f565b60f81b8183815181106120ba576120b9613264565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f69190612f85565b9450612074565b8093505050505b919050565b600033905090565b60009392505050565b61212483836121b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b257600080549050600083820390505b6121646000868380600101945086611db6565b61219a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121515781600054146121af57600080fd5b50505b505050565b60008054905060008214156121f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122056000848385611c73565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227c8361226d6000866000611c79565b61227685612374565b17611ca1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e2565b506000821415612359576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061236f6000848385611ccc565b505050565b60006001821460e11b9050919050565b828054612390906130fa565b90600052602060002090601f0160209004810192826123b257600085556123f9565b82601f106123cb57805160ff19168380011785556123f9565b828001600101855582156123f9579182015b828111156123f85782518255916020019190600101906123dd565b5b509050612406919061240a565b5090565b5b8082111561242357600081600090555060010161240b565b5090565b600061243a61243584612e75565b612e50565b905082815260208101848484011115612456576124556132d1565b5b6124618482856130b8565b509392505050565b600061247c61247784612ea6565b612e50565b905082815260208101848484011115612498576124976132d1565b5b6124a38482856130b8565b509392505050565b6000813590506124ba8161354c565b92915050565b60008083601f8401126124d6576124d56132c7565b5b8235905067ffffffffffffffff8111156124f3576124f26132c2565b5b60208301915083602082028301111561250f5761250e6132cc565b5b9250929050565b60008083601f84011261252c5761252b6132c7565b5b8235905067ffffffffffffffff811115612549576125486132c2565b5b602083019150836020820283011115612565576125646132cc565b5b9250929050565b60008135905061257b81613563565b92915050565b6000813590506125908161357a565b92915050565b6000815190506125a58161357a565b92915050565b600082601f8301126125c0576125bf6132c7565b5b81356125d0848260208601612427565b91505092915050565b600082601f8301126125ee576125ed6132c7565b5b81356125fe848260208601612469565b91505092915050565b60008135905061261681613591565b92915050565b600060208284031215612632576126316132db565b5b6000612640848285016124ab565b91505092915050565b600080604083850312156126605761265f6132db565b5b600061266e858286016124ab565b925050602061267f858286016124ab565b9150509250929050565b6000806000606084860312156126a2576126a16132db565b5b60006126b0868287016124ab565b93505060206126c1868287016124ab565b92505060406126d286828701612607565b9150509250925092565b600080600080608085870312156126f6576126f56132db565b5b6000612704878288016124ab565b9450506020612715878288016124ab565b935050604061272687828801612607565b925050606085013567ffffffffffffffff811115612747576127466132d6565b5b612753878288016125ab565b91505092959194509250565b60008060408385031215612776576127756132db565b5b6000612784858286016124ab565b92505060206127958582860161256c565b9150509250929050565b600080604083850312156127b6576127b56132db565b5b60006127c4858286016124ab565b92505060206127d585828601612607565b9150509250929050565b600080600080604085870312156127f9576127f86132db565b5b600085013567ffffffffffffffff811115612817576128166132d6565b5b612823878288016124c0565b9450945050602085013567ffffffffffffffff811115612846576128456132d6565b5b61285287828801612516565b925092505092959194509250565b600060208284031215612876576128756132db565b5b600061288484828501612581565b91505092915050565b6000602082840312156128a3576128a26132db565b5b60006128b184828501612596565b91505092915050565b6000602082840312156128d0576128cf6132db565b5b600082013567ffffffffffffffff8111156128ee576128ed6132d6565b5b6128fa848285016125d9565b91505092915050565b600060208284031215612919576129186132db565b5b600061292784828501612607565b91505092915050565b61293981613044565b82525050565b61294881613056565b82525050565b600061295982612eec565b6129638185612f02565b93506129738185602086016130c7565b61297c816132e0565b840191505092915050565b600061299282612ef7565b61299c8185612f13565b93506129ac8185602086016130c7565b6129b5816132e0565b840191505092915050565b60006129cb82612ef7565b6129d58185612f24565b93506129e58185602086016130c7565b80840191505092915050565b600081546129fe816130fa565b612a088186612f24565b94506001821660008114612a235760018114612a3457612a67565b60ff19831686528186019350612a67565b612a3d85612ed7565b60005b83811015612a5f57815481890152600182019150602081019050612a40565b838801955050505b50505092915050565b6000612a7d602683612f13565b9150612a88826132f1565b604082019050919050565b6000612aa0600e83612f13565b9150612aab82613340565b602082019050919050565b6000612ac3600883612f13565b9150612ace82613369565b602082019050919050565b6000612ae6601983612f13565b9150612af182613392565b602082019050919050565b6000612b09601283612f13565b9150612b14826133bb565b602082019050919050565b6000612b2c602383612f13565b9150612b37826133e4565b604082019050919050565b6000612b4f602083612f13565b9150612b5a82613433565b602082019050919050565b6000612b72602f83612f13565b9150612b7d8261345c565b604082019050919050565b6000612b95601383612f13565b9150612ba0826134ab565b602082019050919050565b6000612bb8601983612f13565b9150612bc3826134d4565b602082019050919050565b6000612bdb602783612f13565b9150612be6826134fd565b604082019050919050565b612bfa816130ae565b82525050565b6000612c0c82866129c0565b9150612c1882856129c0565b9150612c2482846129f1565b9150819050949350505050565b6000602082019050612c466000830184612930565b92915050565b6000608082019050612c616000830187612930565b612c6e6020830186612930565b612c7b6040830185612bf1565b8181036060830152612c8d818461294e565b905095945050505050565b6000602082019050612cad600083018461293f565b92915050565b60006020820190508181036000830152612ccd8184612987565b905092915050565b60006020820190508181036000830152612cee81612a70565b9050919050565b60006020820190508181036000830152612d0e81612a93565b9050919050565b60006020820190508181036000830152612d2e81612ab6565b9050919050565b60006020820190508181036000830152612d4e81612ad9565b9050919050565b60006020820190508181036000830152612d6e81612afc565b9050919050565b60006020820190508181036000830152612d8e81612b1f565b9050919050565b60006020820190508181036000830152612dae81612b42565b9050919050565b60006020820190508181036000830152612dce81612b65565b9050919050565b60006020820190508181036000830152612dee81612b88565b9050919050565b60006020820190508181036000830152612e0e81612bab565b9050919050565b60006020820190508181036000830152612e2e81612bce565b9050919050565b6000602082019050612e4a6000830184612bf1565b92915050565b6000612e5a612e6b565b9050612e66828261312c565b919050565b6000604051905090565b600067ffffffffffffffff821115612e9057612e8f613293565b5b612e99826132e0565b9050602081019050919050565b600067ffffffffffffffff821115612ec157612ec0613293565b5b612eca826132e0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f3a826130ae565b9150612f45836130ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7a57612f796131d7565b5b828201905092915050565b6000612f90826130ae565b9150612f9b836130ae565b925082612fab57612faa613206565b5b828204905092915050565b6000612fc1826130ae565b9150612fcc836130ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613005576130046131d7565b5b828202905092915050565b600061301b826130ae565b9150613026836130ae565b925082821015613039576130386131d7565b5b828203905092915050565b600061304f8261308e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130e55780820151818401526020810190506130ca565b838111156130f4576000848401525b50505050565b6000600282049050600182168061311257607f821691505b6020821081141561312657613125613235565b5b50919050565b613135826132e0565b810181811067ffffffffffffffff8211171561315457613153613293565b5b80604052505050565b6000613168826130ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561319b5761319a6131d7565b5b600182019050919050565b60006131b1826130ae565b91506131bc836130ae565b9250826131cc576131cb613206565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f616d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b7f696e76616c6964206d696e742070726963650000000000000000000000000000600082015250565b7f61646472657373657320616e6420616d6f756e747320646f65736e2774206d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742061637469766500000000000000000000000000600082015250565b7f6d617820746f6b656e7320706572207478207265616368656400000000000000600082015250565b7f616d6f756e742065786365656473206d61782066726565206d696e742070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b61355581613044565b811461356057600080fd5b50565b61356c81613056565b811461357757600080fd5b50565b61358381613062565b811461358e57600080fd5b50565b61359a816130ae565b81146135a557600080fd5b5056fea2646970667358221220f9ca659b98cf0706cb0a8176885b75ddf772e5c4008a68e2b1c6721999dc7f6364736f6c63430008070033

Deployed Bytecode Sourcemap

74854:3437:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41734:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42636:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49127:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48560:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76724:79;;;;;;;;;;;;;:::i;:::-;;77859:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38387:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52766:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78086:76;;;;;;;;;;;;;:::i;:::-;;55687:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76811:79;;;;;;;;;;;;;:::i;:::-;;44029:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74975:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76401:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76898:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39571:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22513:103;;;;;;;;;;;;;:::i;:::-;;75895:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77743:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75054:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78171:117;;;;;;;;;;;;;:::i;:::-;;21865:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42812:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75405:482;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49685:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75136:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75097:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56478:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77187:548;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74940:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75019;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50076:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75300:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22771:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76987:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77076:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41734:639;41819:4;42158:10;42143:25;;:11;:25;;;;:102;;;;42235:10;42220:25;;:11;:25;;;;42143:102;:179;;;;42312:10;42297:25;;:11;:25;;;;42143:179;42123:199;;41734:639;;;:::o;42636:100::-;42690:13;42723:5;42716:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42636:100;:::o;49127:218::-;49203:7;49228:16;49236:7;49228;:16::i;:::-;49223:64;;49253:34;;;;;;;;;;;;;;49223:64;49307:15;:24;49323:7;49307:24;;;;;;;;;;;:30;;;;;;;;;;;;49300:37;;49127:218;;;:::o;48560:408::-;48649:13;48665:16;48673:7;48665;:16::i;:::-;48649:32;;48721:5;48698:28;;:19;:17;:19::i;:::-;:28;;;48694:175;;48746:44;48763:5;48770:19;:17;:19::i;:::-;48746:16;:44::i;:::-;48741:128;;48818:35;;;;;;;;;;;;;;48741:128;48694:175;48914:2;48881:15;:24;48897:7;48881:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;48952:7;48948:2;48932:28;;48941:5;48932:28;;;;;;;;;;;;48638:330;48560:408;;:::o;76724:79::-;21751:13;:11;:13::i;:::-;76791:4:::1;76776:12;;:19;;;;;;;;;;;;;;;;;;76724:79::o:0;77859:108::-;21751:13;:11;:13::i;:::-;77949:10:::1;77937:9;:22;;;;;;;;;;;;:::i;:::-;;77859:108:::0;:::o;38387:323::-;38448:7;38676:15;:13;:15::i;:::-;38661:12;;38645:13;;:28;:46;38638:53;;38387:323;:::o;52766:2825::-;52908:27;52938;52957:7;52938:18;:27::i;:::-;52908:57;;53023:4;52982:45;;52998:19;52982:45;;;52978:86;;53036:28;;;;;;;;;;;;;;52978:86;53078:27;53107:23;53134:35;53161:7;53134:26;:35::i;:::-;53077:92;;;;53269:68;53294:15;53311:4;53317:19;:17;:19::i;:::-;53269:24;:68::i;:::-;53264:180;;53357:43;53374:4;53380:19;:17;:19::i;:::-;53357:16;:43::i;:::-;53352:92;;53409:35;;;;;;;;;;;;;;53352:92;53264:180;53475:1;53461:16;;:2;:16;;;53457:52;;;53486:23;;;;;;;;;;;;;;53457:52;53522:43;53544:4;53550:2;53554:7;53563:1;53522:21;:43::i;:::-;53658:15;53655:160;;;53798:1;53777:19;53770:30;53655:160;54195:18;:24;54214:4;54195:24;;;;;;;;;;;;;;;;54193:26;;;;;;;;;;;;54264:18;:22;54283:2;54264:22;;;;;;;;;;;;;;;;54262:24;;;;;;;;;;;54586:146;54623:2;54672:45;54687:4;54693:2;54697:19;54672:14;:45::i;:::-;34786:8;54644:73;54586:18;:146::i;:::-;54557:17;:26;54575:7;54557:26;;;;;;;;;;;:175;;;;54903:1;34786:8;54852:19;:47;:52;54848:627;;;54925:19;54957:1;54947:7;:11;54925:33;;55114:1;55080:17;:30;55098:11;55080:30;;;;;;;;;;;;:35;55076:384;;;55218:13;;55203:11;:28;55199:242;;55398:19;55365:17;:30;55383:11;55365:30;;;;;;;;;;;:52;;;;55199:242;55076:384;54906:569;54848:627;55522:7;55518:2;55503:27;;55512:4;55503:27;;;;;;;;;;;;55541:42;55562:4;55568:2;55572:7;55581:1;55541:20;:42::i;:::-;52897:2694;;;52766:2825;;;:::o;78086:76::-;21751:13;:11;:13::i;:::-;78148:6:::1;;;;;;;;;;;78147:7;78138:6;;:16;;;;;;;;;;;;;;;;;;78086:76::o:0;55687:193::-;55833:39;55850:4;55856:2;55860:7;55833:39;;;;;;;;;;;;:16;:39::i;:::-;55687:193;;;:::o;76811:79::-;21751:13;:11;:13::i;:::-;76877:5:::1;76862:12;;:20;;;;;;;;;;;;;;;;;;76811:79::o:0;44029:152::-;44101:7;44144:27;44163:7;44144:18;:27::i;:::-;44121:52;;44029:152;;;:::o;74975:37::-;;;;:::o;76401:315::-;21751:13;:11;:13::i;:::-;76533:7:::1;;:14;;76513:9;;:16;;:34;76505:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;76605:9;76600:109;76624:9;;:16;;76620:1;:20;76600:109;;;76662:35;76672:9;;76682:1;76672:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;76686:7;;76694:1;76686:10;;;;;;;:::i;:::-;;;;;;;;76662:9;:35::i;:::-;76642:3;;;;;:::i;:::-;;;;76600:109;;;;76401:315:::0;;;;:::o;76898:81::-;21751:13;:11;:13::i;:::-;76970:1:::1;76958:9;:13;;;;76898:81:::0;:::o;39571:233::-;39643:7;39684:1;39667:19;;:5;:19;;;39663:60;;;39695:28;;;;;;;;;;;;;;39663:60;33730:13;39741:18;:25;39760:5;39741:25;;;;;;;;;;;;;;;;:55;39734:62;;39571:233;;;:::o;22513:103::-;21751:13;:11;:13::i;:::-;22578:30:::1;22605:1;22578:18;:30::i;:::-;22513:103::o:0;75895:498::-;75970:9;;75954:13;:11;:13::i;:::-;:25;75946:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76011:12;;;;;;;;;;;76003:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;76075:1;76066:6;:10;76058:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;76124:12;;76114:6;:22;;76106:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;76228:20;;76194:18;:30;76213:10;76194:30;;;;;;;;;;;;;;;;76185:6;:39;;;;:::i;:::-;:63;;76177:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;76339:6;76305:18;:30;76324:10;76305:30;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;76356:29;76366:10;76378:6;76356:9;:29::i;:::-;75895:498;:::o;77743:108::-;21751:13;:11;:13::i;:::-;77833:10:::1;77821:9;:22;;;;;;;;;;;;:::i;:::-;;77743:108:::0;:::o;75054:36::-;;;;:::o;78171:117::-;21751:13;:11;:13::i;:::-;78240:10:::1;78232:24;;:47;78257:21;78232:47;;;;;;;;;;;;;;;;;;;;;;;78224:56;;;::::0;::::1;;78171:117::o:0;21865:87::-;21911:7;21938:6;;;;;;;;;;;21931:13;;21865:87;:::o;42812:104::-;42868:13;42901:7;42894:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42812:104;:::o;75405:482::-;75484:9;;75468:13;:11;:13::i;:::-;:25;75460:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;75525:12;;;;;;;;;;;75517:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;75589:1;75580:6;:10;75572:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;75638:12;;75628:6;:22;;75620:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;75721:9;;75712:6;:18;;;;:::i;:::-;75699:9;:31;;75691:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;75798:9;;75781:13;:11;:13::i;:::-;75772:6;:22;;;;:::i;:::-;:35;;75764:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;75850:29;75860:10;75872:6;75850:9;:29::i;:::-;75405:482;:::o;49685:234::-;49832:8;49780:18;:39;49799:19;:17;:19::i;:::-;49780:39;;;;;;;;;;;;;;;:49;49820:8;49780:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;49892:8;49856:55;;49871:19;:17;:19::i;:::-;49856:55;;;49902:8;49856:55;;;;;;:::i;:::-;;;;;;;;49685:234;;:::o;75136:25::-;;;;;;;;;;;;;:::o;75097:32::-;;;;;;;;;;;;;:::o;56478:407::-;56653:31;56666:4;56672:2;56676:7;56653:12;:31::i;:::-;56717:1;56699:2;:14;;;:19;56695:183;;56738:56;56769:4;56775:2;56779:7;56788:5;56738:30;:56::i;:::-;56733:145;;56822:40;;;;;;;;;;;;;;56733:145;56695:183;56478:407;;;;:::o;77187:548::-;77306:13;77355:17;77363:8;77355:7;:17::i;:::-;77337:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;77475:5;77465:15;;:6;;;;;;;;;;;:15;;;77460:62;;;77505:9;77498:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77460:62;77538:28;77569:10;:8;:10::i;:::-;77538:41;;77628:1;77603:14;77597:28;:32;:130;;;;;;;;;;;;;;;;;77665:14;77681:19;:8;:17;:19::i;:::-;77702:9;77648:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77597:130;77590:137;;;77187:548;;;;:::o;74940:28::-;;;;:::o;75019:::-;;;;:::o;50076:164::-;50173:4;50197:18;:25;50216:5;50197:25;;;;;;;;;;;;;;;:35;50223:8;50197:35;;;;;;;;;;;;;;;;;;;;;;;;;50190:42;;50076:164;;;;:::o;75300:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22771:201::-;21751:13;:11;:13::i;:::-;22880:1:::1;22860:22;;:8;:22;;;;22852:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22936:28;22955:8;22936:18;:28::i;:::-;22771:201:::0;:::o;76987:81::-;21751:13;:11;:13::i;:::-;77059:1:::1;77047:9;:13;;;;76987:81:::0;:::o;77076:103::-;21751:13;:11;:13::i;:::-;77170:1:::1;77147:20;:24;;;;77076:103:::0;:::o;50498:282::-;50563:4;50619:7;50600:15;:13;:15::i;:::-;:26;;:66;;;;;50653:13;;50643:7;:23;50600:66;:153;;;;;50752:1;34506:8;50704:17;:26;50722:7;50704:26;;;;;;;;;;;;:44;:49;50600:153;50580:173;;50498:282;;;:::o;72806:105::-;72866:7;72893:10;72886:17;;72806:105;:::o;22030:132::-;22105:12;:10;:12::i;:::-;22094:23;;:7;:5;:7::i;:::-;:23;;;22086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22030:132::o;37903:92::-;37959:7;37903:92;:::o;45184:1275::-;45251:7;45271:12;45286:7;45271:22;;45354:4;45335:15;:13;:15::i;:::-;:23;45331:1061;;45388:13;;45381:4;:20;45377:1015;;;45426:14;45443:17;:23;45461:4;45443:23;;;;;;;;;;;;45426:40;;45560:1;34506:8;45532:6;:24;:29;45528:845;;;46197:113;46214:1;46204:6;:11;46197:113;;;46257:17;:25;46275:6;;;;;;;46257:25;;;;;;;;;;;;46248:34;;46197:113;;;46343:6;46336:13;;;;;;45528:845;45403:989;45377:1015;45331:1061;46420:31;;;;;;;;;;;;;;45184:1275;;;;:::o;51661:485::-;51763:27;51792:23;51833:38;51874:15;:24;51890:7;51874:24;;;;;;;;;;;51833:65;;52051:18;52028:41;;52108:19;52102:26;52083:45;;52013:126;51661:485;;;:::o;50889:659::-;51038:11;51203:16;51196:5;51192:28;51183:37;;51363:16;51352:9;51348:32;51335:45;;51513:15;51502:9;51499:30;51491:5;51480:9;51477:20;51474:56;51464:66;;50889:659;;;;;:::o;57547:159::-;;;;;:::o;72115:311::-;72250:7;72270:16;34910:3;72296:19;:41;;72270:68;;34910:3;72364:31;72375:4;72381:2;72385:9;72364:10;:31::i;:::-;72356:40;;:62;;72349:69;;;72115:311;;;;;:::o;47007:450::-;47087:14;47255:16;47248:5;47244:28;47235:37;;47432:5;47418:11;47393:23;47389:41;47386:52;47379:5;47376:63;47366:73;;47007:450;;;;:::o;58371:158::-;;;;;:::o;66638:112::-;66715:27;66725:2;66729:8;66715:27;;;;;;;;;;;;:9;:27::i;:::-;66638:112;;:::o;23132:191::-;23206:16;23225:6;;;;;;;;;;;23206:25;;23251:8;23242:6;;:17;;;;;;;;;;;;;;;;;;23306:8;23275:40;;23296:8;23275:40;;;;;;;;;;;;23195:128;23132:191;:::o;58969:716::-;59132:4;59178:2;59153:45;;;59199:19;:17;:19::i;:::-;59220:4;59226:7;59235:5;59153:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59149:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59453:1;59436:6;:13;:18;59432:235;;;59482:40;;;;;;;;;;;;;;59432:235;59625:6;59619:13;59610:6;59606:2;59602:15;59595:38;59149:529;59322:54;;;59312:64;;;:6;:64;;;;59305:71;;;58969:716;;;;;;:::o;77975:103::-;78028:13;78061:9;78054:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77975:103;:::o;17670:723::-;17726:13;17956:1;17947:5;:10;17943:53;;;17974:10;;;;;;;;;;;;;;;;;;;;;17943:53;18006:12;18021:5;18006:20;;18037:14;18062:78;18077:1;18069:4;:9;18062:78;;18095:8;;;;;:::i;:::-;;;;18126:2;18118:10;;;;;:::i;:::-;;;18062:78;;;18150:19;18182:6;18172:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18150:39;;18200:154;18216:1;18207:5;:10;18200:154;;18244:1;18234:11;;;;;:::i;:::-;;;18311:2;18303:5;:10;;;;:::i;:::-;18290:2;:24;;;;:::i;:::-;18277:39;;18260:6;18267;18260:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18340:2;18331:11;;;;;:::i;:::-;;;18200:154;;;18378:6;18364:21;;;;;17670:723;;;;:::o;20416:98::-;20469:7;20496:10;20489:17;;20416:98;:::o;71816:147::-;71953:6;71816:147;;;;;:::o;65865:689::-;65996:19;66002:2;66006:8;65996:5;:19::i;:::-;66075:1;66057:2;:14;;;:19;66053:483;;66097:11;66111:13;;66097:27;;66143:13;66165:8;66159:3;:14;66143:30;;66192:233;66223:62;66262:1;66266:2;66270:7;;;;;;66279:5;66223:30;:62::i;:::-;66218:167;;66321:40;;;;;;;;;;;;;;66218:167;66420:3;66412:5;:11;66192:233;;66507:3;66490:13;;:20;66486:34;;66512:8;;;66486:34;66078:458;;66053:483;65865:689;;;:::o;60147:2966::-;60220:20;60243:13;;60220:36;;60283:1;60271:8;:13;60267:44;;;60293:18;;;;;;;;;;;;;;60267:44;60324:61;60354:1;60358:2;60362:12;60376:8;60324:21;:61::i;:::-;60868:1;33868:2;60838:1;:26;;60837:32;60825:8;:45;60799:18;:22;60818:2;60799:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61147:139;61184:2;61238:33;61261:1;61265:2;61269:1;61238:14;:33::i;:::-;61205:30;61226:8;61205:20;:30::i;:::-;:66;61147:18;:139::i;:::-;61113:17;:31;61131:12;61113:31;;;;;;;;;;;:173;;;;61303:16;61334:11;61363:8;61348:12;:23;61334:37;;61884:16;61880:2;61876:25;61864:37;;62256:12;62216:8;62175:1;62113:25;62054:1;61993;61966:335;62627:1;62613:12;62609:20;62567:346;62668:3;62659:7;62656:16;62567:346;;62886:7;62876:8;62873:1;62846:25;62843:1;62840;62835:59;62721:1;62712:7;62708:15;62697:26;;62567:346;;;62571:77;62958:1;62946:8;:13;62942:45;;;62968:19;;;;;;;;;;;;;;62942:45;63020:3;63004:13;:19;;;;60573:2462;;63045:60;63074:1;63078:2;63082:12;63096:8;63045:20;:60::i;:::-;60209:2904;60147:2966;;:::o;47559:324::-;47629:14;47862:1;47852:8;47849:15;47823:24;47819:46;47809:56;;47559:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:327::-;7800:6;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;7975:1;8000:52;8044:7;8035:6;8024:9;8020:22;8000:52;:::i;:::-;7990:62;;7946:116;7742:327;;;;:::o;8075:349::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:63;8399:7;8390:6;8379:9;8375:22;8344:63;:::i;:::-;8334:73;;8290:127;8075:349;;;;:::o;8430:509::-;8499:6;8548:2;8536:9;8527:7;8523:23;8519:32;8516:119;;;8554:79;;:::i;:::-;8516:119;8702:1;8691:9;8687:17;8674:31;8732:18;8724:6;8721:30;8718:117;;;8754:79;;:::i;:::-;8718:117;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8645:287;8430:509;;;;:::o;8945:329::-;9004:6;9053:2;9041:9;9032:7;9028:23;9024:32;9021:119;;;9059:79;;:::i;:::-;9021:119;9179:1;9204:53;9249:7;9240:6;9229:9;9225:22;9204:53;:::i;:::-;9194:63;;9150:117;8945:329;;;;:::o;9280:118::-;9367:24;9385:5;9367:24;:::i;:::-;9362:3;9355:37;9280:118;;:::o;9404:109::-;9485:21;9500:5;9485:21;:::i;:::-;9480:3;9473:34;9404:109;;:::o;9519:360::-;9605:3;9633:38;9665:5;9633:38;:::i;:::-;9687:70;9750:6;9745:3;9687:70;:::i;:::-;9680:77;;9766:52;9811:6;9806:3;9799:4;9792:5;9788:16;9766:52;:::i;:::-;9843:29;9865:6;9843:29;:::i;:::-;9838:3;9834:39;9827:46;;9609:270;9519:360;;;;:::o;9885:364::-;9973:3;10001:39;10034:5;10001:39;:::i;:::-;10056:71;10120:6;10115:3;10056:71;:::i;:::-;10049:78;;10136:52;10181:6;10176:3;10169:4;10162:5;10158:16;10136:52;:::i;:::-;10213:29;10235:6;10213:29;:::i;:::-;10208:3;10204:39;10197:46;;9977:272;9885:364;;;;:::o;10255:377::-;10361:3;10389:39;10422:5;10389:39;:::i;:::-;10444:89;10526:6;10521:3;10444:89;:::i;:::-;10437:96;;10542:52;10587:6;10582:3;10575:4;10568:5;10564:16;10542:52;:::i;:::-;10619:6;10614:3;10610:16;10603:23;;10365:267;10255:377;;;;:::o;10662:845::-;10765:3;10802:5;10796:12;10831:36;10857:9;10831:36;:::i;:::-;10883:89;10965:6;10960:3;10883:89;:::i;:::-;10876:96;;11003:1;10992:9;10988:17;11019:1;11014:137;;;;11165:1;11160:341;;;;10981:520;;11014:137;11098:4;11094:9;11083;11079:25;11074:3;11067:38;11134:6;11129:3;11125:16;11118:23;;11014:137;;11160:341;11227:38;11259:5;11227:38;:::i;:::-;11287:1;11301:154;11315:6;11312:1;11309:13;11301:154;;;11389:7;11383:14;11379:1;11374:3;11370:11;11363:35;11439:1;11430:7;11426:15;11415:26;;11337:4;11334:1;11330:12;11325:17;;11301:154;;;11484:6;11479:3;11475:16;11468:23;;11167:334;;10981:520;;10769:738;;10662:845;;;;:::o;11513:366::-;11655:3;11676:67;11740:2;11735:3;11676:67;:::i;:::-;11669:74;;11752:93;11841:3;11752:93;:::i;:::-;11870:2;11865:3;11861:12;11854:19;;11513:366;;;:::o;11885:::-;12027:3;12048:67;12112:2;12107:3;12048:67;:::i;:::-;12041:74;;12124:93;12213:3;12124:93;:::i;:::-;12242:2;12237:3;12233:12;12226:19;;11885:366;;;:::o;12257:365::-;12399:3;12420:66;12484:1;12479:3;12420:66;:::i;:::-;12413:73;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12257:365;;;:::o;12628:366::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12628:366;;;:::o;13000:::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13372:366;;;:::o;13744:::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13744:366;;;:::o;14116:::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14116:366;;;:::o;14488:::-;14630:3;14651:67;14715:2;14710:3;14651:67;:::i;:::-;14644:74;;14727:93;14816:3;14727:93;:::i;:::-;14845:2;14840:3;14836:12;14829:19;;14488:366;;;:::o;14860:::-;15002:3;15023:67;15087:2;15082:3;15023:67;:::i;:::-;15016:74;;15099:93;15188:3;15099:93;:::i;:::-;15217:2;15212:3;15208:12;15201:19;;14860:366;;;:::o;15232:::-;15374:3;15395:67;15459:2;15454:3;15395:67;:::i;:::-;15388:74;;15471:93;15560:3;15471:93;:::i;:::-;15589:2;15584:3;15580:12;15573:19;;15232:366;;;:::o;15604:118::-;15691:24;15709:5;15691:24;:::i;:::-;15686:3;15679:37;15604:118;;:::o;15728:589::-;15953:3;15975:95;16066:3;16057:6;15975:95;:::i;:::-;15968:102;;16087:95;16178:3;16169:6;16087:95;:::i;:::-;16080:102;;16199:92;16287:3;16278:6;16199:92;:::i;:::-;16192:99;;16308:3;16301:10;;15728:589;;;;;;:::o;16323:222::-;16416:4;16454:2;16443:9;16439:18;16431:26;;16467:71;16535:1;16524:9;16520:17;16511:6;16467:71;:::i;:::-;16323:222;;;;:::o;16551:640::-;16746:4;16784:3;16773:9;16769:19;16761:27;;16798:71;16866:1;16855:9;16851:17;16842:6;16798:71;:::i;:::-;16879:72;16947:2;16936:9;16932:18;16923:6;16879:72;:::i;:::-;16961;17029:2;17018:9;17014:18;17005:6;16961:72;:::i;:::-;17080:9;17074:4;17070:20;17065:2;17054:9;17050:18;17043:48;17108:76;17179:4;17170:6;17108:76;:::i;:::-;17100:84;;16551:640;;;;;;;:::o;17197:210::-;17284:4;17322:2;17311:9;17307:18;17299:26;;17335:65;17397:1;17386:9;17382:17;17373:6;17335:65;:::i;:::-;17197:210;;;;:::o;17413:313::-;17526:4;17564:2;17553:9;17549:18;17541:26;;17613:9;17607:4;17603:20;17599:1;17588:9;17584:17;17577:47;17641:78;17714:4;17705:6;17641:78;:::i;:::-;17633:86;;17413:313;;;;:::o;17732:419::-;17898:4;17936:2;17925:9;17921:18;17913:26;;17985:9;17979:4;17975:20;17971:1;17960:9;17956:17;17949:47;18013:131;18139:4;18013:131;:::i;:::-;18005:139;;17732:419;;;:::o;18157:::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:::-;18748:4;18786:2;18775:9;18771:18;18763:26;;18835:9;18829:4;18825:20;18821:1;18810:9;18806:17;18799:47;18863:131;18989:4;18863:131;:::i;:::-;18855:139;;18582:419;;;:::o;19007:::-;19173:4;19211:2;19200:9;19196:18;19188:26;;19260:9;19254:4;19250:20;19246:1;19235:9;19231:17;19224:47;19288:131;19414:4;19288:131;:::i;:::-;19280:139;;19007:419;;;:::o;19432:::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19685:9;19679:4;19675:20;19671:1;19660:9;19656:17;19649:47;19713:131;19839:4;19713:131;:::i;:::-;19705:139;;19432:419;;;:::o;19857:::-;20023:4;20061:2;20050:9;20046:18;20038:26;;20110:9;20104:4;20100:20;20096:1;20085:9;20081:17;20074:47;20138:131;20264:4;20138:131;:::i;:::-;20130:139;;19857:419;;;:::o;20282:::-;20448:4;20486:2;20475:9;20471:18;20463:26;;20535:9;20529:4;20525:20;20521:1;20510:9;20506:17;20499:47;20563:131;20689:4;20563:131;:::i;:::-;20555:139;;20282:419;;;:::o;20707:::-;20873:4;20911:2;20900:9;20896:18;20888:26;;20960:9;20954:4;20950:20;20946:1;20935:9;20931:17;20924:47;20988:131;21114:4;20988:131;:::i;:::-;20980:139;;20707:419;;;:::o;21132:::-;21298:4;21336:2;21325:9;21321:18;21313:26;;21385:9;21379:4;21375:20;21371:1;21360:9;21356:17;21349:47;21413:131;21539:4;21413:131;:::i;:::-;21405:139;;21132:419;;;:::o;21557:::-;21723:4;21761:2;21750:9;21746:18;21738:26;;21810:9;21804:4;21800:20;21796:1;21785:9;21781:17;21774:47;21838:131;21964:4;21838:131;:::i;:::-;21830:139;;21557:419;;;:::o;21982:::-;22148:4;22186:2;22175:9;22171:18;22163:26;;22235:9;22229:4;22225:20;22221:1;22210:9;22206:17;22199:47;22263:131;22389:4;22263:131;:::i;:::-;22255:139;;21982:419;;;:::o;22407:222::-;22500:4;22538:2;22527:9;22523:18;22515:26;;22551:71;22619:1;22608:9;22604:17;22595:6;22551:71;:::i;:::-;22407:222;;;;:::o;22635:129::-;22669:6;22696:20;;:::i;:::-;22686:30;;22725:33;22753:4;22745:6;22725:33;:::i;:::-;22635:129;;;:::o;22770:75::-;22803:6;22836:2;22830:9;22820:19;;22770:75;:::o;22851:307::-;22912:4;23002:18;22994:6;22991:30;22988:56;;;23024:18;;:::i;:::-;22988:56;23062:29;23084:6;23062:29;:::i;:::-;23054:37;;23146:4;23140;23136:15;23128:23;;22851:307;;;:::o;23164:308::-;23226:4;23316:18;23308:6;23305:30;23302:56;;;23338:18;;:::i;:::-;23302:56;23376:29;23398:6;23376:29;:::i;:::-;23368:37;;23460:4;23454;23450:15;23442:23;;23164:308;;;:::o;23478:141::-;23527:4;23550:3;23542:11;;23573:3;23570:1;23563:14;23607:4;23604:1;23594:18;23586:26;;23478:141;;;:::o;23625:98::-;23676:6;23710:5;23704:12;23694:22;;23625:98;;;:::o;23729:99::-;23781:6;23815:5;23809:12;23799:22;;23729:99;;;:::o;23834:168::-;23917:11;23951:6;23946:3;23939:19;23991:4;23986:3;23982:14;23967:29;;23834:168;;;;:::o;24008:169::-;24092:11;24126:6;24121:3;24114:19;24166:4;24161:3;24157:14;24142:29;;24008:169;;;;:::o;24183:148::-;24285:11;24322:3;24307:18;;24183:148;;;;:::o;24337:305::-;24377:3;24396:20;24414:1;24396:20;:::i;:::-;24391:25;;24430:20;24448:1;24430:20;:::i;:::-;24425:25;;24584:1;24516:66;24512:74;24509:1;24506:81;24503:107;;;24590:18;;:::i;:::-;24503:107;24634:1;24631;24627:9;24620:16;;24337:305;;;;:::o;24648:185::-;24688:1;24705:20;24723:1;24705:20;:::i;:::-;24700:25;;24739:20;24757:1;24739:20;:::i;:::-;24734:25;;24778:1;24768:35;;24783:18;;:::i;:::-;24768:35;24825:1;24822;24818:9;24813:14;;24648:185;;;;:::o;24839:348::-;24879:7;24902:20;24920:1;24902:20;:::i;:::-;24897:25;;24936:20;24954:1;24936:20;:::i;:::-;24931:25;;25124:1;25056:66;25052:74;25049:1;25046:81;25041:1;25034:9;25027:17;25023:105;25020:131;;;25131:18;;:::i;:::-;25020:131;25179:1;25176;25172:9;25161:20;;24839:348;;;;:::o;25193:191::-;25233:4;25253:20;25271:1;25253:20;:::i;:::-;25248:25;;25287:20;25305:1;25287:20;:::i;:::-;25282:25;;25326:1;25323;25320:8;25317:34;;;25331:18;;:::i;:::-;25317:34;25376:1;25373;25369:9;25361:17;;25193:191;;;;:::o;25390:96::-;25427:7;25456:24;25474:5;25456:24;:::i;:::-;25445:35;;25390:96;;;:::o;25492:90::-;25526:7;25569:5;25562:13;25555:21;25544:32;;25492:90;;;:::o;25588:149::-;25624:7;25664:66;25657:5;25653:78;25642:89;;25588:149;;;:::o;25743:126::-;25780:7;25820:42;25813:5;25809:54;25798:65;;25743:126;;;:::o;25875:77::-;25912:7;25941:5;25930:16;;25875:77;;;:::o;25958:154::-;26042:6;26037:3;26032;26019:30;26104:1;26095:6;26090:3;26086:16;26079:27;25958:154;;;:::o;26118:307::-;26186:1;26196:113;26210:6;26207:1;26204:13;26196:113;;;26295:1;26290:3;26286:11;26280:18;26276:1;26271:3;26267:11;26260:39;26232:2;26229:1;26225:10;26220:15;;26196:113;;;26327:6;26324:1;26321:13;26318:101;;;26407:1;26398:6;26393:3;26389:16;26382:27;26318:101;26167:258;26118:307;;;:::o;26431:320::-;26475:6;26512:1;26506:4;26502:12;26492:22;;26559:1;26553:4;26549:12;26580:18;26570:81;;26636:4;26628:6;26624:17;26614:27;;26570:81;26698:2;26690:6;26687:14;26667:18;26664:38;26661:84;;;26717:18;;:::i;:::-;26661:84;26482:269;26431:320;;;:::o;26757:281::-;26840:27;26862:4;26840:27;:::i;:::-;26832:6;26828:40;26970:6;26958:10;26955:22;26934:18;26922:10;26919:34;26916:62;26913:88;;;26981:18;;:::i;:::-;26913:88;27021:10;27017:2;27010:22;26800:238;26757:281;;:::o;27044:233::-;27083:3;27106:24;27124:5;27106:24;:::i;:::-;27097:33;;27152:66;27145:5;27142:77;27139:103;;;27222:18;;:::i;:::-;27139:103;27269:1;27262:5;27258:13;27251:20;;27044:233;;;:::o;27283:176::-;27315:1;27332:20;27350:1;27332:20;:::i;:::-;27327:25;;27366:20;27384:1;27366:20;:::i;:::-;27361:25;;27405:1;27395:35;;27410:18;;:::i;:::-;27395:35;27451:1;27448;27444:9;27439:14;;27283:176;;;;:::o;27465:180::-;27513:77;27510:1;27503:88;27610:4;27607:1;27600:15;27634:4;27631:1;27624:15;27651:180;27699:77;27696:1;27689:88;27796:4;27793:1;27786:15;27820:4;27817:1;27810:15;27837:180;27885:77;27882:1;27875:88;27982:4;27979:1;27972:15;28006:4;28003:1;27996:15;28023:180;28071:77;28068:1;28061:88;28168:4;28165:1;28158:15;28192:4;28189:1;28182:15;28209:180;28257:77;28254:1;28247:88;28354:4;28351:1;28344:15;28378:4;28375:1;28368:15;28395:117;28504:1;28501;28494:12;28518:117;28627:1;28624;28617:12;28641:117;28750:1;28747;28740:12;28764:117;28873:1;28870;28863:12;28887:117;28996:1;28993;28986:12;29010:117;29119:1;29116;29109:12;29133:102;29174:6;29225:2;29221:7;29216:2;29209:5;29205:14;29201:28;29191:38;;29133:102;;;:::o;29241:225::-;29381:34;29377:1;29369:6;29365:14;29358:58;29450:8;29445:2;29437:6;29433:15;29426:33;29241:225;:::o;29472:164::-;29612:16;29608:1;29600:6;29596:14;29589:40;29472:164;:::o;29642:158::-;29782:10;29778:1;29770:6;29766:14;29759:34;29642:158;:::o;29806:175::-;29946:27;29942:1;29934:6;29930:14;29923:51;29806:175;:::o;29987:168::-;30127:20;30123:1;30115:6;30111:14;30104:44;29987:168;:::o;30161:222::-;30301:34;30297:1;30289:6;30285:14;30278:58;30370:5;30365:2;30357:6;30353:15;30346:30;30161:222;:::o;30389:182::-;30529:34;30525:1;30517:6;30513:14;30506:58;30389:182;:::o;30577:234::-;30717:34;30713:1;30705:6;30701:14;30694:58;30786:17;30781:2;30773:6;30769:15;30762:42;30577:234;:::o;30817:169::-;30957:21;30953:1;30945:6;30941:14;30934:45;30817:169;:::o;30992:175::-;31132:27;31128:1;31120:6;31116:14;31109:51;30992:175;:::o;31173:226::-;31313:34;31309:1;31301:6;31297:14;31290:58;31382:9;31377:2;31369:6;31365:15;31358:34;31173:226;:::o;31405:122::-;31478:24;31496:5;31478:24;:::i;:::-;31471:5;31468:35;31458:63;;31517:1;31514;31507:12;31458:63;31405:122;:::o;31533:116::-;31603:21;31618:5;31603:21;:::i;:::-;31596:5;31593:32;31583:60;;31639:1;31636;31629:12;31583:60;31533:116;:::o;31655:120::-;31727:23;31744:5;31727:23;:::i;:::-;31720:5;31717:34;31707:62;;31765:1;31762;31755:12;31707:62;31655:120;:::o;31781:122::-;31854:24;31872:5;31854:24;:::i;:::-;31847:5;31844:35;31834:63;;31893:1;31890;31883:12;31834:63;31781:122;:::o

Swarm Source

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