ETH Price: $3,486.37 (-0.11%)
Gas: 2 Gwei

Token

NFTCOLOR Xmas (NCX)
 

Overview

Max Total Supply

1,841 NCX

Holders

374

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 NCX
0x394b9f09c4e0cf8138016bc4cea8d87011b2be5d
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:
NFTCOLORXMAS

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 2022-12-10
*/

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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




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

pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.7;


abstract contract MerkleProof {
    bytes32 internal _wlMerkleRoot;

    // Free Mint
    function _setwlMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _wlMerkleRoot = merkleRoot_;
    }

    function isWhitelisted(address address_, uint256 wlCount, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_, wlCount));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _wlMerkleRoot;
    }
}



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




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

pragma solidity ^0.8.0;

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




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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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




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




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




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




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




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




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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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




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




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




// 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
 * `onlyOperator`, 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);
    }
}


pragma solidity ^0.8.9;

abstract contract Operable is Context {
    mapping(address => bool) _operators;

    modifier onlyOperator() {
        _checkOperatorRole(_msgSender());
        _;
    }

    function isOperator(address _operator) public view returns (bool) {
        return _operators[_operator];
    }

    function _grantOperatorRole(address _candidate) internal {
        require(
            !_operators[_candidate],
            string(
                abi.encodePacked(
                    "account ",
                    Strings.toHexString(uint160(_msgSender()), 20),
                    " is already has an operator role"
                )
            )
        );
        _operators[_candidate] = true;
    }

    function _revokeOperatorRole(address _candidate) internal {
        _checkOperatorRole(_candidate);
        delete _operators[_candidate];
    }

    function _checkOperatorRole(address _operator) internal view {
        require(
            _operators[_operator],
            string(
                abi.encodePacked(
                    "account ",
                    Strings.toHexString(uint160(_msgSender()), 20),
                    " is not an operator"
                )
            )
        );
    }
}

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

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 {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) {
            // 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) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) 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);
            }
        }
        _;
    }
}


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) {}
}



pragma solidity ^0.8.7;
/*
🅽🅵🆃🅲🅾🅻🅾🆁 🆇🅼🅰🆂
*/
contract NFTCOLORXMAS is Ownable, ERC721A, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer, Operable {
  //Project Settings
  uint256 public psMintPrice = 0.0111 ether;
  uint256 public maxMintsPerPS = 5000;
  uint256 public maxSupply = 5000;
  address payable internal _withdrawWallet;
  uint256 public maxMintsPerPsMint = 100;

  //URI
  string internal hiddenURI;
  string internal _baseTokenURI;
  string public _baseExtension = ".json";

  //flags
  bool public isWlSaleEnabled;
  bool public isPublicSaleEnabled;
  bool public revealed = false;
  address public deployer;

  //mint records.
  mapping(address => uint256) internal _wlMinted;
  mapping(address => uint256) internal _psMinted;
  
  constructor (
    address _royaltyReceiver,
    uint96 _royaltyFraction
  ) ERC721A ("NFTCOLOR Xmas","NCX") {
    deployer = msg.sender;
    _withdrawWallet = payable(deployer);
    _grantOperatorRole(msg.sender);
    _setDefaultRoyalty(_royaltyReceiver,_royaltyFraction);
  }
  //start from 1.adjust.
  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
  }
  //set Default Royalty._feeNumerator 500 = 5% Royalty
  function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOperator {
      _setDefaultRoyalty(_receiver, _feeNumerator);
  }
  //for ERC2981
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
    return super.supportsInterface(interfaceId);
  }
  //for ERC2981 Opensea
  function contractURI() external view virtual returns (string memory) {
        return _formatContractURI();
  }
  //make contractURI
  function _formatContractURI() internal view returns (string memory) {
    (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0
    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), '"}'
            )
          )
        )
      )
    );
  }

  //set owner's wallet.withdraw to this wallet.only owner.
  function setWithdrawWallet(address _owner) external virtual onlyOperator {
    _withdrawWallet = payable(_owner);
  }

  function setDeployer(address _deployer) external virtual onlyOperator {
    deployer = _deployer;
  }

  //set maxSupply.only owner.
  function setMaxSupply(uint256 _maxSupply) external virtual onlyOperator {
    require(totalSupply() <= _maxSupply, "Lower than _currentIndex.");
    maxSupply = _maxSupply;
  }

  function setPsPrice(uint256 newPrice) external virtual onlyOperator {
    psMintPrice = newPrice;
  }

  //set reveal.only owner.
  function setReveal(bool newRevealStatus) external virtual onlyOperator {
    revealed = newRevealStatus;
  }
  //return _isRevealed()
  function _isRevealed() internal view virtual returns (bool){
    return revealed;
  }

  // GET MINTED COUNT.
  function wlMinted(address _address) external view virtual returns (uint256){
    return _wlMinted[_address];
  }
  function psMinted(address _address) external view virtual returns (uint256){
    return _psMinted[_address];
  }

  function setPsMaxMints(uint256 _max) external virtual onlyOperator {
    maxMintsPerPS = _max;
  }

  function setMaxMintsPerPsMint(uint256 _max) external virtual onlyOperator {
    maxMintsPerPsMint = _max;
  }

  // SET SALES ENABLE.
  function setWhitelistSaleEnable(bool bool_) external virtual onlyOperator {
    isWlSaleEnabled = bool_;
  }
  function setPublicSaleEnable(bool bool_) external virtual onlyOperator {
    isPublicSaleEnabled = bool_;
  }

  // SET MERKLE ROOT.
  function setWlMerkleRoot(bytes32 merkleRoot_) external virtual onlyOperator {
    _setwlMerkleRoot(merkleRoot_);
  }

  //set HiddenBaseURI.only owner.
  function setHiddenURI(string memory uri_) external virtual onlyOperator {
    hiddenURI = uri_;
  }

  //return _currentIndex
  function getCurrentIndex() external view virtual returns (uint256){
    return _currentIndex;
  }

  //set BaseURI at after reveal. only owner.
  function setBaseURI(string memory uri_) external virtual onlyOperator {
    _baseTokenURI = uri_;
  }


  function setBaseExtension(string memory _newBaseExtension) external onlyOperator
  {
    _baseExtension = _newBaseExtension;
  }

  //retuen BaseURI.internal.
  function _currentBaseURI() internal view returns (string memory){
    return _baseTokenURI;
  }


  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    if(_isRevealed()){
        return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension));
    }
    return hiddenURI;
  }

  //owner mint.transfer to _address.only owner.
  function ownerMint(uint256 _amount, address _address) external virtual onlyOperator { 
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _safeMint(_address, _amount);
  }


  //WL mint.
  function whitelistMint(uint256 _amount, uint256 wlcount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isWlSaleEnabled, "whitelistMint is Paused");
    require(isWhitelisted(msg.sender, wlcount, proof_), "You are not whitelisted!");
    require(wlcount > 0, "You have no WL!");
    require(wlcount >= _amount, "whitelistMint: Over max mints per wallet");
    require(wlcount >= _wlMinted[msg.sender] + _amount, "You have no whitelistMint left");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _wlMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }
  
  //Public mint.
  function publicMint(uint256 _amount) external payable virtual nonReentrant {
    require(isPublicSaleEnabled, "publicMint is Paused");
    require(maxMintsPerPsMint >= _amount, "publicMint: Over max mints per one time.");
    require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet");
    require(maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left");
    require(msg.value == psMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
    _psMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

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

  //widraw ETH from this contract.only owner. 
  function withdraw() external payable virtual onlyOperator nonReentrant{
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    bool os;
    if(_withdrawWallet != address(0)){//if _withdrawWallet has.
      (os, ) = payable(_withdrawWallet).call{value: address(this).balance}("");
    }else{
      (os, ) = payable(owner()).call{value: address(this).balance}("");
    }
    require(os);
    // =============================================================================
  }


  //return wallet owned tokenids.
  function walletOfOwner(address _address) external view virtual returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_address);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    //search from all tonkenid. so spend high gas values.attention.
    uint256 tokenindex = 0;
    for (uint256 i = _startTokenId(); i < _currentIndex; i++) {
      if(_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i;
    }
    return tokenIds;
  }

  //try catch vaersion ownerOf. support burned tokenid.
  function tryOwnerOf(uint256 tokenId) external view  virtual returns (address) {
    try this.ownerOf(tokenId) returns (address _address) {
      return(_address);
    } catch {
        return (address(0));//return 0x0 if error.
    }
  }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external onlyOperator {
        operatorFilteringEnabled = value;
    }

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

    /**
        @dev Operable Role
     */
    function grantOperatorRole(address _candidate) external onlyOwner {
        _grantOperatorRole(_candidate);
    }

    function revokeOperatorRole(address _candidate) external onlyOwner {
        _revokeOperatorRole(_candidate);
    }
}
//CODE.BY.FRICKLIK

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"grantOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"wlCount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPsMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"revokeOperatorRole","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","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":"address","name":"_deployer","type":"address"}],"name":"setDeployer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMintsPerPsMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newRevealStatus","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWlMerkleRoot","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"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wlcount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

