ETH Price: $3,256.77 (+2.24%)
Gas: 1 Gwei

Japan Dream Collection (JDC)
 

Overview

TokenID

335

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
JapanDreamCollection

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-30
*/

/**
    ███████╗██╗    ██╗ █████╗  ██████╗  ██████╗  █████╗ 
    ██╔════╝██║    ██║██╔══██╗██╔════╝ ██╔════╝ ██╔══██╗
    ███████╗██║ █╗ ██║███████║██║  ███╗██║  ███╗███████║
    ╚════██║██║███╗██║██╔══██║██║   ██║██║   ██║██╔══██║
    ███████║╚███╔███╔╝██║  ██║╚██████╔╝╚██████╔╝██║  ██║
    ╚══════╝ ╚══╝╚══╝ ╚═╝  ╚═╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝
 */

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// File contracts/token/IERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File contracts/token/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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 _startTokenId() (defaults to 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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 (_startTokenId() <= curr)
                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 virtual override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner)
            if (!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 virtual 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 (to.isContract())
            if (!_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) 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;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File operator-filter-registry/src/[email protected]

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    function register(address registrant) external;

    function registerAndSubscribe(address registrant, address subscription) external;

    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    function unregister(address addr) external;

    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    function subscribe(address registrant, address registrantToSubscribe) external;

    function unsubscribe(address registrant, bool copyExistingEntries) external;

    function subscriptionOf(address addr) external returns (address registrant);

    function subscribers(address registrant) external returns (address[] memory);

    function subscriberAt(address registrant, uint256 index) external returns (address);

    function copyEntriesOf(address registrant, address registrantToCopy) external;

    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    function filteredOperators(address addr) external returns (address[] memory);

    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    function isRegistered(address addr) external returns (bool);

    function codeHashOf(address addr) external returns (bytes32);
}

// File operator-filter-registry/src/[email protected]

pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    bool public operatorFilteringEnabled = true;

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender && operatorFilteringEnabled) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File operator-filter-registry/src/[email protected]

pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return '';

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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

// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, 'ReentrancyGuard: reentrant call');

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

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

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

// OpenZeppelin Contracts (last updated v4.8.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 rebuild 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 for 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) {
            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 rebuild 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 for 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) {
            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 @openzeppelin/contracts/interfaces/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), 'ERC2981: royalty fee will exceed salePrice');
        require(receiver != address(0), 'ERC2981: invalid receiver');

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), 'ERC2981: royalty fee will exceed salePrice');
        require(receiver != address(0), 'ERC2981: Invalid parameters');

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File contracts/japanDream/JapanDreamCollection.sol

pragma solidity ^0.8.4;

