ETH Price: $3,425.01 (-2.08%)
Gas: 5 Gwei

Token

PAPI VIP (PAPI)
 

Overview

Max Total Supply

29 PAPI

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PAPI
0xc8793356b213b7a024502a2419459f1e03422fbd
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:
PAPI_VIP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/PAPI_VIP.sol



pragma solidity ^0.8.17;










// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary 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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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 {}
}

contract PAPI_VIP is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 888;
    
    string private BASE_URI;
    string private UNREVEAL_URI;
    bytes32 public WHITELIST_ROOT;

    uint256 public MAX_MINT_LIMIT_PER_WALLET = MAX_SUPPLY;
    uint256 public MAX_MINT_LIMIT_PER_WHITELIST = MAX_SUPPLY;

    uint256 public COST = 0.1 ether;
    uint256 public WHITELIST_COST = 0.08 ether;

    uint8 public SALE_STEP = 0; // 0: STOP, 1: WHITELIST, 2: PUBLIC

    mapping(address => uint256) public MAPPING_WHITELIST_MINT;

    constructor() ERC721A("PAPI VIP", "PAPI") {}

    function setWhitelistingRoot(bytes32 _root) external onlyOwner {
        WHITELIST_ROOT = _root;
    }

    // Verify that a given leaf is in the tree.
    function isWhiteListed(bytes32 _leafNode, bytes32[] memory _proof) internal view returns (bool) {
        return MerkleProof.verify(_proof, WHITELIST_ROOT, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function toLeaf(address account, uint256 index, uint256 amount) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(index, account, amount));
    }

    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    //whitelist mint
    function mintWhitelist(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external payable {
        require(SALE_STEP == 1, "Presale is not opened");
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");
        require(isWhiteListed(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");
        require((MAPPING_WHITELIST_MINT[msg.sender] + _mintAmount) <= MAX_MINT_LIMIT_PER_WHITELIST, "Exceeds Max Mint Whitelist Amount");
        require(msg.value >= WHITELIST_COST * _mintAmount, "Insuffient funds");

        _mintLoop(msg.sender, _mintAmount);

        MAPPING_WHITELIST_MINT[msg.sender] +=  _mintAmount;
    }

    // public
    function mint(uint256 _mintAmount) external payable {
        require(SALE_STEP == 2, "Public sale is not opened");
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");
        require((_numberMinted(msg.sender) + _mintAmount) <= MAX_MINT_LIMIT_PER_WALLET + MAPPING_WHITELIST_MINT[msg.sender], "Exceeds Max Mint Public Amount");
        require(msg.value >= COST * _mintAmount, "Insuffient funds");

        _mintLoop(msg.sender, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _mintAmount * _airdropAddresses.length <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

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

    function setCost(uint256 _newCost) external onlyOwner {
        COST = _newCost;
    }

    function setWhitelistingCost(uint256 _newCost) external onlyOwner {
        WHITELIST_COST = _newCost;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) external onlyOwner {
        MAX_MINT_LIMIT_PER_WALLET = _amount;
    }

    function setMaxMintAmountPerWhitelist(uint16 _amount) external onlyOwner {
        MAX_MINT_LIMIT_PER_WHITELIST = _amount;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint8 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

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

    function withdrawSafe() external onlyOwner {
        uint256 curBalance = address(this).balance;
        (bool success,) = msg.sender.call{value: curBalance}("");
        require(success, "ETH transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAPPING_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_LIMIT_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_saleStep","type":"uint8"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSafe","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103786009819055600d819055600e5567016345785d8a0000600f5567011c37937e0800006010556011805460ff191690553480156200004357600080fd5b5060405180604001604052806008815260200167050415049205649560c41b815250604051806040016040528060048152602001635041504960e01b8152508160029081620000939190620001c0565b506003620000a28282620001c0565b505050620000bf620000b9620000c560201b60201c565b620000c9565b6200028c565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014657607f821691505b6020821081036200016757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bb57600081815260208120601f850160051c81016020861015620001965750805b601f850160051c820191505b81811015620001b757828155600101620001a2565b5050505b505050565b81516001600160401b03811115620001dc57620001dc6200011b565b620001f481620001ed845462000131565b846200016d565b602080601f8311600181146200022c5760008415620002135750858301515b600019600386901b1c1916600185901b178555620001b7565b600085815260208120601f198616915b828110156200025d578886015182559484019460019091019084016200023c565b50858210156200027c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612309806200029c6000396000f3fe6080604052600436106102465760003560e01c80638b201ed011610139578063c204642c116100b6578063e985e9c51161007a578063e985e9c5146106b7578063ea444622146106d7578063ee891212146106f7578063f2fde38b14610717578063fdb1da5214610737578063ff63cf011461075757600080fd5b8063c204642c14610617578063c87b56dd14610637578063cef1172914610657578063dc33e68114610677578063dfc33dd11461069757600080fd5b80639c7aa88e116100fd5780639c7aa88e14610599578063a0712d68146105ae578063a22cb465146105c1578063b88d4fde146105e1578063bf8fbbd21461060157600080fd5b80638b201ed0146104c35780638da5cb5b146104f05780639231ab2a1461050e57806395d89b411461056457806397bc411c1461057957600080fd5b806344a0d68a116101c75780636f8b44b01161018b5780636f8b44b01461042c57806370a082311461044c578063715018a61461046c578063846342ee1461048157806384b9a4a51461049757600080fd5b806344a0d68a146103a05780635462bc58146103c057806355154319146103d657806355f804b3146103ec5780636352211e1461040c57600080fd5b806323b872dd1161020e57806323b872dd1461031f5780632a1d61901461033f57806332cb6b0c146103555780633ccfd60b1461036b57806342842e0e1461038057600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611bdb565b61076a565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107bc565b6040516102779190611c48565b3480156102ae57600080fd5b506102c26102bd366004611c5b565b61084e565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c90565b610892565b005b34801561030857600080fd5b50600154600054035b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004611cba565b61091f565b34801561034b57600080fd5b50610311600c5481565b34801561036157600080fd5b5061031160095481565b34801561037757600080fd5b506102fa61092a565b34801561038c57600080fd5b506102fa61039b366004611cba565b610965565b3480156103ac57600080fd5b506102fa6103bb366004611c5b565b610980565b3480156103cc57600080fd5b50610311600e5481565b3480156103e257600080fd5b50610311600d5481565b3480156103f857600080fd5b506102fa610407366004611d93565b61098d565b34801561041857600080fd5b506102c2610427366004611c5b565b6109a1565b34801561043857600080fd5b506102fa610447366004611c5b565b6109b3565b34801561045857600080fd5b50610311610467366004611ddb565b6109c0565b34801561047857600080fd5b506102fa610a0e565b34801561048d57600080fd5b5061031160105481565b3480156104a357600080fd5b506011546104b19060ff1681565b60405160ff9091168152602001610277565b3480156104cf57600080fd5b506103116104de366004611ddb565b60126020526000908152604090205481565b3480156104fc57600080fd5b506008546001600160a01b03166102c2565b34801561051a57600080fd5b5061052e610529366004611c5b565b610a22565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610277565b34801561057057600080fd5b50610295610a48565b34801561058557600080fd5b506102fa610594366004611d93565b610a57565b3480156105a557600080fd5b506102fa610a6b565b6102fa6105bc366004611c5b565b610b08565b3480156105cd57600080fd5b506102fa6105dc366004611df6565b610c72565b3480156105ed57600080fd5b506102fa6105fc366004611e32565b610d07565b34801561060d57600080fd5b50610311600f5481565b34801561062357600080fd5b506102fa610632366004611ead565b610d41565b34801561064357600080fd5b50610295610652366004611c5b565b610dce565b34801561066357600080fd5b506102fa610672366004611f5f565b610f14565b34801561068357600080fd5b50610311610692366004611ddb565b610f25565b3480156106a357600080fd5b506102fa6106b2366004611c5b565b610f30565b3480156106c357600080fd5b5061026b6106d2366004611f83565b610f3d565b3480156106e357600080fd5b506102fa6106f2366004611f5f565b610f6b565b34801561070357600080fd5b506102fa610712366004611c5b565b610f7c565b34801561072357600080fd5b506102fa610732366004611ddb565b610f89565b34801561074357600080fd5b506102fa610752366004611fb6565b610fff565b6102fa610765366004611fd9565b61101d565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107cb90612068565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790612068565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b600061085982611259565b610876576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089d826109a1565b9050806001600160a01b0316836001600160a01b0316036108d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108f157506108ef8133610f3d565b155b1561090f576040516367d9dca160e11b815260040160405180910390fd5b61091a838383611284565b505050565b61091a8383836112e0565b6109326114f4565b6040514790339082156108fc029083906000818181858888f19350505050158015610961573d6000803e3d6000fd5b5050565b61091a83838360405180602001604052806000815250610d07565b6109886114f4565b600f55565b6109956114f4565b600a61096182826120f0565b60006109ac8261154e565b5192915050565b6109bb6114f4565b600955565b60006001600160a01b0382166109e9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610a166114f4565b610a206000611667565b565b60408051606081018252600080825260208201819052918101919091526107b68261154e565b6060600380546107cb90612068565b610a5f6114f4565b600b61096182826120f0565b610a736114f4565b6040514790600090339083908381818185875af1925050503d8060008114610ab7576040519150601f19603f3d011682016040523d82523d6000602084013e610abc565b606091505b50509050806109615760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064015b60405180910390fd5b60115460ff16600214610b5d5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206f70656e6564000000000000006044820152606401610aff565b60095481610b6e6001546000540390565b610b7891906121c5565b1115610b965760405162461bcd60e51b8152600401610aff906121d8565b33600090815260126020526040902054600d54610bb391906121c5565b81610bbd336116b9565b610bc791906121c5565b1115610c155760405162461bcd60e51b815260206004820152601e60248201527f45786365656473204d6178204d696e74205075626c696320416d6f756e7400006044820152606401610aff565b80600f54610c239190612204565b341015610c655760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610aff565b610c6f338261170e565b50565b336001600160a01b03831603610c9b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d128484846112e0565b610d1e84848484611718565b610d3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610d496114f4565b6009548251610d589083612204565b60015460005403610d6991906121c5565b1115610d875760405162461bcd60e51b8152600401610aff906121d8565b60005b825181101561091a576000838281518110610da757610da761221b565b60200260200101519050610dbb818461170e565b5080610dc681612231565b915050610d8a565b6060610dd982611259565b610e3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aff565b6000610e4761181b565b90506000815111610ee257600b8054610e5f90612068565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b90612068565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b5050505050610f0d565b80610eec8461182a565b604051602001610efd92919061224a565b6040516020818303038152906040525b9392505050565b610f1c6114f4565b61ffff16600d55565b60006107b6826116b9565b610f386114f4565b601055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f736114f4565b61ffff16600e55565b610f846114f4565b600c55565b610f916114f4565b6001600160a01b038116610ff65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aff565b610c6f81611667565b6110076114f4565b6011805460ff191660ff92909216919091179055565b60115460ff1660011461106a5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b19481a5cc81b9bdd081bdc195b9959605a1b6044820152606401610aff565b6009548561107b6001546000540390565b61108591906121c5565b11156110a35760405162461bcd60e51b8152600401610aff906121d8565b6040805160208082018790526bffffffffffffffffffffffff193360601b168284015260548083018790528351808403909101815260749092019092528051910120611122908383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506118bc92505050565b61115e5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610aff565b600e543360009081526012602052604090205461117c9087906121c5565b11156111d45760405162461bcd60e51b815260206004820152602160248201527f45786365656473204d6178204d696e742057686974656c69737420416d6f756e6044820152601d60fa1b6064820152608401610aff565b846010546111e29190612204565b3410156112245760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610aff565b61122e338661170e565b336000908152601260205260408120805487929061124d9084906121c5565b90915550505050505050565b60008054821080156107b6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112eb8261154e565b80519091506000906001600160a01b0316336001600160a01b03161480611319575081516113199033610f3d565b806113345750336113298461084e565b6001600160a01b0316145b90508061135457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113895760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113b057604051633a954ecd60e21b815260040160405180910390fd5b6113c06000848460000151611284565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114aa576000548110156114aa57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b03163314610a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aff565b604080516060810182526000808252602082018190529181018290529054829081101561164e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061164c5780516001600160a01b0316156115e3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611647579392505050565b6115e3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166116e2576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61096182826118cb565b60006001600160a01b0384163b1561180f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061175c903390899088908890600401612279565b6020604051808303816000875af1925050508015611797575060408051601f3d908101601f19168201909252611794918101906122b6565b60015b6117f5573d8080156117c5576040519150601f19603f3d011682016040523d82523d6000602084013e6117ca565b606091505b5080516000036117ed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611813565b5060015b949350505050565b6060600a80546107cb90612068565b60606000611837836118e5565b60010190506000816001600160401b0381111561185657611856611cf6565b6040519080825280601f01601f191660200182016040528015611880576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461188a57509392505050565b6000610f0d82600c54856119bd565b6109618282604051806020016040528060008152506119d3565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119245772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611950576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061196e57662386f26fc10000830492506010015b6305f5e1008310611986576305f5e100830492506008015b612710831061199a57612710830492506004015b606483106119ac576064830492506002015b600a83106107b65760010192915050565b6000826119ca85846119e0565b14949350505050565b61091a8383836001611a2d565b600081815b8451811015611a2557611a1182868381518110611a0457611a0461221b565b6020026020010151611b96565b915080611a1d81612231565b9150506119e5565b509392505050565b6000546001600160a01b038516611a5657604051622e076360e81b815260040160405180910390fd5b83600003611a775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b635750611b616000888488611718565b155b15611b81576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b0c565b506000556114ed565b6000818310611bb2576000828152602084905260409020610f0d565b6000838152602083905260409020610f0d565b6001600160e01b031981168114610c6f57600080fd5b600060208284031215611bed57600080fd5b8135610f0d81611bc5565b60005b83811015611c13578181015183820152602001611bfb565b50506000910152565b60008151808452611c34816020860160208601611bf8565b601f01601f19169290920160200192915050565b602081526000610f0d6020830184611c1c565b600060208284031215611c6d57600080fd5b5035919050565b80356001600160a01b0381168114611c8b57600080fd5b919050565b60008060408385031215611ca357600080fd5b611cac83611c74565b946020939093013593505050565b600080600060608486031215611ccf57600080fd5b611cd884611c74565b9250611ce660208501611c74565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d3457611d34611cf6565b604052919050565b60006001600160401b03831115611d5557611d55611cf6565b611d68601f8401601f1916602001611d0c565b9050828152838383011115611d7c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611da557600080fd5b81356001600160401b03811115611dbb57600080fd5b8201601f81018413611dcc57600080fd5b61181384823560208401611d3c565b600060208284031215611ded57600080fd5b610f0d82611c74565b60008060408385031215611e0957600080fd5b611e1283611c74565b915060208301358015158114611e2757600080fd5b809150509250929050565b60008060008060808587031215611e4857600080fd5b611e5185611c74565b9350611e5f60208601611c74565b92506040850135915060608501356001600160401b03811115611e8157600080fd5b8501601f81018713611e9257600080fd5b611ea187823560208401611d3c565b91505092959194509250565b60008060408385031215611ec057600080fd5b82356001600160401b0380821115611ed757600080fd5b818501915085601f830112611eeb57600080fd5b8135602082821115611eff57611eff611cf6565b8160051b9250611f10818401611d0c565b8281529284018101928181019089851115611f2a57600080fd5b948201945b84861015611f4f57611f4086611c74565b82529482019490820190611f2f565b9997909101359750505050505050565b600060208284031215611f7157600080fd5b813561ffff81168114610f0d57600080fd5b60008060408385031215611f9657600080fd5b611f9f83611c74565b9150611fad60208401611c74565b90509250929050565b600060208284031215611fc857600080fd5b813560ff81168114610f0d57600080fd5b600080600080600060808688031215611ff157600080fd5b85359450602086013593506040860135925060608601356001600160401b038082111561201d57600080fd5b818801915088601f83011261203157600080fd5b81358181111561204057600080fd5b8960208260051b850101111561205557600080fd5b9699959850939650602001949392505050565b600181811c9082168061207c57607f821691505b60208210810361209c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091a57600081815260208120601f850160051c810160208610156120c95750805b601f850160051c820191505b818110156120e8578281556001016120d5565b505050505050565b81516001600160401b0381111561210957612109611cf6565b61211d816121178454612068565b846120a2565b602080601f831160018114612152576000841561213a5750858301515b600019600386901b1c1916600185901b1785556120e8565b600085815260208120601f198616915b8281101561218157888601518255948401946001909101908401612162565b508582101561219f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b6576107b66121af565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b80820281158282048414176107b6576107b66121af565b634e487b7160e01b600052603260045260246000fd5b600060018201612243576122436121af565b5060010190565b6000835161225c818460208801611bf8565b835190830190612270818360208801611bf8565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ac90830184611c1c565b9695505050505050565b6000602082840312156122c857600080fd5b8151610f0d81611bc556fea264697066735822122008f285560778d13b2635a93affdb83d8d75f90cfd84961e37213cbac2dc85a8a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638b201ed011610139578063c204642c116100b6578063e985e9c51161007a578063e985e9c5146106b7578063ea444622146106d7578063ee891212146106f7578063f2fde38b14610717578063fdb1da5214610737578063ff63cf011461075757600080fd5b8063c204642c14610617578063c87b56dd14610637578063cef1172914610657578063dc33e68114610677578063dfc33dd11461069757600080fd5b80639c7aa88e116100fd5780639c7aa88e14610599578063a0712d68146105ae578063a22cb465146105c1578063b88d4fde146105e1578063bf8fbbd21461060157600080fd5b80638b201ed0146104c35780638da5cb5b146104f05780639231ab2a1461050e57806395d89b411461056457806397bc411c1461057957600080fd5b806344a0d68a116101c75780636f8b44b01161018b5780636f8b44b01461042c57806370a082311461044c578063715018a61461046c578063846342ee1461048157806384b9a4a51461049757600080fd5b806344a0d68a146103a05780635462bc58146103c057806355154319146103d657806355f804b3146103ec5780636352211e1461040c57600080fd5b806323b872dd1161020e57806323b872dd1461031f5780632a1d61901461033f57806332cb6b0c146103555780633ccfd60b1461036b57806342842e0e1461038057600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611bdb565b61076a565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107bc565b6040516102779190611c48565b3480156102ae57600080fd5b506102c26102bd366004611c5b565b61084e565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c90565b610892565b005b34801561030857600080fd5b50600154600054035b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004611cba565b61091f565b34801561034b57600080fd5b50610311600c5481565b34801561036157600080fd5b5061031160095481565b34801561037757600080fd5b506102fa61092a565b34801561038c57600080fd5b506102fa61039b366004611cba565b610965565b3480156103ac57600080fd5b506102fa6103bb366004611c5b565b610980565b3480156103cc57600080fd5b50610311600e5481565b3480156103e257600080fd5b50610311600d5481565b3480156103f857600080fd5b506102fa610407366004611d93565b61098d565b34801561041857600080fd5b506102c2610427366004611c5b565b6109a1565b34801561043857600080fd5b506102fa610447366004611c5b565b6109b3565b34801561045857600080fd5b50610311610467366004611ddb565b6109c0565b34801561047857600080fd5b506102fa610a0e565b34801561048d57600080fd5b5061031160105481565b3480156104a357600080fd5b506011546104b19060ff1681565b60405160ff9091168152602001610277565b3480156104cf57600080fd5b506103116104de366004611ddb565b60126020526000908152604090205481565b3480156104fc57600080fd5b506008546001600160a01b03166102c2565b34801561051a57600080fd5b5061052e610529366004611c5b565b610a22565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610277565b34801561057057600080fd5b50610295610a48565b34801561058557600080fd5b506102fa610594366004611d93565b610a57565b3480156105a557600080fd5b506102fa610a6b565b6102fa6105bc366004611c5b565b610b08565b3480156105cd57600080fd5b506102fa6105dc366004611df6565b610c72565b3480156105ed57600080fd5b506102fa6105fc366004611e32565b610d07565b34801561060d57600080fd5b50610311600f5481565b34801561062357600080fd5b506102fa610632366004611ead565b610d41565b34801561064357600080fd5b50610295610652366004611c5b565b610dce565b34801561066357600080fd5b506102fa610672366004611f5f565b610f14565b34801561068357600080fd5b50610311610692366004611ddb565b610f25565b3480156106a357600080fd5b506102fa6106b2366004611c5b565b610f30565b3480156106c357600080fd5b5061026b6106d2366004611f83565b610f3d565b3480156106e357600080fd5b506102fa6106f2366004611f5f565b610f6b565b34801561070357600080fd5b506102fa610712366004611c5b565b610f7c565b34801561072357600080fd5b506102fa610732366004611ddb565b610f89565b34801561074357600080fd5b506102fa610752366004611fb6565b610fff565b6102fa610765366004611fd9565b61101d565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107cb90612068565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790612068565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b600061085982611259565b610876576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089d826109a1565b9050806001600160a01b0316836001600160a01b0316036108d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108f157506108ef8133610f3d565b155b1561090f576040516367d9dca160e11b815260040160405180910390fd5b61091a838383611284565b505050565b61091a8383836112e0565b6109326114f4565b6040514790339082156108fc029083906000818181858888f19350505050158015610961573d6000803e3d6000fd5b5050565b61091a83838360405180602001604052806000815250610d07565b6109886114f4565b600f55565b6109956114f4565b600a61096182826120f0565b60006109ac8261154e565b5192915050565b6109bb6114f4565b600955565b60006001600160a01b0382166109e9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610a166114f4565b610a206000611667565b565b60408051606081018252600080825260208201819052918101919091526107b68261154e565b6060600380546107cb90612068565b610a5f6114f4565b600b61096182826120f0565b610a736114f4565b6040514790600090339083908381818185875af1925050503d8060008114610ab7576040519150601f19603f3d011682016040523d82523d6000602084013e610abc565b606091505b50509050806109615760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064015b60405180910390fd5b60115460ff16600214610b5d5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206f70656e6564000000000000006044820152606401610aff565b60095481610b6e6001546000540390565b610b7891906121c5565b1115610b965760405162461bcd60e51b8152600401610aff906121d8565b33600090815260126020526040902054600d54610bb391906121c5565b81610bbd336116b9565b610bc791906121c5565b1115610c155760405162461bcd60e51b815260206004820152601e60248201527f45786365656473204d6178204d696e74205075626c696320416d6f756e7400006044820152606401610aff565b80600f54610c239190612204565b341015610c655760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610aff565b610c6f338261170e565b50565b336001600160a01b03831603610c9b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d128484846112e0565b610d1e84848484611718565b610d3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610d496114f4565b6009548251610d589083612204565b60015460005403610d6991906121c5565b1115610d875760405162461bcd60e51b8152600401610aff906121d8565b60005b825181101561091a576000838281518110610da757610da761221b565b60200260200101519050610dbb818461170e565b5080610dc681612231565b915050610d8a565b6060610dd982611259565b610e3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aff565b6000610e4761181b565b90506000815111610ee257600b8054610e5f90612068565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b90612068565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b5050505050610f0d565b80610eec8461182a565b604051602001610efd92919061224a565b6040516020818303038152906040525b9392505050565b610f1c6114f4565b61ffff16600d55565b60006107b6826116b9565b610f386114f4565b601055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f736114f4565b61ffff16600e55565b610f846114f4565b600c55565b610f916114f4565b6001600160a01b038116610ff65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aff565b610c6f81611667565b6110076114f4565b6011805460ff191660ff92909216919091179055565b60115460ff1660011461106a5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b19481a5cc81b9bdd081bdc195b9959605a1b6044820152606401610aff565b6009548561107b6001546000540390565b61108591906121c5565b11156110a35760405162461bcd60e51b8152600401610aff906121d8565b6040805160208082018790526bffffffffffffffffffffffff193360601b168284015260548083018790528351808403909101815260749092019092528051910120611122908383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506118bc92505050565b61115e5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610aff565b600e543360009081526012602052604090205461117c9087906121c5565b11156111d45760405162461bcd60e51b815260206004820152602160248201527f45786365656473204d6178204d696e742057686974656c69737420416d6f756e6044820152601d60fa1b6064820152608401610aff565b846010546111e29190612204565b3410156112245760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610aff565b61122e338661170e565b336000908152601260205260408120805487929061124d9084906121c5565b90915550505050505050565b60008054821080156107b6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112eb8261154e565b80519091506000906001600160a01b0316336001600160a01b03161480611319575081516113199033610f3d565b806113345750336113298461084e565b6001600160a01b0316145b90508061135457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113895760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113b057604051633a954ecd60e21b815260040160405180910390fd5b6113c06000848460000151611284565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114aa576000548110156114aa57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b03163314610a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aff565b604080516060810182526000808252602082018190529181018290529054829081101561164e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061164c5780516001600160a01b0316156115e3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611647579392505050565b6115e3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166116e2576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61096182826118cb565b60006001600160a01b0384163b1561180f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061175c903390899088908890600401612279565b6020604051808303816000875af1925050508015611797575060408051601f3d908101601f19168201909252611794918101906122b6565b60015b6117f5573d8080156117c5576040519150601f19603f3d011682016040523d82523d6000602084013e6117ca565b606091505b5080516000036117ed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611813565b5060015b949350505050565b6060600a80546107cb90612068565b60606000611837836118e5565b60010190506000816001600160401b0381111561185657611856611cf6565b6040519080825280601f01601f191660200182016040528015611880576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461188a57509392505050565b6000610f0d82600c54856119bd565b6109618282604051806020016040528060008152506119d3565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119245772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611950576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061196e57662386f26fc10000830492506010015b6305f5e1008310611986576305f5e100830492506008015b612710831061199a57612710830492506004015b606483106119ac576064830492506002015b600a83106107b65760010192915050565b6000826119ca85846119e0565b14949350505050565b61091a8383836001611a2d565b600081815b8451811015611a2557611a1182868381518110611a0457611a0461221b565b6020026020010151611b96565b915080611a1d81612231565b9150506119e5565b509392505050565b6000546001600160a01b038516611a5657604051622e076360e81b815260040160405180910390fd5b83600003611a775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b635750611b616000888488611718565b155b15611b81576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b0c565b506000556114ed565b6000818310611bb2576000828152602084905260409020610f0d565b6000838152602083905260409020610f0d565b6001600160e01b031981168114610c6f57600080fd5b600060208284031215611bed57600080fd5b8135610f0d81611bc5565b60005b83811015611c13578181015183820152602001611bfb565b50506000910152565b60008151808452611c34816020860160208601611bf8565b601f01601f19169290920160200192915050565b602081526000610f0d6020830184611c1c565b600060208284031215611c6d57600080fd5b5035919050565b80356001600160a01b0381168114611c8b57600080fd5b919050565b60008060408385031215611ca357600080fd5b611cac83611c74565b946020939093013593505050565b600080600060608486031215611ccf57600080fd5b611cd884611c74565b9250611ce660208501611c74565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d3457611d34611cf6565b604052919050565b60006001600160401b03831115611d5557611d55611cf6565b611d68601f8401601f1916602001611d0c565b9050828152838383011115611d7c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611da557600080fd5b81356001600160401b03811115611dbb57600080fd5b8201601f81018413611dcc57600080fd5b61181384823560208401611d3c565b600060208284031215611ded57600080fd5b610f0d82611c74565b60008060408385031215611e0957600080fd5b611e1283611c74565b915060208301358015158114611e2757600080fd5b809150509250929050565b60008060008060808587031215611e4857600080fd5b611e5185611c74565b9350611e5f60208601611c74565b92506040850135915060608501356001600160401b03811115611e8157600080fd5b8501601f81018713611e9257600080fd5b611ea187823560208401611d3c565b91505092959194509250565b60008060408385031215611ec057600080fd5b82356001600160401b0380821115611ed757600080fd5b818501915085601f830112611eeb57600080fd5b8135602082821115611eff57611eff611cf6565b8160051b9250611f10818401611d0c565b8281529284018101928181019089851115611f2a57600080fd5b948201945b84861015611f4f57611f4086611c74565b82529482019490820190611f2f565b9997909101359750505050505050565b600060208284031215611f7157600080fd5b813561ffff81168114610f0d57600080fd5b60008060408385031215611f9657600080fd5b611f9f83611c74565b9150611fad60208401611c74565b90509250929050565b600060208284031215611fc857600080fd5b813560ff81168114610f0d57600080fd5b600080600080600060808688031215611ff157600080fd5b85359450602086013593506040860135925060608601356001600160401b038082111561201d57600080fd5b818801915088601f83011261203157600080fd5b81358181111561204057600080fd5b8960208260051b850101111561205557600080fd5b9699959850939650602001949392505050565b600181811c9082168061207c57607f821691505b60208210810361209c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561091a57600081815260208120601f850160051c810160208610156120c95750805b601f850160051c820191505b818110156120e8578281556001016120d5565b505050505050565b81516001600160401b0381111561210957612109611cf6565b61211d816121178454612068565b846120a2565b602080601f831160018114612152576000841561213a5750858301515b600019600386901b1c1916600185901b1785556120e8565b600085815260208120601f198616915b8281101561218157888601518255948401946001909101908401612162565b508582101561219f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b6576107b66121af565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b80820281158282048414176107b6576107b66121af565b634e487b7160e01b600052603260045260246000fd5b600060018201612243576122436121af565b5060010190565b6000835161225c818460208801611bf8565b835190830190612270818360208801611bf8565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ac90830184611c1c565b9695505050505050565b6000602082840312156122c857600080fd5b8151610f0d81611bc556fea264697066735822122008f285560778d13b2635a93affdb83d8d75f90cfd84961e37213cbac2dc85a8a64736f6c63430008110033

Deployed Bytecode Sourcemap

71054:5073:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53852:305;;;;;;;;;;-1:-1:-1;53852:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;53852:305:0;;;;;;;;57212:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;58715:204::-;;;;;;;;;;-1:-1:-1;58715:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;58715:204:0;1533:203:1;58278:371:0;;;;;;;;;;-1:-1:-1;58278:371:0;;;;;:::i;:::-;;:::i;:::-;;53509:271;;;;;;;;;;-1:-1:-1;53745:12:0;;53553:7;53729:13;:28;53509:271;;;2324:25:1;;;2312:2;2297:18;53509:271:0;2178:177:1;59572:170:0;;;;;;;;;;-1:-1:-1;59572:170:0;;;;;:::i;:::-;;:::i;71245:29::-;;;;;;;;;;;;;;;;71137:31;;;;;;;;;;;;;;;;75750:145;;;;;;;;;;;;;:::i;59813:185::-;;;;;;;;;;-1:-1:-1;59813:185:0;;;;;:::i;:::-;;:::i;74539:88::-;;;;;;;;;;-1:-1:-1;74539:88:0;;;;;:::i;:::-;;:::i;71343:56::-;;;;;;;;;;;;;;;;71283:53;;;;;;;;;;;;;;;;75128:107;;;;;;;;;;-1:-1:-1;75128:107:0;;;;;:::i;:::-;;:::i;57021:124::-;;;;;;;;;;-1:-1:-1;57021:124:0;;;;;:::i;:::-;;:::i;75023:97::-;;;;;;;;;;-1:-1:-1;75023:97:0;;;;;:::i;:::-;;:::i;54221:206::-;;;;;;;;;;-1:-1:-1;54221:206:0;;;;;:::i;:::-;;:::i;22287:103::-;;;;;;;;;;;;;:::i;71446:42::-;;;;;;;;;;;;;;;;71497:26;;;;;;;;;;-1:-1:-1;71497:26:0;;;;;;;;;;;4518:4:1;4506:17;;;4488:36;;4476:2;4461:18;71497:26:0;4346:184:1;71568:57:0;;;;;;;;;;-1:-1:-1;71568:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;21646:87;;;;;;;;;;-1:-1:-1;21719:6:0;;-1:-1:-1;;;;;21719:6:0;21646:87;;75607:135;;;;;;;;;;-1:-1:-1;75607:135:0;;;;;:::i;:::-;;:::i;:::-;;;;4767:13:1;;-1:-1:-1;;;;;4763:39:1;4745:58;;4863:4;4851:17;;;4845:24;-1:-1:-1;;;;;4841:49:1;4819:20;;;4812:79;4949:17;;;4943:24;4936:32;4929:40;4907:20;;;4900:70;4733:2;4718:18;75607:135:0;4535:441:1;57381:104:0;;;;;;;;;;;;;:::i;75243:123::-;;;;;;;;;;-1:-1:-1;75243:123:0;;;;;:::i;:::-;;:::i;75903:221::-;;;;;;;;;;;;;:::i;73171:485::-;;;;;;:::i;:::-;;:::i;58991:279::-;;;;;;;;;;-1:-1:-1;58991:279:0;;;;;:::i;:::-;;:::i;60069:342::-;;;;;;;;;;-1:-1:-1;60069:342:0;;;;;:::i;:::-;;:::i;71408:31::-;;;;;;;;;;;;;;;;73664:379;;;;;;;;;;-1:-1:-1;73664:379:0;;;;;:::i;:::-;;:::i;74168:363::-;;;;;;;;;;-1:-1:-1;74168:363:0;;;;;:::i;:::-;;:::i;74753:124::-;;;;;;;;;;-1:-1:-1;74753:124:0;;;;;:::i;:::-;;:::i;72307:115::-;;;;;;;;;;-1:-1:-1;72307:115:0;;;;;:::i;:::-;;:::i;74635:110::-;;;;;;;;;;-1:-1:-1;74635:110:0;;;;;:::i;:::-;;:::i;59341:164::-;;;;;;;;;;-1:-1:-1;59341:164:0;;;;;:::i;:::-;;:::i;74885:130::-;;;;;;;;;;-1:-1:-1;74885:130:0;;;;;:::i;:::-;;:::i;71686:104::-;;;;;;;;;;-1:-1:-1;71686:104:0;;;;;:::i;:::-;;:::i;22545:201::-;;;;;;;;;;-1:-1:-1;22545:201:0;;;;;:::i;:::-;;:::i;75374:97::-;;;;;;;;;;-1:-1:-1;75374:97:0;;;;;:::i;:::-;;:::i;72452:696::-;;;;;;:::i;:::-;;:::i;53852:305::-;53954:4;-1:-1:-1;;;;;;53991:40:0;;-1:-1:-1;;;53991:40:0;;:105;;-1:-1:-1;;;;;;;54048:48:0;;-1:-1:-1;;;54048:48:0;53991:105;:158;;;-1:-1:-1;;;;;;;;;;9830:40:0;;;54113:36;53971:178;53852:305;-1:-1:-1;;53852:305:0:o;57212:100::-;57266:13;57299:5;57292:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57212:100;:::o;58715:204::-;58783:7;58808:16;58816:7;58808;:16::i;:::-;58803:64;;58833:34;;-1:-1:-1;;;58833:34:0;;;;;;;;;;;58803:64;-1:-1:-1;58887:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;58887:24:0;;58715:204::o;58278:371::-;58351:13;58367:24;58383:7;58367:15;:24::i;:::-;58351:40;;58412:5;-1:-1:-1;;;;;58406:11:0;:2;-1:-1:-1;;;;;58406:11:0;;58402:48;;58426:24;;-1:-1:-1;;;58426:24:0;;;;;;;;;;;58402:48;20277:10;-1:-1:-1;;;;;58467:21:0;;;;;;:63;;-1:-1:-1;58493:37:0;58510:5;20277:10;59341:164;:::i;58493:37::-;58492:38;58467:63;58463:138;;;58554:35;;-1:-1:-1;;;58554:35:0;;;;;;;;;;;58463:138;58613:28;58622:2;58626:7;58635:5;58613:8;:28::i;:::-;58340:309;58278:371;;:::o;59572:170::-;59706:28;59716:4;59722:2;59726:7;59706:9;:28::i;75750:145::-;21532:13;:11;:13::i;:::-;75850:37:::1;::::0;75818:21:::1;::::0;75858:10:::1;::::0;75850:37;::::1;;;::::0;75818:21;;75800:15:::1;75850:37:::0;75800:15;75850:37;75818:21;75858:10;75850:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;75789:106;75750:145::o:0;59813:185::-;59951:39;59968:4;59974:2;59978:7;59951:39;;;;;;;;;;;;:16;:39::i;74539:88::-;21532:13;:11;:13::i;:::-;74604:4:::1;:15:::0;74539:88::o;75128:107::-;21532:13;:11;:13::i;:::-;75205:8:::1;:22;75216:11:::0;75205:8;:22:::1;:::i;57021:124::-:0;57085:7;57112:20;57124:7;57112:11;:20::i;:::-;:25;;57021:124;-1:-1:-1;;57021:124:0:o;75023:97::-;21532:13;:11;:13::i;:::-;75092:10:::1;:20:::0;75023:97::o;54221:206::-;54285:7;-1:-1:-1;;;;;54309:19:0;;54305:60;;54337:28;;-1:-1:-1;;;54337:28:0;;;;;;;;;;;54305:60;-1:-1:-1;;;;;;54391:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54391:27:0;;54221:206::o;22287:103::-;21532:13;:11;:13::i;:::-;22352:30:::1;22379:1;22352:18;:30::i;:::-;22287:103::o:0;75607:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;75714:20:0;75726:7;75714:11;:20::i;57381:104::-;57437:13;57470:7;57463:14;;;;;:::i;75243:123::-;21532:13;:11;:13::i;:::-;75328:12:::1;:30;75343:15:::0;75328:12;:30:::1;:::i;75903:221::-:0;21532:13;:11;:13::i;:::-;76028:38:::1;::::0;75978:21:::1;::::0;75957:18:::1;::::0;76028:10:::1;::::0;75978:21;;75957:18;76028:38;75957:18;76028:38;75978:21;76028:10;:38:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76010:56;;;76085:7;76077:39;;;::::0;-1:-1:-1;;;76077:39:0;;11859:2:1;76077:39:0::1;::::0;::::1;11841:21:1::0;11898:2;11878:18;;;11871:30;-1:-1:-1;;;11917:18:1;;;11910:49;11976:18;;76077:39:0::1;;;;;;;;73171:485:::0;73242:9;;;;73255:1;73242:14;73234:52;;;;-1:-1:-1;;;73234:52:0;;12207:2:1;73234:52:0;;;12189:21:1;12246:2;12226:18;;;12219:30;12285:27;12265:18;;;12258:55;12330:18;;73234:52:0;12005:349:1;73234:52:0;73336:10;;73321:11;73305:13;53745:12;;53553:7;53729:13;:28;;53509:271;73305:13;:27;;;;:::i;:::-;:41;;73297:72;;;;-1:-1:-1;;;73297:72:0;;;;;;;:::i;:::-;73484:10;73461:34;;;;:22;:34;;;;;;73433:25;;:62;;73461:34;73433:62;:::i;:::-;73417:11;73389:25;73403:10;73389:13;:25::i;:::-;:39;;;;:::i;:::-;73388:107;;73380:150;;;;-1:-1:-1;;;73380:150:0;;13170:2:1;73380:150:0;;;13152:21:1;13209:2;13189:18;;;13182:30;13248:32;13228:18;;;13221:60;13298:18;;73380:150:0;12968:354:1;73380:150:0;73569:11;73562:4;;:18;;;;:::i;:::-;73549:9;:31;;73541:60;;;;-1:-1:-1;;;73541:60:0;;13702:2:1;73541:60:0;;;13684:21:1;13741:2;13721:18;;;13714:30;-1:-1:-1;;;13760:18:1;;;13753:46;13816:18;;73541:60:0;13500:340:1;73541:60:0;73614:34;73624:10;73636:11;73614:9;:34::i;:::-;73171:485;:::o;58991:279::-;20277:10;-1:-1:-1;;;;;59082:24:0;;;59078:54;;59115:17;;-1:-1:-1;;;59115:17:0;;;;;;;;;;;59078:54;20277:10;59145:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;59145:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;59145:53:0;;;;;;;;;;59214:48;;540:41:1;;;59145:42:0;;20277:10;59214:48;;513:18:1;59214:48:0;;;;;;;58991:279;;:::o;60069:342::-;60236:28;60246:4;60252:2;60256:7;60236:9;:28::i;:::-;60280:48;60303:4;60309:2;60313:7;60322:5;60280:22;:48::i;:::-;60275:129;;60352:40;;-1:-1:-1;;;60352:40:0;;;;;;;;;;;60275:129;60069:342;;;;:::o;73664:379::-;21532:13;:11;:13::i;:::-;73834:10:::1;::::0;73806:24;;73792:38:::1;::::0;:11;:38:::1;:::i;:::-;53745:12:::0;;53553:7;53729:13;:28;73776:54:::1;;;;:::i;:::-;:68;;73768:99;;;;-1:-1:-1::0;;;73768:99:0::1;;;;;;;:::i;:::-;73885:9;73880:156;73904:17;:24;73900:1;:28;73880:156;;;73950:10;73963:17;73981:1;73963:20;;;;;;;;:::i;:::-;;;;;;;73950:33;;73998:26;74008:2;74012:11;73998:9;:26::i;:::-;-1:-1:-1::0;73930:3:0;::::1;::::0;::::1;:::i;:::-;;;;73880:156;;74168:363:::0;74241:13;74275:16;74283:7;74275;:16::i;:::-;74267:76;;;;-1:-1:-1;;;74267:76:0;;14319:2:1;74267:76:0;;;14301:21:1;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;-1:-1:-1;;;14448:18:1;;;14441:45;14503:19;;74267:76:0;14117:411:1;74267:76:0;74354:28;74385:10;:8;:10::i;:::-;74354:41;;74444:1;74419:14;74413:28;:32;:110;;74511:12;74413:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74472:14;74488:18;:7;:16;:18::i;:::-;74455:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74413:110;74406:117;74168:363;-1:-1:-1;;;74168:363:0:o;74753:124::-;21532:13;:11;:13::i;:::-;74834:35:::1;;:25;:35:::0;74753:124::o;72307:115::-;72366:7;72393:21;72407:6;72393:13;:21::i;74635:110::-;21532:13;:11;:13::i;:::-;74712:14:::1;:25:::0;74635:110::o;59341:164::-;-1:-1:-1;;;;;59462:25:0;;;59438:4;59462:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;59341:164::o;74885:130::-;21532:13;:11;:13::i;:::-;74969:38:::1;;:28;:38:::0;74885:130::o;71686:104::-;21532:13;:11;:13::i;:::-;71760:14:::1;:22:::0;71686:104::o;22545:201::-;21532:13;:11;:13::i;:::-;-1:-1:-1;;;;;22634:22:0;::::1;22626:73;;;::::0;-1:-1:-1;;;22626:73:0;;15236:2:1;22626:73:0::1;::::0;::::1;15218:21:1::0;15275:2;15255:18;;;15248:30;15314:34;15294:18;;;15287:62;-1:-1:-1;;;15365:18:1;;;15358:36;15411:19;;22626:73:0::1;15034:402:1::0;22626:73:0::1;22710:28;22729:8;22710:18;:28::i;75374:97::-:0;21532:13;:11;:13::i;:::-;75442:9:::1;:21:::0;;-1:-1:-1;;75442:21:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;75374:97::o;72452:696::-;72592:9;;;;;:14;72584:48;;;;-1:-1:-1;;;72584:48:0;;15643:2:1;72584:48:0;;;15625:21:1;15682:2;15662:18;;;15655:30;-1:-1:-1;;;15701:18:1;;;15694:51;15762:18;;72584:48:0;15441:345:1;72584:48:0;72682:10;;72667:11;72651:13;53745:12;;53553:7;53729:13;:28;;53509:271;72651:13;:27;;;;:::i;:::-;:41;;72643:72;;;;-1:-1:-1;;;72643:72:0;;;;;;;:::i;:::-;72250:40;;;;;;;17961:19:1;;;-1:-1:-1;;72755:10:0;18018:2:1;18014:15;18010:53;17996:12;;;17989:75;18080:12;;;;18073:28;;;72250:40:0;;;;;;;;;;18117:12:1;;;;72250:40:0;;;72240:51;;;;;72734:58;;72785:6;;72734:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72734:13:0;;-1:-1:-1;;;72734:58:0:i;:::-;72726:84;;;;-1:-1:-1;;;72726:84:0;;15993:2:1;72726:84:0;;;15975:21:1;16032:2;16012:18;;;16005:30;-1:-1:-1;;;16051:18:1;;;16044:43;16104:18;;72726:84:0;15791:337:1;72726:84:0;72883:28;;72853:10;72830:34;;;;:22;:34;;;;;;:48;;72867:11;;72830:48;:::i;:::-;72829:82;;72821:128;;;;-1:-1:-1;;;72821:128:0;;16335:2:1;72821:128:0;;;16317:21:1;16374:2;16354:18;;;16347:30;16413:34;16393:18;;;16386:62;-1:-1:-1;;;16464:18:1;;;16457:31;16505:19;;72821:128:0;16133:397:1;72821:128:0;72998:11;72981:14;;:28;;;;:::i;:::-;72968:9;:41;;72960:70;;;;-1:-1:-1;;;72960:70:0;;13702:2:1;72960:70:0;;;13684:21:1;13741:2;13721:18;;;13714:30;-1:-1:-1;;;13760:18:1;;;13753:46;13816:18;;72960:70:0;13500:340:1;72960:70:0;73043:34;73053:10;73065:11;73043:9;:34::i;:::-;73113:10;73090:34;;;;:22;:34;;;;;:50;;73129:11;;73090:34;:50;;73129:11;;73090:50;:::i;:::-;;;;-1:-1:-1;;;;;;;72452:696:0:o;60666:144::-;60723:4;60757:13;;60747:7;:23;:55;;;;-1:-1:-1;;60775:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;60775:27:0;;;;60774:28;;60666:144::o;67872:196::-;67987:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;67987:29:0;-1:-1:-1;;;;;67987:29:0;;;;;;;;;68032:28;;67987:24;;68032:28;;;;;;;67872:196;;;:::o;63373:2112::-;63488:35;63526:20;63538:7;63526:11;:20::i;:::-;63601:18;;63488:58;;-1:-1:-1;63559:22:0;;-1:-1:-1;;;;;63585:34:0;20277:10;-1:-1:-1;;;;;63585:34:0;;:101;;;-1:-1:-1;63653:18:0;;63636:50;;20277:10;59341:164;:::i;63636:50::-;63585:154;;;-1:-1:-1;20277:10:0;63703:20;63715:7;63703:11;:20::i;:::-;-1:-1:-1;;;;;63703:36:0;;63585:154;63559:181;;63758:17;63753:66;;63784:35;;-1:-1:-1;;;63784:35:0;;;;;;;;;;;63753:66;63856:4;-1:-1:-1;;;;;63834:26:0;:13;:18;;;-1:-1:-1;;;;;63834:26:0;;63830:67;;63869:28;;-1:-1:-1;;;63869:28:0;;;;;;;;;;;63830:67;-1:-1:-1;;;;;63912:16:0;;63908:52;;63937:23;;-1:-1:-1;;;63937:23:0;;;;;;;;;;;63908:52;64081:49;64098:1;64102:7;64111:13;:18;;;64081:8;:49::i;:::-;-1:-1:-1;;;;;64426:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;64426:31:0;;;-1:-1:-1;;;;;64426:31:0;;;-1:-1:-1;;64426:31:0;;;;;;;64472:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;64472:29:0;;;;;;;;;;;64518:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;64563:61:0;;;;-1:-1:-1;;;64608:15:0;64563:61;;;;;;;;;;;64898:11;;;64928:24;;;;;:29;64898:11;;64928:29;64924:445;;65153:13;;65139:11;:27;65135:219;;;65223:18;;;65191:24;;;:11;:24;;;;;;;;:50;;65306:28;;;;-1:-1:-1;;;;;65264:70:0;-1:-1:-1;;;65264:70:0;-1:-1:-1;;;;;;65264:70:0;;;-1:-1:-1;;;;;65191:50:0;;;65264:70;;;;;;;65135:219;64401:979;65416:7;65412:2;-1:-1:-1;;;;;65397:27:0;65406:4;-1:-1:-1;;;;;65397:27:0;;;;;;;;;;;65435:42;63477:2008;;63373:2112;;;:::o;21811:132::-;21719:6;;-1:-1:-1;;;;;21719:6:0;20277:10;21875:23;21867:68;;;;-1:-1:-1;;;21867:68:0;;16737:2:1;21867:68:0;;;16719:21:1;;;16756:18;;;16749:30;16815:34;16795:18;;;16788:62;16867:18;;21867:68:0;16535:356:1;55876:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;56042:13:0;;55986:7;;56035:20;;56031:861;;;56076:31;56110:17;;;:11;:17;;;;;;;;;56076:51;;;;;;;;;-1:-1:-1;;;;;56076:51:0;;;;-1:-1:-1;;;56076:51:0;;-1:-1:-1;;;;;56076:51:0;;;;;;;;-1:-1:-1;;;56076:51:0;;;;;;;;;;;;;;56146:731;;56196:14;;-1:-1:-1;;;;;56196:28:0;;56192:101;;56260:9;55876:1083;-1:-1:-1;;;55876:1083:0:o;56192:101::-;-1:-1:-1;;;56637:6:0;56682:17;;;;:11;:17;;;;;;;;;56670:29;;;;;;;;;-1:-1:-1;;;;;56670:29:0;;;;;-1:-1:-1;;;56670:29:0;;-1:-1:-1;;;;;56670:29:0;;;;;;;;-1:-1:-1;;;56670:29:0;;;;;;;;;;;;;56730:28;56726:109;;56798:9;55876:1083;-1:-1:-1;;;55876:1083:0:o;56726:109::-;56597:261;;;56057:835;56031:861;56920:31;;-1:-1:-1;;;56920:31:0;;;;;;;;;;;22906:191;22999:6;;;-1:-1:-1;;;;;23016:17:0;;;-1:-1:-1;;;;;;23016:17:0;;;;;;;23049:40;;22999:6;;;23016:17;22999:6;;23049:40;;22980:16;;23049:40;22969:128;22906:191;:::o;54509:207::-;54570:7;-1:-1:-1;;;;;54594:19:0;;54590:59;;54622:27;;-1:-1:-1;;;54622:27:0;;;;;;;;;;;54590:59;-1:-1:-1;;;;;;54675:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;54675:32:0;;-1:-1:-1;;;;;54675:32:0;;54509:207::o;75479:120::-;75558:33;75568:9;75579:11;75558:9;:33::i;68633:790::-;68788:4;-1:-1:-1;;;;;68809:13:0;;11654:19;:23;68805:611;;68845:72;;-1:-1:-1;;;68845:72:0;;-1:-1:-1;;;;;68845:36:0;;;;;:72;;20277:10;;68896:4;;68902:7;;68911:5;;68845:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68845:72:0;;;;;;;;-1:-1:-1;;68845:72:0;;;;;;;;;;;;:::i;:::-;;;68841:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69091:6;:13;69108:1;69091:18;69087:259;;69141:40;;-1:-1:-1;;;69141:40:0;;;;;;;;;;;69087:259;69296:6;69290:13;69281:6;69277:2;69273:15;69266:38;68841:520;-1:-1:-1;;;;;;68968:55:0;-1:-1:-1;;;68968:55:0;;-1:-1:-1;68961:62:0;;68805:611;-1:-1:-1;69400:4:0;68805:611;68633:790;;;;;;:::o;74051:109::-;74111:13;74144:8;74137:15;;;;;:::i;38024:716::-;38080:13;38131:14;38148:17;38159:5;38148:10;:17::i;:::-;38168:1;38148:21;38131:38;;38184:20;38218:6;-1:-1:-1;;;;;38207:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38207:18:0;-1:-1:-1;38184:41:0;-1:-1:-1;38349:28:0;;;38365:2;38349:28;38406:288;-1:-1:-1;;38438:5:0;-1:-1:-1;;;38575:2:0;38564:14;;38559:30;38438:5;38546:44;38636:2;38627:11;;;-1:-1:-1;38657:21:0;38406:288;38657:21;-1:-1:-1;38715:6:0;38024:716;-1:-1:-1;;;38024:716:0:o;71847:175::-;71937:4;71961:53;71980:6;71988:14;;72004:9;71961:18;:53::i;60818:104::-;60887:27;60897:2;60901:8;60887:27;;;;;;;;;;;;:9;:27::i;34858:948::-;34911:7;;-1:-1:-1;;;34989:17:0;;34985:106;;-1:-1:-1;;;35027:17:0;;;-1:-1:-1;35073:2:0;35063:12;34985:106;35118:8;35109:5;:17;35105:106;;35156:8;35147:17;;;-1:-1:-1;35193:2:0;35183:12;35105:106;35238:8;35229:5;:17;35225:106;;35276:8;35267:17;;;-1:-1:-1;35313:2:0;35303:12;35225:106;35358:7;35349:5;:16;35345:103;;35395:7;35386:16;;;-1:-1:-1;35431:1:0;35421:11;35345:103;35475:7;35466:5;:16;35462:103;;35512:7;35503:16;;;-1:-1:-1;35548:1:0;35538:11;35462:103;35592:7;35583:5;:16;35579:103;;35629:7;35620:16;;;-1:-1:-1;35665:1:0;35655:11;35579:103;35709:7;35700:5;:16;35696:68;;35747:1;35737:11;35792:6;34858:948;-1:-1:-1;;34858:948:0:o;41648:156::-;41739:4;41792;41763:25;41776:5;41783:4;41763:12;:25::i;:::-;:33;;41648:156;-1:-1:-1;;;;41648:156:0:o;61285:163::-;61408:32;61414:2;61418:8;61428:5;61435:4;61408:5;:32::i;42447:296::-;42530:7;42573:4;42530:7;42588:118;42612:5;:12;42608:1;:16;42588:118;;;42661:33;42671:12;42685:5;42691:1;42685:8;;;;;;;;:::i;:::-;;;;;;;42661:9;:33::i;:::-;42646:48;-1:-1:-1;42626:3:0;;;;:::i;:::-;;;;42588:118;;;-1:-1:-1;42723:12:0;42447:296;-1:-1:-1;;;42447:296:0:o;61707:1412::-;61846:20;61869:13;-1:-1:-1;;;;;61897:16:0;;61893:48;;61922:19;;-1:-1:-1;;;61922:19:0;;;;;;;;;;;61893:48;61956:8;61968:1;61956:13;61952:44;;61978:18;;-1:-1:-1;;;61978:18:0;;;;;;;;;;;61952:44;-1:-1:-1;;;;;62347:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;62406:49:0;;-1:-1:-1;;;;;62347:44:0;;;;;;;62406:49;;;-1:-1:-1;;;;;62347:44:0;;;;;;62406:49;;;;;;;;;;;;;;;;62472:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;62522:66:0;;;;-1:-1:-1;;;62572:15:0;62522:66;;;;;;;;;;;62472:25;;62657:328;62677:8;62673:1;:12;62657:328;;;62716:38;;62741:12;;-1:-1:-1;;;;;62716:38:0;;;62733:1;;62716:38;;62733:1;;62716:38;62777:4;:68;;;;;62786:59;62817:1;62821:2;62825:12;62839:5;62786:22;:59::i;:::-;62785:60;62777:68;62773:164;;;62877:40;;-1:-1:-1;;;62877:40:0;;;;;;;;;;;62773:164;62955:14;;;;;62687:3;62657:328;;;-1:-1:-1;63001:13:0;:28;63051:60;60069:342;49651:149;49714:7;49745:1;49741;:5;:51;;49876:13;49970:15;;;50006:4;49999:15;;;50053:4;50037:21;;49741:51;;;49876:13;49970:15;;;50006:4;49999:15;;;50053:4;50037:21;;49749:20;49808:268;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2875:127::-;2936:10;2931:3;2927:20;2924:1;2917:31;2967:4;2964:1;2957:15;2991:4;2988:1;2981:15;3007:275;3078:2;3072:9;3143:2;3124:13;;-1:-1:-1;;3120:27:1;3108:40;;-1:-1:-1;;;;;3163:34:1;;3199:22;;;3160:62;3157:88;;;3225:18;;:::i;:::-;3261:2;3254:22;3007:275;;-1:-1:-1;3007:275:1:o;3287:407::-;3352:5;-1:-1:-1;;;;;3378:6:1;3375:30;3372:56;;;3408:18;;:::i;:::-;3446:57;3491:2;3470:15;;-1:-1:-1;;3466:29:1;3497:4;3462:40;3446:57;:::i;:::-;3437:66;;3526:6;3519:5;3512:21;3566:3;3557:6;3552:3;3548:16;3545:25;3542:45;;;3583:1;3580;3573:12;3542:45;3632:6;3627:3;3620:4;3613:5;3609:16;3596:43;3686:1;3679:4;3670:6;3663:5;3659:18;3655:29;3648:40;3287:407;;;;;:::o;3699:451::-;3768:6;3821:2;3809:9;3800:7;3796:23;3792:32;3789:52;;;3837:1;3834;3827:12;3789:52;3877:9;3864:23;-1:-1:-1;;;;;3902:6:1;3899:30;3896:50;;;3942:1;3939;3932:12;3896:50;3965:22;;4018:4;4010:13;;4006:27;-1:-1:-1;3996:55:1;;4047:1;4044;4037:12;3996:55;4070:74;4136:7;4131:2;4118:16;4113:2;4109;4105:11;4070:74;:::i;4155:186::-;4214:6;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;4981:347::-;5046:6;5054;5107:2;5095:9;5086:7;5082:23;5078:32;5075:52;;;5123:1;5120;5113:12;5075:52;5146:29;5165:9;5146:29;:::i;:::-;5136:39;;5225:2;5214:9;5210:18;5197:32;5272:5;5265:13;5258:21;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5317:5;5307:15;;;4981:347;;;;;:::o;5333:667::-;5428:6;5436;5444;5452;5505:3;5493:9;5484:7;5480:23;5476:33;5473:53;;;5522:1;5519;5512:12;5473:53;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5593:38;5627:2;5616:9;5612:18;5593:38;:::i;:::-;5583:48;;5678:2;5667:9;5663:18;5650:32;5640:42;;5733:2;5722:9;5718:18;5705:32;-1:-1:-1;;;;;5752:6:1;5749:30;5746:50;;;5792:1;5789;5782:12;5746:50;5815:22;;5868:4;5860:13;;5856:27;-1:-1:-1;5846:55:1;;5897:1;5894;5887:12;5846:55;5920:74;5986:7;5981:2;5968:16;5963:2;5959;5955:11;5920:74;:::i;:::-;5910:84;;;5333:667;;;;;;;:::o;6005:1022::-;6098:6;6106;6159:2;6147:9;6138:7;6134:23;6130:32;6127:52;;;6175:1;6172;6165:12;6127:52;6215:9;6202:23;-1:-1:-1;;;;;6285:2:1;6277:6;6274:14;6271:34;;;6301:1;6298;6291:12;6271:34;6339:6;6328:9;6324:22;6314:32;;6384:7;6377:4;6373:2;6369:13;6365:27;6355:55;;6406:1;6403;6396:12;6355:55;6442:2;6429:16;6464:4;6487:2;6483;6480:10;6477:36;;;6493:18;;:::i;:::-;6539:2;6536:1;6532:10;6522:20;;6562:28;6586:2;6582;6578:11;6562:28;:::i;:::-;6624:15;;;6694:11;;;6690:20;;;6655:12;;;;6722:19;;;6719:39;;;6754:1;6751;6744:12;6719:39;6778:11;;;;6798:148;6814:6;6809:3;6806:15;6798:148;;;6880:23;6899:3;6880:23;:::i;:::-;6868:36;;6831:12;;;;6924;;;;6798:148;;;6965:5;7002:18;;;;6989:32;;-1:-1:-1;;;;;;;6005:1022:1:o;7032:272::-;7090:6;7143:2;7131:9;7122:7;7118:23;7114:32;7111:52;;;7159:1;7156;7149:12;7111:52;7198:9;7185:23;7248:6;7241:5;7237:18;7230:5;7227:29;7217:57;;7270:1;7267;7260:12;7309:260;7377:6;7385;7438:2;7426:9;7417:7;7413:23;7409:32;7406:52;;;7454:1;7451;7444:12;7406:52;7477:29;7496:9;7477:29;:::i;:::-;7467:39;;7525:38;7559:2;7548:9;7544:18;7525:38;:::i;:::-;7515:48;;7309:260;;;;;:::o;7759:269::-;7816:6;7869:2;7857:9;7848:7;7844:23;7840:32;7837:52;;;7885:1;7882;7875:12;7837:52;7924:9;7911:23;7974:4;7967:5;7963:16;7956:5;7953:27;7943:55;;7994:1;7991;7984:12;8033:820;8146:6;8154;8162;8170;8178;8231:3;8219:9;8210:7;8206:23;8202:33;8199:53;;;8248:1;8245;8238:12;8199:53;8284:9;8271:23;8261:33;;8341:2;8330:9;8326:18;8313:32;8303:42;;8392:2;8381:9;8377:18;8364:32;8354:42;;8447:2;8436:9;8432:18;8419:32;-1:-1:-1;;;;;8511:2:1;8503:6;8500:14;8497:34;;;8527:1;8524;8517:12;8497:34;8565:6;8554:9;8550:22;8540:32;;8610:7;8603:4;8599:2;8595:13;8591:27;8581:55;;8632:1;8629;8622:12;8581:55;8672:2;8659:16;8698:2;8690:6;8687:14;8684:34;;;8714:1;8711;8704:12;8684:34;8767:7;8762:2;8752:6;8749:1;8745:14;8741:2;8737:23;8733:32;8730:45;8727:65;;;8788:1;8785;8778:12;8727:65;8033:820;;;;-1:-1:-1;8033:820:1;;-1:-1:-1;8819:2:1;8811:11;;8841:6;8033:820;-1:-1:-1;;;8033:820:1:o;8858:380::-;8937:1;8933:12;;;;8980;;;9001:61;;9055:4;9047:6;9043:17;9033:27;;9001:61;9108:2;9100:6;9097:14;9077:18;9074:38;9071:161;;9154:10;9149:3;9145:20;9142:1;9135:31;9189:4;9186:1;9179:15;9217:4;9214:1;9207:15;9071:161;;8858:380;;;:::o;9369:545::-;9471:2;9466:3;9463:11;9460:448;;;9507:1;9532:5;9528:2;9521:17;9577:4;9573:2;9563:19;9647:2;9635:10;9631:19;9628:1;9624:27;9618:4;9614:38;9683:4;9671:10;9668:20;9665:47;;;-1:-1:-1;9706:4:1;9665:47;9761:2;9756:3;9752:12;9749:1;9745:20;9739:4;9735:31;9725:41;;9816:82;9834:2;9827:5;9824:13;9816:82;;;9879:17;;;9860:1;9849:13;9816:82;;;9820:3;;;9369:545;;;:::o;10090:1352::-;10216:3;10210:10;-1:-1:-1;;;;;10235:6:1;10232:30;10229:56;;;10265:18;;:::i;:::-;10294:97;10384:6;10344:38;10376:4;10370:11;10344:38;:::i;:::-;10338:4;10294:97;:::i;:::-;10446:4;;10510:2;10499:14;;10527:1;10522:663;;;;11229:1;11246:6;11243:89;;;-1:-1:-1;11298:19:1;;;11292:26;11243:89;-1:-1:-1;;10047:1:1;10043:11;;;10039:24;10035:29;10025:40;10071:1;10067:11;;;10022:57;11345:81;;10492:944;;10522:663;9316:1;9309:14;;;9353:4;9340:18;;-1:-1:-1;;10558:20:1;;;10676:236;10690:7;10687:1;10684:14;10676:236;;;10779:19;;;10773:26;10758:42;;10871:27;;;;10839:1;10827:14;;;;10706:19;;10676:236;;;10680:3;10940:6;10931:7;10928:19;10925:201;;;11001:19;;;10995:26;-1:-1:-1;;11084:1:1;11080:14;;;11096:3;11076:24;11072:37;11068:42;11053:58;11038:74;;10925:201;-1:-1:-1;;;;;11172:1:1;11156:14;;;11152:22;11139:36;;-1:-1:-1;10090:1352:1:o;12359:127::-;12420:10;12415:3;12411:20;12408:1;12401:31;12451:4;12448:1;12441:15;12475:4;12472:1;12465:15;12491:125;12556:9;;;12577:10;;;12574:36;;;12590:18;;:::i;12621:342::-;12823:2;12805:21;;;12862:2;12842:18;;;12835:30;-1:-1:-1;;;12896:2:1;12881:18;;12874:48;12954:2;12939:18;;12621:342::o;13327:168::-;13400:9;;;13431;;13448:15;;;13442:22;;13428:37;13418:71;;13469:18;;:::i;13845:127::-;13906:10;13901:3;13897:20;13894:1;13887:31;13937:4;13934:1;13927:15;13961:4;13958:1;13951:15;13977:135;14016:3;14037:17;;;14034:43;;14057:18;;:::i;:::-;-1:-1:-1;14104:1:1;14093:13;;13977:135::o;14533:496::-;14712:3;14750:6;14744:13;14766:66;14825:6;14820:3;14813:4;14805:6;14801:17;14766:66;:::i;:::-;14895:13;;14854:16;;;;14917:70;14895:13;14854:16;14964:4;14952:17;;14917:70;:::i;:::-;15003:20;;14533:496;-1:-1:-1;;;;14533:496:1:o;16896:489::-;-1:-1:-1;;;;;17165:15:1;;;17147:34;;17217:15;;17212:2;17197:18;;17190:43;17264:2;17249:18;;17242:34;;;17312:3;17307:2;17292:18;;17285:31;;;17090:4;;17333:46;;17359:19;;17351:6;17333:46;:::i;:::-;17325:54;16896:489;-1:-1:-1;;;;;;16896:489:1:o;17390:249::-;17459:6;17512:2;17500:9;17491:7;17487:23;17483:32;17480:52;;;17528:1;17525;17518:12;17480:52;17560:9;17554:16;17579:30;17603:5;17579:30;:::i

Swarm Source

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