600d805460ff1916600117905566276f642501c000600f556113886010819055601155606460135560c06040526005608081905264173539b7b760d91b60a0908152620000509160169190620006a2565b506017805462ff0000191690553480156200006a57600080fd5b50604051620043d6380380620043d68339810160408190526200008d9162000748565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c4e4654434f4c4f5220586d617360981b8152506040518060400160405280600381526020016209c86b60eb1b81525062000100620000fa620002df60201b60201c565b620002e3565b815162000115906003906020850190620006a2565b5080516200012b906004906020840190620006a2565b50600180815560095550506daaeb6d7670e522a718067333cd4e3b156200027b578015620001c957604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001aa57600080fd5b505af1158015620001bf573d6000803e3d6000fd5b505050506200027b565b6001600160a01b038216156200021a5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200018f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b505050505b5050601780546301000000338181026301000000600160b81b03199093169290921792839055601280546001600160a01b031916919093046001600160a01b031617909155620002cb9062000333565b620002d78282620003e1565b505062000933565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152600e602052604090205460ff161562000371336001600160a01b03166014620004e260201b62001ecc1760201c565b604051602001620003839190620007d0565b60405160208183030381529060405290620003bc5760405162461bcd60e51b8152600401620003b3919062000829565b60405180910390fd5b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6127106001600160601b0382161115620004515760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003b3565b6001600160a01b038216620004a95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003b3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b60606000620004f383600262000874565b6200050090600262000896565b6001600160401b038111156200051a576200051a620008b1565b6040519080825280601f01601f19166020018201604052801562000545576020820181803683370190505b509050600360fc1b81600081518110620005635762000563620008c7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005955762000595620008c7565b60200101906001600160f81b031916908160001a9053506000620005bb84600262000874565b620005c890600162000896565b90505b60018111156200064a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620006005762000600620008c7565b1a60f81b828281518110620006195762000619620008c7565b60200101906001600160f81b031916908160001a90535060049490941c936200064281620008dd565b9050620005cb565b5083156200069b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620003b3565b9392505050565b828054620006b090620008f7565b90600052602060002090601f016020900481019282620006d457600085556200071f565b82601f10620006ef57805160ff19168380011785556200071f565b828001600101855582156200071f579182015b828111156200071f57825182559160200191906001019062000702565b506200072d92915062000731565b5090565b5b808211156200072d576000815560010162000732565b600080604083850312156200075c57600080fd5b82516001600160a01b03811681146200077457600080fd5b60208401519092506001600160601b03811681146200079257600080fd5b809150509250929050565b60005b83811015620007ba578181015183820152602001620007a0565b83811115620007ca576000848401525b50505050565b67030b1b1b7bab73a160c51b815260008251620007f58160088501602087016200079d565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b60208152600082518060208401526200084a8160408501602087016200079d565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200089157620008916200085e565b500290565b60008219821115620008ac57620008ac6200085e565b500190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081620008ef57620008ef6200085e565b506000190190565b600181811c908216806200090c57607f821691505b6020821081036200092d57634e487b7160e01b600052602260045260246000fd5b50919050565b613a9380620009436000396000f3fe60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d5f39488116100a0578063e985e9c51161006f578063e985e9c514610a81578063f2fde38b14610aca578063faf7a82614610aea578063fb796e6c14610b0a57600080fd5b8063d5f3948814610a05578063d78be71c14610a2c578063da3ef23f14610a4c578063e8a3d48514610a6c57600080fd5b8063c4be5b59116100dc578063c4be5b591461099c578063c87b56dd146109af578063d52c57e0146109cf578063d5abeb01146109ef57600080fd5b8063b88d4fde1461093c578063bbaac02f1461095c578063c3faf7241461097c57600080fd5b80639373f4321161017a578063a22cb46511610149578063a22cb465146108bc578063a355fd29146108dc578063b219f7d7146108fc578063b7c0b8e81461091c57600080fd5b80639373f43214610831578063942958f41461085157806395d89b4114610887578063962147351461089c57600080fd5b8063830b3a64116101b6578063830b3a64146107bd5780638a651e5d146107dd5780638ac1e161146107f35780638da5cb5b1461081357600080fd5b8063715018a61461075257806378a9238014610767578063813779ef1461079d57600080fd5b80632a55205a116102c157806342966c681161025f5780636352211e1161022e5780636352211e146106b95780636d70f7ae146106d95780636f8b44b01461071257806370a082311461073257600080fd5b806342966c681461062c578063438b63001461064c578063518302271461067957806355f804b31461069957600080fd5b80634009920d1161029b5780634009920d146105b557806341f43434146105d457806342454db9146105f657806342842e0e1461060c57600080fd5b80632a55205a1461055b5780632db115441461059a5780633ccfd60b146105ad57600080fd5b806318749b931161032e57806323b872dd1161030857806323b872dd146104e65780632672c9021461050657806327ac0c581461051b5780632a3f300c1461053b57600080fd5b806318749b9314610496578063189f3de1146104b65780631a09cfe2146104d057600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630d9005ae1461046257806318160ddd1461048157600080fd5b806301ffc9a71461039157806304634d8d146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046130ad565b610b24565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e13660046130df565b610b35565b005b3480156103f457600080fd5b506103fd610b4c565b6040516103bd919061317c565b34801561041657600080fd5b5061042a61042536600461318f565b610bde565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d3660046131a8565b610c22565b34801561046e57600080fd5b506001545b6040519081526020016103bd565b34801561048d57600080fd5b50610473610d00565b3480156104a257600080fd5b506103e66104b136600461318f565b610d0e565b3480156104c257600080fd5b506017546103b19060ff1681565b3480156104dc57600080fd5b5061047360105481565b3480156104f257600080fd5b506103e66105013660046131d4565b610d1c565b34801561051257600080fd5b506103fd610e05565b34801561052757600080fd5b506103e6610536366004613215565b610e93565b34801561054757600080fd5b506103e6610556366004613240565b610ea7565b34801561056757600080fd5b5061057b61057636600461325d565b610ecc565b604080516001600160a01b0390931683526020830191909152016103bd565b6103e66105a836600461318f565b610f78565b6103e66111e2565b3480156105c157600080fd5b506017546103b190610100900460ff1681565b3480156105e057600080fd5b5061042a6daaeb6d7670e522a718067333cd4e81565b34801561060257600080fd5b50610473600f5481565b34801561061857600080fd5b506103e66106273660046131d4565b6112ee565b34801561063857600080fd5b506103e661064736600461318f565b6113cc565b34801561065857600080fd5b5061066c610667366004613215565b6113d7565b6040516103bd919061327f565b34801561068557600080fd5b506017546103b19062010000900460ff1681565b3480156106a557600080fd5b506103e66106b4366004613360565b6114fa565b3480156106c557600080fd5b5061042a6106d436600461318f565b611516565b3480156106e557600080fd5b506103b16106f4366004613215565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561071e57600080fd5b506103e661072d36600461318f565b611528565b34801561073e57600080fd5b5061047361074d366004613215565b61158d565b34801561075e57600080fd5b506103e66115db565b34801561077357600080fd5b50610473610782366004613215565b6001600160a01b031660009081526018602052604090205490565b3480156107a957600080fd5b506103e66107b836600461318f565b6115ef565b3480156107c957600080fd5b5061042a6107d836600461318f565b6115fd565b3480156107e957600080fd5b5061047360135481565b3480156107ff57600080fd5b506103e661080e36600461318f565b611664565b34801561081f57600080fd5b506000546001600160a01b031661042a565b34801561083d57600080fd5b506103e661084c366004613215565b611676565b34801561085d57600080fd5b5061047361086c366004613215565b6001600160a01b031660009081526019602052604090205490565b34801561089357600080fd5b506103fd6116a1565b3480156108a857600080fd5b506103e66108b7366004613215565b6116b0565b3480156108c857600080fd5b506103e66108d73660046133a8565b6116e5565b3480156108e857600080fd5b506103e66108f7366004613240565b6117b9565b34801561090857600080fd5b506103e6610917366004613215565b6117dc565b34801561092857600080fd5b506103e6610937366004613240565b6117ed565b34801561094857600080fd5b506103e66109573660046133d6565b611809565b34801561096857600080fd5b506103e6610977366004613360565b6118f5565b34801561098857600080fd5b506103e6610997366004613240565b611911565b6103e66109aa3660046134d4565b61192d565b3480156109bb57600080fd5b506103fd6109ca36600461318f565b611b76565b3480156109db57600080fd5b506103e66109ea366004613523565b611cab565b3480156109fb57600080fd5b5061047360115481565b348015610a1157600080fd5b5060175461042a90630100000090046001600160a01b031681565b348015610a3857600080fd5b506103e6610a4736600461318f565b611cf1565b348015610a5857600080fd5b506103e6610a67366004613360565b611cff565b348015610a7857600080fd5b506103fd611d1b565b348015610a8d57600080fd5b506103b1610a9c366004613548565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ad657600080fd5b506103e6610ae5366004613215565b611d2a565b348015610af657600080fd5b506103b1610b05366004613576565b611da0565b348015610b1657600080fd5b50600d546103b19060ff1681565b6000610b2f8261206e565b92915050565b610b3e33612093565b610b488282612101565b5050565b606060038054610b5b906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906135b8565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be9826121fe565b610c06576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590610c435750600d5460ff165b15610cf157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc491906135f2565b610cf157604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610cfb8383612237565b505050565b600254600154036000190190565b610d1733612093565b601355565b826daaeb6d7670e522a718067333cd4e3b15801590610d3d5750600d5460ff165b15610df457336001600160a01b03821603610d6257610d5d8484846122b8565b610dff565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd591906135f2565b610df457604051633b79c77360e21b8152336004820152602401610ce8565b610dff8484846122b8565b50505050565b60168054610e12906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906135b8565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b6122c3565b610ea48161231d565b50565b610eb033612093565b60178054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f41575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f60906001600160601b031687613625565b610f6a919061365a565b915196919550909350505050565b600260095403610f9a5760405162461bcd60e51b8152600401610ce89061366e565b6002600955601754610100900460ff16610fed5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610ce8565b8060135410156110505760405162461bcd60e51b815260206004820152602860248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152673732903a34b6b29760c11b6064820152608401610ce8565b8060105410156110b05760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610ce8565b336000908152601960205260409020546110cb9082906136a5565b601054101561111c5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610ce8565b80600f5461112a9190613625565b34146111785760405162461bcd60e51b815260206004820152601860248201527f4554482076616c7565206973206e6f7420636f727265637400000000000000006044820152606401610ce8565b601154611183610d00565b61118d90836136a5565b11156111ab5760405162461bcd60e51b8152600401610ce8906136bd565b33600090815260196020526040812080548392906111ca9084906136a5565b909155506111da905033826123a5565b506001600955565b6111eb33612093565b60026009540361120d5760405162461bcd60e51b8152600401610ce89061366e565b60026009556012546000906001600160a01b031615611283576012546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611273576040519150601f19603f3d011682016040523d82523d6000602084013e611278565b606091505b5050809150506112e4565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d80600081146112d9576040519150601f19603f3d011682016040523d82523d6000602084013e6112de565b606091505b50909150505b806111da57600080fd5b826daaeb6d7670e522a718067333cd4e3b1580159061130f5750600d5460ff165b156113c157336001600160a01b0382160361132f57610d5d8484846123bf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a291906135f2565b6113c157604051633b79c77360e21b8152336004820152602401610ce8565b610dff8484846123bf565b610ea48160016123da565b606060006113e48361158d565b90506000816001600160401b03811115611400576114006132c3565b604051908082528060200260200182016040528015611429578160200160208202803683370190505b509050600060015b6001548110156114f0576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611477573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149b91906136e3565b6001600160a01b0316866001600160a01b0316036114de578083836114bf81613700565b9450815181106114d1576114d1613719565b6020026020010181815250505b806114e881613700565b915050611431565b5090949350505050565b61150333612093565b8051610b48906015906020840190612ffe565b60006115218261258e565b5192915050565b61153133612093565b8061153a610d00565b11156115885760405162461bcd60e51b815260206004820152601960248201527f4c6f776572207468616e205f63757272656e74496e6465782e000000000000006044820152606401610ce8565b601155565b60006001600160a01b0382166115b6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6115e36122c3565b6115ed60006126b0565b565b6115f833612093565b601055565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015611658575060408051601f3d908101601f19168201909252611655918101906136e3565b60015b610b2f57506000919050565b61166d33612093565b610ea481600a55565b61167f33612093565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b5b906135b8565b6116b933612093565b601780546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b816daaeb6d7670e522a718067333cd4e3b158015906117065750600d5460ff165b156117af57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611763573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178791906135f2565b6117af57604051633b79c77360e21b81526001600160a01b0382166004820152602401610ce8565b610cfb8383612700565b6117c233612093565b601780549115156101000261ff0019909216919091179055565b6117e46122c3565b610ea481612795565b6117f633612093565b600d805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b1580159061182a5750600d5460ff165b156118e257336001600160a01b038216036118505761184b858585856127bf565b6118ee565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561189f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c391906135f2565b6118e257604051633b79c77360e21b8152336004820152602401610ce8565b6118ee858585856127bf565b5050505050565b6118fe33612093565b8051610b48906014906020840190612ffe565b61191a33612093565b6017805460ff1916911515919091179055565b60026009540361194f5760405162461bcd60e51b8152600401610ce89061366e565b600260095560175460ff166119a65760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401610ce8565b6119b1338383611da0565b6119fd5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610ce8565b60008211611a3f5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401610ce8565b82821015611aa05760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610ce8565b33600090815260186020526040902054611abb9084906136a5565b821015611b0a5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610ce8565b601154611b15610d00565b611b1f90856136a5565b1115611b3d5760405162461bcd60e51b8152600401610ce8906136bd565b3360009081526018602052604081208054859290611b5c9084906136a5565b90915550611b6c905033846123a5565b5050600160095550565b6060611b81826121fe565b611bcd5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ce8565b60175462010000900460ff1615611c1957611be6612803565b611bef83612812565b6016604051602001611c039392919061372f565b6040516020818303038152906040529050919050565b60148054611c26906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c52906135b8565b8015611c9f5780601f10611c7457610100808354040283529160200191611c9f565b820191906000526020600020905b815481529060010190602001808311611c8257829003601f168201915b50505050509050919050565b611cb433612093565b601154611cbf610d00565b611cc990846136a5565b1115611ce75760405162461bcd60e51b8152600401610ce8906136bd565b610b4881836123a5565b611cfa33612093565b600f55565b611d0833612093565b8051610b48906016906020840190612ffe565b6060611d2561291a565b905090565b611d326122c3565b6001600160a01b038116611d975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce8565b610ea4816126b0565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015611ebf57838181518110611e0157611e01613719565b60200260200101518210611e5f57838181518110611e2157611e21613719565b602002602001015182604051602001611e44929190918252602082015260400190565b60405160208183030381529060405280519060200120611eab565b81848281518110611e7257611e72613719565b6020026020010151604051602001611e94929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eb781613700565b915050611de6565b50600a5414949350505050565b60606000611edb836002613625565b611ee69060026136a5565b6001600160401b03811115611efd57611efd6132c3565b6040519080825280601f01601f191660200182016040528015611f27576020820181803683370190505b509050600360fc1b81600081518110611f4257611f42613719565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611f7157611f71613719565b60200101906001600160f81b031916908160001a9053506000611f95846002613625565b611fa09060016136a5565b90505b6001811115612018576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611fd457611fd4613719565b1a60f81b828281518110611fea57611fea613719565b60200101906001600160f81b031916908160001a90535060049490941c93612011816137f2565b9050611fa3565b5083156120675760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610ce8565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480610b2f5750610b2f8261299a565b6001600160a01b0381166000908152600e602052604090205460ff166120c4335b6001600160a01b03166014611ecc565b6040516020016120d49190613809565b60405160208183030381529060405290610b485760405162461bcd60e51b8152600401610ce8919061317c565b6127106001600160601b038216111561216f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ce8565b6001600160a01b0382166121c55760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ce8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612212575060015482105b8015610b2f575050600090815260056020526040902054600160e01b900460ff161590565b600061224282611516565b9050806001600160a01b0316836001600160a01b0316036122765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146122ad576122908133610a9c565b6122ad576040516367d9dca160e11b815260040160405180910390fd5b610cfb8383836129ea565b610cfb838383612a46565b6000546001600160a01b031633146115ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce8565b6001600160a01b0381166000908152600e602052604090205460ff1615612343336120b4565b6040516020016123539190613856565b604051602081830303815290604052906123805760405162461bcd60e51b8152600401610ce8919061317c565b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610b48828260405180602001604052806000815250612c1f565b610cfb83838360405180602001604052806000815250611809565b60006123e58361258e565b8051909150821561244b576000336001600160a01b038316148061240e575061240e8233610a9c565b8061242957503361241e86610bde565b6001600160a01b0316145b90508061244957604051632ce44b5f60e11b815260040160405180910390fd5b505b612457600085836129ea565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661255557600154821461255557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613a3e833981519152908390a450506002805460010190555050565b604080516060810182526000808252602082018190529181019190915281806001116126975760015481101561269757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126955780516001600160a01b03161561262c579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612690579392505050565b61262c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b038316036127295760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61279e81612093565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6127ca848484612a46565b6001600160a01b0383163b15610dff576127e684848484612dc1565b610dff576040516368d2bf6b60e11b815260040160405180910390fd5b606060158054610b5b906135b8565b6060816000036128395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612863578061284d81613700565b915061285c9050600a8361365a565b915061283d565b6000816001600160401b0381111561287d5761287d6132c3565b6040519080825280601f01601f1916602001820160405280156128a7576020820181803683370190505b5090505b8415612912576128bc6001836138ad565b91506128c9600a866138c4565b6128d49060306136a5565b60f81b8183815181106128e9576128e9613719565b60200101906001600160f81b031916908160001a90535061290b600a8661365a565b94506128ab565b949350505050565b606060008061292b81612710610ecc565b9150915061297461293b82612812565b61294f846001600160a01b03166014611ecc565b6040516020016129609291906138d8565b604051602081830303815290604052612eac565b604051602001612984919061395e565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806129cb57506001600160e01b03198216635b5e139f60e01b145b80610b2f57506301ffc9a760e01b6001600160e01b0319831614610b2f565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a518261258e565b9050836001600160a01b031681600001516001600160a01b031614612a885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612aa65750612aa68533610a9c565b80612ac1575033612ab684610bde565b6001600160a01b0316145b905080612ae157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612b0857604051633a954ecd60e21b815260040160405180910390fd5b612b14600084876129ea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612be8576001548214612be857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020613a3e83398151915260405160405180910390a46118ee565b6001546001600160a01b038416612c4857604051622e076360e81b815260040160405180910390fd5b82600003612c695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d7f575b60405182906001600160a01b03881690600090600080516020613a3e833981519152908290a4612d486000878480600101955087612dc1565b612d65576040516368d2bf6b60e11b815260040160405180910390fd5b808210612d0f578260015414612d7a57600080fd5b612db2565b5b6040516001830192906001600160a01b03881690600090600080516020613a3e833981519152908290a4808210612d80575b50600155610dff600085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612df69033908990889088906004016139a3565b6020604051808303816000875af1925050508015612e31575060408051601f3d908101601f19168201909252612e2e918101906139e0565b60015b612e8f573d808015612e5f576040519150601f19603f3d011682016040523d82523d6000602084013e612e64565b606091505b508051600003612e87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003612ecb57505060408051602081019091526000815290565b60006040518060600160405280604081526020016139fe6040913990506000600384516002612efa91906136a5565b612f04919061365a565b612f0f906004613625565b6001600160401b03811115612f2657612f266132c3565b6040519080825280601f01601f191660200182016040528015612f50576020820181803683370190505b509050600182016020820185865187015b80821015612fbc576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612f61565b5050600386510660018114612fd85760028114612feb57612ff3565b603d6001830353603d6002830353612ff3565b603d60018303535b509195945050505050565b82805461300a906135b8565b90600052602060002090601f01602090048101928261302c5760008555613072565b82601f1061304557805160ff1916838001178555613072565b82800160010185558215613072579182015b82811115613072578251825591602001919060010190613057565b5061307e929150613082565b5090565b5b8082111561307e5760008155600101613083565b6001600160e01b031981168114610ea457600080fd5b6000602082840312156130bf57600080fd5b813561206781613097565b6001600160a01b0381168114610ea457600080fd5b600080604083850312156130f257600080fd5b82356130fd816130ca565b915060208301356001600160601b038116811461311957600080fd5b809150509250929050565b60005b8381101561313f578181015183820152602001613127565b83811115610dff5750506000910152565b60008151808452613168816020860160208601613124565b601f01601f19169290920160200192915050565b6020815260006120676020830184613150565b6000602082840312156131a157600080fd5b5035919050565b600080604083850312156131bb57600080fd5b82356131c6816130ca565b946020939093013593505050565b6000806000606084860312156131e957600080fd5b83356131f4816130ca565b92506020840135613204816130ca565b929592945050506040919091013590565b60006020828403121561322757600080fd5b8135612067816130ca565b8015158114610ea457600080fd5b60006020828403121561325257600080fd5b813561206781613232565b6000806040838503121561327057600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156132b75783518352928401929184019160010161329b565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613301576133016132c3565b604052919050565b60006001600160401b03831115613322576133226132c3565b613335601f8401601f19166020016132d9565b905082815283838301111561334957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561337257600080fd5b81356001600160401b0381111561338857600080fd5b8201601f8101841361339957600080fd5b61291284823560208401613309565b600080604083850312156133bb57600080fd5b82356133c6816130ca565b9150602083013561311981613232565b600080600080608085870312156133ec57600080fd5b84356133f7816130ca565b93506020850135613407816130ca565b92506040850135915060608501356001600160401b0381111561342957600080fd5b8501601f8101871361343a57600080fd5b61344987823560208401613309565b91505092959194509250565b600082601f83011261346657600080fd5b813560206001600160401b03821115613481576134816132c3565b8160051b6134908282016132d9565b92835284810182019282810190878511156134aa57600080fd5b83870192505b848310156134c9578235825291830191908301906134b0565b979650505050505050565b6000806000606084860312156134e957600080fd5b833592506020840135915060408401356001600160401b0381111561350d57600080fd5b61351986828701613455565b9150509250925092565b6000806040838503121561353657600080fd5b823591506020830135613119816130ca565b6000806040838503121561355b57600080fd5b8235613566816130ca565b91506020830135613119816130ca565b60008060006060848603121561358b57600080fd5b8335613596816130ca565b92506020840135915060408401356001600160401b0381111561350d57600080fd5b600181811c908216806135cc57607f821691505b6020821081036135ec57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561360457600080fd5b815161206781613232565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561363f5761363f61360f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261366957613669613644565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156136b8576136b861360f565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6000602082840312156136f557600080fd5b8151612067816130ca565b6000600182016137125761371261360f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000845160206137428285838a01613124565b8551918401916137558184848a01613124565b8554920191600090600181811c908083168061377257607f831692505b858310810361378f57634e487b7160e01b85526022600452602485fd5b8080156137a357600181146137b4576137e1565b60ff198516885283880195506137e1565b60008b81526020902060005b858110156137d95781548a8201529084019088016137c0565b505083880195505b50939b9a5050505050505050505050565b6000816138015761380161360f565b506000190190565b67030b1b1b7bab73a160c51b81526000825161382c816008850160208701613124565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b815260008251613879816008850160208701613124565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b6000828210156138bf576138bf61360f565b500390565b6000826138d3576138d3613644565b500690565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161391081601b850160208801613124565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161394381602e840160208801613124565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161399681601d850160208701613124565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139d690830184613150565b9695505050505050565b6000602082840312156139f257600080fd5b81516120678161309756fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212206291a9830537ed827ae67ce8b4f7cdb2340942a9d8e1546ce338b4998d436a7364736f6c634300080d00330000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d5f39488116100a0578063e985e9c51161006f578063e985e9c514610a81578063f2fde38b14610aca578063faf7a82614610aea578063fb796e6c14610b0a57600080fd5b8063d5f3948814610a05578063d78be71c14610a2c578063da3ef23f14610a4c578063e8a3d48514610a6c57600080fd5b8063c4be5b59116100dc578063c4be5b591461099c578063c87b56dd146109af578063d52c57e0146109cf578063d5abeb01146109ef57600080fd5b8063b88d4fde1461093c578063bbaac02f1461095c578063c3faf7241461097c57600080fd5b80639373f4321161017a578063a22cb46511610149578063a22cb465146108bc578063a355fd29146108dc578063b219f7d7146108fc578063b7c0b8e81461091c57600080fd5b80639373f43214610831578063942958f41461085157806395d89b4114610887578063962147351461089c57600080fd5b8063830b3a64116101b6578063830b3a64146107bd5780638a651e5d146107dd5780638ac1e161146107f35780638da5cb5b1461081357600080fd5b8063715018a61461075257806378a9238014610767578063813779ef1461079d57600080fd5b80632a55205a116102c157806342966c681161025f5780636352211e1161022e5780636352211e146106b95780636d70f7ae146106d95780636f8b44b01461071257806370a082311461073257600080fd5b806342966c681461062c578063438b63001461064c578063518302271461067957806355f804b31461069957600080fd5b80634009920d1161029b5780634009920d146105b557806341f43434146105d457806342454db9146105f657806342842e0e1461060c57600080fd5b80632a55205a1461055b5780632db115441461059a5780633ccfd60b146105ad57600080fd5b806318749b931161032e57806323b872dd1161030857806323b872dd146104e65780632672c9021461050657806327ac0c581461051b5780632a3f300c1461053b57600080fd5b806318749b9314610496578063189f3de1146104b65780631a09cfe2146104d057600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630d9005ae1461046257806318160ddd1461048157600080fd5b806301ffc9a71461039157806304634d8d146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046130ad565b610b24565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e13660046130df565b610b35565b005b3480156103f457600080fd5b506103fd610b4c565b6040516103bd919061317c565b34801561041657600080fd5b5061042a61042536600461318f565b610bde565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d3660046131a8565b610c22565b34801561046e57600080fd5b506001545b6040519081526020016103bd565b34801561048d57600080fd5b50610473610d00565b3480156104a257600080fd5b506103e66104b136600461318f565b610d0e565b3480156104c257600080fd5b506017546103b19060ff1681565b3480156104dc57600080fd5b5061047360105481565b3480156104f257600080fd5b506103e66105013660046131d4565b610d1c565b34801561051257600080fd5b506103fd610e05565b34801561052757600080fd5b506103e6610536366004613215565b610e93565b34801561054757600080fd5b506103e6610556366004613240565b610ea7565b34801561056757600080fd5b5061057b61057636600461325d565b610ecc565b604080516001600160a01b0390931683526020830191909152016103bd565b6103e66105a836600461318f565b610f78565b6103e66111e2565b3480156105c157600080fd5b506017546103b190610100900460ff1681565b3480156105e057600080fd5b5061042a6daaeb6d7670e522a718067333cd4e81565b34801561060257600080fd5b50610473600f5481565b34801561061857600080fd5b506103e66106273660046131d4565b6112ee565b34801561063857600080fd5b506103e661064736600461318f565b6113cc565b34801561065857600080fd5b5061066c610667366004613215565b6113d7565b6040516103bd919061327f565b34801561068557600080fd5b506017546103b19062010000900460ff1681565b3480156106a557600080fd5b506103e66106b4366004613360565b6114fa565b3480156106c557600080fd5b5061042a6106d436600461318f565b611516565b3480156106e557600080fd5b506103b16106f4366004613215565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561071e57600080fd5b506103e661072d36600461318f565b611528565b34801561073e57600080fd5b5061047361074d366004613215565b61158d565b34801561075e57600080fd5b506103e66115db565b34801561077357600080fd5b50610473610782366004613215565b6001600160a01b031660009081526018602052604090205490565b3480156107a957600080fd5b506103e66107b836600461318f565b6115ef565b3480156107c957600080fd5b5061042a6107d836600461318f565b6115fd565b3480156107e957600080fd5b5061047360135481565b3480156107ff57600080fd5b506103e661080e36600461318f565b611664565b34801561081f57600080fd5b506000546001600160a01b031661042a565b34801561083d57600080fd5b506103e661084c366004613215565b611676565b34801561085d57600080fd5b5061047361086c366004613215565b6001600160a01b031660009081526019602052604090205490565b34801561089357600080fd5b506103fd6116a1565b3480156108a857600080fd5b506103e66108b7366004613215565b6116b0565b3480156108c857600080fd5b506103e66108d73660046133a8565b6116e5565b3480156108e857600080fd5b506103e66108f7366004613240565b6117b9565b34801561090857600080fd5b506103e6610917366004613215565b6117dc565b34801561092857600080fd5b506103e6610937366004613240565b6117ed565b34801561094857600080fd5b506103e66109573660046133d6565b611809565b34801561096857600080fd5b506103e6610977366004613360565b6118f5565b34801561098857600080fd5b506103e6610997366004613240565b611911565b6103e66109aa3660046134d4565b61192d565b3480156109bb57600080fd5b506103fd6109ca36600461318f565b611b76565b3480156109db57600080fd5b506103e66109ea366004613523565b611cab565b3480156109fb57600080fd5b5061047360115481565b348015610a1157600080fd5b5060175461042a90630100000090046001600160a01b031681565b348015610a3857600080fd5b506103e6610a4736600461318f565b611cf1565b348015610a5857600080fd5b506103e6610a67366004613360565b611cff565b348015610a7857600080fd5b506103fd611d1b565b348015610a8d57600080fd5b506103b1610a9c366004613548565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ad657600080fd5b506103e6610ae5366004613215565b611d2a565b348015610af657600080fd5b506103b1610b05366004613576565b611da0565b348015610b1657600080fd5b50600d546103b19060ff1681565b6000610b2f8261206e565b92915050565b610b3e33612093565b610b488282612101565b5050565b606060038054610b5b906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906135b8565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be9826121fe565b610c06576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590610c435750600d5460ff165b15610cf157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc491906135f2565b610cf157604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610cfb8383612237565b505050565b600254600154036000190190565b610d1733612093565b601355565b826daaeb6d7670e522a718067333cd4e3b15801590610d3d5750600d5460ff165b15610df457336001600160a01b03821603610d6257610d5d8484846122b8565b610dff565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd591906135f2565b610df457604051633b79c77360e21b8152336004820152602401610ce8565b610dff8484846122b8565b50505050565b60168054610e12906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906135b8565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b6122c3565b610ea48161231d565b50565b610eb033612093565b60178054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f41575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f60906001600160601b031687613625565b610f6a919061365a565b915196919550909350505050565b600260095403610f9a5760405162461bcd60e51b8152600401610ce89061366e565b6002600955601754610100900460ff16610fed5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610ce8565b8060135410156110505760405162461bcd60e51b815260206004820152602860248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152673732903a34b6b29760c11b6064820152608401610ce8565b8060105410156110b05760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610ce8565b336000908152601960205260409020546110cb9082906136a5565b601054101561111c5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610ce8565b80600f5461112a9190613625565b34146111785760405162461bcd60e51b815260206004820152601860248201527f4554482076616c7565206973206e6f7420636f727265637400000000000000006044820152606401610ce8565b601154611183610d00565b61118d90836136a5565b11156111ab5760405162461bcd60e51b8152600401610ce8906136bd565b33600090815260196020526040812080548392906111ca9084906136a5565b909155506111da905033826123a5565b506001600955565b6111eb33612093565b60026009540361120d5760405162461bcd60e51b8152600401610ce89061366e565b60026009556012546000906001600160a01b031615611283576012546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611273576040519150601f19603f3d011682016040523d82523d6000602084013e611278565b606091505b5050809150506112e4565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d80600081146112d9576040519150601f19603f3d011682016040523d82523d6000602084013e6112de565b606091505b50909150505b806111da57600080fd5b826daaeb6d7670e522a718067333cd4e3b1580159061130f5750600d5460ff165b156113c157336001600160a01b0382160361132f57610d5d8484846123bf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a291906135f2565b6113c157604051633b79c77360e21b8152336004820152602401610ce8565b610dff8484846123bf565b610ea48160016123da565b606060006113e48361158d565b90506000816001600160401b03811115611400576114006132c3565b604051908082528060200260200182016040528015611429578160200160208202803683370190505b509050600060015b6001548110156114f0576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611477573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149b91906136e3565b6001600160a01b0316866001600160a01b0316036114de578083836114bf81613700565b9450815181106114d1576114d1613719565b6020026020010181815250505b806114e881613700565b915050611431565b5090949350505050565b61150333612093565b8051610b48906015906020840190612ffe565b60006115218261258e565b5192915050565b61153133612093565b8061153a610d00565b11156115885760405162461bcd60e51b815260206004820152601960248201527f4c6f776572207468616e205f63757272656e74496e6465782e000000000000006044820152606401610ce8565b601155565b60006001600160a01b0382166115b6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6115e36122c3565b6115ed60006126b0565b565b6115f833612093565b601055565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa925050508015611658575060408051601f3d908101601f19168201909252611655918101906136e3565b60015b610b2f57506000919050565b61166d33612093565b610ea481600a55565b61167f33612093565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b5b906135b8565b6116b933612093565b601780546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b816daaeb6d7670e522a718067333cd4e3b158015906117065750600d5460ff165b156117af57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611763573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178791906135f2565b6117af57604051633b79c77360e21b81526001600160a01b0382166004820152602401610ce8565b610cfb8383612700565b6117c233612093565b601780549115156101000261ff0019909216919091179055565b6117e46122c3565b610ea481612795565b6117f633612093565b600d805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b1580159061182a5750600d5460ff165b156118e257336001600160a01b038216036118505761184b858585856127bf565b6118ee565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561189f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c391906135f2565b6118e257604051633b79c77360e21b8152336004820152602401610ce8565b6118ee858585856127bf565b5050505050565b6118fe33612093565b8051610b48906014906020840190612ffe565b61191a33612093565b6017805460ff1916911515919091179055565b60026009540361194f5760405162461bcd60e51b8152600401610ce89061366e565b600260095560175460ff166119a65760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401610ce8565b6119b1338383611da0565b6119fd5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610ce8565b60008211611a3f5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401610ce8565b82821015611aa05760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610ce8565b33600090815260186020526040902054611abb9084906136a5565b821015611b0a5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610ce8565b601154611b15610d00565b611b1f90856136a5565b1115611b3d5760405162461bcd60e51b8152600401610ce8906136bd565b3360009081526018602052604081208054859290611b5c9084906136a5565b90915550611b6c905033846123a5565b5050600160095550565b6060611b81826121fe565b611bcd5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ce8565b60175462010000900460ff1615611c1957611be6612803565b611bef83612812565b6016604051602001611c039392919061372f565b6040516020818303038152906040529050919050565b60148054611c26906135b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c52906135b8565b8015611c9f5780601f10611c7457610100808354040283529160200191611c9f565b820191906000526020600020905b815481529060010190602001808311611c8257829003601f168201915b50505050509050919050565b611cb433612093565b601154611cbf610d00565b611cc990846136a5565b1115611ce75760405162461bcd60e51b8152600401610ce8906136bd565b610b4881836123a5565b611cfa33612093565b600f55565b611d0833612093565b8051610b48906016906020840190612ffe565b6060611d2561291a565b905090565b611d326122c3565b6001600160a01b038116611d975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce8565b610ea4816126b0565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015611ebf57838181518110611e0157611e01613719565b60200260200101518210611e5f57838181518110611e2157611e21613719565b602002602001015182604051602001611e44929190918252602082015260400190565b60405160208183030381529060405280519060200120611eab565b81848281518110611e7257611e72613719565b6020026020010151604051602001611e94929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eb781613700565b915050611de6565b50600a5414949350505050565b60606000611edb836002613625565b611ee69060026136a5565b6001600160401b03811115611efd57611efd6132c3565b6040519080825280601f01601f191660200182016040528015611f27576020820181803683370190505b509050600360fc1b81600081518110611f4257611f42613719565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611f7157611f71613719565b60200101906001600160f81b031916908160001a9053506000611f95846002613625565b611fa09060016136a5565b90505b6001811115612018576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611fd457611fd4613719565b1a60f81b828281518110611fea57611fea613719565b60200101906001600160f81b031916908160001a90535060049490941c93612011816137f2565b9050611fa3565b5083156120675760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610ce8565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480610b2f5750610b2f8261299a565b6001600160a01b0381166000908152600e602052604090205460ff166120c4335b6001600160a01b03166014611ecc565b6040516020016120d49190613809565b60405160208183030381529060405290610b485760405162461bcd60e51b8152600401610ce8919061317c565b6127106001600160601b038216111561216f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ce8565b6001600160a01b0382166121c55760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ce8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612212575060015482105b8015610b2f575050600090815260056020526040902054600160e01b900460ff161590565b600061224282611516565b9050806001600160a01b0316836001600160a01b0316036122765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146122ad576122908133610a9c565b6122ad576040516367d9dca160e11b815260040160405180910390fd5b610cfb8383836129ea565b610cfb838383612a46565b6000546001600160a01b031633146115ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce8565b6001600160a01b0381166000908152600e602052604090205460ff1615612343336120b4565b6040516020016123539190613856565b604051602081830303815290604052906123805760405162461bcd60e51b8152600401610ce8919061317c565b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610b48828260405180602001604052806000815250612c1f565b610cfb83838360405180602001604052806000815250611809565b60006123e58361258e565b8051909150821561244b576000336001600160a01b038316148061240e575061240e8233610a9c565b8061242957503361241e86610bde565b6001600160a01b0316145b90508061244957604051632ce44b5f60e11b815260040160405180910390fd5b505b612457600085836129ea565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661255557600154821461255557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613a3e833981519152908390a450506002805460010190555050565b604080516060810182526000808252602082018190529181019190915281806001116126975760015481101561269757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126955780516001600160a01b03161561262c579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612690579392505050565b61262c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b038316036127295760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61279e81612093565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6127ca848484612a46565b6001600160a01b0383163b15610dff576127e684848484612dc1565b610dff576040516368d2bf6b60e11b815260040160405180910390fd5b606060158054610b5b906135b8565b6060816000036128395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612863578061284d81613700565b915061285c9050600a8361365a565b915061283d565b6000816001600160401b0381111561287d5761287d6132c3565b6040519080825280601f01601f1916602001820160405280156128a7576020820181803683370190505b5090505b8415612912576128bc6001836138ad565b91506128c9600a866138c4565b6128d49060306136a5565b60f81b8183815181106128e9576128e9613719565b60200101906001600160f81b031916908160001a90535061290b600a8661365a565b94506128ab565b949350505050565b606060008061292b81612710610ecc565b9150915061297461293b82612812565b61294f846001600160a01b03166014611ecc565b6040516020016129609291906138d8565b604051602081830303815290604052612eac565b604051602001612984919061395e565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806129cb57506001600160e01b03198216635b5e139f60e01b145b80610b2f57506301ffc9a760e01b6001600160e01b0319831614610b2f565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a518261258e565b9050836001600160a01b031681600001516001600160a01b031614612a885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612aa65750612aa68533610a9c565b80612ac1575033612ab684610bde565b6001600160a01b0316145b905080612ae157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612b0857604051633a954ecd60e21b815260040160405180910390fd5b612b14600084876129ea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612be8576001548214612be857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020613a3e83398151915260405160405180910390a46118ee565b6001546001600160a01b038416612c4857604051622e076360e81b815260040160405180910390fd5b82600003612c695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d7f575b60405182906001600160a01b03881690600090600080516020613a3e833981519152908290a4612d486000878480600101955087612dc1565b612d65576040516368d2bf6b60e11b815260040160405180910390fd5b808210612d0f578260015414612d7a57600080fd5b612db2565b5b6040516001830192906001600160a01b03881690600090600080516020613a3e833981519152908290a4808210612d80575b50600155610dff600085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612df69033908990889088906004016139a3565b6020604051808303816000875af1925050508015612e31575060408051601f3d908101601f19168201909252612e2e918101906139e0565b60015b612e8f573d808015612e5f576040519150601f19603f3d011682016040523d82523d6000602084013e612e64565b606091505b508051600003612e87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003612ecb57505060408051602081019091526000815290565b60006040518060600160405280604081526020016139fe6040913990506000600384516002612efa91906136a5565b612f04919061365a565b612f0f906004613625565b6001600160401b03811115612f2657612f266132c3565b6040519080825280601f01601f191660200182016040528015612f50576020820181803683370190505b509050600182016020820185865187015b80821015612fbc576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612f61565b5050600386510660018114612fd85760028114612feb57612ff3565b603d6001830353603d6002830353612ff3565b603d60018303535b509195945050505050565b82805461300a906135b8565b90600052602060002090601f01602090048101928261302c5760008555613072565b82601f1061304557805160ff1916838001178555613072565b82800160010185558215613072579182015b82811115613072578251825591602001919060010190613057565b5061307e929150613082565b5090565b5b8082111561307e5760008155600101613083565b6001600160e01b031981168114610ea457600080fd5b6000602082840312156130bf57600080fd5b813561206781613097565b6001600160a01b0381168114610ea457600080fd5b600080604083850312156130f257600080fd5b82356130fd816130ca565b915060208301356001600160601b038116811461311957600080fd5b809150509250929050565b60005b8381101561313f578181015183820152602001613127565b83811115610dff5750506000910152565b60008151808452613168816020860160208601613124565b601f01601f19169290920160200192915050565b6020815260006120676020830184613150565b6000602082840312156131a157600080fd5b5035919050565b600080604083850312156131bb57600080fd5b82356131c6816130ca565b946020939093013593505050565b6000806000606084860312156131e957600080fd5b83356131f4816130ca565b92506020840135613204816130ca565b929592945050506040919091013590565b60006020828403121561322757600080fd5b8135612067816130ca565b8015158114610ea457600080fd5b60006020828403121561325257600080fd5b813561206781613232565b6000806040838503121561327057600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156132b75783518352928401929184019160010161329b565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613301576133016132c3565b604052919050565b60006001600160401b03831115613322576133226132c3565b613335601f8401601f19166020016132d9565b905082815283838301111561334957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561337257600080fd5b81356001600160401b0381111561338857600080fd5b8201601f8101841361339957600080fd5b61291284823560208401613309565b600080604083850312156133bb57600080fd5b82356133c6816130ca565b9150602083013561311981613232565b600080600080608085870312156133ec57600080fd5b84356133f7816130ca565b93506020850135613407816130ca565b92506040850135915060608501356001600160401b0381111561342957600080fd5b8501601f8101871361343a57600080fd5b61344987823560208401613309565b91505092959194509250565b600082601f83011261346657600080fd5b813560206001600160401b03821115613481576134816132c3565b8160051b6134908282016132d9565b92835284810182019282810190878511156134aa57600080fd5b83870192505b848310156134c9578235825291830191908301906134b0565b979650505050505050565b6000806000606084860312156134e957600080fd5b833592506020840135915060408401356001600160401b0381111561350d57600080fd5b61351986828701613455565b9150509250925092565b6000806040838503121561353657600080fd5b823591506020830135613119816130ca565b6000806040838503121561355b57600080fd5b8235613566816130ca565b91506020830135613119816130ca565b60008060006060848603121561358b57600080fd5b8335613596816130ca565b92506020840135915060408401356001600160401b0381111561350d57600080fd5b600181811c908216806135cc57607f821691505b6020821081036135ec57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561360457600080fd5b815161206781613232565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561363f5761363f61360f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261366957613669613644565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156136b8576136b861360f565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6000602082840312156136f557600080fd5b8151612067816130ca565b6000600182016137125761371261360f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000845160206137428285838a01613124565b8551918401916137558184848a01613124565b8554920191600090600181811c908083168061377257607f831692505b858310810361378f57634e487b7160e01b85526022600452602485fd5b8080156137a357600181146137b4576137e1565b60ff198516885283880195506137e1565b60008b81526020902060005b858110156137d95781548a8201529084019088016137c0565b505083880195505b50939b9a5050505050505050505050565b6000816138015761380161360f565b506000190190565b67030b1b1b7bab73a160c51b81526000825161382c816008850160208701613124565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b815260008251613879816008850160208701613124565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b6000828210156138bf576138bf61360f565b500390565b6000826138d3576138d3613644565b500690565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161391081601b850160208801613124565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161394381602e840160208801613124565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161399681601d850160208701613124565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139d690830184613150565b9695505050505050565b6000602082840312156139f257600080fd5b81516120678161309756fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212206291a9830537ed827ae67ce8b4f7cdb2340942a9d8e1546ce338b4998d436a7364736f6c634300080d0033

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