contract JapanDreamCollection is Ownable, ERC721A, ReentrancyGuard, ERC2981, DefaultOperatorFilterer {
    address payable internal _withdrawWallet;

    uint256 public constant allowListPrice = 0.08 ether;
    uint256 public constant flashSalePrice = 0.08 ether;
    uint256 public constant publicSalePrice = 0.1 ether;

    uint256 public constant maxMintsForAllowList = 1;
    uint256 public constant maxMintsForPublicSale = 5;
    uint256 public constant maxMintsForFlashSale = 5;

    uint256 public constant MAX_SUPPLY = 1200;
    uint256 public constant RESERVED_AMOUNT = 50;

    bool public isAllowListSaleEnabled;
    bool public isPublicSaleEnabled;
    bool public isFlashSaleEnabled;
    bool public allowReveal;

    bytes32 internal _allowListMerkleRoot;

    string private _baseTokenURI;
    string private _unrevealURI;

    mapping(address => uint256) internal _allowListMinted;
    mapping(address => uint256) internal _flashSaleMinted;
    mapping(address => uint256) internal _publicSaleMinted;

    constructor(
        address royaltyReceiver,
        uint96 royaltyFraction,
        address address_
    ) ERC721A('Japan Dream Collection', 'JDC') {
        _setDefaultRoyalty(royaltyReceiver, royaltyFraction);
        _safeMint(address_, RESERVED_AMOUNT);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseTokenURI = baseURI_;
    }

    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOwner {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    function setWithdrawWallet(address _wallet) external virtual onlyOwner {
        require(_wallet != address(0), 'Cant not be zero address');
        _withdrawWallet = payable(_wallet);
    }

    function setAllowlistSaleEnable(bool bool_) external onlyOwner {
        isAllowListSaleEnabled = bool_;
    }

    function setFlashSaleEnabled(bool bool_) external onlyOwner {
        isFlashSaleEnabled = bool_;
        if (isFlashSaleEnabled) {
            isAllowListSaleEnabled = false;
        }
    }

    function setPublicSaleEnable(bool bool_) external onlyOwner {
        isPublicSaleEnabled = bool_;
        if (isPublicSaleEnabled) {
            isAllowListSaleEnabled = false;
            isFlashSaleEnabled = false;
        }
    }

    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        _allowListMerkleRoot = merkleRoot_;
    }

    function setUnrevealURI(string calldata unrevealURI_) external onlyOwner {
        _unrevealURI = unrevealURI_;
    }

    function setAllowReveal(bool allowReveal_) external onlyOwner {
        allowReveal = allowReveal_;
    }

    function checkWalletAllowListMinted(address wallet_) external view returns (uint256) {
        return _allowListMinted[wallet_];
    }

    function checkWalletPublicSaleMinted(address wallet_) external view returns (uint256) {
        return _publicSaleMinted[wallet_];
    }

    function contractURI() external view virtual returns (string memory) {
        return _formatContractURI();
    }

    function _formatContractURI() internal view returns (string memory) {
        (address receiver, uint256 royaltyFraction) = royaltyInfo(0, _feeDenominator());
        return
            string(
                abi.encodePacked(
                    'data:application/json;base64,',
                    Base64.encode(
                        bytes(
                            abi.encodePacked(
                                '{"seller_fee_basis_points":',
                                Strings.toString(royaltyFraction),
                                ', "fee_recipient":"',
                                Strings.toHexString(uint256(uint160(receiver)), 20),
                                '"}'
                            )
                        )
                    )
                )
            );
    }

    function verify(address address_, bytes32[] calldata proof) public view returns (bool) {
        return MerkleProof.verify(proof, _allowListMerkleRoot, keccak256(abi.encodePacked(address_)));
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'Token not exist');

        if (!allowReveal) return string(abi.encodePacked(_unrevealURI, Strings.toString(tokenId)));

        return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
    }

    function allowListMint(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(isAllowListSaleEnabled, 'Allowlist mint not available');
        require(
            MerkleProof.verify(proof, _allowListMerkleRoot, keccak256(abi.encodePacked(msg.sender))),
            'Merkle Tree verification failed'
        );
        require(quantity <= maxMintsForAllowList, 'Exceeds maximum allowlist mint limit');
        require(
            _allowListMinted[msg.sender] + quantity <= maxMintsForAllowList,
            'Insufficient allowlist mint available'
        );
        require(msg.value == allowListPrice * quantity, 'Incorrect payment amount');
        require(quantity + totalSupply() <= MAX_SUPPLY, 'Exceeds maximum supply');

        _allowListMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function flashSaleMint(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(isFlashSaleEnabled, 'Flash sale mint not available');
        require(
            MerkleProof.verify(proof, _allowListMerkleRoot, keccak256(abi.encodePacked(msg.sender))),
            'Merkle Tree verification failed'
        );
        require(quantity <= maxMintsForFlashSale, 'Exceeds maximum flash sale mint limit');
        require(
            _flashSaleMinted[msg.sender] + quantity <= maxMintsForFlashSale,
            'Insufficient flash sale mint available'
        );
        require(msg.value == flashSalePrice * quantity, 'Incorrect payment amount');
        require(quantity + totalSupply() <= MAX_SUPPLY, 'Exceeds maximum supply');

        _flashSaleMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable nonReentrant {
        require(isPublicSaleEnabled, 'Public sale mint not available');
        require(quantity <= maxMintsForPublicSale, 'Exceeds maximum public mint limit');
        require(
            _publicSaleMinted[msg.sender] + quantity <= maxMintsForPublicSale,
            'Insufficient public mint available'
        );
        require(msg.value == publicSalePrice * quantity, 'Incorrect payment amount');
        require(quantity + totalSupply() <= MAX_SUPPLY, 'Exceeds maximum supply');

        _publicSaleMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function burn(uint256 tokenId) external {
        _burn(tokenId, true);
    }

    function withdraw() external payable virtual onlyOwner nonReentrant {
        bool os;
        if (_withdrawWallet != address(0)) {
            (os, ) = payable(_withdrawWallet).call{value: address(this).balance}('');
        } else {
            (os, ) = payable(owner()).call{value: address(this).balance}('');
        }
        require(os);
    }

    function walletOfOwner(address _address) external view virtual returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        uint256 tokenindex = 0;
        for (uint256 i = _startTokenId(); i < _currentIndex; i++) {
            if (_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i;
        }
        return tokenIds;
    }

    function tryOwnerOf(uint256 tokenId) external view virtual returns (address) {
        try this.ownerOf(tokenId) returns (address _address) {
            return (_address);
        } catch {
            return (address(0));
        }
    }

    function setOperatorFilteringEnabled(bool bool_) external onlyOwner {
        operatorFilteringEnabled = bool_;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"royaltyReceiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"},{"internalType":"address","name":"address_","type":"address"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet_","type":"address"}],"name":"checkWalletAllowListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet_","type":"address"}],"name":"checkWalletPublicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"flashSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flashSalePrice","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":[],"name":"isAllowListSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFlashSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsForAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsForFlashSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsForPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bool","name":"allowReveal_","type":"bool"}],"name":"setAllowReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setAllowlistSaleEnable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setFlashSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealURI_","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setWithdrawWallet","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600c805460ff191660011790553480156200001e57600080fd5b5060405162003e8f38038062003e8f833981016040819052620000419162000771565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601681526020017f4a6170616e20447265616d20436f6c6c656374696f6e00000000000000000000815250604051806040016040528060038152602001624a444360e81b815250620000c4620000be6200026460201b60201c565b62000268565b8151620000d9906003906020850190620006ae565b508051620000ef906004906020840190620006ae565b50600180815560095550506daaeb6d7670e522a718067333cd4e3b156200023f5780156200018d57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016e57600080fd5b505af115801562000183573d6000803e3d6000fd5b505050506200023f565b6001600160a01b03821615620001de5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000153565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050505b506200024e90508383620002b8565b6200025b816032620003bd565b505050620008b3565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6127106001600160601b03821611156200032c5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003845760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000323565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b620003df828260405180602001604052806000815250620003e360201b60201c565b5050565b6001546001600160a01b0384166200040d57604051622e076360e81b815260040160405180910390fd5b826000036200042f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260058352922080546001600160e01b0319168417600160a01b429094169390930292909217909155829182860191620004d89190620005ab811b6200195517901c565b1562000557575b60405182906001600160a01b0388169060009060008051602062003e6f833981519152908290a460018201916200051c90600090889087620005ba565b6200053a576040516368d2bf6b60e11b815260040160405180910390fd5b808210620004df5782600154146200055157600080fd5b6200058c565b5b6040516001830192906001600160a01b0388169060009060008051602062003e6f833981519152908290a480821062000558575b50600155620005a560008583866001600160e01b038516565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620005f1903390899088908890600401620007c9565b6020604051808303816000875af19250505080156200062f575060408051601f3d908101601f191682019092526200062c9181019062000844565b60015b62000691573d80801562000660576040519150601f19603f3d011682016040523d82523d6000602084013e62000665565b606091505b50805160000362000689576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620006bc9062000877565b90600052602060002090601f016020900481019282620006e057600085556200072b565b82601f10620006fb57805160ff19168380011785556200072b565b828001600101855582156200072b579182015b828111156200072b5782518255916020019190600101906200070e565b50620007399291506200073d565b5090565b5b808211156200073957600081556001016200073e565b80516001600160a01b03811681146200076c57600080fd5b919050565b6000806000606084860312156200078757600080fd5b620007928462000754565b60208501519093506001600160601b0381168114620007b057600080fd5b9150620007c06040850162000754565b90509250925092565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008185785810182015185820160a001528101620007fa565b828111156200082b57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200085757600080fd5b81516001600160e01b0319811681146200087057600080fd5b9392505050565b600181811c908216806200088c57607f821691505b602082108103620008ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6135ac80620008c36000396000f3fe60806040526004361061031a5760003560e01c8063715018a6116101ab578063a355fd29116100f7578063d85f274011610095578063ec8bda8e1161006f578063ec8bda8e1461093a578063f2fde38b1461094d578063f4395fcc1461096d578063fb796e6c1461098e57600080fd5b8063d85f2740146108c7578063e8a3d485146108dc578063e985e9c5146108f157600080fd5b8063b88d4fde116100d1578063b88d4fde14610867578063c87b56dd14610887578063cfb4ccb2146108a7578063d3f7084c146107eb57600080fd5b8063a355fd2914610807578063b76a0df414610827578063b7c0b8e81461084757600080fd5b80638da5cb5b1161016457806397bc411c1161013e57806397bc411c1461078f5780639b6860c8146107af578063a22cb465146107cb578063a24e5153146107eb57600080fd5b80638da5cb5b1461073c5780639373f4321461075a57806395d89b411461077a57600080fd5b8063715018a61461067e57806373540b94146106935780637672287e146106a65780637cb64759146106c6578063830b3a64146106e65780638b3961171461070657600080fd5b80633ccfd60b1161026a5780634ad505161161022357806363293a2c116101fd57806363293a2c146105f35780636352211e146106085780636aef147b1461062857806370a082311461065e57600080fd5b80634ad505161461059257806352cf02f0146105b257806355f804b3146105d357600080fd5b80633ccfd60b146104da5780634009920d146104e257806341f434341461050357806342842e0e1461052557806342966c6814610545578063438b63001461056557600080fd5b806318160ddd116102d75780632a55205a116102b15780632a55205a146104725780632db11544146104b1578063303cb4511461043d57806332cb6b0c146104c457600080fd5b806318160ddd1461041157806319185d921461043d57806323b872dd1461045257600080fd5b806301ffc9a71461031f57806304634d8d1461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d0578063097b111e146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612ca0565b6109a8565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612cd2565b6109b9565b005b34801561038257600080fd5b5061038b6109cf565b60405161034b9190612d6f565b3480156103a457600080fd5b506103b86103b3366004612d82565b610a61565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb366004612d9b565b610aa5565b3480156103fc57600080fd5b50600c5461033f90600160a81b900460ff1681565b34801561041d57600080fd5b5061042f600254600154036000190190565b60405190815260200161034b565b34801561044957600080fd5b5061042f600581565b34801561045e57600080fd5b5061037461046d366004612dc7565b610abe565b34801561047e57600080fd5b5061049261048d366004612e08565b610af9565b604080516001600160a01b03909316835260208301919091520161034b565b6103746104bf366004612d82565b610ba7565b3480156104d057600080fd5b5061042f6104b081565b610374610d87565b3480156104ee57600080fd5b50600c5461033f90600160b01b900460ff1681565b34801561050f57600080fd5b506103b86daaeb6d7670e522a718067333cd4e81565b34801561053157600080fd5b50610374610540366004612dc7565b610e89565b34801561055157600080fd5b50610374610560366004612d82565b610ebe565b34801561057157600080fd5b50610585610580366004612e2a565b610ec9565b60405161034b9190612e47565b34801561059e57600080fd5b506103746105ad366004612e99565b610fec565b3480156105be57600080fd5b50600c5461033f90600160c01b900460ff1681565b3480156105df57600080fd5b506103746105ee366004612f41565b611012565b3480156105ff57600080fd5b5061042f600181565b34801561061457600080fd5b506103b8610623366004612d82565b61102d565b34801561063457600080fd5b5061042f610643366004612e2a565b6001600160a01b031660009081526010602052604090205490565b34801561066a57600080fd5b5061042f610679366004612e2a565b61103f565b34801561068a57600080fd5b5061037461108d565b6103746106a1366004612fcd565b61109f565b3480156106b257600080fd5b506103746106c1366004612e99565b61133c565b3480156106d257600080fd5b506103746106e1366004612d82565b611362565b3480156106f257600080fd5b506103b8610701366004612d82565b61136f565b34801561071257600080fd5b5061042f610721366004612e2a565b6001600160a01b031660009081526012602052604090205490565b34801561074857600080fd5b506000546001600160a01b03166103b8565b34801561076657600080fd5b50610374610775366004612e2a565b6113d6565b34801561078657600080fd5b5061038b61145c565b34801561079b57600080fd5b506103746107aa366004613018565b61146b565b3480156107bb57600080fd5b5061042f67016345785d8a000081565b3480156107d757600080fd5b506103746107e6366004613089565b61147f565b3480156107f757600080fd5b5061042f67011c37937e08000081565b34801561081357600080fd5b50610374610822366004612e99565b611493565b34801561083357600080fd5b5061033f6108423660046130b7565b6114d4565b34801561085357600080fd5b50610374610862366004612e99565b611539565b34801561087357600080fd5b506103746108823660046130f2565b611554565b34801561089357600080fd5b5061038b6108a2366004612d82565b611591565b3480156108b357600080fd5b506103746108c2366004612e99565b611628565b3480156108d357600080fd5b5061042f603281565b3480156108e857600080fd5b5061038b611667565b3480156108fd57600080fd5b5061033f61090c366004613171565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610374610948366004612fcd565b611676565b34801561095957600080fd5b50610374610968366004612e2a565b6118df565b34801561097957600080fd5b50600c5461033f90600160b81b900460ff1681565b34801561099a57600080fd5b50600c5461033f9060ff1681565b60006109b382611964565b92915050565b6109c1611989565b6109cb82826119e3565b5050565b6060600380546109de9061319f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061319f565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611ae0565b610a89576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b81610aaf81611b19565b610ab98383611be2565b505050565b826001600160a01b0381163314801590610ada5750600c5460ff165b15610ae857610ae833611b19565b610af3848484611c63565b50505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b6e575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b8d906001600160601b0316876131ef565b610b97919061320e565b91519350909150505b9250929050565b610baf611c6e565b600c54600160b01b900460ff16610c0d5760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206d696e74206e6f7420617661696c61626c65000060448201526064015b60405180910390fd5b6005811115610c685760405162461bcd60e51b815260206004820152602160248201527f45786365656473206d6178696d756d207075626c6963206d696e74206c696d696044820152601d60fa1b6064820152608401610c04565b33600090815260126020526040902054600590610c86908390613230565b1115610cdf5760405162461bcd60e51b815260206004820152602260248201527f496e73756666696369656e74207075626c6963206d696e7420617661696c61626044820152616c6560f01b6064820152608401610c04565b610cf18167016345785d8a00006131ef565b3414610d0f5760405162461bcd60e51b8152600401610c0490613248565b6104b0610d23600254600154036000190190565b610d2d9083613230565b1115610d4b5760405162461bcd60e51b8152600401610c049061327f565b3360009081526012602052604081208054839290610d6a908490613230565b90915550610d7a90503382611cc7565b610d846001600955565b50565b610d8f611989565b610d97611c6e565b600c5460009061010090046001600160a01b031615610e1157600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114610e01576040519150601f19603f3d011682016040523d82523d6000602084013e610e06565b606091505b505080915050610e72565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e67576040519150601f19603f3d011682016040523d82523d6000602084013e610e6c565b606091505b50909150505b80610e7c57600080fd5b50610e876001600955565b565b826001600160a01b0381163314801590610ea55750600c5460ff165b15610eb357610eb333611b19565b610af3848484611ce1565b610d84816001611cfc565b60606000610ed68361103f565b90506000816001600160401b03811115610ef257610ef2612eb6565b604051908082528060200260200182016040528015610f1b578160200160208202803683370190505b509050600060015b600154811015610fe2576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015610f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8d91906132af565b6001600160a01b0316866001600160a01b031603610fd057808383610fb1816132cc565b945081518110610fc357610fc36132e5565b6020026020010181815250505b80610fda816132cc565b915050610f23565b5090949350505050565b610ff4611989565b600c8054911515600160c01b0260ff60c01b19909216919091179055565b61101a611989565b80516109cb90600e906020840190612b7d565b600061103882611eb0565b5192915050565b60006001600160a01b038216611068576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b611095611989565b610e876000611fd2565b6110a7611c6e565b600c54600160b81b900460ff166111005760405162461bcd60e51b815260206004820152601d60248201527f466c6173682073616c65206d696e74206e6f7420617661696c61626c650000006044820152606401610c04565b61117182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612022565b6111bd5760405162461bcd60e51b815260206004820152601f60248201527f4d65726b6c65205472656520766572696669636174696f6e206661696c6564006044820152606401610c04565b600583111561121c5760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d6178696d756d20666c6173682073616c65206d696e74206044820152641b1a5b5a5d60da1b6064820152608401610c04565b3360009081526011602052604090205460059061123a908590613230565b11156112975760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e7420666c6173682073616c65206d696e7420617661604482015265696c61626c6560d01b6064820152608401610c04565b6112a98367011c37937e0800006131ef565b34146112c75760405162461bcd60e51b8152600401610c0490613248565b6104b06112db600254600154036000190190565b6112e59085613230565b11156113035760405162461bcd60e51b8152600401610c049061327f565b3360009081526011602052604081208054859290611322908490613230565b9091555061133290503384611cc7565b610ab96001600955565b611344611989565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b61136a611989565b600d55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa9250505080156113ca575060408051601f3d908101601f191682019092526113c7918101906132af565b60015b6109b357506000919050565b6113de611989565b6001600160a01b0381166114345760405162461bcd60e51b815260206004820152601860248201527f43616e74206e6f74206265207a65726f206164647265737300000000000000006044820152606401610c04565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6060600480546109de9061319f565b611473611989565b610ab9600f8383612c01565b8161148981611b19565b610ab98383612038565b61149b611989565b600c805460ff60b01b1916600160b01b8315158102919091179182905560ff91041615610d8457600c805462ff00ff60a81b1916905550565b600061153183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b031960608b901b1660208201529092506034019050611156565b949350505050565b611541611989565b600c805460ff1916911515919091179055565b836001600160a01b03811633148015906115705750600c5460ff165b1561157e5761157e33611b19565b61158a858585856120cd565b5050505050565b606061159c82611ae0565b6115da5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b6044820152606401610c04565b600c54600160c01b900460ff1661161d57600f6115f683612111565b604051602001611607929190613317565b6040516020818303038152906040529050919050565b600e6115f683612111565b611630611989565b600c805460ff60b81b1916600160b81b8315158102919091179182905560ff91041615610d8457600c805460ff60a81b1916905550565b60606116716121a3565b905090565b61167e611c6e565b600c54600160a81b900460ff166116d75760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c697374206d696e74206e6f7420617661696c61626c65000000006044820152606401610c04565b61173182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b1660208201529092506034019050611156565b61177d5760405162461bcd60e51b815260206004820152601f60248201527f4d65726b6c65205472656520766572696669636174696f6e206661696c6564006044820152606401610c04565b60018311156117da5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d20616c6c6f776c697374206d696e74206c6044820152631a5b5a5d60e21b6064820152608401610c04565b336000908152601060205260409020546001906117f8908590613230565b11156118545760405162461bcd60e51b815260206004820152602560248201527f496e73756666696369656e7420616c6c6f776c697374206d696e7420617661696044820152646c61626c6560d81b6064820152608401610c04565b6118668367011c37937e0800006131ef565b34146118845760405162461bcd60e51b8152600401610c0490613248565b6104b0611898600254600154036000190190565b6118a29085613230565b11156118c05760405162461bcd60e51b8152600401610c049061327f565b3360009081526010602052604081208054859290611322908490613230565b6118e7611989565b6001600160a01b03811661194c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c04565b610d8481611fd2565b6001600160a01b03163b151590565b60006001600160e01b0319821663152a902d60e11b14806109b357506109b382612223565b6000546001600160a01b03163314610e875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6127106001600160601b0382161115611a515760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c04565b6001600160a01b038216611aa75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c04565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600081600111158015611af4575060015482105b80156109b3575050600090815260056020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15801590611b395750600c5460ff165b15610d8457604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bba91906133bd565b610d8457604051633b79c77360e21b81526001600160a01b0382166004820152602401610c04565b6000611bed8261102d565b9050806001600160a01b0316836001600160a01b031603611c215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614611c5857611c3b813361090c565b611c58576040516367d9dca160e11b815260040160405180910390fd5b610ab9838383612273565b610ab98383836122cf565b600260095403611cc05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955565b6109cb8282604051806020016040528060008152506124a8565b610ab983838360405180602001604052806000815250611554565b6000611d0783611eb0565b80519091508215611d6d576000336001600160a01b0383161480611d305750611d30823361090c565b80611d4b575033611d4086610a61565b6001600160a01b0316145b905080611d6b57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d7960008583612273565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e77576001548214611e7757805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613557833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111611fb957600154811015611fb957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611fb75780516001600160a01b031615611f4e579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611fb2579392505050565b611f4e565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008261202f858461264a565b14949350505050565b336001600160a01b038316036120615760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6120d88484846122cf565b6001600160a01b0383163b15610af3576120f484848484612697565b610af3576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061211e83612782565b60010190506000816001600160401b0381111561213d5761213d612eb6565b6040519080825280601f01601f191660200182016040528015612167576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461217157509392505050565b60606000806121b481612710610af9565b915091506121fd6121c482612111565b6121d8846001600160a01b0316601461285a565b6040516020016121e99291906133da565b6040516020818303038152906040526129fc565b60405160200161220d9190613460565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061225457506001600160e01b03198216635b5e139f60e01b145b806109b357506301ffc9a760e01b6001600160e01b03198316146109b3565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006122da82611eb0565b9050836001600160a01b031681600001516001600160a01b0316146123115760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061232f575061232f853361090c565b8061234a57503361233f84610a61565b6001600160a01b0316145b90508061236a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661239157604051633a954ecd60e21b815260040160405180910390fd5b61239d60008487612273565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661247157600154821461247157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061355783398151915260405160405180910390a461158a565b6001546001600160a01b0384166124d157604051622e076360e81b815260040160405180910390fd5b826000036124f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612608575b60405182906001600160a01b03881690600090600080516020613557833981519152908290a46125d16000878480600101955087612697565b6125ee576040516368d2bf6b60e11b815260040160405180910390fd5b80821061259857826001541461260357600080fd5b61263b565b5b6040516001830192906001600160a01b03881690600090600080516020613557833981519152908290a4808210612609575b50600155610af3600085838684565b600081815b845181101561268f5761267b8286838151811061266e5761266e6132e5565b6020026020010151612b4e565b915080612687816132cc565b91505061264f565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906126cc9033908990889088906004016134a5565b6020604051808303816000875af1925050508015612707575060408051601f3d908101601f19168201909252612704918101906134e2565b60015b612765573d808015612735576040519150601f19603f3d011682016040523d82523d6000602084013e61273a565b606091505b50805160000361275d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106127c15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106127ed576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061280b57662386f26fc10000830492506010015b6305f5e1008310612823576305f5e100830492506008015b612710831061283757612710830492506004015b60648310612849576064830492506002015b600a83106109b35760010192915050565b606060006128698360026131ef565b612874906002613230565b6001600160401b0381111561288b5761288b612eb6565b6040519080825280601f01601f1916602001820160405280156128b5576020820181803683370190505b509050600360fc1b816000815181106128d0576128d06132e5565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106128ff576128ff6132e5565b60200101906001600160f81b031916908160001a90535060006129238460026131ef565b61292e906001613230565b90505b60018111156129a6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612962576129626132e5565b1a60f81b828281518110612978576129786132e5565b60200101906001600160f81b031916908160001a90535060049490941c9361299f816134ff565b9050612931565b5083156129f55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c04565b9392505050565b60608151600003612a1b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016135176040913990506000600384516002612a4a9190613230565b612a54919061320e565b612a5f9060046131ef565b6001600160401b03811115612a7657612a76612eb6565b6040519080825280601f01601f191660200182016040528015612aa0576020820181803683370190505b509050600182016020820185865187015b80821015612b0c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612ab1565b5050600386510660018114612b285760028114612b3b57612b43565b603d6001830353603d6002830353612b43565b603d60018303535b509195945050505050565b6000818310612b6a5760008281526020849052604090206129f5565b60008381526020839052604090206129f5565b828054612b899061319f565b90600052602060002090601f016020900481019282612bab5760008555612bf1565b82601f10612bc457805160ff1916838001178555612bf1565b82800160010185558215612bf1579182015b82811115612bf1578251825591602001919060010190612bd6565b50612bfd929150612c75565b5090565b828054612c0d9061319f565b90600052602060002090601f016020900481019282612c2f5760008555612bf1565b82601f10612c485782800160ff19823516178555612bf1565b82800160010185558215612bf1579182015b82811115612bf1578235825591602001919060010190612c5a565b5b80821115612bfd5760008155600101612c76565b6001600160e01b031981168114610d8457600080fd5b600060208284031215612cb257600080fd5b81356129f581612c8a565b6001600160a01b0381168114610d8457600080fd5b60008060408385031215612ce557600080fd5b8235612cf081612cbd565b915060208301356001600160601b0381168114612d0c57600080fd5b809150509250929050565b60005b83811015612d32578181015183820152602001612d1a565b83811115610af35750506000910152565b60008151808452612d5b816020860160208601612d17565b601f01601f19169290920160200192915050565b6020815260006129f56020830184612d43565b600060208284031215612d9457600080fd5b5035919050565b60008060408385031215612dae57600080fd5b8235612db981612cbd565b946020939093013593505050565b600080600060608486031215612ddc57600080fd5b8335612de781612cbd565b92506020840135612df781612cbd565b929592945050506040919091013590565b60008060408385031215612e1b57600080fd5b50508035926020909101359150565b600060208284031215612e3c57600080fd5b81356129f581612cbd565b6020808252825182820181905260009190848201906040850190845b81811015612e7f57835183529284019291840191600101612e63565b50909695505050505050565b8015158114610d8457600080fd5b600060208284031215612eab57600080fd5b81356129f581612e8b565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612ee657612ee6612eb6565b604051601f8501601f19908116603f01168101908282118183101715612f0e57612f0e612eb6565b81604052809350858152868686011115612f2757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f5357600080fd5b81356001600160401b03811115612f6957600080fd5b8201601f81018413612f7a57600080fd5b61153184823560208401612ecc565b60008083601f840112612f9b57600080fd5b5081356001600160401b03811115612fb257600080fd5b6020830191508360208260051b8501011115610ba057600080fd5b600080600060408486031215612fe257600080fd5b8335925060208401356001600160401b03811115612fff57600080fd5b61300b86828701612f89565b9497909650939450505050565b6000806020838503121561302b57600080fd5b82356001600160401b038082111561304257600080fd5b818501915085601f83011261305657600080fd5b81358181111561306557600080fd5b86602082850101111561307757600080fd5b60209290920196919550909350505050565b6000806040838503121561309c57600080fd5b82356130a781612cbd565b91506020830135612d0c81612e8b565b6000806000604084860312156130cc57600080fd5b83356130d781612cbd565b925060208401356001600160401b03811115612fff57600080fd5b6000806000806080858703121561310857600080fd5b843561311381612cbd565b9350602085013561312381612cbd565b92506040850135915060608501356001600160401b0381111561314557600080fd5b8501601f8101871361315657600080fd5b61316587823560208401612ecc565b91505092959194509250565b6000806040838503121561318457600080fd5b823561318f81612cbd565b91506020830135612d0c81612cbd565b600181811c908216806131b357607f821691505b6020821081036131d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613209576132096131d9565b500290565b60008261322b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613243576132436131d9565b500190565b60208082526018908201527f496e636f7272656374207061796d656e7420616d6f756e740000000000000000604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b6000602082840312156132c157600080fd5b81516129f581612cbd565b6000600182016132de576132de6131d9565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000815161330d818560208601612d17565b9290920192915050565b600080845481600182811c91508083168061333357607f831692505b6020808410820361335257634e487b7160e01b86526022600452602486fd5b8180156133665760018114613377576133a4565b60ff198616895284890196506133a4565b60008b81526020902060005b8681101561339c5781548b820152908501908301613383565b505084890196505b5050505050506133b481856132fb565b95945050505050565b6000602082840312156133cf57600080fd5b81516129f581612e8b565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161341281601b850160208801612d17565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161344581602e840160208801612d17565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161349881601d850160208701612d17565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134d890830184612d43565b9695505050505050565b6000602082840312156134f457600080fd5b81516129f581612c8a565b60008161350e5761350e6131d9565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122058d62e6dde097b0aa75c18aea5491a7b81515df5658127b46a24a01122f3e18664736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000009f76cbafdc255e6cbaacbdbe41dcf79dcd7c02b800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000b805be0861280ac7977704795e6be250486d69fe

Deployed Bytecode

0x60806040526004361061031a5760003560e01c8063715018a6116101ab578063a355fd29116100f7578063d85f274011610095578063ec8bda8e1161006f578063ec8bda8e1461093a578063f2fde38b1461094d578063f4395fcc1461096d578063fb796e6c1461098e57600080fd5b8063d85f2740146108c7578063e8a3d485146108dc578063e985e9c5146108f157600080fd5b8063b88d4fde116100d1578063b88d4fde14610867578063c87b56dd14610887578063cfb4ccb2146108a7578063d3f7084c146107eb57600080fd5b8063a355fd2914610807578063b76a0df414610827578063b7c0b8e81461084757600080fd5b80638da5cb5b1161016457806397bc411c1161013e57806397bc411c1461078f5780639b6860c8146107af578063a22cb465146107cb578063a24e5153146107eb57600080fd5b80638da5cb5b1461073c5780639373f4321461075a57806395d89b411461077a57600080fd5b8063715018a61461067e57806373540b94146106935780637672287e146106a65780637cb64759146106c6578063830b3a64146106e65780638b3961171461070657600080fd5b80633ccfd60b1161026a5780634ad505161161022357806363293a2c116101fd57806363293a2c146105f35780636352211e146106085780636aef147b1461062857806370a082311461065e57600080fd5b80634ad505161461059257806352cf02f0146105b257806355f804b3146105d357600080fd5b80633ccfd60b146104da5780634009920d146104e257806341f434341461050357806342842e0e1461052557806342966c6814610545578063438b63001461056557600080fd5b806318160ddd116102d75780632a55205a116102b15780632a55205a146104725780632db11544146104b1578063303cb4511461043d57806332cb6b0c146104c457600080fd5b806318160ddd1461041157806319185d921461043d57806323b872dd1461045257600080fd5b806301ffc9a71461031f57806304634d8d1461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d0578063097b111e146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612ca0565b6109a8565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612cd2565b6109b9565b005b34801561038257600080fd5b5061038b6109cf565b60405161034b9190612d6f565b3480156103a457600080fd5b506103b86103b3366004612d82565b610a61565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb366004612d9b565b610aa5565b3480156103fc57600080fd5b50600c5461033f90600160a81b900460ff1681565b34801561041d57600080fd5b5061042f600254600154036000190190565b60405190815260200161034b565b34801561044957600080fd5b5061042f600581565b34801561045e57600080fd5b5061037461046d366004612dc7565b610abe565b34801561047e57600080fd5b5061049261048d366004612e08565b610af9565b604080516001600160a01b03909316835260208301919091520161034b565b6103746104bf366004612d82565b610ba7565b3480156104d057600080fd5b5061042f6104b081565b610374610d87565b3480156104ee57600080fd5b50600c5461033f90600160b01b900460ff1681565b34801561050f57600080fd5b506103b86daaeb6d7670e522a718067333cd4e81565b34801561053157600080fd5b50610374610540366004612dc7565b610e89565b34801561055157600080fd5b50610374610560366004612d82565b610ebe565b34801561057157600080fd5b50610585610580366004612e2a565b610ec9565b60405161034b9190612e47565b34801561059e57600080fd5b506103746105ad366004612e99565b610fec565b3480156105be57600080fd5b50600c5461033f90600160c01b900460ff1681565b3480156105df57600080fd5b506103746105ee366004612f41565b611012565b3480156105ff57600080fd5b5061042f600181565b34801561061457600080fd5b506103b8610623366004612d82565b61102d565b34801561063457600080fd5b5061042f610643366004612e2a565b6001600160a01b031660009081526010602052604090205490565b34801561066a57600080fd5b5061042f610679366004612e2a565b61103f565b34801561068a57600080fd5b5061037461108d565b6103746106a1366004612fcd565b61109f565b3480156106b257600080fd5b506103746106c1366004612e99565b61133c565b3480156106d257600080fd5b506103746106e1366004612d82565b611362565b3480156106f257600080fd5b506103b8610701366004612d82565b61136f565b34801561071257600080fd5b5061042f610721366004612e2a565b6001600160a01b031660009081526012602052604090205490565b34801561074857600080fd5b506000546001600160a01b03166103b8565b34801561076657600080fd5b50610374610775366004612e2a565b6113d6565b34801561078657600080fd5b5061038b61145c565b34801561079b57600080fd5b506103746107aa366004613018565b61146b565b3480156107bb57600080fd5b5061042f67016345785d8a000081565b3480156107d757600080fd5b506103746107e6366004613089565b61147f565b3480156107f757600080fd5b5061042f67011c37937e08000081565b34801561081357600080fd5b50610374610822366004612e99565b611493565b34801561083357600080fd5b5061033f6108423660046130b7565b6114d4565b34801561085357600080fd5b50610374610862366004612e99565b611539565b34801561087357600080fd5b506103746108823660046130f2565b611554565b34801561089357600080fd5b5061038b6108a2366004612d82565b611591565b3480156108b357600080fd5b506103746108c2366004612e99565b611628565b3480156108d357600080fd5b5061042f603281565b3480156108e857600080fd5b5061038b611667565b3480156108fd57600080fd5b5061033f61090c366004613171565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610374610948366004612fcd565b611676565b34801561095957600080fd5b50610374610968366004612e2a565b6118df565b34801561097957600080fd5b50600c5461033f90600160b81b900460ff1681565b34801561099a57600080fd5b50600c5461033f9060ff1681565b60006109b382611964565b92915050565b6109c1611989565b6109cb82826119e3565b5050565b6060600380546109de9061319f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061319f565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611ae0565b610a89576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b81610aaf81611b19565b610ab98383611be2565b505050565b826001600160a01b0381163314801590610ada5750600c5460ff165b15610ae857610ae833611b19565b610af3848484611c63565b50505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b6e575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b8d906001600160601b0316876131ef565b610b97919061320e565b91519350909150505b9250929050565b610baf611c6e565b600c54600160b01b900460ff16610c0d5760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206d696e74206e6f7420617661696c61626c65000060448201526064015b60405180910390fd5b6005811115610c685760405162461bcd60e51b815260206004820152602160248201527f45786365656473206d6178696d756d207075626c6963206d696e74206c696d696044820152601d60fa1b6064820152608401610c04565b33600090815260126020526040902054600590610c86908390613230565b1115610cdf5760405162461bcd60e51b815260206004820152602260248201527f496e73756666696369656e74207075626c6963206d696e7420617661696c61626044820152616c6560f01b6064820152608401610c04565b610cf18167016345785d8a00006131ef565b3414610d0f5760405162461bcd60e51b8152600401610c0490613248565b6104b0610d23600254600154036000190190565b610d2d9083613230565b1115610d4b5760405162461bcd60e51b8152600401610c049061327f565b3360009081526012602052604081208054839290610d6a908490613230565b90915550610d7a90503382611cc7565b610d846001600955565b50565b610d8f611989565b610d97611c6e565b600c5460009061010090046001600160a01b031615610e1157600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114610e01576040519150601f19603f3d011682016040523d82523d6000602084013e610e06565b606091505b505080915050610e72565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e67576040519150601f19603f3d011682016040523d82523d6000602084013e610e6c565b606091505b50909150505b80610e7c57600080fd5b50610e876001600955565b565b826001600160a01b0381163314801590610ea55750600c5460ff165b15610eb357610eb333611b19565b610af3848484611ce1565b610d84816001611cfc565b60606000610ed68361103f565b90506000816001600160401b03811115610ef257610ef2612eb6565b604051908082528060200260200182016040528015610f1b578160200160208202803683370190505b509050600060015b600154811015610fe2576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015610f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8d91906132af565b6001600160a01b0316866001600160a01b031603610fd057808383610fb1816132cc565b945081518110610fc357610fc36132e5565b6020026020010181815250505b80610fda816132cc565b915050610f23565b5090949350505050565b610ff4611989565b600c8054911515600160c01b0260ff60c01b19909216919091179055565b61101a611989565b80516109cb90600e906020840190612b7d565b600061103882611eb0565b5192915050565b60006001600160a01b038216611068576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b611095611989565b610e876000611fd2565b6110a7611c6e565b600c54600160b81b900460ff166111005760405162461bcd60e51b815260206004820152601d60248201527f466c6173682073616c65206d696e74206e6f7420617661696c61626c650000006044820152606401610c04565b61117182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612022565b6111bd5760405162461bcd60e51b815260206004820152601f60248201527f4d65726b6c65205472656520766572696669636174696f6e206661696c6564006044820152606401610c04565b600583111561121c5760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d6178696d756d20666c6173682073616c65206d696e74206044820152641b1a5b5a5d60da1b6064820152608401610c04565b3360009081526011602052604090205460059061123a908590613230565b11156112975760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e7420666c6173682073616c65206d696e7420617661604482015265696c61626c6560d01b6064820152608401610c04565b6112a98367011c37937e0800006131ef565b34146112c75760405162461bcd60e51b8152600401610c0490613248565b6104b06112db600254600154036000190190565b6112e59085613230565b11156113035760405162461bcd60e51b8152600401610c049061327f565b3360009081526011602052604081208054859290611322908490613230565b9091555061133290503384611cc7565b610ab96001600955565b611344611989565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b61136a611989565b600d55565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa9250505080156113ca575060408051601f3d908101601f191682019092526113c7918101906132af565b60015b6109b357506000919050565b6113de611989565b6001600160a01b0381166114345760405162461bcd60e51b815260206004820152601860248201527f43616e74206e6f74206265207a65726f206164647265737300000000000000006044820152606401610c04565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6060600480546109de9061319f565b611473611989565b610ab9600f8383612c01565b8161148981611b19565b610ab98383612038565b61149b611989565b600c805460ff60b01b1916600160b01b8315158102919091179182905560ff91041615610d8457600c805462ff00ff60a81b1916905550565b600061153183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b031960608b901b1660208201529092506034019050611156565b949350505050565b611541611989565b600c805460ff1916911515919091179055565b836001600160a01b03811633148015906115705750600c5460ff165b1561157e5761157e33611b19565b61158a858585856120cd565b5050505050565b606061159c82611ae0565b6115da5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b6044820152606401610c04565b600c54600160c01b900460ff1661161d57600f6115f683612111565b604051602001611607929190613317565b6040516020818303038152906040529050919050565b600e6115f683612111565b611630611989565b600c805460ff60b81b1916600160b81b8315158102919091179182905560ff91041615610d8457600c805460ff60a81b1916905550565b60606116716121a3565b905090565b61167e611c6e565b600c54600160a81b900460ff166116d75760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c697374206d696e74206e6f7420617661696c61626c65000000006044820152606401610c04565b61173182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b1660208201529092506034019050611156565b61177d5760405162461bcd60e51b815260206004820152601f60248201527f4d65726b6c65205472656520766572696669636174696f6e206661696c6564006044820152606401610c04565b60018311156117da5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d20616c6c6f776c697374206d696e74206c6044820152631a5b5a5d60e21b6064820152608401610c04565b336000908152601060205260409020546001906117f8908590613230565b11156118545760405162461bcd60e51b815260206004820152602560248201527f496e73756666696369656e7420616c6c6f776c697374206d696e7420617661696044820152646c61626c6560d81b6064820152608401610c04565b6118668367011c37937e0800006131ef565b34146118845760405162461bcd60e51b8152600401610c0490613248565b6104b0611898600254600154036000190190565b6118a29085613230565b11156118c05760405162461bcd60e51b8152600401610c049061327f565b3360009081526010602052604081208054859290611322908490613230565b6118e7611989565b6001600160a01b03811661194c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c04565b610d8481611fd2565b6001600160a01b03163b151590565b60006001600160e01b0319821663152a902d60e11b14806109b357506109b382612223565b6000546001600160a01b03163314610e875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6127106001600160601b0382161115611a515760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c04565b6001600160a01b038216611aa75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c04565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600081600111158015611af4575060015482105b80156109b3575050600090815260056020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15801590611b395750600c5460ff165b15610d8457604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bba91906133bd565b610d8457604051633b79c77360e21b81526001600160a01b0382166004820152602401610c04565b6000611bed8261102d565b9050806001600160a01b0316836001600160a01b031603611c215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614611c5857611c3b813361090c565b611c58576040516367d9dca160e11b815260040160405180910390fd5b610ab9838383612273565b610ab98383836122cf565b600260095403611cc05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955565b6109cb8282604051806020016040528060008152506124a8565b610ab983838360405180602001604052806000815250611554565b6000611d0783611eb0565b80519091508215611d6d576000336001600160a01b0383161480611d305750611d30823361090c565b80611d4b575033611d4086610a61565b6001600160a01b0316145b905080611d6b57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d7960008583612273565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e77576001548214611e7757805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613557833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111611fb957600154811015611fb957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611fb75780516001600160a01b031615611f4e579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611fb2579392505050565b611f4e565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008261202f858461264a565b14949350505050565b336001600160a01b038316036120615760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6120d88484846122cf565b6001600160a01b0383163b15610af3576120f484848484612697565b610af3576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061211e83612782565b60010190506000816001600160401b0381111561213d5761213d612eb6565b6040519080825280601f01601f191660200182016040528015612167576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461217157509392505050565b60606000806121b481612710610af9565b915091506121fd6121c482612111565b6121d8846001600160a01b0316601461285a565b6040516020016121e99291906133da565b6040516020818303038152906040526129fc565b60405160200161220d9190613460565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061225457506001600160e01b03198216635b5e139f60e01b145b806109b357506301ffc9a760e01b6001600160e01b03198316146109b3565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006122da82611eb0565b9050836001600160a01b031681600001516001600160a01b0316146123115760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061232f575061232f853361090c565b8061234a57503361233f84610a61565b6001600160a01b0316145b90508061236a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661239157604051633a954ecd60e21b815260040160405180910390fd5b61239d60008487612273565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661247157600154821461247157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061355783398151915260405160405180910390a461158a565b6001546001600160a01b0384166124d157604051622e076360e81b815260040160405180910390fd5b826000036124f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612608575b60405182906001600160a01b03881690600090600080516020613557833981519152908290a46125d16000878480600101955087612697565b6125ee576040516368d2bf6b60e11b815260040160405180910390fd5b80821061259857826001541461260357600080fd5b61263b565b5b6040516001830192906001600160a01b03881690600090600080516020613557833981519152908290a4808210612609575b50600155610af3600085838684565b600081815b845181101561268f5761267b8286838151811061266e5761266e6132e5565b6020026020010151612b4e565b915080612687816132cc565b91505061264f565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906126cc9033908990889088906004016134a5565b6020604051808303816000875af1925050508015612707575060408051601f3d908101601f19168201909252612704918101906134e2565b60015b612765573d808015612735576040519150601f19603f3d011682016040523d82523d6000602084013e61273a565b606091505b50805160000361275d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106127c15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106127ed576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061280b57662386f26fc10000830492506010015b6305f5e1008310612823576305f5e100830492506008015b612710831061283757612710830492506004015b60648310612849576064830492506002015b600a83106109b35760010192915050565b606060006128698360026131ef565b612874906002613230565b6001600160401b0381111561288b5761288b612eb6565b6040519080825280601f01601f1916602001820160405280156128b5576020820181803683370190505b509050600360fc1b816000815181106128d0576128d06132e5565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106128ff576128ff6132e5565b60200101906001600160f81b031916908160001a90535060006129238460026131ef565b61292e906001613230565b90505b60018111156129a6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612962576129626132e5565b1a60f81b828281518110612978576129786132e5565b60200101906001600160f81b031916908160001a90535060049490941c9361299f816134ff565b9050612931565b5083156129f55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c04565b9392505050565b60608151600003612a1b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016135176040913990506000600384516002612a4a9190613230565b612a54919061320e565b612a5f9060046131ef565b6001600160401b03811115612a7657612a76612eb6565b6040519080825280601f01601f191660200182016040528015612aa0576020820181803683370190505b509050600182016020820185865187015b80821015612b0c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612ab1565b5050600386510660018114612b285760028114612b3b57612b43565b603d6001830353603d6002830353612b43565b603d60018303535b509195945050505050565b6000818310612b6a5760008281526020849052604090206129f5565b60008381526020839052604090206129f5565b828054612b899061319f565b90600052602060002090601f016020900481019282612bab5760008555612bf1565b82601f10612bc457805160ff1916838001178555612bf1565b82800160010185558215612bf1579182015b82811115612bf1578251825591602001919060010190612bd6565b50612bfd929150612c75565b5090565b828054612c0d9061319f565b90600052602060002090601f016020900481019282612c2f5760008555612bf1565b82601f10612c485782800160ff19823516178555612bf1565b82800160010185558215612bf1579182015b82811115612bf1578235825591602001919060010190612c5a565b5b80821115612bfd5760008155600101612c76565b6001600160e01b031981168114610d8457600080fd5b600060208284031215612cb257600080fd5b81356129f581612c8a565b6001600160a01b0381168114610d8457600080fd5b60008060408385031215612ce557600080fd5b8235612cf081612cbd565b915060208301356001600160601b0381168114612d0c57600080fd5b809150509250929050565b60005b83811015612d32578181015183820152602001612d1a565b83811115610af35750506000910152565b60008151808452612d5b816020860160208601612d17565b601f01601f19169290920160200192915050565b6020815260006129f56020830184612d43565b600060208284031215612d9457600080fd5b5035919050565b60008060408385031215612dae57600080fd5b8235612db981612cbd565b946020939093013593505050565b600080600060608486031215612ddc57600080fd5b8335612de781612cbd565b92506020840135612df781612cbd565b929592945050506040919091013590565b60008060408385031215612e1b57600080fd5b50508035926020909101359150565b600060208284031215612e3c57600080fd5b81356129f581612cbd565b6020808252825182820181905260009190848201906040850190845b81811015612e7f57835183529284019291840191600101612e63565b50909695505050505050565b8015158114610d8457600080fd5b600060208284031215612eab57600080fd5b81356129f581612e8b565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612ee657612ee6612eb6565b604051601f8501601f19908116603f01168101908282118183101715612f0e57612f0e612eb6565b81604052809350858152868686011115612f2757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f5357600080fd5b81356001600160401b03811115612f6957600080fd5b8201601f81018413612f7a57600080fd5b61153184823560208401612ecc565b60008083601f840112612f9b57600080fd5b5081356001600160401b03811115612fb257600080fd5b6020830191508360208260051b8501011115610ba057600080fd5b600080600060408486031215612fe257600080fd5b8335925060208401356001600160401b03811115612fff57600080fd5b61300b86828701612f89565b9497909650939450505050565b6000806020838503121561302b57600080fd5b82356001600160401b038082111561304257600080fd5b818501915085601f83011261305657600080fd5b81358181111561306557600080fd5b86602082850101111561307757600080fd5b60209290920196919550909350505050565b6000806040838503121561309c57600080fd5b82356130a781612cbd565b91506020830135612d0c81612e8b565b6000806000604084860312156130cc57600080fd5b83356130d781612cbd565b925060208401356001600160401b03811115612fff57600080fd5b6000806000806080858703121561310857600080fd5b843561311381612cbd565b9350602085013561312381612cbd565b92506040850135915060608501356001600160401b0381111561314557600080fd5b8501601f8101871361315657600080fd5b61316587823560208401612ecc565b91505092959194509250565b6000806040838503121561318457600080fd5b823561318f81612cbd565b91506020830135612d0c81612cbd565b600181811c908216806131b357607f821691505b6020821081036131d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613209576132096131d9565b500290565b60008261322b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613243576132436131d9565b500190565b60208082526018908201527f496e636f7272656374207061796d656e7420616d6f756e740000000000000000604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b6000602082840312156132c157600080fd5b81516129f581612cbd565b6000600182016132de576132de6131d9565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000815161330d818560208601612d17565b9290920192915050565b600080845481600182811c91508083168061333357607f831692505b6020808410820361335257634e487b7160e01b86526022600452602486fd5b8180156133665760018114613377576133a4565b60ff198616895284890196506133a4565b60008b81526020902060005b8681101561339c5781548b820152908501908301613383565b505084890196505b5050505050506133b481856132fb565b95945050505050565b6000602082840312156133cf57600080fd5b81516129f581612e8b565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161341281601b850160208801612d17565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161344581602e840160208801612d17565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161349881601d850160208701612d17565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134d890830184612d43565b9695505050505050565b6000602082840312156134f457600080fd5b81516129f581612c8a565b60008161350e5761350e6131d9565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122058d62e6dde097b0aa75c18aea5491a7b81515df5658127b46a24a01122f3e18664736f6c634300080d0033

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

0000000000000000000000009f76cbafdc255e6cbaacbdbe41dcf79dcd7c02b800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000b805be0861280ac7977704795e6be250486d69fe

-----Decoded View---------------
Arg [0] : royaltyReceiver (address): 0x9F76cBAFdc255e6CBaaCBdbe41DCF79dcd7C02b8
Arg [1] : royaltyFraction (uint96): 1000
Arg [2] : address_ (address): 0xb805BE0861280aC7977704795e6Be250486D69Fe

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009f76cbafdc255e6cbaacbdbe41dcf79dcd7c02b8
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 000000000000000000000000b805be0861280ac7977704795e6be250486d69fe


Deployed Bytecode Sourcemap

89714:9692:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99232:171;;;;;;;;;;-1:-1:-1;99232:171:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;99232:171:0;;;;;;;;91389:158;;;;;;;;;;-1:-1:-1;91389:158:0;;;;;:::i;:::-;;:::i;:::-;;44232:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45766:204::-;;;;;;;;;;-1:-1:-1;45766:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2290:32:1;;;2272:51;;2260:2;2245:18;45766:204:0;2126:203:1;98402:157:0;;;;;;;;;;-1:-1:-1;98402:157:0;;;;;:::i;:::-;;:::i;90316:34::-;;;;;;;;;;-1:-1:-1;90316:34:0;;;;-1:-1:-1;;;90316:34:0;;;;;;40268:312;;;;;;;;;;;;40531:12;;91136:1;40515:13;:28;-1:-1:-1;;40515:46:0;;40268:312;;;;2800:25:1;;;2788:2;2773:18;40268:312:0;2654:177:1;90158:48:0;;;;;;;;;;;;90205:1;90158:48;;98567:197;;;;;;;;;;-1:-1:-1;98567:197:0;;;;;:::i;:::-;;:::i;87133:442::-;;;;;;;;;;-1:-1:-1;87133:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3742:32:1;;;3724:51;;3806:2;3791:18;;3784:34;;;;3697:18;87133:442:0;3550:274:1;96265:666:0;;;;;;:::i;:::-;;:::i;90215:41::-;;;;;;;;;;;;90252:4;90215:41;;97026:357;;;:::i;90357:31::-;;;;;;;;;;-1:-1:-1;90357:31:0;;;;-1:-1:-1;;;90357:31:0;;;;;;65852:143;;;;;;;;;;;;65952:42;65852:143;;98772:205;;;;;;;;;;-1:-1:-1;98772:205:0;;;;;:::i;:::-;;:::i;96939:79::-;;;;;;;;;;-1:-1:-1;96939:79:0;;;;;:::i;:::-;;:::i;97391:439::-;;;;;;;;;;-1:-1:-1;97391:439:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;92578:107::-;;;;;;;;;;-1:-1:-1;92578:107:0;;;;;:::i;:::-;;:::i;90432:23::-;;;;;;;;;;-1:-1:-1;90432:23:0;;;;-1:-1:-1;;;90432:23:0;;;;;;91275:106;;;;;;;;;;-1:-1:-1;91275:106:0;;;;;:::i;:::-;;:::i;90047:48::-;;;;;;;;;;;;90094:1;90047:48;;44040:125;;;;;;;;;;-1:-1:-1;44040:125:0;;;;;:::i;:::-;;:::i;92693:136::-;;;;;;;;;;-1:-1:-1;92693:136:0;;;;;:::i;:::-;-1:-1:-1;;;;;92796:25:0;92769:7;92796:25;;;:16;:25;;;;;;;92693:136;41397:206;;;;;;;;;;-1:-1:-1;41397:206:0;;;;;:::i;:::-;;:::i;61868:103::-;;;;;;;;;;;;;:::i;95381:876::-;;;;;;:::i;:::-;;:::i;91756:112::-;;;;;;;;;;-1:-1:-1;91756:112:0;;;;;:::i;:::-;;:::i;92327:116::-;;;;;;;;;;-1:-1:-1;92327:116:0;;;;;:::i;:::-;;:::i;97838:245::-;;;;;;;;;;-1:-1:-1;97838:245:0;;;;;:::i;:::-;;:::i;92837:138::-;;;;;;;;;;-1:-1:-1;92837:138:0;;;;;:::i;:::-;-1:-1:-1;;;;;92941:26:0;92914:7;92941:26;;;:17;:26;;;;;;;92837:138;61220:87;;;;;;;;;;-1:-1:-1;61266:7:0;61293:6;-1:-1:-1;;;;;61293:6:0;61220:87;;91555:193;;;;;;;;;;-1:-1:-1;91555:193:0;;;;;:::i;:::-;;:::i;44401:104::-;;;;;;;;;;;;;:::i;92451:119::-;;;;;;;;;;-1:-1:-1;92451:119:0;;;;;:::i;:::-;;:::i;89987:51::-;;;;;;;;;;;;90029:9;89987:51;;98218:176;;;;;;;;;;-1:-1:-1;98218:176:0;;;;;:::i;:::-;;:::i;89871:51::-;;;;;;;;;;;;89912:10;89871:51;;92080:239;;;;;;;;;;-1:-1:-1;92080:239:0;;;;;:::i;:::-;;:::i;93949:199::-;;;;;;;;;;-1:-1:-1;93949:199:0;;;;;:::i;:::-;;:::i;98091:119::-;;;;;;;;;;-1:-1:-1;98091:119:0;;;;;:::i;:::-;;:::i;98985:239::-;;;;;;;;;;-1:-1:-1;98985:239:0;;;;;:::i;:::-;;:::i;94156:332::-;;;;;;;;;;-1:-1:-1;94156:332:0;;;;;:::i;:::-;;:::i;91876:196::-;;;;;;;;;;-1:-1:-1;91876:196:0;;;;;:::i;:::-;;:::i;90263:44::-;;;;;;;;;;;;90305:2;90263:44;;92983:115;;;;;;;;;;;;;:::i;46400:164::-;;;;;;;;;;-1:-1:-1;46400:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46521:25:0;;;46497:4;46521:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46400:164;94496:877;;;;;;:::i;:::-;;:::i;62126:201::-;;;;;;;;;;-1:-1:-1;62126:201:0;;;;;:::i;:::-;;:::i;90395:30::-;;;;;;;;;;-1:-1:-1;90395:30:0;;;;-1:-1:-1;;;90395:30:0;;;;;;65800:43;;;;;;;;;;-1:-1:-1;65800:43:0;;;;;;;;99232:171;99335:4;99359:36;99383:11;99359:23;:36::i;:::-;99352:43;99232:171;-1:-1:-1;;99232:171:0:o;91389:158::-;61106:13;:11;:13::i;:::-;91495:44:::1;91514:9;91525:13;91495:18;:44::i;:::-;91389:158:::0;;:::o;44232:100::-;44286:13;44319:5;44312:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44232:100;:::o;45766:204::-;45834:7;45859:16;45867:7;45859;:16::i;:::-;45854:64;;45884:34;;-1:-1:-1;;;45884:34:0;;;;;;;;;;;45854:64;-1:-1:-1;45938:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45938:24:0;;45766:204::o;98402:157::-;98498:8;67401:30;67422:8;67401:20;:30::i;:::-;98519:32:::1;98533:8;98543:7;98519:13;:32::i;:::-;98402:157:::0;;;:::o;98567:197::-;98702:4;-1:-1:-1;;;;;67193:18:0;;67201:10;67193:18;;;;:46;;-1:-1:-1;67215:24:0;;;;67193:46;67189:111;;;67256:32;67277:10;67256:20;:32::i;:::-;98719:37:::1;98738:4;98744:2;98748:7;98719:18;:37::i;:::-;98567:197:::0;;;;:::o;87133:442::-;87230:7;87288:27;;;:17;:27;;;;;;;;87259:56;;;;;;;;;-1:-1:-1;;;;;87259:56:0;;;;;-1:-1:-1;;;87259:56:0;;;-1:-1:-1;;;;;87259:56:0;;;;;;;;87230:7;;87328:92;;-1:-1:-1;87379:29:0;;;;;;;;;87389:19;87379:29;-1:-1:-1;;;;;87379:29:0;;;;-1:-1:-1;;;87379:29:0;;-1:-1:-1;;;;;87379:29:0;;;;;87328:92;87470:23;;;;87432:21;;87941:5;;87457:36;;-1:-1:-1;;;;;87457:36:0;:10;:36;:::i;:::-;87456:58;;;;:::i;:::-;87535:16;;;-1:-1:-1;87432:82:0;;-1:-1:-1;;87133:442:0;;;;;;:::o;96265:666::-;74411:21;:19;:21::i;:::-;96352:19:::1;::::0;-1:-1:-1;;;96352:19:0;::::1;;;96344:62;;;::::0;-1:-1:-1;;;96344:62:0;;11619:2:1;96344:62:0::1;::::0;::::1;11601:21:1::0;11658:2;11638:18;;;11631:30;11697:32;11677:18;;;11670:60;11747:18;;96344:62:0::1;;;;;;;;;90150:1;96425:8;:33;;96417:79;;;::::0;-1:-1:-1;;;96417:79:0;;11978:2:1;96417:79:0::1;::::0;::::1;11960:21:1::0;12017:2;11997:18;;;11990:30;12056:34;12036:18;;;12029:62;-1:-1:-1;;;12107:18:1;;;12100:31;12148:19;;96417:79:0::1;11776:397:1::0;96417:79:0::1;96547:10;96529:29;::::0;;;:17:::1;:29;::::0;;;;;90150:1:::1;::::0;96529:40:::1;::::0;96561:8;;96529:40:::1;:::i;:::-;:65;;96507:149;;;::::0;-1:-1:-1;;;96507:149:0;;12513:2:1;96507:149:0::1;::::0;::::1;12495:21:1::0;12552:2;12532:18;;;12525:30;12591:34;12571:18;;;12564:62;-1:-1:-1;;;12642:18:1;;;12635:32;12684:19;;96507:149:0::1;12311:398:1::0;96507:149:0::1;96688:26;96706:8:::0;90029:9:::1;96688:26;:::i;:::-;96675:9;:39;96667:76;;;;-1:-1:-1::0;;;96667:76:0::1;;;;;;;:::i;:::-;90252:4;96773:13;40531:12:::0;;91136:1;40515:13;:28;-1:-1:-1;;40515:46:0;;40268:312;96773:13:::1;96762:24;::::0;:8;:24:::1;:::i;:::-;:38;;96754:73;;;;-1:-1:-1::0;;;96754:73:0::1;;;;;;;:::i;:::-;96858:10;96840:29;::::0;;;:17:::1;:29;::::0;;;;:41;;96873:8;;96840:29;:41:::1;::::0;96873:8;;96840:41:::1;:::i;:::-;::::0;;;-1:-1:-1;96892:31:0::1;::::0;-1:-1:-1;96902:10:0::1;96914:8:::0;96892:9:::1;:31::i;:::-;74455:20:::0;73849:1;74975:7;:22;74792:213;74455:20;96265:666;:::o;97026:357::-;61106:13;:11;:13::i;:::-;74411:21:::1;:19;:21::i;:::-;97127:15:::2;::::0;97105:7:::2;::::0;97127:15:::2;::::0;::::2;-1:-1:-1::0;;;;;97127:15:0::2;:29:::0;97123:231:::2;;97190:15;::::0;97182:63:::2;::::0;97190:15:::2;::::0;;::::2;-1:-1:-1::0;;;;;97190:15:0::2;::::0;97219:21:::2;::::0;97182:63:::2;::::0;;;97219:21;97190:15;97182:63:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97173:72;;;;;97123:231;;;61266:7:::0;61293:6;-1:-1:-1;;;;;61293:6:0;-1:-1:-1;;;;;97287:21:0::2;97316;97287:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;97278:64:0;;-1:-1:-1;;97123:231:0::2;97372:2;97364:11;;;::::0;::::2;;97094:289;74455:20:::1;73849:1:::0;74975:7;:22;74792:213;74455:20:::1;97026:357::o:0;98772:205::-;98911:4;-1:-1:-1;;;;;67193:18:0;;67201:10;67193:18;;;;:46;;-1:-1:-1;67215:24:0;;;;67193:46;67189:111;;;67256:32;67277:10;67256:20;:32::i;:::-;98928:41:::1;98951:4;98957:2;98961:7;98928:22;:41::i;96939:79::-:0;96990:20;96996:7;97005:4;96990:5;:20::i;97391:439::-;97463:16;97492:23;97518:19;97528:8;97518:9;:19::i;:::-;97492:45;;97548:25;97590:15;-1:-1:-1;;;;;97576:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;97576:30:0;-1:-1:-1;97548:58:0;-1:-1:-1;97617:18:0;91136:1;97650:147;97688:13;;97684:1;:17;97650:147;;;97739:18;;-1:-1:-1;;;97739:18:0;;;;;2800:25:1;;;97739:4:0;;:15;;2773:18:1;;97739::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;97727:30:0;:8;-1:-1:-1;;;;;97727:30:0;;97723:62;;97784:1;97759:8;97768:12;;;;:::i;:::-;;;97759:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;97723:62;97703:3;;;;:::i;:::-;;;;97650:147;;;-1:-1:-1;97814:8:0;;97391:439;-1:-1:-1;;;;97391:439:0:o;92578:107::-;61106:13;:11;:13::i;:::-;92651:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;92651:26:0::1;-1:-1:-1::0;;;;92651:26:0;;::::1;::::0;;;::::1;::::0;;92578:107::o;91275:106::-;61106:13;:11;:13::i;:::-;91349:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;44040:125::-:0;44104:7;44131:21;44144:7;44131:12;:21::i;:::-;:26;;44040:125;-1:-1:-1;;44040:125:0:o;41397:206::-;41461:7;-1:-1:-1;;;;;41485:19:0;;41481:60;;41513:28;;-1:-1:-1;;;41513:28:0;;;;;;;;;;;41481:60;-1:-1:-1;;;;;;41567:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41567:27:0;;41397:206::o;61868:103::-;61106:13;:11;:13::i;:::-;61933:30:::1;61960:1;61933:18;:30::i;95381:876::-:0;74411:21;:19;:21::i;:::-;95497:18:::1;::::0;-1:-1:-1;;;95497:18:0;::::1;;;95489:60;;;::::0;-1:-1:-1;;;95489:60:0;;14358:2:1;95489:60:0::1;::::0;::::1;14340:21:1::0;14397:2;14377:18;;;14370:30;14436:31;14416:18;;;14409:59;14485:18;;95489:60:0::1;14156:353:1::0;95489:60:0::1;95582:88;95601:5;;95582:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;95608:20:0::1;::::0;95640:28:::1;::::0;-1:-1:-1;;;;;;95657:10:0::1;14663:2:1::0;14659:15;14655:53;95640:28:0::1;::::0;::::1;14643:66:1::0;95608:20:0;;-1:-1:-1;14725:12:1;;;-1:-1:-1;95640:28:0::1;;;;;;;;;;;;;95630:39;;;;;;95582:18;:88::i;:::-;95560:169;;;::::0;-1:-1:-1;;;95560:169:0;;14950:2:1;95560:169:0::1;::::0;::::1;14932:21:1::0;14989:2;14969:18;;;14962:30;15028:33;15008:18;;;15001:61;15079:18;;95560:169:0::1;14748:355:1::0;95560:169:0::1;90205:1;95748:8;:32;;95740:82;;;::::0;-1:-1:-1;;;95740:82:0;;15310:2:1;95740:82:0::1;::::0;::::1;15292:21:1::0;15349:2;15329:18;;;15322:30;15388:34;15368:18;;;15361:62;-1:-1:-1;;;15439:18:1;;;15432:35;15484:19;;95740:82:0::1;15108:401:1::0;95740:82:0::1;95872:10;95855:28;::::0;;;:16:::1;:28;::::0;;;;;90205:1:::1;::::0;95855:39:::1;::::0;95886:8;;95855:39:::1;:::i;:::-;:63;;95833:151;;;::::0;-1:-1:-1;;;95833:151:0;;15716:2:1;95833:151:0::1;::::0;::::1;15698:21:1::0;15755:2;15735:18;;;15728:30;15794:34;15774:18;;;15767:62;-1:-1:-1;;;15845:18:1;;;15838:36;15891:19;;95833:151:0::1;15514:402:1::0;95833:151:0::1;96016:25;96033:8:::0;89970:10:::1;96016:25;:::i;:::-;96003:9;:38;95995:75;;;;-1:-1:-1::0;;;95995:75:0::1;;;;;;;:::i;:::-;90252:4;96100:13;40531:12:::0;;91136:1;40515:13;:28;-1:-1:-1;;40515:46:0;;40268:312;96100:13:::1;96089:24;::::0;:8;:24:::1;:::i;:::-;:38;;96081:73;;;;-1:-1:-1::0;;;96081:73:0::1;;;;;;;:::i;:::-;96184:10;96167:28;::::0;;;:16:::1;:28;::::0;;;;:40;;96199:8;;96167:28;:40:::1;::::0;96199:8;;96167:40:::1;:::i;:::-;::::0;;;-1:-1:-1;96218:31:0::1;::::0;-1:-1:-1;96228:10:0::1;96240:8:::0;96218:9:::1;:31::i;:::-;74455:20:::0;73849:1;74975:7;:22;74792:213;91756:112;61106:13;:11;:13::i;:::-;91830:22:::1;:30:::0;;;::::1;;-1:-1:-1::0;;;91830:30:0::1;-1:-1:-1::0;;;;91830:30:0;;::::1;::::0;;;::::1;::::0;;91756:112::o;92327:116::-;61106:13;:11;:13::i;:::-;92401:20:::1;:34:::0;92327:116::o;97838:245::-;97930:21;;-1:-1:-1;;;97930:21:0;;;;;2800:25:1;;;97906:7:0;;97930:4;;:12;;2773:18:1;;97930:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;97930:21:0;;;;;;;;-1:-1:-1;;97930:21:0;;;;;;;;;;;;:::i;:::-;;;97926:150;;-1:-1:-1;98061:1:0;;97838:245;-1:-1:-1;97838:245:0:o;91555:193::-;61106:13;:11;:13::i;:::-;-1:-1:-1;;;;;91645:21:0;::::1;91637:58;;;::::0;-1:-1:-1;;;91637:58:0;;16123:2:1;91637:58:0::1;::::0;::::1;16105:21:1::0;16162:2;16142:18;;;16135:30;16201:26;16181:18;;;16174:54;16245:18;;91637:58:0::1;15921:348:1::0;91637:58:0::1;91706:15;:34:::0;;-1:-1:-1;;;;;91706:34:0;;::::1;;;-1:-1:-1::0;;;;;;91706:34:0;;::::1;::::0;;;::::1;::::0;;91555:193::o;44401:104::-;44457:13;44490:7;44483:14;;;;;:::i;92451:119::-;61106:13;:11;:13::i;:::-;92535:27:::1;:12;92550::::0;;92535:27:::1;:::i;98218:176::-:0;98322:8;67401:30;67422:8;67401:20;:30::i;:::-;98343:43:::1;98367:8;98377;98343:23;:43::i;92080:239::-:0;61106:13;:11;:13::i;:::-;92151:19:::1;:27:::0;;-1:-1:-1;;;;92151:27:0::1;-1:-1:-1::0;;;92151:27:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;92193:19:::0;::::1;;92189:123;;;92229:22;:30:::0;;-1:-1:-1;;;;92274:26:0;;;92080:239;:::o;93949:199::-;94030:4;94054:86;94073:5;;94054:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;94080:20:0;;94112:26;;-1:-1:-1;;;;;;14663:2:1;14659:15;;;14655:53;94112:26:0;;;14643:66:1;94080:20:0;;-1:-1:-1;14725:12:1;;;-1:-1:-1;94112:26:0;14514:229:1;94054:86:0;94047:93;93949:199;-1:-1:-1;;;;93949:199:0:o;98091:119::-;61106:13;:11;:13::i;:::-;98170:24:::1;:32:::0;;-1:-1:-1;;98170:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;98091:119::o;98985:239::-;99152:4;-1:-1:-1;;;;;67193:18:0;;67201:10;67193:18;;;;:46;;-1:-1:-1;67215:24:0;;;;67193:46;67189:111;;;67256:32;67277:10;67256:20;:32::i;:::-;99169:47:::1;99192:4;99198:2;99202:7;99211:4;99169:22;:47::i;:::-;98985:239:::0;;;;;:::o;94156:332::-;94221:13;94255:16;94263:7;94255;:16::i;:::-;94247:44;;;;-1:-1:-1;;;94247:44:0;;16476:2:1;94247:44:0;;;16458:21:1;16515:2;16495:18;;;16488:30;-1:-1:-1;;;16534:18:1;;;16527:45;16589:18;;94247:44:0;16274:339:1;94247:44:0;94309:11;;-1:-1:-1;;;94309:11:0;;;;94304:90;;94353:12;94367:25;94384:7;94367:16;:25::i;:::-;94336:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94322:72;;94156:332;;;:::o;94304:90::-;94438:13;94453:25;94470:7;94453:16;:25::i;91876:196::-;61106:13;:11;:13::i;:::-;91947:18:::1;:26:::0;;-1:-1:-1;;;;91947:26:0::1;-1:-1:-1::0;;;91947:26:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;91988:18:::0;::::1;;91984:81;;;92023:22;:30:::0;;-1:-1:-1;;;;92023:30:0::1;::::0;;91876:196;:::o;92983:115::-;93037:13;93070:20;:18;:20::i;:::-;93063:27;;92983:115;:::o;94496:877::-;74411:21;:19;:21::i;:::-;94612:22:::1;::::0;-1:-1:-1;;;94612:22:0;::::1;;;94604:63;;;::::0;-1:-1:-1;;;94604:63:0;;18315:2:1;94604:63:0::1;::::0;::::1;18297:21:1::0;18354:2;18334:18;;;18327:30;18393;18373:18;;;18366:58;18441:18;;94604:63:0::1;18113:352:1::0;94604:63:0::1;94700:88;94719:5;;94700:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;94726:20:0::1;::::0;94758:28:::1;::::0;-1:-1:-1;;;;;;94775:10:0::1;14663:2:1::0;14659:15;14655:53;94758:28:0::1;::::0;::::1;14643:66:1::0;94726:20:0;;-1:-1:-1;14725:12:1;;;-1:-1:-1;94758:28:0::1;14514:229:1::0;94700:88:0::1;94678:169;;;::::0;-1:-1:-1;;;94678:169:0;;14950:2:1;94678:169:0::1;::::0;::::1;14932:21:1::0;14989:2;14969:18;;;14962:30;15028:33;15008:18;;;15001:61;15079:18;;94678:169:0::1;14748:355:1::0;94678:169:0::1;90094:1;94866:8;:32;;94858:81;;;::::0;-1:-1:-1;;;94858:81:0;;18672:2:1;94858:81:0::1;::::0;::::1;18654:21:1::0;18711:2;18691:18;;;18684:30;18750:34;18730:18;;;18723:62;-1:-1:-1;;;18801:18:1;;;18794:34;18845:19;;94858:81:0::1;18470:400:1::0;94858:81:0::1;94989:10;94972:28;::::0;;;:16:::1;:28;::::0;;;;;90094:1:::1;::::0;94972:39:::1;::::0;95003:8;;94972:39:::1;:::i;:::-;:63;;94950:150;;;::::0;-1:-1:-1;;;94950:150:0;;19077:2:1;94950:150:0::1;::::0;::::1;19059:21:1::0;19116:2;19096:18;;;19089:30;19155:34;19135:18;;;19128:62;-1:-1:-1;;;19206:18:1;;;19199:35;19251:19;;94950:150:0::1;18875:401:1::0;94950:150:0::1;95132:25;95149:8:::0;89912:10:::1;95132:25;:::i;:::-;95119:9;:38;95111:75;;;;-1:-1:-1::0;;;95111:75:0::1;;;;;;;:::i;:::-;90252:4;95216:13;40531:12:::0;;91136:1;40515:13;:28;-1:-1:-1;;40515:46:0;;40268:312;95216:13:::1;95205:24;::::0;:8;:24:::1;:::i;:::-;:38;;95197:73;;;;-1:-1:-1::0;;;95197:73:0::1;;;;;;;:::i;:::-;95300:10;95283:28;::::0;;;:16:::1;:28;::::0;;;;:40;;95315:8;;95283:28;:40:::1;::::0;95315:8;;95283:40:::1;:::i;62126:201::-:0;61106:13;:11;:13::i;:::-;-1:-1:-1;;;;;62215:22:0;::::1;62207:73;;;::::0;-1:-1:-1;;;62207:73:0;;19483:2:1;62207:73:0::1;::::0;::::1;19465:21:1::0;19522:2;19502:18;;;19495:30;19561:34;19541:18;;;19534:62;-1:-1:-1;;;19612:18:1;;;19605:36;19658:19;;62207:73:0::1;19281:402:1::0;62207:73:0::1;62291:28;62310:8;62291:18;:28::i;27912:326::-:0;-1:-1:-1;;;;;28207:19:0;;:23;;;27912:326::o;86863:215::-;86965:4;-1:-1:-1;;;;;;86989:41:0;;-1:-1:-1;;;86989:41:0;;:81;;;87034:36;87058:11;87034:23;:36::i;61385:132::-;61266:7;61293:6;-1:-1:-1;;;;;61293:6:0;11336:10;61449:23;61441:68;;;;-1:-1:-1;;;61441:68:0;;19890:2:1;61441:68:0;;;19872:21:1;;;19909:18;;;19902:30;19968:34;19948:18;;;19941:62;20020:18;;61441:68:0;19688:356:1;88225:332:0;87941:5;-1:-1:-1;;;;;88328:33:0;;;;88320:88;;;;-1:-1:-1;;;88320:88:0;;20251:2:1;88320:88:0;;;20233:21:1;20290:2;20270:18;;;20263:30;20329:34;20309:18;;;20302:62;-1:-1:-1;;;20380:18:1;;;20373:40;20430:19;;88320:88:0;20049:406:1;88320:88:0;-1:-1:-1;;;;;88427:22:0;;88419:60;;;;-1:-1:-1;;;88419:60:0;;20662:2:1;88419:60:0;;;20644:21:1;20701:2;20681:18;;;20674:30;20740:27;20720:18;;;20713:55;20785:18;;88419:60:0;20460:349:1;88419:60:0;88514:35;;;;;;;;;-1:-1:-1;;;;;88514:35:0;;;;;;-1:-1:-1;;;;;88514:35:0;;;;;;;;;;-1:-1:-1;;;88492:57:0;;;;:19;:57;88225:332::o;47775:174::-;47832:4;47875:7;91136:1;47856:26;;:53;;;;;47896:13;;47886:7;:23;47856:53;:85;;;;-1:-1:-1;;47914:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47914:27:0;;;;47913:28;;47775:174::o;67459:447::-;65952:42;67650:45;:49;;;;:77;;-1:-1:-1;67703:24:0;;;;67650:77;67646:253;;;67749:67;;-1:-1:-1;;;67749:67:0;;67800:4;67749:67;;;21026:34:1;-1:-1:-1;;;;;21096:15:1;;21076:18;;;21069:43;65952:42:0;;67749;;20961:18:1;;67749:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67744:144;;67844:28;;-1:-1:-1;;;67844:28:0;;-1:-1:-1;;;;;2290:32:1;;67844:28:0;;;2272:51:1;2245:18;;67844:28:0;2126:203:1;45298:402:0;45379:13;45395:24;45411:7;45395:15;:24::i;:::-;45379:40;;45440:5;-1:-1:-1;;;;;45434:11:0;:2;-1:-1:-1;;;;;45434:11:0;;45430:48;;45454:24;;-1:-1:-1;;;45454:24:0;;;;;;;;;;;45430:48;11336:10;-1:-1:-1;;;;;45495:21:0;;;45491:161;;45536:37;45553:5;11336:10;46400:164;:::i;45536:37::-;45531:121;;45601:35;;-1:-1:-1;;;45601:35:0;;;;;;;;;;;45531:121;45664:28;45673:2;45677:7;45686:5;45664:8;:28::i;46631:170::-;46765:28;46775:4;46781:2;46785:7;46765:9;:28::i;74491:293::-;73893:1;74625:7;;:19;74617:63;;;;-1:-1:-1;;;74617:63:0;;21575:2:1;74617:63:0;;;21557:21:1;21614:2;21594:18;;;21587:30;21653:33;21633:18;;;21626:61;21704:18;;74617:63:0;21373:355:1;74617:63:0;73893:1;74758:7;:18;74491:293::o;48033:104::-;48102:27;48112:2;48116:8;48102:27;;;;;;;;;;;;:9;:27::i;46872:185::-;47010:39;47027:4;47033:2;47037:7;47010:39;;;;;;;;;;;;:16;:39::i;54471:2408::-;54551:35;54589:21;54602:7;54589:12;:21::i;:::-;54638:18;;54551:59;;-1:-1:-1;54669:290:0;;;;54703:22;11336:10;-1:-1:-1;;;;;54729:20:0;;;;:77;;-1:-1:-1;54770:36:0;54787:4;11336:10;46400:164;:::i;54770:36::-;54729:134;;;-1:-1:-1;11336:10:0;54827:20;54839:7;54827:11;:20::i;:::-;-1:-1:-1;;;;;54827:36:0;;54729:134;54703:161;;54886:17;54881:66;;54912:35;;-1:-1:-1;;;54912:35:0;;;;;;;;;;;54881:66;54688:271;54669:290;55087:35;55104:1;55108:7;55117:4;55087:8;:35::i;:::-;-1:-1:-1;;;;;55452:18:0;;;55418:31;55452:18;;;:12;:18;;;;;;;;55485:24;;-1:-1:-1;;;;;;;;;;55485:24:0;;;;;;;;;-1:-1:-1;;55485:24:0;;;;55524:29;;;;;55508:1;55524:29;;;;;;;;-1:-1:-1;;55524:29:0;;;;;;;;;;55686:20;;;:11;:20;;;;;;55721;;-1:-1:-1;;;;55789:15:0;55756:49;;;-1:-1:-1;;;55756:49:0;-1:-1:-1;;;;;;55756:49:0;;;;;;;;;;55820:22;-1:-1:-1;;;55820:22:0;;;56112:11;;;56172:24;;;;;56215:13;;55452:18;;56172:24;;56215:13;56211:384;;56425:13;;56410:11;:28;56406:174;;56463:20;;56532:28;;;;-1:-1:-1;;;;;56506:54:0;-1:-1:-1;;;56506:54:0;-1:-1:-1;;;;;;56506:54:0;;;-1:-1:-1;;;;;56463:20:0;;56506:54;;;;56406:174;-1:-1:-1;;56623:35:0;;56650:7;;-1:-1:-1;56646:1:0;;-1:-1:-1;;;;;;56623:35:0;;;-1:-1:-1;;;;;;;;;;;56623:35:0;56646:1;;56623:35;-1:-1:-1;;56846:12:0;:14;;;;;;-1:-1:-1;;54471:2408:0:o;42778:1200::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;42889:7:0;;91136:1;42938:23;42934:977;;42991:13;;42984:4;:20;42980:931;;;43029:31;43063:17;;;:11;:17;;;;;;;;;43029:51;;;;;;;;;-1:-1:-1;;;;;43029:51:0;;;;-1:-1:-1;;;43029:51:0;;-1:-1:-1;;;;;43029:51:0;;;;;;;;-1:-1:-1;;;43029:51:0;;;;;;;;;;;;;;43103:789;;43157:14;;-1:-1:-1;;;;;43157:28:0;;43153:109;;43225:9;42778:1200;-1:-1:-1;;;42778:1200:0:o;43153:109::-;-1:-1:-1;;;43628:6:0;43677:17;;;;:11;:17;;;;;;;;;43665:29;;;;;;;;;-1:-1:-1;;;;;43665:29:0;;;;;-1:-1:-1;;;43665:29:0;;-1:-1:-1;;;;;43665:29:0;;;;;;;;-1:-1:-1;;;43665:29:0;;;;;;;;;;;;;43729:28;43725:117;;43801:9;42778:1200;-1:-1:-1;;;42778:1200:0:o;43725:117::-;43584:285;;;43006:905;42980:931;43939:31;;-1:-1:-1;;;43939:31:0;;;;;;;;;;;62487:191;62561:16;62580:6;;-1:-1:-1;;;;;62597:17:0;;;-1:-1:-1;;;;;;62597:17:0;;;;;;62630:40;;62580:6;;;;;;;62630:40;;62561:16;62630:40;62550:128;62487:191;:::o;76238:190::-;76363:4;76416;76387:25;76400:5;76407:4;76387:12;:25::i;:::-;:33;;76238:190;-1:-1:-1;;;;76238:190:0:o;46042:287::-;11336:10;-1:-1:-1;;;;;46141:24:0;;;46137:54;;46174:17;;-1:-1:-1;;;46174:17:0;;;;;;;;;;;46137:54;11336:10;46204:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46204:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46204:53:0;;;;;;;;;;46273:48;;540:41:1;;;46204:42:0;;11336:10;46273:48;;513:18:1;46273:48:0;;;;;;;46042:287;;:::o;47128:392::-;47295:28;47305:4;47311:2;47315:7;47295:9;:28::i;:::-;-1:-1:-1;;;;;47338:13:0;;28207:19;:23;47334:179;;47373:56;47404:4;47410:2;47414:7;47423:5;47373:30;:56::i;:::-;47368:145;;47457:40;;-1:-1:-1;;;47457:40:0;;;;;;;;;;;24781:716;24837:13;24888:14;24905:17;24916:5;24905:10;:17::i;:::-;24925:1;24905:21;24888:38;;24941:20;24975:6;-1:-1:-1;;;;;24964:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24964:18:0;-1:-1:-1;24941:41:0;-1:-1:-1;25106:28:0;;;25122:2;25106:28;25163:288;-1:-1:-1;;25195:5:0;-1:-1:-1;;;25332:2:0;25321:14;;25316:30;25195:5;25303:44;25393:2;25384:11;;;-1:-1:-1;25414:21:0;25163:288;25414:21;-1:-1:-1;25472:6:0;24781:716;-1:-1:-1;;;24781:716:0:o;93106:835::-;93159:13;93186:16;;93231:33;93186:16;87941:5;93231:11;:33::i;:::-;93185:79;;;;93413:486;93604:33;93621:15;93604:16;:33::i;:::-;93728:51;93764:8;-1:-1:-1;;;;;93748:26:0;93776:2;93728:19;:51::i;:::-;93489:360;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93413:13;:486::i;:::-;93320:598;;;;;;;;:::i;:::-;;;;;;;;;;;;;93275:658;;;;93106:835;:::o;41028:305::-;41130:4;-1:-1:-1;;;;;;41167:40:0;;-1:-1:-1;;;41167:40:0;;:105;;-1:-1:-1;;;;;;;41224:48:0;;-1:-1:-1;;;41224:48:0;41167:105;:158;;;-1:-1:-1;;;;;;;;;;38141:40:0;;;41289:36;38032:157;56997:196;57112:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;57112:29:0;-1:-1:-1;;;;;57112:29:0;;;;;;;;;57157:28;;57112:24;;57157:28;;;;;;;56997:196;;;:::o;51945:2130::-;52060:35;52098:21;52111:7;52098:12;:21::i;:::-;52060:59;;52158:4;-1:-1:-1;;;;;52136:26:0;:13;:18;;;-1:-1:-1;;;;;52136:26:0;;52132:67;;52171:28;;-1:-1:-1;;;52171:28:0;;;;;;;;;;;52132:67;52212:22;11336:10;-1:-1:-1;;;;;52238:20:0;;;;:73;;-1:-1:-1;52275:36:0;52292:4;11336:10;46400:164;:::i;52275:36::-;52238:126;;;-1:-1:-1;11336:10:0;52328:20;52340:7;52328:11;:20::i;:::-;-1:-1:-1;;;;;52328:36:0;;52238:126;52212:153;;52383:17;52378:66;;52409:35;;-1:-1:-1;;;52409:35:0;;;;;;;;;;;52378:66;-1:-1:-1;;;;;52459:16:0;;52455:52;;52484:23;;-1:-1:-1;;;52484:23:0;;;;;;;;;;;52455:52;52628:35;52645:1;52649:7;52658:4;52628:8;:35::i;:::-;-1:-1:-1;;;;;52959:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;52959:31:0;;;-1:-1:-1;;;;;52959:31:0;;;-1:-1:-1;;52959:31:0;;;;;;;53005:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;53005:29:0;;;;;;;;;;;53085:20;;;:11;:20;;;;;;53120:18;;-1:-1:-1;;;;;;53153:49:0;;;;-1:-1:-1;;;53186:15:0;53153:49;;;;;;;;;;53476:11;;53536:24;;;;;53579:13;;53085:20;;53536:24;;53579:13;53575:384;;53789:13;;53774:11;:28;53770:174;;53827:20;;53896:28;;;;-1:-1:-1;;;;;53870:54:0;-1:-1:-1;;;53870:54:0;-1:-1:-1;;;;;;53870:54:0;;;-1:-1:-1;;;;;53827:20:0;;53870:54;;;;53770:174;52934:1036;;;54006:7;54002:2;-1:-1:-1;;;;;53987:27:0;53996:4;-1:-1:-1;;;;;53987:27:0;-1:-1:-1;;;;;;;;;;;53987:27:0;;;;;;;;;54025:42;98567:197;48510:1749;48656:13;;-1:-1:-1;;;;;48684:16:0;;48680:48;;48709:19;;-1:-1:-1;;;48709:19:0;;;;;;;;;;;48680:48;48743:8;48755:1;48743:13;48739:44;;48765:18;;-1:-1:-1;;;48765:18:0;;;;;;;;;;;48739:44;-1:-1:-1;;;;;49134:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;49193:49:0;;-1:-1:-1;;;;;49134:44:0;;;;;;;49193:49;;;;-1:-1:-1;;49134:44:0;;;;;;49193:49;;;;;;;;;;;;;;;;49259:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;49309:66:0;;;-1:-1:-1;;;49359:15:0;49309:66;;;;;;;;;;;;;49259:25;;49456:23;;;;28207:19;:23;49496:631;;49536:313;49567:38;;49592:12;;-1:-1:-1;;;;;49567:38:0;;;49584:1;;-1:-1:-1;;;;;;;;;;;49567:38:0;49584:1;;49567:38;49633:69;49672:1;49676:2;49680:14;;;;;;49696:5;49633:30;:69::i;:::-;49628:174;;49738:40;;-1:-1:-1;;;49738:40:0;;;;;;;;;;;49628:174;49844:3;49829:12;:18;49536:313;;49930:12;49913:13;;:29;49909:43;;49944:8;;;49909:43;49496:631;;;49993:119;50024:40;;50049:14;;;;;-1:-1:-1;;;;;50024:40:0;;;50041:1;;-1:-1:-1;;;;;;;;;;;50024:40:0;50041:1;;50024:40;50107:3;50092:12;:18;49993:119;;49496:631;-1:-1:-1;50141:13:0;:28;50191:60;50220:1;50224:2;50228:12;50242:8;50191:60;:::i;77105:296::-;77188:7;77231:4;77188:7;77246:118;77270:5;:12;77266:1;:16;77246:118;;;77319:33;77329:12;77343:5;77349:1;77343:8;;;;;;;;:::i;:::-;;;;;;;77319:9;:33::i;:::-;77304:48;-1:-1:-1;77284:3:0;;;;:::i;:::-;;;;77246:118;;;-1:-1:-1;77381:12:0;77105:296;-1:-1:-1;;;77105:296:0:o;57685:667::-;57869:72;;-1:-1:-1;;;57869:72:0;;57848:4;;-1:-1:-1;;;;;57869:36:0;;;;;:72;;11336:10;;57920:4;;57926:7;;57935:5;;57869:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57869:72:0;;;;;;;;-1:-1:-1;;57869:72:0;;;;;;;;;;;;:::i;:::-;;;57865:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58103:6;:13;58120:1;58103:18;58099:235;;58149:40;;-1:-1:-1;;;58149:40:0;;;;;;;;;;;58099:235;58292:6;58286:13;58277:6;58273:2;58269:15;58262:38;57865:480;-1:-1:-1;;;;;;57988:55:0;-1:-1:-1;;;57988:55:0;;-1:-1:-1;57685:667:0;;;;;;:::o;21645:922::-;21698:7;;-1:-1:-1;;;21776:15:0;;21772:102;;-1:-1:-1;;;21812:15:0;;;-1:-1:-1;21856:2:0;21846:12;21772:102;21901:6;21892:5;:15;21888:102;;21937:6;21928:15;;;-1:-1:-1;21972:2:0;21962:12;21888:102;22017:6;22008:5;:15;22004:102;;22053:6;22044:15;;;-1:-1:-1;22088:2:0;22078:12;22004:102;22133:5;22124;:14;22120:99;;22168:5;22159:14;;;-1:-1:-1;22202:1:0;22192:11;22120:99;22246:5;22237;:14;22233:99;;22281:5;22272:14;;;-1:-1:-1;22315:1:0;22305:11;22233:99;22359:5;22350;:14;22346:99;;22394:5;22385:14;;;-1:-1:-1;22428:1:0;22418:11;22346:99;22472:5;22463;:14;22459:66;;22508:1;22498:11;22553:6;21645:922;-1:-1:-1;;21645:922:0:o;25913:447::-;25988:13;26014:19;26046:10;26050:6;26046:1;:10;:::i;:::-;:14;;26059:1;26046:14;:::i;:::-;-1:-1:-1;;;;;26036:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26036:25:0;;26014:47;;-1:-1:-1;;;26072:6:0;26079:1;26072:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;26072:15:0;;;;;;;;;-1:-1:-1;;;26098:6:0;26105:1;26098:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;26098:15:0;;;;;;;;-1:-1:-1;26129:9:0;26141:10;26145:6;26141:1;:10;:::i;:::-;:14;;26154:1;26141:14;:::i;:::-;26129:26;;26124:131;26161:1;26157;:5;26124:131;;;-1:-1:-1;;;26205:5:0;26213:3;26205:11;26196:21;;;;;;;:::i;:::-;;;;26184:6;26191:1;26184:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;26184:33:0;;;;;;;;-1:-1:-1;26242:1:0;26232:11;;;;;26164:3;;;:::i;:::-;;;26124:131;;;-1:-1:-1;26273:10:0;;26265:55;;;;-1:-1:-1;;;26265:55:0;;24317:2:1;26265:55:0;;;24299:21:1;;;24336:18;;;24329:30;24395:34;24375:18;;;24368:62;24447:18;;26265:55:0;24115:356:1;26265:55:0;26345:6;25913:447;-1:-1:-1;;;25913:447:0:o;68958:3097::-;69016:13;69253:4;:11;69268:1;69253:16;69249:31;;-1:-1:-1;;69271:9:0;;;;;;;;;-1:-1:-1;69271:9:0;;;68958:3097::o;69249:31::-;69333:19;69355:6;;;;;;;;;;;;;;;;;69333:28;;69772:20;69831:1;69812:4;:11;69826:1;69812:15;;;;:::i;:::-;69811:21;;;;:::i;:::-;69806:27;;:1;:27;:::i;:::-;-1:-1:-1;;;;;69795:39:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69795:39:0;;69772:62;;70014:1;70007:5;70003:13;70118:2;70110:6;70106:15;70229:4;70281;70275:11;70269:4;70265:22;70191:1432;70315:6;70306:7;70303:19;70191:1432;;;70421:1;70412:7;70408:15;70397:26;;70460:7;70454:14;71113:4;71105:5;71101:2;71097:14;71093:25;71083:8;71079:40;71073:47;71062:9;71054:67;71167:1;71156:9;71152:17;71139:30;;71259:4;71251:5;71247:2;71243:14;71239:25;71229:8;71225:40;71219:47;71208:9;71200:67;71313:1;71302:9;71298:17;71285:30;;71404:4;71396:5;71393:1;71389:13;71385:24;71375:8;71371:39;71365:46;71354:9;71346:66;71458:1;71447:9;71443:17;71430:30;;71541:4;71534:5;71530:16;71520:8;71516:31;71510:38;71499:9;71491:58;;71595:1;71584:9;71580:17;71567:30;;70191:1432;;;70195:107;;71785:1;71778:4;71772:11;71768:19;71806:1;71801:123;;;;71943:1;71938:73;;;;71761:250;;71801:123;71854:4;71850:1;71839:9;71835:17;71827:32;71904:4;71900:1;71889:9;71885:17;71877:32;71801:123;;71938:73;71991:4;71987:1;71976:9;71972:17;71964:32;71761:250;-1:-1:-1;72041:6:0;;68958:3097;-1:-1:-1;;;;;68958:3097:0:o;84145:149::-;84208:7;84239:1;84235;:5;:51;;84370:13;84464:15;;;84500:4;84493:15;;;84547:4;84531:21;;84235:51;;;84370:13;84464:15;;;84500:4;84493:15;;;84547:4;84531:21;;84243:20;84302:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:435;795:6;803;856:2;844:9;835:7;831:23;827:32;824:52;;;872:1;869;862:12;824:52;911:9;898:23;930:31;955:5;930:31;:::i;:::-;980:5;-1:-1:-1;1037:2:1;1022:18;;1009:32;-1:-1:-1;;;;;1072:40:1;;1060:53;;1050:81;;1127:1;1124;1117:12;1050:81;1150:7;1140:17;;;728:435;;;;;:::o;1168:258::-;1240:1;1250:113;1264:6;1261:1;1258:13;1250:113;;;1340:11;;;1334:18;1321:11;;;1314:39;1286:2;1279:10;1250:113;;;1381:6;1378:1;1375:13;1372:48;;;-1:-1:-1;;1416:1:1;1398:16;;1391:27;1168:258::o;1431:269::-;1484:3;1522:5;1516:12;1549:6;1544:3;1537:19;1565:63;1621:6;1614:4;1609:3;1605:14;1598:4;1591:5;1587:16;1565:63;:::i;:::-;1682:2;1661:15;-1:-1:-1;;1657:29:1;1648:39;;;;1689:4;1644:50;;1431:269;-1:-1:-1;;1431:269:1:o;1705:231::-;1854:2;1843:9;1836:21;1817:4;1874:56;1926:2;1915:9;1911:18;1903:6;1874:56;:::i;1941:180::-;2000:6;2053:2;2041:9;2032:7;2028:23;2024:32;2021:52;;;2069:1;2066;2059:12;2021:52;-1:-1:-1;2092:23:1;;1941:180;-1:-1:-1;1941:180:1:o;2334:315::-;2402:6;2410;2463:2;2451:9;2442:7;2438:23;2434:32;2431:52;;;2479:1;2476;2469:12;2431:52;2518:9;2505:23;2537:31;2562:5;2537:31;:::i;:::-;2587:5;2639:2;2624:18;;;;2611:32;;-1:-1:-1;;;2334:315:1:o;2836:456::-;2913:6;2921;2929;2982:2;2970:9;2961:7;2957:23;2953:32;2950:52;;;2998:1;2995;2988:12;2950:52;3037:9;3024:23;3056:31;3081:5;3056:31;:::i;:::-;3106:5;-1:-1:-1;3163:2:1;3148:18;;3135:32;3176:33;3135:32;3176:33;:::i;:::-;2836:456;;3228:7;;-1:-1:-1;;;3282:2:1;3267:18;;;;3254:32;;2836:456::o;3297:248::-;3365:6;3373;3426:2;3414:9;3405:7;3401:23;3397:32;3394:52;;;3442:1;3439;3432:12;3394:52;-1:-1:-1;;3465:23:1;;;3535:2;3520:18;;;3507:32;;-1:-1:-1;3297:248:1:o;4069:247::-;4128:6;4181:2;4169:9;4160:7;4156:23;4152:32;4149:52;;;4197:1;4194;4187:12;4149:52;4236:9;4223:23;4255:31;4280:5;4255:31;:::i;4321:632::-;4492:2;4544:21;;;4614:13;;4517:18;;;4636:22;;;4463:4;;4492:2;4715:15;;;;4689:2;4674:18;;;4463:4;4758:169;4772:6;4769:1;4766:13;4758:169;;;4833:13;;4821:26;;4902:15;;;;4867:12;;;;4794:1;4787:9;4758:169;;;-1:-1:-1;4944:3:1;;4321:632;-1:-1:-1;;;;;;4321:632:1:o;4958:118::-;5044:5;5037:13;5030:21;5023:5;5020:32;5010:60;;5066:1;5063;5056:12;5081:241;5137:6;5190:2;5178:9;5169:7;5165:23;5161:32;5158:52;;;5206:1;5203;5196:12;5158:52;5245:9;5232:23;5264:28;5286:5;5264:28;:::i;5327:127::-;5388:10;5383:3;5379:20;5376:1;5369:31;5419:4;5416:1;5409:15;5443:4;5440:1;5433:15;5459:632;5524:5;-1:-1:-1;;;;;5595:2:1;5587:6;5584:14;5581:40;;;5601:18;;:::i;:::-;5676:2;5670:9;5644:2;5730:15;;-1:-1:-1;;5726:24:1;;;5752:2;5722:33;5718:42;5706:55;;;5776:18;;;5796:22;;;5773:46;5770:72;;;5822:18;;:::i;:::-;5862:10;5858:2;5851:22;5891:6;5882:15;;5921:6;5913;5906:22;5961:3;5952:6;5947:3;5943:16;5940:25;5937:45;;;5978:1;5975;5968:12;5937:45;6028:6;6023:3;6016:4;6008:6;6004:17;5991:44;6083:1;6076:4;6067:6;6059;6055:19;6051:30;6044:41;;;;5459:632;;;;;:::o;6096:451::-;6165:6;6218:2;6206:9;6197:7;6193:23;6189:32;6186:52;;;6234:1;6231;6224:12;6186:52;6274:9;6261:23;-1:-1:-1;;;;;6299:6:1;6296:30;6293:50;;;6339:1;6336;6329:12;6293:50;6362:22;;6415:4;6407:13;;6403:27;-1:-1:-1;6393:55:1;;6444:1;6441;6434:12;6393:55;6467:74;6533:7;6528:2;6515:16;6510:2;6506;6502:11;6467:74;:::i;6552:367::-;6615:8;6625:6;6679:3;6672:4;6664:6;6660:17;6656:27;6646:55;;6697:1;6694;6687:12;6646:55;-1:-1:-1;6720:20:1;;-1:-1:-1;;;;;6752:30:1;;6749:50;;;6795:1;6792;6785:12;6749:50;6832:4;6824:6;6820:17;6808:29;;6892:3;6885:4;6875:6;6872:1;6868:14;6860:6;6856:27;6852:38;6849:47;6846:67;;;6909:1;6906;6899:12;6924:505;7019:6;7027;7035;7088:2;7076:9;7067:7;7063:23;7059:32;7056:52;;;7104:1;7101;7094:12;7056:52;7140:9;7127:23;7117:33;;7201:2;7190:9;7186:18;7173:32;-1:-1:-1;;;;;7220:6:1;7217:30;7214:50;;;7260:1;7257;7250:12;7214:50;7299:70;7361:7;7352:6;7341:9;7337:22;7299:70;:::i;:::-;6924:505;;7388:8;;-1:-1:-1;7273:96:1;;-1:-1:-1;;;;6924:505:1:o;7619:592::-;7690:6;7698;7751:2;7739:9;7730:7;7726:23;7722:32;7719:52;;;7767:1;7764;7757:12;7719:52;7807:9;7794:23;-1:-1:-1;;;;;7877:2:1;7869:6;7866:14;7863:34;;;7893:1;7890;7883:12;7863:34;7931:6;7920:9;7916:22;7906:32;;7976:7;7969:4;7965:2;7961:13;7957:27;7947:55;;7998:1;7995;7988:12;7947:55;8038:2;8025:16;8064:2;8056:6;8053:14;8050:34;;;8080:1;8077;8070:12;8050:34;8125:7;8120:2;8111:6;8107:2;8103:15;8099:24;8096:37;8093:57;;;8146:1;8143;8136:12;8093:57;8177:2;8169:11;;;;;8199:6;;-1:-1:-1;7619:592:1;;-1:-1:-1;;;;7619:592:1:o;8216:382::-;8281:6;8289;8342:2;8330:9;8321:7;8317:23;8313:32;8310:52;;;8358:1;8355;8348:12;8310:52;8397:9;8384:23;8416:31;8441:5;8416:31;:::i;:::-;8466:5;-1:-1:-1;8523:2:1;8508:18;;8495:32;8536:30;8495:32;8536:30;:::i;8603:572::-;8698:6;8706;8714;8767:2;8755:9;8746:7;8742:23;8738:32;8735:52;;;8783:1;8780;8773:12;8735:52;8822:9;8809:23;8841:31;8866:5;8841:31;:::i;:::-;8891:5;-1:-1:-1;8947:2:1;8932:18;;8919:32;-1:-1:-1;;;;;8963:30:1;;8960:50;;;9006:1;9003;8996:12;9180:795;9275:6;9283;9291;9299;9352:3;9340:9;9331:7;9327:23;9323:33;9320:53;;;9369:1;9366;9359:12;9320:53;9408:9;9395:23;9427:31;9452:5;9427:31;:::i;:::-;9477:5;-1:-1:-1;9534:2:1;9519:18;;9506:32;9547:33;9506:32;9547:33;:::i;:::-;9599:7;-1:-1:-1;9653:2:1;9638:18;;9625:32;;-1:-1:-1;9708:2:1;9693:18;;9680:32;-1:-1:-1;;;;;9724:30:1;;9721:50;;;9767:1;9764;9757:12;9721:50;9790:22;;9843:4;9835:13;;9831:27;-1:-1:-1;9821:55:1;;9872:1;9869;9862:12;9821:55;9895:74;9961:7;9956:2;9943:16;9938:2;9934;9930:11;9895:74;:::i;:::-;9885:84;;;9180:795;;;;;;;:::o;9980:388::-;10048:6;10056;10109:2;10097:9;10088:7;10084:23;10080:32;10077:52;;;10125:1;10122;10115:12;10077:52;10164:9;10151:23;10183:31;10208:5;10183:31;:::i;:::-;10233:5;-1:-1:-1;10290:2:1;10275:18;;10262:32;10303:33;10262:32;10303:33;:::i;10373:380::-;10452:1;10448:12;;;;10495;;;10516:61;;10570:4;10562:6;10558:17;10548:27;;10516:61;10623:2;10615:6;10612:14;10592:18;10589:38;10586:161;;10669:10;10664:3;10660:20;10657:1;10650:31;10704:4;10701:1;10694:15;10732:4;10729:1;10722:15;10586:161;;10373:380;;;:::o;10758:127::-;10819:10;10814:3;10810:20;10807:1;10800:31;10850:4;10847:1;10840:15;10874:4;10871:1;10864:15;10890:168;10930:7;10996:1;10992;10988:6;10984:14;10981:1;10978:21;10973:1;10966:9;10959:17;10955:45;10952:71;;;11003:18;;:::i;:::-;-1:-1:-1;11043:9:1;;10890:168::o;11195:217::-;11235:1;11261;11251:132;;11305:10;11300:3;11296:20;11293:1;11286:31;11340:4;11337:1;11330:15;11368:4;11365:1;11358:15;11251:132;-1:-1:-1;11397:9:1;;11195:217::o;12178:128::-;12218:3;12249:1;12245:6;12242:1;12239:13;12236:39;;;12255:18;;:::i;:::-;-1:-1:-1;12291:9:1;;12178:128::o;12714:348::-;12916:2;12898:21;;;12955:2;12935:18;;;12928:30;12994:26;12989:2;12974:18;;12967:54;13053:2;13038:18;;12714:348::o;13067:346::-;13269:2;13251:21;;;13308:2;13288:18;;;13281:30;-1:-1:-1;;;13342:2:1;13327:18;;13320:52;13404:2;13389:18;;13067:346::o;13628:251::-;13698:6;13751:2;13739:9;13730:7;13726:23;13722:32;13719:52;;;13767:1;13764;13757:12;13719:52;13799:9;13793:16;13818:31;13843:5;13818:31;:::i;13884:135::-;13923:3;13944:17;;;13941:43;;13964:18;;:::i;:::-;-1:-1:-1;14011:1:1;14000:13;;13884:135::o;14024:127::-;14085:10;14080:3;14076:20;14073:1;14066:31;14116:4;14113:1;14106:15;14140:4;14137:1;14130:15;16744:185;16786:3;16824:5;16818:12;16839:52;16884:6;16879:3;16872:4;16865:5;16861:16;16839:52;:::i;:::-;16907:16;;;;;16744:185;-1:-1:-1;;16744:185:1:o;16934:1174::-;17110:3;17139:1;17172:6;17166:13;17202:3;17224:1;17252:9;17248:2;17244:18;17234:28;;17312:2;17301:9;17297:18;17334;17324:61;;17378:4;17370:6;17366:17;17356:27;;17324:61;17404:2;17452;17444:6;17441:14;17421:18;17418:38;17415:165;;-1:-1:-1;;;17479:33:1;;17535:4;17532:1;17525:15;17565:4;17486:3;17553:17;17415:165;17596:18;17623:104;;;;17741:1;17736:320;;;;17589:467;;17623:104;-1:-1:-1;;17656:24:1;;17644:37;;17701:16;;;;-1:-1:-1;17623:104:1;;17736:320;16691:1;16684:14;;;16728:4;16715:18;;17831:1;17845:165;17859:6;17856:1;17853:13;17845:165;;;17937:14;;17924:11;;;17917:35;17980:16;;;;17874:10;;17845:165;;;17849:3;;18039:6;18034:3;18030:16;18023:23;;17589:467;;;;;;;18072:30;18098:3;18090:6;18072:30;:::i;:::-;18065:37;16934:1174;-1:-1:-1;;;;;16934:1174:1:o;21123:245::-;21190:6;21243:2;21231:9;21222:7;21218:23;21214:32;21211:52;;;21259:1;21256;21249:12;21211:52;21291:9;21285:16;21310:28;21332:5;21310:28;:::i;21733:1024::-;22245:66;22240:3;22233:79;22215:3;22341:6;22335:13;22357:62;22412:6;22407:2;22402:3;22398:12;22391:4;22383:6;22379:17;22357:62;:::i;:::-;-1:-1:-1;;;22478:2:1;22438:16;;;22470:11;;;22463:71;22559:13;;22581:63;22559:13;22630:2;22622:11;;22615:4;22603:17;;22581:63;:::i;:::-;-1:-1:-1;;;22704:2:1;22663:17;;;;22696:11;;;22689:35;22748:2;22740:11;;21733:1024;-1:-1:-1;;;;21733:1024:1:o;22762:448::-;23024:31;23019:3;23012:44;22994:3;23085:6;23079:13;23101:62;23156:6;23151:2;23146:3;23142:12;23135:4;23127:6;23123:17;23101:62;:::i;:::-;23183:16;;;;23201:2;23179:25;;22762:448;-1:-1:-1;;22762:448:1:o;23215:500::-;-1:-1:-1;;;;;23484:15:1;;;23466:34;;23536:15;;23531:2;23516:18;;23509:43;23583:2;23568:18;;23561:34;;;23631:3;23626:2;23611:18;;23604:31;;;23409:4;;23652:57;;23689:19;;23681:6;23652:57;:::i;:::-;23644:65;23215:500;-1:-1:-1;;;;;;23215:500:1:o;23720:249::-;23789:6;23842:2;23830:9;23821:7;23817:23;23813:32;23810:52;;;23858:1;23855;23848:12;23810:52;23890:9;23884:16;23909:30;23933:5;23909:30;:::i;23974:136::-;24013:3;24041:5;24031:39;;24050:18;;:::i;:::-;-1:-1:-1;;;24086:18:1;;23974:136::o

Swarm Source

ipfs://58d62e6dde097b0aa75c18aea5491a7b81515df5658127b46a24a01122f3e186
Loading...
Loading
Loading...
Loading
[ 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.