0000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x0B73077d15FD83080625fcA5EF96c552d1679e0c
Arg [1] : _royaltyFraction (uint96): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

66176:9838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67567:165;;;;;;;;;;-1:-1:-1;67567:165:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;67567:165:0;;;;;;;;67389:157;;;;;;;;;;-1:-1:-1;67389:157:0;;;;;:::i;:::-;;:::i;:::-;;40875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42387:204::-;;;;;;;;;;-1:-1:-1;42387:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2268:32:1;;;2250:51;;2238:2;2223:18;42387:204:0;2104:203:1;74974:157:0;;;;;;;;;;-1:-1:-1;74974:157:0;;;;;:::i;:::-;;:::i;70408:99::-;;;;;;;;;;-1:-1:-1;70488:13:0;;70408:99;;;2778:25:1;;;2766:2;2751:18;70408:99:0;2632:177:1;37000:312:0;;;;;;;;;;;;;:::i;69721:111::-;;;;;;;;;;-1:-1:-1;69721:111:0;;;;;:::i;:::-;;:::i;66660:27::-;;;;;;;;;;-1:-1:-1;66660:27:0;;;;;;;;66365:35;;;;;;;;;;;;;;;;75139:163;;;;;;;;;;-1:-1:-1;75139:163:0;;;;;:::i;:::-;;:::i;66604:38::-;;;;;;;;;;;;;:::i;75771:115::-;;;;;;;;;;-1:-1:-1;75771:115:0;;;;;:::i;:::-;;:::i;69120:110::-;;;;;;;;;;-1:-1:-1;69120:110:0;;;;;:::i;:::-;;:::i;28911:442::-;;;;;;;;;;-1:-1:-1;28911:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4341:32:1;;;4323:51;;4405:2;4390:18;;4383:34;;;;4296:18;28911:442:0;4149:274:1;72199:630:0;;;;;;:::i;:::-;;:::i;72980:664::-;;;:::i;66692:31::-;;;;;;;;;;-1:-1:-1;66692:31:0;;;;;;;;;;;63371:143;;;;;;;;;;;;63471:42;63371:143;;66319:41;;;;;;;;;;;;;;;;75310:171;;;;;;;;;;-1:-1:-1;75310:171:0;;;;;:::i;:::-;;:::i;72845:81::-;;;;;;;;;;-1:-1:-1;72845:81:0;;;;;:::i;:::-;;:::i;73687:475::-;;;;;;;;;;-1:-1:-1;73687:475:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66728:28::-;;;;;;;;;;-1:-1:-1;66728:28:0;;;;;;;;;;;70559:103;;;;;;;;;;-1:-1:-1;70559:103:0;;;;;:::i;:::-;;:::i;40683:125::-;;;;;;;;;;-1:-1:-1;40683:125:0;;;;;:::i;:::-;;:::i;59447:113::-;;;;;;;;;;-1:-1:-1;59447:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;59531:21:0;59507:4;59531:21;;;:10;:21;;;;;;;;;59447:113;68798:179;;;;;;;;;;-1:-1:-1;68798:179:0;;;;;:::i;:::-;;:::i;38129:206::-;;;;;;;;;;-1:-1:-1;38129:206:0;;;;;:::i;:::-;;:::i;58417:103::-;;;;;;;;;;;;;:::i;69377:114::-;;;;;;;;;;-1:-1:-1;69377:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;69466:19:0;69444:7;69466:19;;;:9;:19;;;;;;;69377:114;69615:100;;;;;;;;;;-1:-1:-1;69615:100:0;;;;;:::i;:::-;;:::i;74225:243::-;;;;;;;;;;-1:-1:-1;74225:243:0;;;;;:::i;:::-;;:::i;66486:38::-;;;;;;;;;;;;;;;;70116:118;;;;;;;;;;-1:-1:-1;70116:118:0;;;;;:::i;:::-;;:::i;57769:87::-;;;;;;;;;;-1:-1:-1;57815:7:0;57842:6;-1:-1:-1;;;;;57842:6:0;57769:87;;68533:119;;;;;;;;;;-1:-1:-1;68533:119:0;;;;;:::i;:::-;;:::i;69495:114::-;;;;;;;;;;-1:-1:-1;69495:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;69584:19:0;69562:7;69584:19;;;:9;:19;;;;;;;69495:114;41044:104;;;;;;;;;;;;;:::i;68658:103::-;;;;;;;;;;-1:-1:-1;68658:103:0;;;;;:::i;:::-;;:::i;74790:176::-;;;;;;;;;;-1:-1:-1;74790:176:0;;;;;:::i;:::-;;:::i;69976:111::-;;;;;;;;;;-1:-1:-1;69976:111:0;;;;;:::i;:::-;;:::i;75894:117::-;;;;;;;;;;-1:-1:-1;75894:117:0;;;;;:::i;:::-;;:::i;74660:122::-;;;;;;;;;;-1:-1:-1;74660:122:0;;;;;:::i;:::-;;:::i;75489:228::-;;;;;;;;;;-1:-1:-1;75489:228:0;;;;;:::i;:::-;;:::i;70275:101::-;;;;;;;;;;-1:-1:-1;70275:101:0;;;;;:::i;:::-;;:::i;69862:110::-;;;;;;;;;;-1:-1:-1;69862:110:0;;;;;:::i;:::-;;:::i;71539:634::-;;;;;;:::i;:::-;;:::i;70942:322::-;;;;;;;;;;-1:-1:-1;70942:322:0;;;;;:::i;:::-;;:::i;71319:198::-;;;;;;;;;;-1:-1:-1;71319:198:0;;;;;:::i;:::-;;:::i;66405:31::-;;;;;;;;;;;;;;;;66761:23;;;;;;;;;;-1:-1:-1;66761:23:0;;;;;;;-1:-1:-1;;;;;66761:23:0;;;68983:103;;;;;;;;;;-1:-1:-1;68983:103:0;;;;;:::i;:::-;;:::i;70670:131::-;;;;;;;;;;-1:-1:-1;70670:131:0;;;;;:::i;:::-;;:::i;67761:113::-;;;;;;;;;;;;;:::i;43021:164::-;;;;;;;;;;-1:-1:-1;43021:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43142:25:0;;;43118:4;43142:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43021:164;58675:201;;;;;;;;;;-1:-1:-1;58675:201:0;;;;;:::i;:::-;;:::i;12141:433::-;;;;;;;;;;-1:-1:-1;12141:433:0;;;;;:::i;:::-;;:::i;63319:43::-;;;;;;;;;;-1:-1:-1;63319:43:0;;;;;;;;67567:165;67670:4;67690:36;67714:11;67690:23;:36::i;:::-;67683:43;67567:165;-1:-1:-1;;67567:165:0:o;67389:157::-;59387:32;34815:10;59387:18;:32::i;:::-;67496:44:::1;67515:9;67526:13;67496:18;:44::i;:::-;67389:157:::0;;:::o;40875:100::-;40929:13;40962:5;40955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40875:100;:::o;42387:204::-;42455:7;42480:16;42488:7;42480;:16::i;:::-;42475:64;;42505:34;;-1:-1:-1;;;42505:34:0;;;;;;;;;;;42475:64;-1:-1:-1;42559:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42559:24:0;;42387:204::o;74974:157::-;75070:8;63471:42;65393:45;:49;;;;:77;;-1:-1:-1;65446:24:0;;;;65393:77;65389:253;;;65492:67;;-1:-1:-1;;;65492:67:0;;65543:4;65492:67;;;11029:34:1;-1:-1:-1;;;;;11099:15:1;;11079:18;;;11072:43;63471:42:0;;65492;;10964:18:1;;65492:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65487:144;;65587:28;;-1:-1:-1;;;65587:28:0;;-1:-1:-1;;;;;2268:32:1;;65587:28:0;;;2250:51:1;2223:18;;65587:28:0;;;;;;;;65487:144;75091:32:::1;75105:8;75115:7;75091:13;:32::i;:::-;74974:157:::0;;;:::o;37000:312::-;37263:12;;67322:1;37247:13;:28;-1:-1:-1;;37247:46:0;;37000:312::o;69721:111::-;59387:32;34815:10;59387:18;:32::i;:::-;69802:17:::1;:24:::0;69721:111::o;75139:163::-;75240:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;75257:37:::1;75276:4;75282:2;75286:7;75257:18;:37::i;:::-;64987:7:::0;;64924:85;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11029:34:1;65086:10:0;11079:18:1;;;11072:43;63471:42:0;;65028;;10964:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2250:51:1;2223:18;;65125:30:0;2104:203:1;65023:148:0;75257:37:::1;75276:4;75282:2;75286:7;75257:18;:37::i;:::-;75139:163:::0;;;;:::o;66604:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75771:115::-;57655:13;:11;:13::i;:::-;75848:30:::1;75867:10;75848:18;:30::i;:::-;75771:115:::0;:::o;69120:110::-;59387:32;34815:10;59387:18;:32::i;:::-;69198:8:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;69198:26:0;;::::1;::::0;;;::::1;::::0;;69120:110::o;28911:442::-;29008:7;29066:27;;;:17;:27;;;;;;;;29037:56;;;;;;;;;-1:-1:-1;;;;;29037:56:0;;;;;-1:-1:-1;;;29037:56:0;;;-1:-1:-1;;;;;29037:56:0;;;;;;;;29008:7;;29106:92;;-1:-1:-1;29157:29:0;;;;;;;;;29167:19;29157:29;-1:-1:-1;;;;;29157:29:0;;;;-1:-1:-1;;;29157:29:0;;-1:-1:-1;;;;;29157:29:0;;;;;29106:92;29248:23;;;;29210:21;;29719:5;;29235:36;;-1:-1:-1;;;;;29235:36:0;:10;:36;:::i;:::-;29234:58;;;;:::i;:::-;29313:16;;;;;-1:-1:-1;28911:442:0;;-1:-1:-1;;;;28911:442:0:o;72199:630::-;33159:1;33757:7;;:19;33749:63;;;;-1:-1:-1;;;33749:63:0;;;;;;;:::i;:::-;33159:1;33890:7;:18;72289:19:::1;::::0;::::1;::::0;::::1;;;72281:52;;;::::0;-1:-1:-1;;;72281:52:0;;12500:2:1;72281:52:0::1;::::0;::::1;12482:21:1::0;12539:2;12519:18;;;12512:30;-1:-1:-1;;;12558:18:1;;;12551:50;12618:18;;72281:52:0::1;12298:344:1::0;72281:52:0::1;72369:7;72348:17;;:28;;72340:81;;;::::0;-1:-1:-1;;;72340:81:0;;12849:2:1;72340:81:0::1;::::0;::::1;12831:21:1::0;12888:2;12868:18;;;12861:30;12927:34;12907:18;;;12900:62;-1:-1:-1;;;12978:18:1;;;12971:38;13026:19;;72340:81:0::1;12647:404:1::0;72340:81:0::1;72453:7;72436:13;;:24;;72428:74;;;::::0;-1:-1:-1;;;72428:74:0;;13258:2:1;72428:74:0::1;::::0;::::1;13240:21:1::0;13297:2;13277:18;;;13270:30;13336:34;13316:18;;;13309:62;-1:-1:-1;;;13387:18:1;;;13380:35;13432:19;;72428:74:0::1;13056:401:1::0;72428:74:0::1;72544:10;72534:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;72558:7;;72534:31:::1;:::i;:::-;72517:13;;:48;;72509:88;;;::::0;-1:-1:-1;;;72509:88:0;;13797:2:1;72509:88:0::1;::::0;::::1;13779:21:1::0;13836:2;13816:18;;;13809:30;13875:29;13855:18;;;13848:57;13922:18;;72509:88:0::1;13595:351:1::0;72509:88:0::1;72639:7;72625:11;;:21;;;;:::i;:::-;72612:9;:34;72604:71;;;::::0;-1:-1:-1;;;72604:71:0;;14153:2:1;72604:71:0::1;::::0;::::1;14135:21:1::0;14192:2;14172:18;;;14165:30;14231:26;14211:18;;;14204:54;14275:18;;72604:71:0::1;13951:348:1::0;72604:71:0::1;72720:9;;72701:13;:11;:13::i;:::-;72691:23;::::0;:7;:23:::1;:::i;:::-;72690:40;;72682:65;;;;-1:-1:-1::0;;;72682:65:0::1;;;;;;;:::i;:::-;72764:10;72754:21;::::0;;;:9:::1;:21;::::0;;;;:32;;72779:7;;72754:21;:32:::1;::::0;72779:7;;72754:32:::1;:::i;:::-;::::0;;;-1:-1:-1;72793:30:0::1;::::0;-1:-1:-1;72803:10:0::1;72815:7:::0;72793:9:::1;:30::i;:::-;-1:-1:-1::0;33115:1:0;34069:7;:22;72199:630::o;72980:664::-;59387:32;34815:10;59387:18;:32::i;:::-;33159:1:::1;33757:7;;:19:::0;33749:63:::1;;;;-1:-1:-1::0;;;33749:63:0::1;;;;;;;:::i;:::-;33159:1;33890:7;:18:::0;73306:15:::2;::::0;73289:7:::2;::::0;-1:-1:-1;;;;;73306:15:0::2;:29:::0;73303:232:::2;;73387:15;::::0;73379:63:::2;::::0;-1:-1:-1;;;;;73387:15:0;;::::2;::::0;73416:21:::2;::::0;73379:63:::2;::::0;;;73416:21;73387:15;73379:63:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73370:72;;;;;73303:232;;;57815:7:::0;57842:6;-1:-1:-1;;;;;57842:6:0;-1:-1:-1;;;;;73472:21:0::2;73501;73472:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;73463:64:0;;-1:-1:-1;;73303:232:0::2;73549:2;73541:11;;;::::0;::::2;75310:171:::0;75415:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;75432:41:::1;75455:4;75461:2;75465:7;75432:22;:41::i;64924:85::-:0;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11029:34:1;65086:10:0;11079:18:1;;;11072:43;63471:42:0;;65028;;10964:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2250:51:1;2223:18;;65125:30:0;2104:203:1;65023:148:0;75432:41:::1;75455:4;75461:2;75465:7;75432:22;:41::i;72845:81::-:0;72900:20;72906:7;72915:4;72900:5;:20::i;73687:475::-;73759:16;73784:23;73810:19;73820:8;73810:9;:19::i;:::-;73784:45;;73836:25;73878:15;-1:-1:-1;;;;;73864:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73864:30:0;-1:-1:-1;73836:58:0;-1:-1:-1;73970:18:0;67322:1;73999:136;74037:13;;74033:1;:17;73999:136;;;74081:18;;-1:-1:-1;;;74081:18:0;;;;;2778:25:1;;;74081:4:0;;:15;;2751:18:1;;74081::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;74069:30:0;:8;-1:-1:-1;;;;;74069:30:0;;74066:61;;74126:1;74101:8;74110:12;;;;:::i;:::-;;;74101:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;74066:61;74052:3;;;;:::i;:::-;;;;73999:136;;;-1:-1:-1;74148:8:0;;73687:475;-1:-1:-1;;;;73687:475:0:o;70559:103::-;59387:32;34815:10;59387:18;:32::i;:::-;70636:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;40683:125::-:0;40747:7;40774:21;40787:7;40774:12;:21::i;:::-;:26;;40683:125;-1:-1:-1;;40683:125:0:o;68798:179::-;59387:32;34815:10;59387:18;:32::i;:::-;68902:10:::1;68885:13;:11;:13::i;:::-;:27;;68877:65;;;::::0;-1:-1:-1;;;68877:65:0;;15585:2:1;68877:65:0::1;::::0;::::1;15567:21:1::0;15624:2;15604:18;;;15597:30;15663:27;15643:18;;;15636:55;15708:18;;68877:65:0::1;15383:349:1::0;68877:65:0::1;68949:9;:22:::0;68798:179::o;38129:206::-;38193:7;-1:-1:-1;;;;;38217:19:0;;38213:60;;38245:28;;-1:-1:-1;;;38245:28:0;;;;;;;;;;;38213:60;-1:-1:-1;;;;;;38299:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38299:27:0;;38129:206::o;58417:103::-;57655:13;:11;:13::i;:::-;58482:30:::1;58509:1;58482:18;:30::i;:::-;58417:103::o:0;69615:100::-;59387:32;34815:10;59387:18;:32::i;:::-;69689:13:::1;:20:::0;69615:100::o;74225:243::-;74314:21;;-1:-1:-1;;;74314:21:0;;;;;2778:25:1;;;74294:7:0;;74314:4;;:12;;2751:18:1;;74314:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;74314:21:0;;;;;;;;-1:-1:-1;;74314:21:0;;;;;;;;;;;;:::i;:::-;;;74310:153;;-1:-1:-1;74430:1:0;;74225:243;-1:-1:-1;74225:243:0:o;70116:118::-;59387:32;34815:10;59387:18;:32::i;:::-;70199:29:::1;70216:11;12098:13:::0;:27;12023:110;68533:119;59387:32;34815:10;59387:18;:32::i;:::-;68613:15:::1;:33:::0;;-1:-1:-1;;;;;;68613:33:0::1;-1:-1:-1::0;;;;;68613:33:0;;;::::1;::::0;;;::::1;::::0;;68533:119::o;41044:104::-;41100:13;41133:7;41126:14;;;;;:::i;68658:103::-;59387:32;34815:10;59387:18;:32::i;:::-;68735:8:::1;:20:::0;;-1:-1:-1;;;;;68735:20:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;68735:20:0;;::::1;::::0;;;::::1;::::0;;68658:103::o;74790:176::-;74894:8;63471:42;65393:45;:49;;;;:77;;-1:-1:-1;65446:24:0;;;;65393:77;65389:253;;;65492:67;;-1:-1:-1;;;65492:67:0;;65543:4;65492:67;;;11029:34:1;-1:-1:-1;;;;;11099:15:1;;11079:18;;;11072:43;63471:42:0;;65492;;10964:18:1;;65492:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65487:144;;65587:28;;-1:-1:-1;;;65587:28:0;;-1:-1:-1;;;;;2268:32:1;;65587:28:0;;;2250:51:1;2223:18;;65587:28:0;2104:203:1;65487:144:0;74915:43:::1;74939:8;74949;74915:23;:43::i;69976:111::-:0;59387:32;34815:10;59387:18;:32::i;:::-;70054:19:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;70054:27:0;;::::1;::::0;;;::::1;::::0;;69976:111::o;75894:117::-;57655:13;:11;:13::i;:::-;75972:31:::1;75992:10;75972:19;:31::i;74660:122::-:0;59387:32;34815:10;59387:18;:32::i;:::-;74742:24:::1;:32:::0;;-1:-1:-1;;74742:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;74660:122::o;75489:228::-;75640:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;75662:47:::1;75685:4;75691:2;75695:7;75704:4;75662:22;:47::i;:::-;64987:7:::0;;64924:85;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11029:34:1;65086:10:0;11079:18:1;;;11072:43;63471:42:0;;65028;;10964:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2250:51:1;2223:18;;65125:30:0;2104:203:1;65023:148:0;75662:47:::1;75685:4;75691:2;75695:7;75704:4;75662:22;:47::i;:::-;75489:228:::0;;;;;:::o;70275:101::-;59387:32;34815:10;59387:18;:32::i;:::-;70354:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;69862:110::-:0;59387:32;34815:10;59387:18;:32::i;:::-;69943:15:::1;:23:::0;;-1:-1:-1;;69943:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;69862:110::o;71539:634::-;33159:1;33757:7;;:19;33749:63;;;;-1:-1:-1;;;33749:63:0;;;;;;;:::i;:::-;33159:1;33890:7;:18;71674:15:::1;::::0;::::1;;71666:51;;;::::0;-1:-1:-1;;;71666:51:0;;15939:2:1;71666:51:0::1;::::0;::::1;15921:21:1::0;15978:2;15958:18;;;15951:30;16017:25;15997:18;;;15990:53;16060:18;;71666:51:0::1;15737:347:1::0;71666:51:0::1;71732:42;71746:10;71758:7;71767:6;71732:13;:42::i;:::-;71724:79;;;::::0;-1:-1:-1;;;71724:79:0;;16291:2:1;71724:79:0::1;::::0;::::1;16273:21:1::0;16330:2;16310:18;;;16303:30;16369:26;16349:18;;;16342:54;16413:18;;71724:79:0::1;16089:348:1::0;71724:79:0::1;71828:1;71818:7;:11;71810:39;;;::::0;-1:-1:-1;;;71810:39:0;;16644:2:1;71810:39:0::1;::::0;::::1;16626:21:1::0;16683:2;16663:18;;;16656:30;-1:-1:-1;;;16702:18:1;;;16695:45;16757:18;;71810:39:0::1;16442:339:1::0;71810:39:0::1;71875:7;71864;:18;;71856:71;;;::::0;-1:-1:-1;;;71856:71:0;;16988:2:1;71856:71:0::1;::::0;::::1;16970:21:1::0;17027:2;17007:18;;;17000:30;17066:34;17046:18;;;17039:62;-1:-1:-1;;;17117:18:1;;;17110:38;17165:19;;71856:71:0::1;16786:404:1::0;71856:71:0::1;71963:10;71953:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;71977:7;;71953:31:::1;:::i;:::-;71942:7;:42;;71934:85;;;::::0;-1:-1:-1;;;71934:85:0;;17397:2:1;71934:85:0::1;::::0;::::1;17379:21:1::0;17436:2;17416:18;;;17409:30;17475:32;17455:18;;;17448:60;17525:18;;71934:85:0::1;17195:354:1::0;71934:85:0::1;72064:9;;72045:13;:11;:13::i;:::-;72035:23;::::0;:7;:23:::1;:::i;:::-;72034:40;;72026:65;;;;-1:-1:-1::0;;;72026:65:0::1;;;;;;;:::i;:::-;72108:10;72098:21;::::0;;;:9:::1;:21;::::0;;;;:32;;72123:7;;72098:21;:32:::1;::::0;72123:7;;72098:32:::1;:::i;:::-;::::0;;;-1:-1:-1;72137:30:0::1;::::0;-1:-1:-1;72147:10:0::1;72159:7:::0;72137:9:::1;:30::i;:::-;-1:-1:-1::0;;33115:1:0;34069:7;:22;-1:-1:-1;71539:634:0:o;70942:322::-;71016:13;71046:17;71054:8;71046:7;:17::i;:::-;71038:61;;;;-1:-1:-1;;;71038:61:0;;17756:2:1;71038:61:0;;;17738:21:1;17795:2;17775:18;;;17768:30;17834:33;17814:18;;;17807:61;17885:18;;71038:61:0;17554:355:1;71038:61:0;69333:8;;;;;;;71106:130;;;71165:17;:15;:17::i;:::-;71184:26;71201:8;71184:16;:26::i;:::-;71212:14;71148:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71134:94;;70942:322;;;:::o;71106:130::-;71249:9;71242:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70942:322;;;:::o;71319:198::-;59387:32;34815:10;59387:18;:32::i;:::-;71449:9:::1;;71430:13;:11;:13::i;:::-;71420:23;::::0;:7;:23:::1;:::i;:::-;71419:40;;71411:65;;;;-1:-1:-1::0;;;71411:65:0::1;;;;;;;:::i;:::-;71483:28;71493:8;71503:7;71483:9;:28::i;68983:103::-:0;59387:32;34815:10;59387:18;:32::i;:::-;69058:11:::1;:22:::0;68983:103::o;70670:131::-;59387:32;34815:10;59387:18;:32::i;:::-;70761:34;;::::1;::::0;:14:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;67761:113::-:0;67815:13;67848:20;:18;:20::i;:::-;67841:27;;67761:113;:::o;58675:201::-;57655:13;:11;:13::i;:::-;-1:-1:-1;;;;;58764:22:0;::::1;58756:73;;;::::0;-1:-1:-1;;;58756:73:0;;19774:2:1;58756:73:0::1;::::0;::::1;19756:21:1::0;19813:2;19793:18;;;19786:30;19852:34;19832:18;;;19825:62;-1:-1:-1;;;19903:18:1;;;19896:36;19949:19;;58756:73:0::1;19572:402:1::0;58756:73:0::1;58840:28;58859:8;58840:18;:28::i;12141:433::-:0;12288:35;;-1:-1:-1;;20156:2:1;20152:15;;;20148:53;12288:35:0;;;20136:66:1;20218:12;;;20211:28;;;12245:4:0;;;;20255:12:1;;12288:35:0;;;;;;;;;;;;12278:46;;;;;;12262:62;;12340:9;12335:192;12359:6;:13;12355:1;:17;12335:192;;;12410:6;12417:1;12410:9;;;;;;;;:::i;:::-;;;;;;;12402:5;:17;:113;;12497:6;12504:1;12497:9;;;;;;;;:::i;:::-;;;;;;;12508:5;12480:34;;;;;;;;20435:19:1;;;20479:2;20470:12;;20463:28;20516:2;20507:12;;20278:247;12480:34:0;;;;;;;;;;;;;12470:45;;;;;;12402:113;;;12449:5;12456:6;12463:1;12456:9;;;;;;;;:::i;:::-;;;;;;;12432:34;;;;;;;;20435:19:1;;;20479:2;20470:12;;20463:28;20516:2;20507:12;;20278:247;12432:34:0;;;;;;;;;;;;;12422:45;;;;;;12402:113;12394:121;-1:-1:-1;12374:3:0;;;;:::i;:::-;;;;12335:192;;;-1:-1:-1;12553:13:0;;12544:22;;12141:433;-1:-1:-1;;;;12141:433:0:o;11130:451::-;11205:13;11231:19;11263:10;11267:6;11263:1;:10;:::i;:::-;:14;;11276:1;11263:14;:::i;:::-;-1:-1:-1;;;;;11253:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11253:25:0;;11231:47;;-1:-1:-1;;;11289:6:0;11296:1;11289:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11289:15:0;;;;;;;;;-1:-1:-1;;;11315:6:0;11322:1;11315:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11315:15:0;;;;;;;;-1:-1:-1;11346:9:0;11358:10;11362:6;11358:1;:10;:::i;:::-;:14;;11371:1;11358:14;:::i;:::-;11346:26;;11341:135;11378:1;11374;:5;11341:135;;;-1:-1:-1;;;11426:5:0;11434:3;11426:11;11413:25;;;;;;;:::i;:::-;;;;11401:6;11408:1;11401:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;11401:37:0;;;;;;;;-1:-1:-1;11463:1:0;11453:11;;;;;11381:3;;;:::i;:::-;;;11341:135;;;-1:-1:-1;11494:10:0;;11486:55;;;;-1:-1:-1;;;11486:55:0;;20873:2:1;11486:55:0;;;20855:21:1;;;20892:18;;;20885:30;20951:34;20931:18;;;20924:62;21003:18;;11486:55:0;20671:356:1;11486:55:0;11566:6;11130:451;-1:-1:-1;;;11130:451:0:o;28641:215::-;28743:4;-1:-1:-1;;;;;;28767:41:0;;-1:-1:-1;;;28767:41:0;;:81;;;28812:36;28836:11;28812:23;:36::i;60152:370::-;-1:-1:-1;;;;;60246:21:0;;;;;;:10;:21;;;;;;;;60379:46;34815:10;60407:12;-1:-1:-1;;;;;60379:46:0;60422:2;60379:19;:46::i;:::-;60307:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;60224:290;;;;;-1:-1:-1;;;60224:290:0;;;;;;;;:::i;30003:332::-;29719:5;-1:-1:-1;;;;;30106:33:0;;;;30098:88;;;;-1:-1:-1;;;30098:88:0;;21837:2:1;30098:88:0;;;21819:21:1;21876:2;21856:18;;;21849:30;21915:34;21895:18;;;21888:62;-1:-1:-1;;;21966:18:1;;;21959:40;22016:19;;30098:88:0;21635:406:1;30098:88:0;-1:-1:-1;;;;;30205:22:0;;30197:60;;;;-1:-1:-1;;;30197:60:0;;22248:2:1;30197:60:0;;;22230:21:1;22287:2;22267:18;;;22260:30;22326:27;22306:18;;;22299:55;22371:18;;30197:60:0;22046:349:1;30197:60:0;30292:35;;;;;;;;;-1:-1:-1;;;;;30292:35:0;;;;;;-1:-1:-1;;;;;30292:35:0;;;;;;;;;;-1:-1:-1;;;30270:57:0;;;;:19;:57;30003:332::o;44374:174::-;44431:4;44474:7;67322:1;44455:26;;:53;;;;;44495:13;;44485:7;:23;44455:53;:85;;;;-1:-1:-1;;44513:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44513:27:0;;;;44512:28;;44374:174::o;41941:380::-;42022:13;42038:24;42054:7;42038:15;:24::i;:::-;42022:40;;42083:5;-1:-1:-1;;;;;42077:11:0;:2;-1:-1:-1;;;;;42077:11:0;;42073:48;;42097:24;;-1:-1:-1;;;42097:24:0;;;;;;;;;;;42073:48;34815:10;-1:-1:-1;;;;;42138:21:0;;;42134:139;;42165:37;42182:5;34815:10;43021:164;:::i;42165:37::-;42161:112;;42226:35;;-1:-1:-1;;;42226:35:0;;;;;;;;;;;42161:112;42285:28;42294:2;42298:7;42307:5;42285:8;:28::i;43252:170::-;43386:28;43396:4;43402:2;43406:7;43386:9;:28::i;57934:132::-;57815:7;57842:6;-1:-1:-1;;;;;57842:6:0;34815:10;57998:23;57990:68;;;;-1:-1:-1;;;57990:68:0;;22602:2:1;57990:68:0;;;22584:21:1;;;22621:18;;;22614:30;22680:34;22660:18;;;22653:62;22732:18;;57990:68:0;22400:356:1;59568:421:0;-1:-1:-1;;;;;59659:22:0;;;;;;:10;:22;;;;;;;;59658:23;59793:46;34815:10;59821:12;34735:98;59793:46;59721:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;59636:305;;;;;-1:-1:-1;;;59636:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;59952:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;59952:29:0;59977:4;59952:29;;;59568:421::o;44632:104::-;44701:27;44711:2;44715:8;44701:27;;;;;;;;;;;;:9;:27::i;43493:185::-;43631:39;43648:4;43654:2;43658:7;43631:39;;;;;;;;;;;;:16;:39::i;51070:2408::-;51150:35;51188:21;51201:7;51188:12;:21::i;:::-;51237:18;;51150:59;;-1:-1:-1;51268:290:0;;;;51302:22;34815:10;-1:-1:-1;;;;;51328:20:0;;;;:77;;-1:-1:-1;51369:36:0;51386:4;34815:10;43021:164;:::i;51369:36::-;51328:134;;;-1:-1:-1;34815:10:0;51426:20;51438:7;51426:11;:20::i;:::-;-1:-1:-1;;;;;51426:36:0;;51328:134;51302:161;;51485:17;51480:66;;51511:35;;-1:-1:-1;;;51511:35:0;;;;;;;;;;;51480:66;51287:271;51268:290;51686:35;51703:1;51707:7;51716:4;51686:8;:35::i;:::-;-1:-1:-1;;;;;52051:18:0;;;52017:31;52051:18;;;:12;:18;;;;;;;;52084:24;;-1:-1:-1;;;;;;;;;;52084:24:0;;;;;;;;;-1:-1:-1;;52084:24:0;;;;52123:29;;;;;52107:1;52123:29;;;;;;;;-1:-1:-1;;52123:29:0;;;;;;;;;;52285:20;;;:11;:20;;;;;;52320;;-1:-1:-1;;;;52388:15:0;52355:49;;;-1:-1:-1;;;52355:49:0;-1:-1:-1;;;;;;52355:49:0;;;;;;;;;;52419:22;-1:-1:-1;;;52419:22:0;;;52711:11;;;52771:24;;;;;52814:13;;52051:18;;52771:24;;52814:13;52810:384;;53024:13;;53009:11;:28;53005:174;;53062:20;;53131:28;;;;-1:-1:-1;;;;;53105:54:0;-1:-1:-1;;;53105:54:0;-1:-1:-1;;;;;;53105:54:0;;;-1:-1:-1;;;;;53062:20:0;;53105:54;;;;53005:174;-1:-1:-1;;53222:35:0;;53249:7;;-1:-1:-1;53245:1:0;;-1:-1:-1;;;;;;53222:35:0;;;-1:-1:-1;;;;;;;;;;;53222:35:0;53245:1;;53222:35;-1:-1:-1;;53445:12:0;:14;;;;;;-1:-1:-1;;51070:2408:0:o;39510:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39621:7:0;;67322:1;39670:23;39666:888;;39706:13;;39699:4;:20;39695:859;;;39740:31;39774:17;;;:11;:17;;;;;;;;;39740:51;;;;;;;;;-1:-1:-1;;;;;39740:51:0;;;;-1:-1:-1;;;39740:51:0;;-1:-1:-1;;;;;39740:51:0;;;;;;;;-1:-1:-1;;;39740:51:0;;;;;;;;;;;;;;39810:729;;39860:14;;-1:-1:-1;;;;;39860:28:0;;39856:101;;39924:9;39510:1111;-1:-1:-1;;;39510:1111:0:o;39856:101::-;-1:-1:-1;;;40299:6:0;40344:17;;;;:11;:17;;;;;;;;;40332:29;;;;;;;;;-1:-1:-1;;;;;40332:29:0;;;;;-1:-1:-1;;;40332:29:0;;-1:-1:-1;;;;;40332:29:0;;;;;;;;-1:-1:-1;;;40332:29:0;;;;;;;;;;;;;40392:28;40388:109;;40460:9;39510:1111;-1:-1:-1;;;39510:1111:0:o;40388:109::-;40259:261;;;39721:833;39695:859;40582:31;;-1:-1:-1;;;40582:31:0;;;;;;;;;;;59036:191;59110:16;59129:6;;-1:-1:-1;;;;;59146:17:0;;;-1:-1:-1;;;;;;59146:17:0;;;;;;59179:40;;59129:6;;;;;;;59179:40;;59110:16;59179:40;59099:128;59036:191;:::o;42663:287::-;34815:10;-1:-1:-1;;;;;42762:24:0;;;42758:54;;42795:17;;-1:-1:-1;;;42795:17:0;;;;;;;;;;;42758:54;34815:10;42825:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42825:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42825:53:0;;;;;;;;;;42894:48;;540:41:1;;;42825:42:0;;34815:10;42894:48;;513:18:1;42894:48:0;;;;;;;42663:287;;:::o;59997:147::-;60066:30;60085:10;60066:18;:30::i;:::-;-1:-1:-1;;;;;60114:22:0;;;;;:10;:22;;;;;60107:29;;-1:-1:-1;;60107:29:0;;;59997:147::o;43749:370::-;43916:28;43926:4;43932:2;43936:7;43916:9;:28::i;:::-;-1:-1:-1;;;;;43959:13:0;;1435:19;:23;43955:157;;43980:56;44011:4;44017:2;44021:7;44030:5;43980:30;:56::i;:::-;43976:136;;44060:40;;-1:-1:-1;;;44060:40:0;;;;;;;;;;;70837:97;70887:13;70915;70908:20;;;;;:::i;9829:723::-;9885:13;10106:5;10115:1;10106:10;10102:53;;-1:-1:-1;;10133:10:0;;;;;;;;;;;;-1:-1:-1;;;10133:10:0;;;;;9829:723::o;10102:53::-;10180:5;10165:12;10221:78;10228:9;;10221:78;;10254:8;;;;:::i;:::-;;-1:-1:-1;10277:10:0;;-1:-1:-1;10285:2:0;10277:10;;:::i;:::-;;;10221:78;;;10309:19;10341:6;-1:-1:-1;;;;;10331:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10331:17:0;;10309:39;;10359:154;10366:10;;10359:154;;10393:11;10403:1;10393:11;;:::i;:::-;;-1:-1:-1;10462:10:0;10470:2;10462:5;:10;:::i;:::-;10449:24;;:2;:24;:::i;:::-;10436:39;;10419:6;10426;10419:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10419:56:0;;;;;;;;-1:-1:-1;10490:11:0;10499:2;10490:11;;:::i;:::-;;;10359:154;;;10537:6;9829:723;-1:-1:-1;;;;9829:723:0:o;67900:567::-;67953:13;67976:16;;68021:32;67976:16;29719:5;68021:11;:32::i;:::-;67975:78;;;;68162:283;68274:33;68291:15;68274:16;:33::i;:::-;68349:51;68385:8;-1:-1:-1;;;;;68369:26:0;68397:2;68349:19;:51::i;:::-;68208:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68162:13;:283::i;:::-;68093:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;68071:390;;;;67900:567;:::o;37760:305::-;37862:4;-1:-1:-1;;;;;;37899:40:0;;-1:-1:-1;;;37899:40:0;;:105;;-1:-1:-1;;;;;;;37956:48:0;;-1:-1:-1;;;37956:48:0;37899:105;:158;;;-1:-1:-1;;;;;;;;;;26415:40:0;;;38021:36;26306:157;53596:196;53711:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53711:29:0;-1:-1:-1;;;;;53711:29:0;;;;;;;;;53756:28;;53711:24;;53756:28;;;;;;;53596:196;;;:::o;48544:2130::-;48659:35;48697:21;48710:7;48697:12;:21::i;:::-;48659:59;;48757:4;-1:-1:-1;;;;;48735:26:0;:13;:18;;;-1:-1:-1;;;;;48735:26:0;;48731:67;;48770:28;;-1:-1:-1;;;48770:28:0;;;;;;;;;;;48731:67;48811:22;34815:10;-1:-1:-1;;;;;48837:20:0;;;;:73;;-1:-1:-1;48874:36:0;48891:4;34815:10;43021:164;:::i;48874:36::-;48837:126;;;-1:-1:-1;34815:10:0;48927:20;48939:7;48927:11;:20::i;:::-;-1:-1:-1;;;;;48927:36:0;;48837:126;48811:153;;48982:17;48977:66;;49008:35;;-1:-1:-1;;;49008:35:0;;;;;;;;;;;48977:66;-1:-1:-1;;;;;49058:16:0;;49054:52;;49083:23;;-1:-1:-1;;;49083:23:0;;;;;;;;;;;49054:52;49227:35;49244:1;49248:7;49257:4;49227:8;:35::i;:::-;-1:-1:-1;;;;;49558:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49558:31:0;;;-1:-1:-1;;;;;49558:31:0;;;-1:-1:-1;;49558:31:0;;;;;;;49604:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49604:29:0;;;;;;;;;;;49684:20;;;:11;:20;;;;;;49719:18;;-1:-1:-1;;;;;;49752:49:0;;;;-1:-1:-1;;;49785:15:0;49752:49;;;;;;;;;;50075:11;;50135:24;;;;;50178:13;;49684:20;;50135:24;;50178:13;50174:384;;50388:13;;50373:11;:28;50369:174;;50426:20;;50495:28;;;;-1:-1:-1;;;;;50469:54:0;-1:-1:-1;;;50469:54:0;-1:-1:-1;;;;;;50469:54:0;;;-1:-1:-1;;;;;50426:20:0;;50469:54;;;;50369:174;49533:1036;;;50605:7;50601:2;-1:-1:-1;;;;;50586:27:0;50595:4;-1:-1:-1;;;;;50586:27:0;-1:-1:-1;;;;;;;;;;;50586:27:0;;;;;;;;;50624:42;75139:163;45109:1749;45255:13;;-1:-1:-1;;;;;45283:16:0;;45279:48;;45308:19;;-1:-1:-1;;;45308:19:0;;;;;;;;;;;45279:48;45342:8;45354:1;45342:13;45338:44;;45364:18;;-1:-1:-1;;;45364:18:0;;;;;;;;;;;45338:44;-1:-1:-1;;;;;45733:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45792:49:0;;-1:-1:-1;;;;;45733:44:0;;;;;;;45792:49;;;;-1:-1:-1;;45733:44:0;;;;;;45792:49;;;;;;;;;;;;;;;;45858:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45908:66:0;;;-1:-1:-1;;;45958:15:0;45908:66;;;;;;;;;;;;;45858:25;;46055:23;;;;1435:19;:23;46095:631;;46135:313;46166:38;;46191:12;;-1:-1:-1;;;;;46166:38:0;;;46183:1;;-1:-1:-1;;;;;;;;;;;46166:38:0;46183:1;;46166:38;46232:69;46271:1;46275:2;46279:14;;;;;;46295:5;46232:30;:69::i;:::-;46227:174;;46337:40;;-1:-1:-1;;;46337:40:0;;;;;;;;;;;46227:174;46443:3;46428:12;:18;46135:313;;46529:12;46512:13;;:29;46508:43;;46543:8;;;46508:43;46095:631;;;46592:119;46623:40;;46648:14;;;;;-1:-1:-1;;;;;46623:40:0;;;46640:1;;-1:-1:-1;;;;;;;;;;;46623:40:0;46640:1;;46623:40;46706:3;46691:12;:18;46592:119;;46095:631;-1:-1:-1;46740:13:0;:28;46790:60;46819:1;46823:2;46827:12;46841:8;46790:60;:::i;54284:667::-;54468:72;;-1:-1:-1;;;54468:72:0;;54447:4;;-1:-1:-1;;;;;54468:36:0;;;;;:72;;34815:10;;54519:4;;54525:7;;54534:5;;54468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54468:72:0;;;;;;;;-1:-1:-1;;54468:72:0;;;;;;;;;;;;:::i;:::-;;;54464:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54702:6;:13;54719:1;54702:18;54698:235;;54748:40;;-1:-1:-1;;;54748:40:0;;;;;;;;;;;54698:235;54891:6;54885:13;54876:6;54872:2;54868:15;54861:38;54464:480;-1:-1:-1;;;;;;54587:55:0;-1:-1:-1;;;54587:55:0;;-1:-1:-1;54284:667:0;;;;;;:::o;13076:3097::-;13134:13;13371:4;:11;13386:1;13371:16;13367:31;;-1:-1:-1;;13389:9:0;;;;;;;;;-1:-1:-1;13389:9:0;;;13076:3097::o;13367:31::-;13451:19;13473:6;;;;;;;;;;;;;;;;;13451:28;;13890:20;13949:1;13930:4;:11;13944:1;13930:15;;;;:::i;:::-;13929:21;;;;:::i;:::-;13924:27;;:1;:27;:::i;:::-;-1:-1:-1;;;;;13913:39:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13913:39:0;;13890:62;;14132:1;14125:5;14121:13;14236:2;14228:6;14224:15;14347:4;14399;14393:11;14387:4;14383:22;14309:1432;14433:6;14424:7;14421:19;14309:1432;;;14539:1;14530:7;14526:15;14515:26;;14578:7;14572:14;15231:4;15223:5;15219:2;15215:14;15211:25;15201:8;15197:40;15191:47;15180:9;15172:67;15285:1;15274:9;15270:17;15257:30;;15377:4;15369:5;15365:2;15361:14;15357:25;15347:8;15343:40;15337:47;15326:9;15318:67;15431:1;15420:9;15416:17;15403:30;;15522:4;15514:5;15511:1;15507:13;15503:24;15493:8;15489:39;15483:46;15472:9;15464:66;15576:1;15565:9;15561:17;15548:30;;15659:4;15652:5;15648:16;15638:8;15634:31;15628:38;15617:9;15609:58;;15713:1;15702:9;15698:17;15685:30;;14309:1432;;;14313:107;;15903:1;15896:4;15890:11;15886:19;15924:1;15919:123;;;;16061:1;16056:73;;;;15879:250;;15919:123;15972:4;15968:1;15957:9;15953:17;15945:32;16022:4;16018:1;16007:9;16003:17;15995:32;15919:123;;16056:73;16109:4;16105:1;16094:9;16090:17;16082:32;15879:250;-1:-1:-1;16159:6:0;;13076:3097;-1:-1:-1;;;;;13076:3097:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:::-;1473:3;1511:5;1505:12;1538:6;1533:3;1526:19;1554:63;1610:6;1603:4;1598:3;1594:14;1587:4;1580:5;1576:16;1554:63;:::i;:::-;1671:2;1650:15;-1:-1:-1;;1646:29:1;1637:39;;;;1678:4;1633:50;;1431:258;-1:-1:-1;;1431:258:1:o;1694:220::-;1843:2;1832:9;1825:21;1806:4;1863:45;1904:2;1893:9;1889:18;1881:6;1863:45;:::i;1919:180::-;1978:6;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;-1:-1:-1;2070:23:1;;1919:180;-1:-1:-1;1919:180:1:o;2312:315::-;2380:6;2388;2441:2;2429:9;2420:7;2416:23;2412:32;2409:52;;;2457:1;2454;2447:12;2409:52;2496:9;2483:23;2515:31;2540:5;2515:31;:::i;:::-;2565:5;2617:2;2602:18;;;;2589:32;;-1:-1:-1;;;2312:315:1:o;2814:456::-;2891:6;2899;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;3015:9;3002:23;3034:31;3059:5;3034:31;:::i;:::-;3084:5;-1:-1:-1;3141:2:1;3126:18;;3113:32;3154:33;3113:32;3154:33;:::i;:::-;2814:456;;3206:7;;-1:-1:-1;;;3260:2:1;3245:18;;;;3232:32;;2814:456::o;3275:247::-;3334:6;3387:2;3375:9;3366:7;3362:23;3358:32;3355:52;;;3403:1;3400;3393:12;3355:52;3442:9;3429:23;3461:31;3486:5;3461:31;:::i;3527:118::-;3613:5;3606:13;3599:21;3592:5;3589:32;3579:60;;3635:1;3632;3625:12;3650:241;3706:6;3759:2;3747:9;3738:7;3734:23;3730:32;3727:52;;;3775:1;3772;3765:12;3727:52;3814:9;3801:23;3833:28;3855:5;3833:28;:::i;3896:248::-;3964:6;3972;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;-1:-1:-1;;4064:23:1;;;4134:2;4119:18;;;4106:32;;-1:-1:-1;3896:248:1:o;4668:632::-;4839:2;4891:21;;;4961:13;;4864:18;;;4983:22;;;4810:4;;4839:2;5062:15;;;;5036:2;5021:18;;;4810:4;5105:169;5119:6;5116:1;5113:13;5105:169;;;5180:13;;5168:26;;5249:15;;;;5214:12;;;;5141:1;5134:9;5105:169;;;-1:-1:-1;5291:3:1;;4668:632;-1:-1:-1;;;;;;4668:632:1:o;5305:127::-;5366:10;5361:3;5357:20;5354:1;5347:31;5397:4;5394:1;5387:15;5421:4;5418:1;5411:15;5437:275;5508:2;5502:9;5573:2;5554:13;;-1:-1:-1;;5550:27:1;5538:40;;-1:-1:-1;;;;;5593:34:1;;5629:22;;;5590:62;5587:88;;;5655:18;;:::i;:::-;5691:2;5684:22;5437:275;;-1:-1:-1;5437:275:1:o;5717:407::-;5782:5;-1:-1:-1;;;;;5808:6:1;5805:30;5802:56;;;5838:18;;:::i;:::-;5876:57;5921:2;5900:15;;-1:-1:-1;;5896:29:1;5927:4;5892:40;5876:57;:::i;:::-;5867:66;;5956:6;5949:5;5942:21;5996:3;5987:6;5982:3;5978:16;5975:25;5972:45;;;6013:1;6010;6003:12;5972:45;6062:6;6057:3;6050:4;6043:5;6039:16;6026:43;6116:1;6109:4;6100:6;6093:5;6089:18;6085:29;6078:40;5717:407;;;;;:::o;6129:451::-;6198:6;6251:2;6239:9;6230:7;6226:23;6222:32;6219:52;;;6267:1;6264;6257:12;6219:52;6307:9;6294:23;-1:-1:-1;;;;;6332:6:1;6329:30;6326:50;;;6372:1;6369;6362:12;6326:50;6395:22;;6448:4;6440:13;;6436:27;-1:-1:-1;6426:55:1;;6477:1;6474;6467:12;6426:55;6500:74;6566:7;6561:2;6548:16;6543:2;6539;6535:11;6500:74;:::i;6770:382::-;6835:6;6843;6896:2;6884:9;6875:7;6871:23;6867:32;6864:52;;;6912:1;6909;6902:12;6864:52;6951:9;6938:23;6970:31;6995:5;6970:31;:::i;:::-;7020:5;-1:-1:-1;7077:2:1;7062:18;;7049:32;7090:30;7049:32;7090:30;:::i;7157:795::-;7252:6;7260;7268;7276;7329:3;7317:9;7308:7;7304:23;7300:33;7297:53;;;7346:1;7343;7336:12;7297:53;7385:9;7372:23;7404:31;7429:5;7404:31;:::i;:::-;7454:5;-1:-1:-1;7511:2:1;7496:18;;7483:32;7524:33;7483:32;7524:33;:::i;:::-;7576:7;-1:-1:-1;7630:2:1;7615:18;;7602:32;;-1:-1:-1;7685:2:1;7670:18;;7657:32;-1:-1:-1;;;;;7701:30:1;;7698:50;;;7744:1;7741;7734:12;7698:50;7767:22;;7820:4;7812:13;;7808:27;-1:-1:-1;7798:55:1;;7849:1;7846;7839:12;7798:55;7872:74;7938:7;7933:2;7920:16;7915:2;7911;7907:11;7872:74;:::i;:::-;7862:84;;;7157:795;;;;;;;:::o;7957:712::-;8011:5;8064:3;8057:4;8049:6;8045:17;8041:27;8031:55;;8082:1;8079;8072:12;8031:55;8118:6;8105:20;8144:4;-1:-1:-1;;;;;8163:2:1;8160:26;8157:52;;;8189:18;;:::i;:::-;8235:2;8232:1;8228:10;8258:28;8282:2;8278;8274:11;8258:28;:::i;:::-;8320:15;;;8390;;;8386:24;;;8351:12;;;;8422:15;;;8419:35;;;8450:1;8447;8440:12;8419:35;8486:2;8478:6;8474:15;8463:26;;8498:142;8514:6;8509:3;8506:15;8498:142;;;8580:17;;8568:30;;8531:12;;;;8618;;;;8498:142;;;8658:5;7957:712;-1:-1:-1;;;;;;;7957:712:1:o;8674:484::-;8776:6;8784;8792;8845:2;8833:9;8824:7;8820:23;8816:32;8813:52;;;8861:1;8858;8851:12;8813:52;8897:9;8884:23;8874:33;;8954:2;8943:9;8939:18;8926:32;8916:42;;9009:2;8998:9;8994:18;8981:32;-1:-1:-1;;;;;9028:6:1;9025:30;9022:50;;;9068:1;9065;9058:12;9022:50;9091:61;9144:7;9135:6;9124:9;9120:22;9091:61;:::i;:::-;9081:71;;;8674:484;;;;;:::o;9163:315::-;9231:6;9239;9292:2;9280:9;9271:7;9267:23;9263:32;9260:52;;;9308:1;9305;9298:12;9260:52;9344:9;9331:23;9321:33;;9404:2;9393:9;9389:18;9376:32;9417:31;9442:5;9417:31;:::i;9483:388::-;9551:6;9559;9612:2;9600:9;9591:7;9587:23;9583:32;9580:52;;;9628:1;9625;9618:12;9580:52;9667:9;9654:23;9686:31;9711:5;9686:31;:::i;:::-;9736:5;-1:-1:-1;9793:2:1;9778:18;;9765:32;9806:33;9765:32;9806:33;:::i;9876:551::-;9978:6;9986;9994;10047:2;10035:9;10026:7;10022:23;10018:32;10015:52;;;10063:1;10060;10053:12;10015:52;10102:9;10089:23;10121:31;10146:5;10121:31;:::i;:::-;10171:5;-1:-1:-1;10223:2:1;10208:18;;10195:32;;-1:-1:-1;10278:2:1;10263:18;;10250:32;-1:-1:-1;;;;;10294:30:1;;10291:50;;;10337:1;10334;10327:12;10432:380;10511:1;10507:12;;;;10554;;;10575:61;;10629:4;10621:6;10617:17;10607:27;;10575:61;10682:2;10674:6;10671:14;10651:18;10648:38;10645:161;;10728:10;10723:3;10719:20;10716:1;10709:31;10763:4;10760:1;10753:15;10791:4;10788:1;10781:15;10645:161;;10432:380;;;:::o;11126:245::-;11193:6;11246:2;11234:9;11225:7;11221:23;11217:32;11214:52;;;11262:1;11259;11252:12;11214:52;11294:9;11288:16;11313:28;11335:5;11313:28;:::i;11376:127::-;11437:10;11432:3;11428:20;11425:1;11418:31;11468:4;11465:1;11458:15;11492:4;11489:1;11482:15;11508:168;11548:7;11614:1;11610;11606:6;11602:14;11599:1;11596:21;11591:1;11584:9;11577:17;11573:45;11570:71;;;11621:18;;:::i;:::-;-1:-1:-1;11661:9:1;;11508:168::o;11681:127::-;11742:10;11737:3;11733:20;11730:1;11723:31;11773:4;11770:1;11763:15;11797:4;11794:1;11787:15;11813:120;11853:1;11879;11869:35;;11884:18;;:::i;:::-;-1:-1:-1;11918:9:1;;11813:120::o;11938:355::-;12140:2;12122:21;;;12179:2;12159:18;;;12152:30;12218:33;12213:2;12198:18;;12191:61;12284:2;12269:18;;11938:355::o;13462:128::-;13502:3;13533:1;13529:6;13526:1;13523:13;13520:39;;;13539:18;;:::i;:::-;-1:-1:-1;13575:9:1;;13462:128::o;14304:336::-;14506:2;14488:21;;;14545:2;14525:18;;;14518:30;-1:-1:-1;;;14579:2:1;14564:18;;14557:42;14631:2;14616:18;;14304:336::o;14855:251::-;14925:6;14978:2;14966:9;14957:7;14953:23;14949:32;14946:52;;;14994:1;14991;14984:12;14946:52;15026:9;15020:16;15045:31;15070:5;15045:31;:::i;15111:135::-;15150:3;15171:17;;;15168:43;;15191:18;;:::i;:::-;-1:-1:-1;15238:1:1;15227:13;;15111:135::o;15251:127::-;15312:10;15307:3;15303:20;15300:1;15293:31;15343:4;15340:1;15333:15;15367:4;15364:1;15357:15;18040:1527;18264:3;18302:6;18296:13;18328:4;18341:51;18385:6;18380:3;18375:2;18367:6;18363:15;18341:51;:::i;:::-;18455:13;;18414:16;;;;18477:55;18455:13;18414:16;18499:15;;;18477:55;:::i;:::-;18621:13;;18554:20;;;18594:1;;18681;18703:18;;;;18756;;;;18783:93;;18861:4;18851:8;18847:19;18835:31;;18783:93;18924:2;18914:8;18911:16;18891:18;18888:40;18885:167;;-1:-1:-1;;;18951:33:1;;19007:4;19004:1;18997:15;19037:4;18958:3;19025:17;18885:167;19068:18;19095:110;;;;19219:1;19214:328;;;;19061:481;;19095:110;-1:-1:-1;;19130:24:1;;19116:39;;19175:20;;;;-1:-1:-1;19095:110:1;;19214:328;17987:1;17980:14;;;18024:4;18011:18;;19309:1;19323:169;19337:8;19334:1;19331:15;19323:169;;;19419:14;;19404:13;;;19397:37;19462:16;;;;19354:10;;19323:169;;;19327:3;;19523:8;19516:5;19512:20;19505:27;;19061:481;-1:-1:-1;19558:3:1;;18040:1527;-1:-1:-1;;;;;;;;;;;18040:1527:1:o;20530:136::-;20569:3;20597:5;20587:39;;20606:18;;:::i;:::-;-1:-1:-1;;;20642:18:1;;20530:136::o;21032:598::-;-1:-1:-1;;;21390:3:1;21383:23;21365:3;21435:6;21429:13;21451:61;21505:6;21501:1;21496:3;21492:11;21485:4;21477:6;21473:17;21451:61;:::i;:::-;-1:-1:-1;;;21571:1:1;21531:16;;;;21563:10;;;21556:41;-1:-1:-1;21621:2:1;21613:11;;21032:598;-1:-1:-1;21032:598:1:o;22761:611::-;-1:-1:-1;;;23119:3:1;23112:23;23094:3;23164:6;23158:13;23180:61;23234:6;23230:1;23225:3;23221:11;23214:4;23206:6;23202:17;23180:61;:::i;:::-;23304:34;23300:1;23260:16;;;;23292:10;;;23285:54;-1:-1:-1;23363:2:1;23355:11;;22761:611;-1:-1:-1;22761:611:1:o;23377:125::-;23417:4;23445:1;23442;23439:8;23436:34;;;23450:18;;:::i;:::-;-1:-1:-1;23487:9:1;;23377:125::o;23507:112::-;23539:1;23565;23555:35;;23570:18;;:::i;:::-;-1:-1:-1;23604:9:1;;23507:112::o;23624:1024::-;24136:66;24131:3;24124:79;24106:3;24232:6;24226:13;24248:62;24303:6;24298:2;24293:3;24289:12;24282:4;24274:6;24270:17;24248:62;:::i;:::-;-1:-1:-1;;;24369:2:1;24329:16;;;24361:11;;;24354:71;24450:13;;24472:63;24450:13;24521:2;24513:11;;24506:4;24494:17;;24472:63;:::i;:::-;-1:-1:-1;;;24595:2:1;24554:17;;;;24587:11;;;24580:35;24639:2;24631:11;;23624:1024;-1:-1:-1;;;;23624:1024:1:o;24653:448::-;24915:31;24910:3;24903:44;24885:3;24976:6;24970:13;24992:62;25047:6;25042:2;25037:3;25033:12;25026:4;25018:6;25014:17;24992:62;:::i;:::-;25074:16;;;;25092:2;25070:25;;24653:448;-1:-1:-1;;24653:448:1:o;25106:489::-;-1:-1:-1;;;;;25375:15:1;;;25357:34;;25427:15;;25422:2;25407:18;;25400:43;25474:2;25459:18;;25452:34;;;25522:3;25517:2;25502:18;;25495:31;;;25300:4;;25543:46;;25569:19;;25561:6;25543:46;:::i;:::-;25535:54;25106:489;-1:-1:-1;;;;;;25106:489:1:o;25600:249::-;25669:6;25722:2;25710:9;25701:7;25697:23;25693:32;25690:52;;;25738:1;25735;25728:12;25690:52;25770:9;25764:16;25789:30;25813:5;25789:30;:::i

Swarm Source

ipfs://6291a9830537ed827ae67ce8b4f7cdb2340942a9d8e1546ce338b4998d436a73
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.