ETH Price: $2,520.23 (-0.12%)

Token

Female Stoned Ducks (FSD)
 

Overview

Max Total Supply

504 FSD

Holders

218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 FSD
0x45ef5de06c676792c08b36ced3c297d7df81bc92
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:
FSD_NFT

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

// File: contracts/FSD_NFT.sol












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


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.7;

contract FSD_NFT is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 2420;

    string private BASE_URI;
    string private UNREVEAL_URI;
    bytes32 private FREELIST_ROOT;
    bytes32 private WHITELIST_ROOT;

    uint256 public COST = 0.0482 ether;
    uint256 public WHITELIST_COST = 0.042 ether;
    
    mapping(address => uint256) public MAP_FREE_MINTED;
    mapping(address => uint256) public MAP_WHITELIST_MINTED;

    uint256 public SALE_STATUS = 0; // 1 : Free 2: Whitelist 3: Public 0: None


    struct UserRewardInfo {
        uint256 rewards;
        uint256 lastUpdated;
        uint256 stakedBalance;
    }
    mapping(address => UserRewardInfo) public MAP_USER_REWARD_INFO;
    mapping(uint256 => bool) public MAP_STAKED_TOKEN;
    
    IERC20 public REWARD_TOKEN;
    uint256 public DAILY_REWARD_AMOUNT = 0.42 ether;


    constructor() ERC721A("Female Stoned Ducks", "FSD") {}

    function setRewardToken(address _tokenAddress) public onlyOwner {
        REWARD_TOKEN = IERC20(_tokenAddress);
    }

    function setDailyRewardAmount(uint256 _dailyReward) public onlyOwner {
        DAILY_REWARD_AMOUNT = _dailyReward;
    }

    function setWhitelistRoot(bytes32 _root) public onlyOwner {
        WHITELIST_ROOT = _root;
    }

    function setFreelistRoot(bytes32 _root) public onlyOwner {
        FREELIST_ROOT = _root;
    }

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

    function isWhiteListed(bytes32 _leafNode, bytes32[] memory _proof) public view returns (bool) {
        return MerkleProof.verify(_proof, WHITELIST_ROOT, _leafNode);
    }

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

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

    function mintFreelist(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external {
        require(SALE_STATUS == 1, "Free mint is not opened");

        require(isFreeListed(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");
        
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");
        
        require((MAP_FREE_MINTED[msg.sender] + _mintAmount) <= _amount, "Exceeds Max Mint Amount");

        //Mint
        _mintLoop(msg.sender, _mintAmount);

        MAP_FREE_MINTED[msg.sender] = MAP_FREE_MINTED[msg.sender] + _mintAmount;
    }

    function mintWhitelist(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external payable {
        require(SALE_STATUS == 2, "Whitelist sale is not opened");

        require(isWhiteListed(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");
        
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");
        
        require((MAP_WHITELIST_MINTED[msg.sender] + _mintAmount) <= _amount, "Exceeds Max Mint Amount");

        require(msg.value >= WHITELIST_COST * _mintAmount, "Insuffient funds");

        //Mint
        _mintLoop(msg.sender, _mintAmount);

        MAP_WHITELIST_MINTED[msg.sender] = MAP_WHITELIST_MINTED[msg.sender] + _mintAmount;
    }

    // public
    function mint(uint256 _mintAmount) external payable {
        require(SALE_STATUS == 3, "Public sale is not opened");

        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");
        
        require(msg.value >= COST * _mintAmount, "Insuffient funds");

        _mintLoop(msg.sender, _mintAmount);
    }

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

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

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

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

    function setWhitelistCost(uint256 _newCost) public onlyOwner {
        WHITELIST_COST = _newCost;
    }

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

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

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

    function setSaleStatus(uint256 _status) public onlyOwner {
        SALE_STATUS = _status;
    }

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

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

    function tokensOfOwnerByIndex(address _owner, uint256 _index) public view returns (uint256) {
        return tokensOfOwner(_owner)[_index];
    }

    function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 _tokenCount = balanceOf(_owner);
        uint256[] memory _tokenIds = new uint256[](_tokenCount);
        uint256 _tokenIndex = 0;
        for (uint256 i = 0; i < totalSupply(); i++) {
            if (ownerOf(i) == _owner) {
                _tokenIds[_tokenIndex] = i;
                _tokenIndex++;
            }
        }
        return _tokenIds;
    }

    function stakedTokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 _tokenCount = MAP_USER_REWARD_INFO[_owner].stakedBalance;
        uint256[] memory _tokenIds = new uint256[](_tokenCount);
        uint256 _tokenIndex = 0;
        for (uint256 i = 0; i < totalSupply(); i++) {
            if (ownerOf(i) == _owner && MAP_STAKED_TOKEN[i] == true) {
                _tokenIds[_tokenIndex] = i;
                _tokenIndex++;
            }
        }
        return _tokenIds;
    }

    function totalStakedCount() public view returns (uint256) {
        uint256 _totalCount = 0;
        for (uint256 i = 0; i < totalSupply(); i++) {
            if (MAP_STAKED_TOKEN[i] == true) {
                _totalCount++;
            }
        }
        return _totalCount;
    }

    function earned(address account) public view returns (uint256) {
        uint256 blockTime = block.timestamp;

        UserRewardInfo memory user = MAP_USER_REWARD_INFO[account];

        uint256 amount = (blockTime - user.lastUpdated) * user.stakedBalance * DAILY_REWARD_AMOUNT / (1 days);
        
        return user.rewards + amount;
    }


    function stake( uint256[] calldata _tokenIDList) external {
        UserRewardInfo storage user = MAP_USER_REWARD_INFO[_msgSender()];
        user.rewards = earned(_msgSender());
        user.lastUpdated = block.timestamp;

        uint256 newStakedCount = 0;
        for (uint256 i = 0; i < _tokenIDList.length; i++) {
            if (ownerOf(_tokenIDList[i]) == _msgSender() && MAP_STAKED_TOKEN[_tokenIDList[i]] == false) {
                newStakedCount++;
                MAP_STAKED_TOKEN[_tokenIDList[i]] = true;
            }
        }

        user.stakedBalance = user.stakedBalance + newStakedCount;
    }

    function harvest() external {
        UserRewardInfo storage user = MAP_USER_REWARD_INFO[_msgSender()];
        user.rewards = earned(_msgSender());
        user.lastUpdated = block.timestamp;

        require(REWARD_TOKEN.balanceOf(address(this)) >= user.rewards,"Reward token amount is small");

        if (user.rewards > 0) {
            REWARD_TOKEN.transfer(_msgSender(), user.rewards);
        }

        user.rewards = 0;
    }

    function _beforeTokenTransfers(address from,address to,uint256 startTokenId,uint256 quantity) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        if (from != address(0) && MAP_STAKED_TOKEN[startTokenId] == true) {
            UserRewardInfo storage fromUser = MAP_USER_REWARD_INFO[from];
            UserRewardInfo storage toUser = MAP_USER_REWARD_INFO[to];

            fromUser.rewards = earned(from);
            fromUser.lastUpdated = block.timestamp;
            fromUser.stakedBalance = fromUser.stakedBalance - 1;

            toUser.rewards = earned(to);
            toUser.lastUpdated = block.timestamp;
            toUser.stakedBalance = toUser.stakedBalance + 1;
        }
    }

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

    function withdrawToken() public onlyOwner {
        REWARD_TOKEN.transfer(msg.sender, REWARD_TOKEN.balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAILY_REWARD_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"MAP_STAKED_TOKEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_USER_REWARD_INFO","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"lastUpdated","type":"uint256"},{"internalType":"uint256","name":"stakedBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_WHITELIST_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STATUS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","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":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isFreeListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintFreelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dailyReward","type":"uint256"}],"name":"setDailyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setFreelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"setRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIDList","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"stakedTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"toLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokensOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261097460095566ab3da5062c8000600e55669536c708910000600f5560006012556705d423c655aa00006016553480156200003e57600080fd5b506040518060400160405280601381526020017f46656d616c652053746f6e6564204475636b7300000000000000000000000000815250604051806040016040528060038152602001621194d160ea1b8152508160029081620000a29190620001cf565b506003620000b18282620001cf565b505050620000ce620000c8620000d460201b60201c565b620000d8565b6200029b565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015557607f821691505b6020821081036200017657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ca57600081815260208120601f850160051c81016020861015620001a55750805b601f850160051c820191505b81811015620001c657828155600101620001b1565b5050505b505050565b81516001600160401b03811115620001eb57620001eb6200012a565b6200020381620001fc845462000140565b846200017c565b602080601f8311600181146200023b5760008415620002225750858301515b600019600386901b1c1916600185901b178555620001c6565b600085815260208120601f198616915b828110156200026c578886015182559484019460019091019084016200024b565b50858210156200028b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612f1680620002ab6000396000f3fe60806040526004361061034f5760003560e01c806389aadd49116101c6578063c204642c116100f7578063f14560a111610095578063f44cc2801161006f578063f44cc28014610a36578063f5aa406d14610a56578063fdaf012514610a76578063ff63cf0114610a9657600080fd5b8063f14560a1146109d6578063f29f15af146109f6578063f2fde38b14610a1657600080fd5b8063ca628c78116100d1578063ca628c7814610938578063d49479eb1461094d578063dc33e6811461096d578063e985e9c51461098d57600080fd5b8063c204642c146108a1578063c4dd3a9c146108c1578063c87b56dd1461091857600080fd5b806399248ea711610164578063b5fa408d1161013e578063b5fa408d1461081b578063b88d4fde1461084b578063bd6454541461086b578063bf8fbbd21461088b57600080fd5b806399248ea7146107c8578063a0712d68146107e8578063a22cb465146107fb57600080fd5b8063920387b4116101a0578063920387b4146107285780639231ab2a1461073d57806395d89b411461079357806397bc411c146107a857600080fd5b806389aadd49146106ca5780638aee8127146106ea5780638da5cb5b1461070a57600080fd5b806342842e0e116102a05780635fbfed3e1161023e57806370a082311161021857806370a082311461065f578063715018a61461067f5780638462151c14610694578063846342ee146106b457600080fd5b80635fbfed3e146106095780636352211e1461061f5780636f8b44b01461063f57600080fd5b80634707f44f1161027a5780634707f44f1461056f57806355f804b31461058f5780635887e325146105af5780635f54db15146105dc57600080fd5b806342842e0e1461051a57806344a0d68a1461053a5780634641257d1461055a57600080fd5b80630a82f53b1161030d57806323b872dd116102e757806323b872dd146104af57806326217e20146104cf57806332cb6b0c146104ef5780633ccfd60b1461050557600080fd5b80630a82f53b146104605780630fbf0a931461047657806318160ddd1461049657600080fd5b80628cc2621461035457806301ffc9a7146103875780630500b0ad146103b757806306fdde03146103e4578063081812fc14610406578063095ea7b31461043e575b600080fd5b34801561036057600080fd5b5061037461036f366004612620565b610aa9565b6040519081526020015b60405180910390f35b34801561039357600080fd5b506103a76103a2366004612651565b610b38565b604051901515815260200161037e565b3480156103c357600080fd5b506103746103d2366004612620565b60116020526000908152604090205481565b3480156103f057600080fd5b506103f9610b8a565b60405161037e91906126be565b34801561041257600080fd5b506104266104213660046126d1565b610c1c565b6040516001600160a01b03909116815260200161037e565b34801561044a57600080fd5b5061045e6104593660046126ea565b610c60565b005b34801561046c57600080fd5b5061037460125481565b34801561048257600080fd5b5061045e61049136600461275f565b610ced565b3480156104a257600080fd5b5060015460005403610374565b3480156104bb57600080fd5b5061045e6104ca3660046127a0565b610e0a565b3480156104db57600080fd5b5061045e6104ea3660046127dc565b610e15565b3480156104fb57600080fd5b5061037460095481565b34801561051157600080fd5b5061045e610fc9565b34801561052657600080fd5b5061045e6105353660046127a0565b611004565b34801561054657600080fd5b5061045e6105553660046126d1565b61101f565b34801561056657600080fd5b5061045e61102c565b34801561057b57600080fd5b5061037461058a3660046126ea565b61119a565b34801561059b57600080fd5b5061045e6105aa3660046128d9565b6111c6565b3480156105bb57600080fd5b506105cf6105ca366004612620565b6111da565b60405161037e9190612921565b3480156105e857600080fd5b506103746105f7366004612620565b60106020526000908152604090205481565b34801561061557600080fd5b5061037460165481565b34801561062b57600080fd5b5061042661063a3660046126d1565b6112d8565b34801561064b57600080fd5b5061045e61065a3660046126d1565b6112ea565b34801561066b57600080fd5b5061037461067a366004612620565b6112f7565b34801561068b57600080fd5b5061045e611345565b3480156106a057600080fd5b506105cf6106af366004612620565b611359565b3480156106c057600080fd5b50610374600f5481565b3480156106d657600080fd5b506103a76106e5366004612988565b61141f565b3480156106f657600080fd5b5061045e610705366004612620565b611435565b34801561071657600080fd5b506008546001600160a01b0316610426565b34801561073457600080fd5b5061037461145f565b34801561074957600080fd5b5061075d6107583660046126d1565b6114b3565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161037e565b34801561079f57600080fd5b506103f96114d9565b3480156107b457600080fd5b5061045e6107c33660046128d9565b6114e8565b3480156107d457600080fd5b50601554610426906001600160a01b031681565b61045e6107f63660046126d1565b6114fc565b34801561080757600080fd5b5061045e610816366004612a37565b6115e4565b34801561082757600080fd5b506103a76108363660046126d1565b60146020526000908152604090205460ff1681565b34801561085757600080fd5b5061045e610866366004612a6e565b611679565b34801561087757600080fd5b506103a7610886366004612988565b6116b3565b34801561089757600080fd5b50610374600e5481565b3480156108ad57600080fd5b5061045e6108bc366004612ae9565b6116c2565b3480156108cd57600080fd5b506108fd6108dc366004612620565b60136020526000908152604090208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161037e565b34801561092457600080fd5b506103f96109333660046126d1565b611711565b34801561094457600080fd5b5061045e611856565b34801561095957600080fd5b5061045e6109683660046126d1565b611943565b34801561097957600080fd5b50610374610988366004612620565b611950565b34801561099957600080fd5b506103a76109a8366004612b86565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109e257600080fd5b5061045e6109f13660046126d1565b61195b565b348015610a0257600080fd5b5061045e610a113660046126d1565b611968565b348015610a2257600080fd5b5061045e610a31366004612620565b611975565b348015610a4257600080fd5b5061045e610a513660046126d1565b6119eb565b348015610a6257600080fd5b5061045e610a713660046126d1565b6119f8565b348015610a8257600080fd5b50610374610a91366004612bb9565b611a05565b61045e610aa43660046127dc565b611a4e565b6001600160a01b0381166000908152601360209081526040808320815160608101835281548152600182015493810184905260029091015491810182905260165442939192859262015180929190610b019087612c02565b610b0b9190612c15565b610b159190612c15565b610b1f9190612c4a565b8251909150610b2f908290612c5e565b95945050505050565b60006001600160e01b031982166380ac58cd60e01b1480610b6957506001600160e01b03198216635b5e139f60e01b145b80610b8457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b9990612c71565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612c71565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c2782611c4d565b610c44576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c6b826112d8565b9050806001600160a01b0316836001600160a01b031603610c9f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cbf5750610cbd81336109a8565b155b15610cdd576040516367d9dca160e11b815260040160405180910390fd5b610ce8838383611c78565b505050565b33600081815260136020526040902090610d0690610aa9565b81554260018201556000805b83811015610deb5733610d3c868684818110610d3057610d30612ca5565b905060200201356112d8565b6001600160a01b0316148015610d82575060146000868684818110610d6357610d63612ca5565b602090810292909201358352508101919091526040016000205460ff16155b15610dd95781610d9181612cbb565b925050600160146000878785818110610dac57610dac612ca5565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610de381612cbb565b915050610d12565b50808260020154610dfc9190612c5e565b826002018190555050505050565b610ce8838383611cd4565b601254600114610e6c5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206f70656e656400000000000000000060448201526064015b60405180910390fd5b610eb3610e7a338686611a05565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061141f92505050565b610eef5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610e63565b60095485610f006001546000540390565b610f0a9190612c5e565b1115610f285760405162461bcd60e51b8152600401610e6390612cd4565b336000908152601060205260409020548390610f45908790612c5e565b1115610f8d5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610e63565b610f973386611ef5565b33600090815260106020526040902054610fb2908690612c5e565b336000908152601060205260409020555050505050565b610fd1611eff565b6040514790339082156108fc029083906000818181858888f19350505050158015611000573d6000803e3d6000fd5b5050565b610ce883838360405180602001604052806000815250611679565b611027611eff565b600e55565b3360008181526013602052604090209061104590610aa9565b8082554260018301556015546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ba9190612d00565b10156111085760405162461bcd60e51b815260206004820152601c60248201527f52657761726420746f6b656e20616d6f756e7420697320736d616c6c000000006044820152606401610e63565b805415611194576015546001600160a01b031663a9059cbb33835460405160e084901b6001600160e01b03191681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561116e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111929190612d19565b505b60009055565b60006111a583611359565b82815181106111b6576111b6612ca5565b6020026020010151905092915050565b6111ce611eff565b600a6110008282612d84565b6001600160a01b038116600090815260136020526040812060020154606091816001600160401b038111156112115761121161283c565b60405190808252806020026020018201604052801561123a578160200160208202803683370190505b5090506000805b600154600054038110156112ce57856001600160a01b0316611262826112d8565b6001600160a01b031614801561128b575060008181526014602052604090205460ff1615156001145b156112bc57808383815181106112a3576112a3612ca5565b6020908102919091010152816112b881612cbb565b9250505b806112c681612cbb565b915050611241565b5090949350505050565b60006112e382611f59565b5192915050565b6112f2611eff565b600955565b60006001600160a01b038216611320576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61134d611eff565b6113576000612072565b565b60606000611366836112f7565b90506000816001600160401b038111156113825761138261283c565b6040519080825280602002602001820160405280156113ab578160200160208202803683370190505b5090506000805b600154600054038110156112ce57856001600160a01b03166113d3826112d8565b6001600160a01b03160361140d57808383815181106113f4576113f4612ca5565b60209081029190910101528161140981612cbb565b9250505b8061141781612cbb565b9150506113b2565b600061142e82600c54856120c4565b9392505050565b61143d611eff565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600080805b600154600054038110156114ad5760008181526014602052604090205460ff16151560010361149b578161149781612cbb565b9250505b806114a581612cbb565b915050611464565b50919050565b6040805160608101825260008082526020820181905291810191909152610b8482611f59565b606060038054610b9990612c71565b6114f0611eff565b600b6110008282612d84565b60125460031461154e5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206f70656e6564000000000000006044820152606401610e63565b6009548161155f6001546000540390565b6115699190612c5e565b11156115875760405162461bcd60e51b8152600401610e6390612cd4565b80600e546115959190612c15565b3410156115d75760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610e63565b6115e13382611ef5565b50565b336001600160a01b0383160361160d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611684848484611cd4565b611690848484846120da565b6116ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061142e82600d54856120c4565b6116ca611eff565b60005b8251811015610ce85760008382815181106116ea576116ea612ca5565b602002602001015190506116fe8184611ef5565b508061170981612cbb565b9150506116cd565b606061171c82611c4d565b6117805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e63565b600061178a6121dd565b9050600081511161182557600b80546117a290612c71565b80601f01602080910402602001604051908101604052809291908181526020018280546117ce90612c71565b801561181b5780601f106117f05761010080835404028352916020019161181b565b820191906000526020600020905b8154815290600101906020018083116117fe57829003601f168201915b505050505061142e565b8061182f846121ec565b604051602001611840929190612e43565b6040516020818303038152906040529392505050565b61185e611eff565b6015546040516370a0823160e01b81523060048201526001600160a01b039091169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d49190612d00565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561191f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e19190612d19565b61194b611eff565b600f55565b6000610b84826122ec565b611963611eff565b601655565b611970611eff565b601255565b61197d611eff565b6001600160a01b0381166119e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e63565b6115e181612072565b6119f3611eff565b600c55565b611a00611eff565b600d55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b601254600214611aa05760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f74206f70656e6564000000006044820152606401610e63565b611ae7611aae338686611a05565b8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506116b392505050565b611b235760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610e63565b60095485611b346001546000540390565b611b3e9190612c5e565b1115611b5c5760405162461bcd60e51b8152600401610e6390612cd4565b336000908152601160205260409020548390611b79908790612c5e565b1115611bc15760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610e63565b84600f54611bcf9190612c15565b341015611c115760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610e63565b611c1b3386611ef5565b33600090815260116020526040902054611c36908690612c5e565b336000908152601160205260409020555050505050565b6000805482108015610b84575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cdf82611f59565b80519091506000906001600160a01b0316336001600160a01b03161480611d0d57508151611d0d90336109a8565b80611d28575033611d1d84610c1c565b6001600160a01b0316145b905080611d4857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d7d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611da457604051633a954ecd60e21b815260040160405180910390fd5b611db18585856001612341565b611dc16000848460000151611c78565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611eab57600054811015611eab57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61100082826123eb565b6008546001600160a01b031633146113575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e63565b604080516060810182526000808252602082018190529181018290529054829081101561205957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120575780516001600160a01b031615611fee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612052579392505050565b611fee565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826120d18584612405565b14949350505050565b60006001600160a01b0384163b156121d157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061211e903390899088908890600401612e72565b6020604051808303816000875af1925050508015612159575060408051601f3d908101601f1916820190925261215691810190612eaf565b60015b6121b7573d808015612187576040519150601f19603f3d011682016040523d82523d6000602084013e61218c565b606091505b5080516000036121af576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d5565b5060015b949350505050565b6060600a8054610b9990612c71565b6060816000036122135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561223d578061222781612cbb565b91506122369050600a83612c4a565b9150612217565b6000816001600160401b038111156122575761225761283c565b6040519080825280601f01601f191660200182016040528015612281576020820181803683370190505b5090505b84156121d557612296600183612c02565b91506122a3600a86612ecc565b6122ae906030612c5e565b60f81b8183815181106122c3576122c3612ca5565b60200101906001600160f81b031916908160001a9053506122e5600a86612c4a565b9450612285565b60006001600160a01b038216612315576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6001600160a01b0384161580159061236c575060008281526014602052604090205460ff1615156001145b156116ad576001600160a01b038085166000908152601360205260408082209286168252902061239b86610aa9565b82554260018084019190915560028301546123b69190612c02565b60028301556123c485610aa9565b81554260018083019190915560028201546123de91612c5e565b6002909101555050505050565b611000828260405180602001604052806000815250612452565b600081815b845181101561244a576124368286838151811061242957612429612ca5565b602002602001015161245f565b91508061244281612cbb565b91505061240a565b509392505050565b610ce8838383600161248e565b600081831061247b57600082815260208490526040902061142e565b600083815260208390526040902061142e565b6000546001600160a01b0385166124b757604051622e076360e81b815260040160405180910390fd5b836000036124d85760405163b562e8dd60e01b815260040160405180910390fd5b6124e56000868387612341565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156125fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156125d157506125cf60008884886120da565b155b156125ef576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161257a565b50600055611eee565b80356001600160a01b038116811461261b57600080fd5b919050565b60006020828403121561263257600080fd5b61142e82612604565b6001600160e01b0319811681146115e157600080fd5b60006020828403121561266357600080fd5b813561142e8161263b565b60005b83811015612689578181015183820152602001612671565b50506000910152565b600081518084526126aa81602086016020860161266e565b601f01601f19169290920160200192915050565b60208152600061142e6020830184612692565b6000602082840312156126e357600080fd5b5035919050565b600080604083850312156126fd57600080fd5b61270683612604565b946020939093013593505050565b60008083601f84011261272657600080fd5b5081356001600160401b0381111561273d57600080fd5b6020830191508360208260051b850101111561275857600080fd5b9250929050565b6000806020838503121561277257600080fd5b82356001600160401b0381111561278857600080fd5b61279485828601612714565b90969095509350505050565b6000806000606084860312156127b557600080fd5b6127be84612604565b92506127cc60208501612604565b9150604084013590509250925092565b6000806000806000608086880312156127f457600080fd5b85359450602086013593506040860135925060608601356001600160401b0381111561281f57600080fd5b61282b88828901612714565b969995985093965092949392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561287a5761287a61283c565b604052919050565b60006001600160401b0383111561289b5761289b61283c565b6128ae601f8401601f1916602001612852565b90508281528383830111156128c257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128eb57600080fd5b81356001600160401b0381111561290157600080fd5b8201601f8101841361291257600080fd5b6121d584823560208401612882565b6020808252825182820181905260009190848201906040850190845b818110156129595783518352928401929184019160010161293d565b50909695505050505050565b60006001600160401b0382111561297e5761297e61283c565b5060051b60200190565b6000806040838503121561299b57600080fd5b823591506020808401356001600160401b038111156129b957600080fd5b8401601f810186136129ca57600080fd5b80356129dd6129d882612965565b612852565b81815260059190911b820183019083810190888311156129fc57600080fd5b928401925b82841015612a1a57833582529284019290840190612a01565b80955050505050509250929050565b80151581146115e157600080fd5b60008060408385031215612a4a57600080fd5b612a5383612604565b91506020830135612a6381612a29565b809150509250929050565b60008060008060808587031215612a8457600080fd5b612a8d85612604565b9350612a9b60208601612604565b92506040850135915060608501356001600160401b03811115612abd57600080fd5b8501601f81018713612ace57600080fd5b612add87823560208401612882565b91505092959194509250565b60008060408385031215612afc57600080fd5b82356001600160401b03811115612b1257600080fd5b8301601f81018513612b2357600080fd5b80356020612b336129d883612965565b82815260059290921b83018101918181019088841115612b5257600080fd5b938201935b83851015612b7757612b6885612604565b82529382019390820190612b57565b98969091013596505050505050565b60008060408385031215612b9957600080fd5b612ba283612604565b9150612bb060208401612604565b90509250929050565b600080600060608486031215612bce57600080fd5b612bd784612604565b95602085013595506040909401359392505050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b8457610b84612bec565b6000816000190483118215151615612c2f57612c2f612bec565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c5957612c59612c34565b500490565b80820180821115610b8457610b84612bec565b600181811c90821680612c8557607f821691505b6020821081036114ad57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060018201612ccd57612ccd612bec565b5060010190565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b600060208284031215612d1257600080fd5b5051919050565b600060208284031215612d2b57600080fd5b815161142e81612a29565b601f821115610ce857600081815260208120601f850160051c81016020861015612d5d5750805b601f850160051c820191505b81811015612d7c57828155600101612d69565b505050505050565b81516001600160401b03811115612d9d57612d9d61283c565b612db181612dab8454612c71565b84612d36565b602080601f831160018114612de65760008415612dce5750858301515b600019600386901b1c1916600185901b178555612d7c565b600085815260208120601f198616915b82811015612e1557888601518255948401946001909101908401612df6565b5085821015612e335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612e5581846020880161266e565b835190830190612e6981836020880161266e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ea590830184612692565b9695505050505050565b600060208284031215612ec157600080fd5b815161142e8161263b565b600082612edb57612edb612c34565b50069056fea26469706673582212204b93b9877927fca5b13a1c6a7bc71bdbdb507198aa0561526c97e68e471eccdc64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061034f5760003560e01c806389aadd49116101c6578063c204642c116100f7578063f14560a111610095578063f44cc2801161006f578063f44cc28014610a36578063f5aa406d14610a56578063fdaf012514610a76578063ff63cf0114610a9657600080fd5b8063f14560a1146109d6578063f29f15af146109f6578063f2fde38b14610a1657600080fd5b8063ca628c78116100d1578063ca628c7814610938578063d49479eb1461094d578063dc33e6811461096d578063e985e9c51461098d57600080fd5b8063c204642c146108a1578063c4dd3a9c146108c1578063c87b56dd1461091857600080fd5b806399248ea711610164578063b5fa408d1161013e578063b5fa408d1461081b578063b88d4fde1461084b578063bd6454541461086b578063bf8fbbd21461088b57600080fd5b806399248ea7146107c8578063a0712d68146107e8578063a22cb465146107fb57600080fd5b8063920387b4116101a0578063920387b4146107285780639231ab2a1461073d57806395d89b411461079357806397bc411c146107a857600080fd5b806389aadd49146106ca5780638aee8127146106ea5780638da5cb5b1461070a57600080fd5b806342842e0e116102a05780635fbfed3e1161023e57806370a082311161021857806370a082311461065f578063715018a61461067f5780638462151c14610694578063846342ee146106b457600080fd5b80635fbfed3e146106095780636352211e1461061f5780636f8b44b01461063f57600080fd5b80634707f44f1161027a5780634707f44f1461056f57806355f804b31461058f5780635887e325146105af5780635f54db15146105dc57600080fd5b806342842e0e1461051a57806344a0d68a1461053a5780634641257d1461055a57600080fd5b80630a82f53b1161030d57806323b872dd116102e757806323b872dd146104af57806326217e20146104cf57806332cb6b0c146104ef5780633ccfd60b1461050557600080fd5b80630a82f53b146104605780630fbf0a931461047657806318160ddd1461049657600080fd5b80628cc2621461035457806301ffc9a7146103875780630500b0ad146103b757806306fdde03146103e4578063081812fc14610406578063095ea7b31461043e575b600080fd5b34801561036057600080fd5b5061037461036f366004612620565b610aa9565b6040519081526020015b60405180910390f35b34801561039357600080fd5b506103a76103a2366004612651565b610b38565b604051901515815260200161037e565b3480156103c357600080fd5b506103746103d2366004612620565b60116020526000908152604090205481565b3480156103f057600080fd5b506103f9610b8a565b60405161037e91906126be565b34801561041257600080fd5b506104266104213660046126d1565b610c1c565b6040516001600160a01b03909116815260200161037e565b34801561044a57600080fd5b5061045e6104593660046126ea565b610c60565b005b34801561046c57600080fd5b5061037460125481565b34801561048257600080fd5b5061045e61049136600461275f565b610ced565b3480156104a257600080fd5b5060015460005403610374565b3480156104bb57600080fd5b5061045e6104ca3660046127a0565b610e0a565b3480156104db57600080fd5b5061045e6104ea3660046127dc565b610e15565b3480156104fb57600080fd5b5061037460095481565b34801561051157600080fd5b5061045e610fc9565b34801561052657600080fd5b5061045e6105353660046127a0565b611004565b34801561054657600080fd5b5061045e6105553660046126d1565b61101f565b34801561056657600080fd5b5061045e61102c565b34801561057b57600080fd5b5061037461058a3660046126ea565b61119a565b34801561059b57600080fd5b5061045e6105aa3660046128d9565b6111c6565b3480156105bb57600080fd5b506105cf6105ca366004612620565b6111da565b60405161037e9190612921565b3480156105e857600080fd5b506103746105f7366004612620565b60106020526000908152604090205481565b34801561061557600080fd5b5061037460165481565b34801561062b57600080fd5b5061042661063a3660046126d1565b6112d8565b34801561064b57600080fd5b5061045e61065a3660046126d1565b6112ea565b34801561066b57600080fd5b5061037461067a366004612620565b6112f7565b34801561068b57600080fd5b5061045e611345565b3480156106a057600080fd5b506105cf6106af366004612620565b611359565b3480156106c057600080fd5b50610374600f5481565b3480156106d657600080fd5b506103a76106e5366004612988565b61141f565b3480156106f657600080fd5b5061045e610705366004612620565b611435565b34801561071657600080fd5b506008546001600160a01b0316610426565b34801561073457600080fd5b5061037461145f565b34801561074957600080fd5b5061075d6107583660046126d1565b6114b3565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161037e565b34801561079f57600080fd5b506103f96114d9565b3480156107b457600080fd5b5061045e6107c33660046128d9565b6114e8565b3480156107d457600080fd5b50601554610426906001600160a01b031681565b61045e6107f63660046126d1565b6114fc565b34801561080757600080fd5b5061045e610816366004612a37565b6115e4565b34801561082757600080fd5b506103a76108363660046126d1565b60146020526000908152604090205460ff1681565b34801561085757600080fd5b5061045e610866366004612a6e565b611679565b34801561087757600080fd5b506103a7610886366004612988565b6116b3565b34801561089757600080fd5b50610374600e5481565b3480156108ad57600080fd5b5061045e6108bc366004612ae9565b6116c2565b3480156108cd57600080fd5b506108fd6108dc366004612620565b60136020526000908152604090208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161037e565b34801561092457600080fd5b506103f96109333660046126d1565b611711565b34801561094457600080fd5b5061045e611856565b34801561095957600080fd5b5061045e6109683660046126d1565b611943565b34801561097957600080fd5b50610374610988366004612620565b611950565b34801561099957600080fd5b506103a76109a8366004612b86565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109e257600080fd5b5061045e6109f13660046126d1565b61195b565b348015610a0257600080fd5b5061045e610a113660046126d1565b611968565b348015610a2257600080fd5b5061045e610a31366004612620565b611975565b348015610a4257600080fd5b5061045e610a513660046126d1565b6119eb565b348015610a6257600080fd5b5061045e610a713660046126d1565b6119f8565b348015610a8257600080fd5b50610374610a91366004612bb9565b611a05565b61045e610aa43660046127dc565b611a4e565b6001600160a01b0381166000908152601360209081526040808320815160608101835281548152600182015493810184905260029091015491810182905260165442939192859262015180929190610b019087612c02565b610b0b9190612c15565b610b159190612c15565b610b1f9190612c4a565b8251909150610b2f908290612c5e565b95945050505050565b60006001600160e01b031982166380ac58cd60e01b1480610b6957506001600160e01b03198216635b5e139f60e01b145b80610b8457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b9990612c71565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612c71565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c2782611c4d565b610c44576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c6b826112d8565b9050806001600160a01b0316836001600160a01b031603610c9f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cbf5750610cbd81336109a8565b155b15610cdd576040516367d9dca160e11b815260040160405180910390fd5b610ce8838383611c78565b505050565b33600081815260136020526040902090610d0690610aa9565b81554260018201556000805b83811015610deb5733610d3c868684818110610d3057610d30612ca5565b905060200201356112d8565b6001600160a01b0316148015610d82575060146000868684818110610d6357610d63612ca5565b602090810292909201358352508101919091526040016000205460ff16155b15610dd95781610d9181612cbb565b925050600160146000878785818110610dac57610dac612ca5565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610de381612cbb565b915050610d12565b50808260020154610dfc9190612c5e565b826002018190555050505050565b610ce8838383611cd4565b601254600114610e6c5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206f70656e656400000000000000000060448201526064015b60405180910390fd5b610eb3610e7a338686611a05565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061141f92505050565b610eef5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610e63565b60095485610f006001546000540390565b610f0a9190612c5e565b1115610f285760405162461bcd60e51b8152600401610e6390612cd4565b336000908152601060205260409020548390610f45908790612c5e565b1115610f8d5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610e63565b610f973386611ef5565b33600090815260106020526040902054610fb2908690612c5e565b336000908152601060205260409020555050505050565b610fd1611eff565b6040514790339082156108fc029083906000818181858888f19350505050158015611000573d6000803e3d6000fd5b5050565b610ce883838360405180602001604052806000815250611679565b611027611eff565b600e55565b3360008181526013602052604090209061104590610aa9565b8082554260018301556015546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ba9190612d00565b10156111085760405162461bcd60e51b815260206004820152601c60248201527f52657761726420746f6b656e20616d6f756e7420697320736d616c6c000000006044820152606401610e63565b805415611194576015546001600160a01b031663a9059cbb33835460405160e084901b6001600160e01b03191681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561116e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111929190612d19565b505b60009055565b60006111a583611359565b82815181106111b6576111b6612ca5565b6020026020010151905092915050565b6111ce611eff565b600a6110008282612d84565b6001600160a01b038116600090815260136020526040812060020154606091816001600160401b038111156112115761121161283c565b60405190808252806020026020018201604052801561123a578160200160208202803683370190505b5090506000805b600154600054038110156112ce57856001600160a01b0316611262826112d8565b6001600160a01b031614801561128b575060008181526014602052604090205460ff1615156001145b156112bc57808383815181106112a3576112a3612ca5565b6020908102919091010152816112b881612cbb565b9250505b806112c681612cbb565b915050611241565b5090949350505050565b60006112e382611f59565b5192915050565b6112f2611eff565b600955565b60006001600160a01b038216611320576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61134d611eff565b6113576000612072565b565b60606000611366836112f7565b90506000816001600160401b038111156113825761138261283c565b6040519080825280602002602001820160405280156113ab578160200160208202803683370190505b5090506000805b600154600054038110156112ce57856001600160a01b03166113d3826112d8565b6001600160a01b03160361140d57808383815181106113f4576113f4612ca5565b60209081029190910101528161140981612cbb565b9250505b8061141781612cbb565b9150506113b2565b600061142e82600c54856120c4565b9392505050565b61143d611eff565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600080805b600154600054038110156114ad5760008181526014602052604090205460ff16151560010361149b578161149781612cbb565b9250505b806114a581612cbb565b915050611464565b50919050565b6040805160608101825260008082526020820181905291810191909152610b8482611f59565b606060038054610b9990612c71565b6114f0611eff565b600b6110008282612d84565b60125460031461154e5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206f70656e6564000000000000006044820152606401610e63565b6009548161155f6001546000540390565b6115699190612c5e565b11156115875760405162461bcd60e51b8152600401610e6390612cd4565b80600e546115959190612c15565b3410156115d75760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610e63565b6115e13382611ef5565b50565b336001600160a01b0383160361160d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611684848484611cd4565b611690848484846120da565b6116ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061142e82600d54856120c4565b6116ca611eff565b60005b8251811015610ce85760008382815181106116ea576116ea612ca5565b602002602001015190506116fe8184611ef5565b508061170981612cbb565b9150506116cd565b606061171c82611c4d565b6117805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e63565b600061178a6121dd565b9050600081511161182557600b80546117a290612c71565b80601f01602080910402602001604051908101604052809291908181526020018280546117ce90612c71565b801561181b5780601f106117f05761010080835404028352916020019161181b565b820191906000526020600020905b8154815290600101906020018083116117fe57829003601f168201915b505050505061142e565b8061182f846121ec565b604051602001611840929190612e43565b6040516020818303038152906040529392505050565b61185e611eff565b6015546040516370a0823160e01b81523060048201526001600160a01b039091169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d49190612d00565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561191f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e19190612d19565b61194b611eff565b600f55565b6000610b84826122ec565b611963611eff565b601655565b611970611eff565b601255565b61197d611eff565b6001600160a01b0381166119e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e63565b6115e181612072565b6119f3611eff565b600c55565b611a00611eff565b600d55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b601254600214611aa05760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f74206f70656e6564000000006044820152606401610e63565b611ae7611aae338686611a05565b8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506116b392505050565b611b235760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610e63565b60095485611b346001546000540390565b611b3e9190612c5e565b1115611b5c5760405162461bcd60e51b8152600401610e6390612cd4565b336000908152601160205260409020548390611b79908790612c5e565b1115611bc15760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610e63565b84600f54611bcf9190612c15565b341015611c115760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610e63565b611c1b3386611ef5565b33600090815260116020526040902054611c36908690612c5e565b336000908152601160205260409020555050505050565b6000805482108015610b84575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cdf82611f59565b80519091506000906001600160a01b0316336001600160a01b03161480611d0d57508151611d0d90336109a8565b80611d28575033611d1d84610c1c565b6001600160a01b0316145b905080611d4857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d7d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611da457604051633a954ecd60e21b815260040160405180910390fd5b611db18585856001612341565b611dc16000848460000151611c78565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611eab57600054811015611eab57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61100082826123eb565b6008546001600160a01b031633146113575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e63565b604080516060810182526000808252602082018190529181018290529054829081101561205957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120575780516001600160a01b031615611fee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612052579392505050565b611fee565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826120d18584612405565b14949350505050565b60006001600160a01b0384163b156121d157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061211e903390899088908890600401612e72565b6020604051808303816000875af1925050508015612159575060408051601f3d908101601f1916820190925261215691810190612eaf565b60015b6121b7573d808015612187576040519150601f19603f3d011682016040523d82523d6000602084013e61218c565b606091505b5080516000036121af576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d5565b5060015b949350505050565b6060600a8054610b9990612c71565b6060816000036122135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561223d578061222781612cbb565b91506122369050600a83612c4a565b9150612217565b6000816001600160401b038111156122575761225761283c565b6040519080825280601f01601f191660200182016040528015612281576020820181803683370190505b5090505b84156121d557612296600183612c02565b91506122a3600a86612ecc565b6122ae906030612c5e565b60f81b8183815181106122c3576122c3612ca5565b60200101906001600160f81b031916908160001a9053506122e5600a86612c4a565b9450612285565b60006001600160a01b038216612315576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6001600160a01b0384161580159061236c575060008281526014602052604090205460ff1615156001145b156116ad576001600160a01b038085166000908152601360205260408082209286168252902061239b86610aa9565b82554260018084019190915560028301546123b69190612c02565b60028301556123c485610aa9565b81554260018083019190915560028201546123de91612c5e565b6002909101555050505050565b611000828260405180602001604052806000815250612452565b600081815b845181101561244a576124368286838151811061242957612429612ca5565b602002602001015161245f565b91508061244281612cbb565b91505061240a565b509392505050565b610ce8838383600161248e565b600081831061247b57600082815260208490526040902061142e565b600083815260208390526040902061142e565b6000546001600160a01b0385166124b757604051622e076360e81b815260040160405180910390fd5b836000036124d85760405163b562e8dd60e01b815260040160405180910390fd5b6124e56000868387612341565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156125fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156125d157506125cf60008884886120da565b155b156125ef576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161257a565b50600055611eee565b80356001600160a01b038116811461261b57600080fd5b919050565b60006020828403121561263257600080fd5b61142e82612604565b6001600160e01b0319811681146115e157600080fd5b60006020828403121561266357600080fd5b813561142e8161263b565b60005b83811015612689578181015183820152602001612671565b50506000910152565b600081518084526126aa81602086016020860161266e565b601f01601f19169290920160200192915050565b60208152600061142e6020830184612692565b6000602082840312156126e357600080fd5b5035919050565b600080604083850312156126fd57600080fd5b61270683612604565b946020939093013593505050565b60008083601f84011261272657600080fd5b5081356001600160401b0381111561273d57600080fd5b6020830191508360208260051b850101111561275857600080fd5b9250929050565b6000806020838503121561277257600080fd5b82356001600160401b0381111561278857600080fd5b61279485828601612714565b90969095509350505050565b6000806000606084860312156127b557600080fd5b6127be84612604565b92506127cc60208501612604565b9150604084013590509250925092565b6000806000806000608086880312156127f457600080fd5b85359450602086013593506040860135925060608601356001600160401b0381111561281f57600080fd5b61282b88828901612714565b969995985093965092949392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561287a5761287a61283c565b604052919050565b60006001600160401b0383111561289b5761289b61283c565b6128ae601f8401601f1916602001612852565b90508281528383830111156128c257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128eb57600080fd5b81356001600160401b0381111561290157600080fd5b8201601f8101841361291257600080fd5b6121d584823560208401612882565b6020808252825182820181905260009190848201906040850190845b818110156129595783518352928401929184019160010161293d565b50909695505050505050565b60006001600160401b0382111561297e5761297e61283c565b5060051b60200190565b6000806040838503121561299b57600080fd5b823591506020808401356001600160401b038111156129b957600080fd5b8401601f810186136129ca57600080fd5b80356129dd6129d882612965565b612852565b81815260059190911b820183019083810190888311156129fc57600080fd5b928401925b82841015612a1a57833582529284019290840190612a01565b80955050505050509250929050565b80151581146115e157600080fd5b60008060408385031215612a4a57600080fd5b612a5383612604565b91506020830135612a6381612a29565b809150509250929050565b60008060008060808587031215612a8457600080fd5b612a8d85612604565b9350612a9b60208601612604565b92506040850135915060608501356001600160401b03811115612abd57600080fd5b8501601f81018713612ace57600080fd5b612add87823560208401612882565b91505092959194509250565b60008060408385031215612afc57600080fd5b82356001600160401b03811115612b1257600080fd5b8301601f81018513612b2357600080fd5b80356020612b336129d883612965565b82815260059290921b83018101918181019088841115612b5257600080fd5b938201935b83851015612b7757612b6885612604565b82529382019390820190612b57565b98969091013596505050505050565b60008060408385031215612b9957600080fd5b612ba283612604565b9150612bb060208401612604565b90509250929050565b600080600060608486031215612bce57600080fd5b612bd784612604565b95602085013595506040909401359392505050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b8457610b84612bec565b6000816000190483118215151615612c2f57612c2f612bec565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c5957612c59612c34565b500490565b80820180821115610b8457610b84612bec565b600181811c90821680612c8557607f821691505b6020821081036114ad57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060018201612ccd57612ccd612bec565b5060010190565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b600060208284031215612d1257600080fd5b5051919050565b600060208284031215612d2b57600080fd5b815161142e81612a29565b601f821115610ce857600081815260208120601f850160051c81016020861015612d5d5750805b601f850160051c820191505b81811015612d7c57828155600101612d69565b505050505050565b81516001600160401b03811115612d9d57612d9d61283c565b612db181612dab8454612c71565b84612d36565b602080601f831160018114612de65760008415612dce5750858301515b600019600386901b1c1916600185901b178555612d7c565b600085815260208120601f198616915b82811015612e1557888601518255948401946001909101908401612df6565b5085821015612e335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612e5581846020880161266e565b835190830190612e6981836020880161266e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ea590830184612692565b9695505050505050565b600060208284031215612ec157600080fd5b815161142e8161263b565b600082612edb57612edb612c34565b50069056fea26469706673582212204b93b9877927fca5b13a1c6a7bc71bdbdb507198aa0561526c97e68e471eccdc64736f6c63430008100033

Deployed Bytecode Sourcemap

57056:9646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64197:351;;;;;;;;;;-1:-1:-1;64197:351:0;;;;;:::i;:::-;;:::i;:::-;;;529:25:1;;;517:2;502:18;64197:351:0;;;;;;;;39825:305;;;;;;;;;;-1:-1:-1;39825:305:0;;;;;:::i;:::-;;:::i;:::-;;;1116:14:1;;1109:22;1091:41;;1079:2;1064:18;39825:305:0;951:187:1;57472:55:0;;;;;;;;;;-1:-1:-1;57472:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44688:204::-;;;;;;;;;;-1:-1:-1;44688:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;44688:204:0;2084:203:1;44251:371:0;;;;;;;;;;-1:-1:-1;44251:371:0;;;;;:::i;:::-;;:::i;:::-;;57536:30;;;;;;;;;;;;;;;;64558:628;;;;;;;;;;-1:-1:-1;64558:628:0;;;;;:::i;:::-;;:::i;39482:271::-;;;;;;;;;;-1:-1:-1;39718:12:0;;39526:7;39702:13;:28;39482:271;;45545:170;;;;;;;;;;-1:-1:-1;45545:170:0;;;;;:::i;:::-;;:::i;59303:630::-;;;;;;;;;;-1:-1:-1;59303:630:0;;;;;:::i;:::-;;:::i;57138:32::-;;;;;;;;;;;;;;;;66415:143;;;;;;;;;;;;;:::i;45786:185::-;;;;;;;;;;-1:-1:-1;45786:185:0;;;;;:::i;:::-;;:::i;61814:86::-;;;;;;;;;;-1:-1:-1;61814:86:0;;;;;:::i;:::-;;:::i;65194:447::-;;;;;;;;;;;;;:::i;62742:147::-;;;;;;;;;;-1:-1:-1;62742:147:0;;;;;:::i;:::-;;:::i;62124:105::-;;;;;;;;;;-1:-1:-1;62124:105:0;;;;;:::i;:::-;;:::i;63367:524::-;;;;;;;;;;-1:-1:-1;63367:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57415:50::-;;;;;;;;;;-1:-1:-1;57415:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;57907:47;;;;;;;;;;;;;;;;42994:124;;;;;;;;;;-1:-1:-1;42994:124:0;;;;;:::i;:::-;;:::i;62021:95::-;;;;;;;;;;-1:-1:-1;62021:95:0;;;;;:::i;:::-;;:::i;40194:206::-;;;;;;;;;;-1:-1:-1;40194:206:0;;;;;:::i;:::-;;:::i;15422:103::-;;;;;;;;;;;;;:::i;62897:462::-;;;;;;;;;;-1:-1:-1;62897:462:0;;;;;:::i;:::-;;:::i;57359:43::-;;;;;;;;;;;;;;;;58545:171;;;;;;;;;;-1:-1:-1;58545:171:0;;;;;:::i;:::-;;:::i;58027:119::-;;;;;;;;;;-1:-1:-1;58027:119:0;;;;;:::i;:::-;;:::i;14774:87::-;;;;;;;;;;-1:-1:-1;14847:6:0;;-1:-1:-1;;;;;14847:6:0;14774:87;;63899:290;;;;;;;;;;;;;:::i;62599:135::-;;;;;;;;;;-1:-1:-1;62599:135:0;;;;;:::i;:::-;;:::i;:::-;;;;7646:13:1;;-1:-1:-1;;;;;7642:39:1;7624:58;;7742:4;7730:17;;;7724:24;-1:-1:-1;;;;;7720:49:1;7698:20;;;7691:79;7828:17;;;7822:24;7815:32;7808:40;7786:20;;;7779:70;7612:2;7597:18;62599:135:0;7414:441:1;43354:104:0;;;;;;;;;;;;;:::i;62237:121::-;;;;;;;;;;-1:-1:-1;62237:121:0;;;;;:::i;:::-;;:::i;57874:26::-;;;;;;;;;;-1:-1:-1;57874:26:0;;;;-1:-1:-1;;;;;57874:26:0;;;60707:338;;;;;;:::i;:::-;;:::i;44964:279::-;;;;;;;;;;-1:-1:-1;44964:279:0;;;;;:::i;:::-;;:::i;57813:48::-;;;;;;;;;;-1:-1:-1;57813:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46042:342;;;;;;;;;;-1:-1:-1;46042:342:0;;;;;:::i;:::-;;:::i;58724:173::-;;;;;;;;;;-1:-1:-1;58724:173:0;;;;;:::i;:::-;;:::i;57318:34::-;;;;;;;;;;;;;;;;61053:265;;;;;;;;;;-1:-1:-1;61053:265:0;;;;;:::i;:::-;;:::i;57744:62::-;;;;;;;;;;-1:-1:-1;57744:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10370:25:1;;;10426:2;10411:18;;10404:34;;;;10454:18;;;10447:34;10358:2;10343:18;57744:62:0;10168:319:1;61443:363:0;;;;;;;;;;-1:-1:-1;61443:363:0;;;;;:::i;:::-;;:::i;66566:133::-;;;;;;;;;;;;;:::i;61908:105::-;;;;;;;;;;-1:-1:-1;61908:105:0;;;;;:::i;:::-;;:::i;59180:115::-;;;;;;;;;;-1:-1:-1;59180:115:0;;;;;:::i;:::-;;:::i;45314:164::-;;;;;;;;;;-1:-1:-1;45314:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45435:25:0;;;45411:4;45435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45314:164;58154:122;;;;;;;;;;-1:-1:-1;58154:122:0;;;;;:::i;:::-;;:::i;62366:97::-;;;;;;;;;;-1:-1:-1;62366:97:0;;;;;:::i;:::-;;:::i;15680:201::-;;;;;;;;;;-1:-1:-1;15680:201:0;;;;;:::i;:::-;;:::i;58391:97::-;;;;;;;;;;-1:-1:-1;58391:97:0;;;;;:::i;:::-;;:::i;58284:99::-;;;;;;;;;;-1:-1:-1;58284:99:0;;;;;:::i;:::-;;:::i;59001:171::-;;;;;;;;;;-1:-1:-1;59001:171:0;;;;;:::i;:::-;;:::i;59941:743::-;;;;;;:::i;:::-;;:::i;64197:351::-;-1:-1:-1;;;;;64348:29:0;;64251:7;64348:29;;;:20;:29;;;;;;;;64319:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64461:19;;64291:15;;64319:58;;64251:7;;64484:6;;64461:19;64319:58;64408:28;;64291:15;64408:28;:::i;:::-;64407:51;;;;:::i;:::-;:73;;;;:::i;:::-;:84;;;;:::i;:::-;64519:12;;64390:101;;-1:-1:-1;64519:21:0;;64390:101;;64519:21;:::i;:::-;64512:28;64197:351;-1:-1:-1;;;;;64197:351:0:o;39825:305::-;39927:4;-1:-1:-1;;;;;;39964:40:0;;-1:-1:-1;;;39964:40:0;;:105;;-1:-1:-1;;;;;;;40021:48:0;;-1:-1:-1;;;40021:48:0;39964:105;:158;;;-1:-1:-1;;;;;;;;;;11537:40:0;;;40086:36;39944:178;39825:305;-1:-1:-1;;39825:305:0:o;43185:100::-;43239:13;43272:5;43265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43185:100;:::o;44688:204::-;44756:7;44781:16;44789:7;44781;:16::i;:::-;44776:64;;44806:34;;-1:-1:-1;;;44806:34:0;;;;;;;;;;;44776:64;-1:-1:-1;44860:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44860:24:0;;44688:204::o;44251:371::-;44324:13;44340:24;44356:7;44340:15;:24::i;:::-;44324:40;;44385:5;-1:-1:-1;;;;;44379:11:0;:2;-1:-1:-1;;;;;44379:11:0;;44375:48;;44399:24;;-1:-1:-1;;;44399:24:0;;;;;;;;;;;44375:48;13405:10;-1:-1:-1;;;;;44440:21:0;;;;;;:63;;-1:-1:-1;44466:37:0;44483:5;13405:10;45314:164;:::i;44466:37::-;44465:38;44440:63;44436:138;;;44527:35;;-1:-1:-1;;;44527:35:0;;;;;;;;;;;44436:138;44586:28;44595:2;44599:7;44608:5;44586:8;:28::i;:::-;44313:309;44251:371;;:::o;64558:628::-;13405:10;64627:27;64657:34;;;:20;:34;;;;;;64717:20;;64197:351;:::i;64717:20::-;64702:35;;64767:15;64748:16;;;:34;64702:12;;64832:278;64852:23;;;64832:278;;;13405:10;64901:24;64909:12;;64922:1;64909:15;;;;;;;:::i;:::-;;;;;;;64901:7;:24::i;:::-;-1:-1:-1;;;;;64901:40:0;;:86;;;;;64945:16;:33;64962:12;;64975:1;64962:15;;;;;;;:::i;:::-;;;;;;;;;;64945:33;;-1:-1:-1;64945:33:0;;;;;;;;-1:-1:-1;64945:33:0;;;;:42;64901:86;64897:202;;;65008:16;;;;:::i;:::-;;;;65079:4;65043:16;:33;65060:12;;65073:1;65060:15;;;;;;;:::i;:::-;;;;;;;65043:33;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;64897:202;64877:3;;;;:::i;:::-;;;;64832:278;;;;65164:14;65143:4;:18;;;:35;;;;:::i;:::-;65122:4;:18;;:56;;;;64616:570;;64558:628;;:::o;45545:170::-;45679:28;45689:4;45695:2;45699:7;45679:9;:28::i;59303:630::-;59434:11;;59449:1;59434:16;59426:52;;;;-1:-1:-1;;;59426:52:0;;13135:2:1;59426:52:0;;;13117:21:1;13174:2;13154:18;;;13147:30;13213:25;13193:18;;;13186:53;13256:18;;59426:52:0;;;;;;;;;59499:57;59512:35;59519:10;59531:6;59539:7;59512:6;:35::i;:::-;59549:6;;59499:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59499:12:0;;-1:-1:-1;;;59499:57:0:i;:::-;59491:83;;;;-1:-1:-1;;;59491:83:0;;13487:2:1;59491:83:0;;;13469:21:1;13526:2;13506:18;;;13499:30;-1:-1:-1;;;13545:18:1;;;13538:43;13598:18;;59491:83:0;13285:337:1;59491:83:0;59634:10;;59619:11;59603:13;39718:12;;39526:7;39702:13;:28;;39482:271;59603:13;:27;;;;:::i;:::-;:41;;59595:72;;;;-1:-1:-1;;;59595:72:0;;;;;;;:::i;:::-;59713:10;59697:27;;;;:15;:27;;;;;;59743:7;;59697:41;;59727:11;;59697:41;:::i;:::-;59696:54;;59688:90;;;;-1:-1:-1;;;59688:90:0;;14176:2:1;59688:90:0;;;14158:21:1;14215:2;14195:18;;;14188:30;-1:-1:-1;;;14234:18:1;;;14227:53;14297:18;;59688:90:0;13974:347:1;59688:90:0;59807:34;59817:10;59829:11;59807:9;:34::i;:::-;59900:10;59884:27;;;;:15;:27;;;;;;:41;;59914:11;;59884:41;:::i;:::-;59870:10;59854:27;;;;:15;:27;;;;;:71;-1:-1:-1;;;;;59303:630:0:o;66415:143::-;14660:13;:11;:13::i;:::-;66513:37:::1;::::0;66481:21:::1;::::0;66521:10:::1;::::0;66513:37;::::1;;;::::0;66481:21;;66463:15:::1;66513:37:::0;66463:15;66513:37;66481:21;66521:10;66513:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;66452:106;66415:143::o:0;45786:185::-;45924:39;45941:4;45947:2;45951:7;45924:39;;;;;;;;;;;;:16;:39::i;61814:86::-;14660:13;:11;:13::i;:::-;61877:4:::1;:15:::0;61814:86::o;65194:447::-;13405:10;65233:27;65263:34;;;:20;:34;;;;;;65323:20;;64197:351;:::i;65323:20::-;65308:35;;;65373:15;65354:16;;;:34;65409:12;;:37;;-1:-1:-1;;;65409:37:0;;65440:4;65409:37;;;2230:51:1;-1:-1:-1;;;;;65409:12:0;;;;:22;;2203:18:1;;65409:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;65401:93;;;;-1:-1:-1;;;65401:93:0;;14717:2:1;65401:93:0;;;14699:21:1;14756:2;14736:18;;;14729:30;14795;14775:18;;;14768:58;14843:18;;65401:93:0;14515:352:1;65401:93:0;65511:12;;:16;65507:98;;65544:12;;-1:-1:-1;;;;;65544:12:0;:21;13405:10;65580:12;;65544:49;;;;;;-1:-1:-1;;;;;;65544:49:0;;;-1:-1:-1;;;;;15064:32:1;;;65544:49:0;;;15046:51:1;15113:18;;;15106:34;15019:18;;65544:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65507:98;65632:1;65617:16;;65194:447::o;62742:147::-;62825:7;62852:21;62866:6;62852:13;:21::i;:::-;62874:6;62852:29;;;;;;;;:::i;:::-;;;;;;;62845:36;;62742:147;;;;:::o;62124:105::-;14660:13;:11;:13::i;:::-;62199:8:::1;:22;62210:11:::0;62199:8;:22:::1;:::i;63367:524::-:0;-1:-1:-1;;;;;63484:28:0;;63462:19;63484:28;;;:20;:28;;;;;:42;;;63433:16;;63484:42;-1:-1:-1;;;;;63566:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63566:26:0;;63537:55;;63603:19;63642:9;63637:220;39718:12;;39526:7;39702:13;:28;63657:1;:17;63637:220;;;63714:6;-1:-1:-1;;;;;63700:20:0;:10;63708:1;63700:7;:10::i;:::-;-1:-1:-1;;;;;63700:20:0;;:51;;;;-1:-1:-1;63724:19:0;;;;:16;:19;;;;;;;;:27;;:19;:27;63700:51;63696:150;;;63797:1;63772:9;63782:11;63772:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;63817:13;;;;:::i;:::-;;;;63696:150;63676:3;;;;:::i;:::-;;;;63637:220;;;-1:-1:-1;63874:9:0;;63367:524;-1:-1:-1;;;;63367:524:0:o;42994:124::-;43058:7;43085:20;43097:7;43085:11;:20::i;:::-;:25;;42994:124;-1:-1:-1;;42994:124:0:o;62021:95::-;14660:13;:11;:13::i;:::-;62088:10:::1;:20:::0;62021:95::o;40194:206::-;40258:7;-1:-1:-1;;;;;40282:19:0;;40278:60;;40310:28;;-1:-1:-1;;;40310:28:0;;;;;;;;;;;40278:60;-1:-1:-1;;;;;;40364:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40364:27:0;;40194:206::o;15422:103::-;14660:13;:11;:13::i;:::-;15487:30:::1;15514:1;15487:18;:30::i;:::-;15422:103::o:0;62897:462::-;62957:16;62986:19;63008:17;63018:6;63008:9;:17::i;:::-;62986:39;;63036:26;63079:11;-1:-1:-1;;;;;63065:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63065:26:0;;63036:55;;63102:19;63141:9;63136:189;39718:12;;39526:7;39702:13;:28;63156:1;:17;63136:189;;;63213:6;-1:-1:-1;;;;;63199:20:0;:10;63207:1;63199:7;:10::i;:::-;-1:-1:-1;;;;;63199:20:0;;63195:119;;63265:1;63240:9;63250:11;63240:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;63285:13;;;;:::i;:::-;;;;63195:119;63175:3;;;;:::i;:::-;;;;63136:189;;58545:171;58632:4;58656:52;58675:6;58683:13;;58698:9;58656:18;:52::i;:::-;58649:59;58545:171;-1:-1:-1;;;58545:171:0:o;58027:119::-;14660:13;:11;:13::i;:::-;58102:12:::1;:36:::0;;-1:-1:-1;;;;;;58102:36:0::1;-1:-1:-1::0;;;;;58102:36:0;;;::::1;::::0;;;::::1;::::0;;58027:119::o;63899:290::-;63948:7;;;64002:151;39718:12;;39526:7;39702:13;:28;64022:1;:17;64002:151;;;64065:19;;;;:16;:19;;;;;;;;:27;;:19;:27;64061:81;;64113:13;;;;:::i;:::-;;;;64061:81;64041:3;;;;:::i;:::-;;;;64002:151;;;-1:-1:-1;64170:11:0;63899:290;-1:-1:-1;63899:290:0:o;62599:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;62706:20:0;62718:7;62706:11;:20::i;43354:104::-;43410:13;43443:7;43436:14;;;;;:::i;62237:121::-;14660:13;:11;:13::i;:::-;62320:12:::1;:30;62335:15:::0;62320:12;:30:::1;:::i;60707:338::-:0;60778:11;;60793:1;60778:16;60770:54;;;;-1:-1:-1;;;60770:54:0;;17807:2:1;60770:54:0;;;17789:21:1;17846:2;17826:18;;;17819:30;17885:27;17865:18;;;17858:55;17930:18;;60770:54:0;17605:349:1;60770:54:0;60876:10;;60861:11;60845:13;39718:12;;39526:7;39702:13;:28;;39482:271;60845:13;:27;;;;:::i;:::-;:41;;60837:72;;;;-1:-1:-1;;;60837:72:0;;;;;;;:::i;:::-;60958:11;60951:4;;:18;;;;:::i;:::-;60938:9;:31;;60930:60;;;;-1:-1:-1;;;60930:60:0;;18161:2:1;60930:60:0;;;18143:21:1;18200:2;18180:18;;;18173:30;-1:-1:-1;;;18219:18:1;;;18212:46;18275:18;;60930:60:0;17959:340:1;60930:60:0;61003:34;61013:10;61025:11;61003:9;:34::i;:::-;60707:338;:::o;44964:279::-;13405:10;-1:-1:-1;;;;;45055:24:0;;;45051:54;;45088:17;;-1:-1:-1;;;45088:17:0;;;;;;;;;;;45051:54;13405:10;45118:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45118:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45118:53:0;;;;;;;;;;45187:48;;1091:41:1;;;45118:42:0;;13405:10;45187:48;;1064:18:1;45187:48:0;;;;;;;44964:279;;:::o;46042:342::-;46209:28;46219:4;46225:2;46229:7;46209:9;:28::i;:::-;46253:48;46276:4;46282:2;46286:7;46295:5;46253:22;:48::i;:::-;46248:129;;46325:40;;-1:-1:-1;;;46325:40:0;;;;;;;;;;;46248:129;46042:342;;;;:::o;58724:173::-;58812:4;58836:53;58855:6;58863:14;;58879:9;58836:18;:53::i;61053:265::-;14660:13;:11;:13::i;:::-;61160:9:::1;61155:156;61179:17;:24;61175:1;:28;61155:156;;;61225:10;61238:17;61256:1;61238:20;;;;;;;;:::i;:::-;;;;;;;61225:33;;61273:26;61283:2;61287:11;61273:9;:26::i;:::-;-1:-1:-1::0;61205:3:0;::::1;::::0;::::1;:::i;:::-;;;;61155:156;;61443:363:::0;61516:13;61550:16;61558:7;61550;:16::i;:::-;61542:76;;;;-1:-1:-1;;;61542:76:0;;18506:2:1;61542:76:0;;;18488:21:1;18545:2;18525:18;;;18518:30;18584:34;18564:18;;;18557:62;-1:-1:-1;;;18635:18:1;;;18628:45;18690:19;;61542:76:0;18304:411:1;61542:76:0;61629:28;61660:10;:8;:10::i;:::-;61629:41;;61719:1;61694:14;61688:28;:32;:110;;61786:12;61688:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61747:14;61763:18;:7;:16;:18::i;:::-;61730:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61681:117;61443:363;-1:-1:-1;;;61443:363:0:o;66566:133::-;14660:13;:11;:13::i;:::-;66619:12:::1;::::0;66653:37:::1;::::0;-1:-1:-1;;;66653:37:0;;66684:4:::1;66653:37;::::0;::::1;2230:51:1::0;-1:-1:-1;;;;;66619:12:0;;::::1;::::0;:21:::1;::::0;66641:10:::1;::::0;66619:12;;66653:22:::1;::::0;2203:18:1;;66653:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66619:72;::::0;-1:-1:-1;;;;;;66619:72:0::1;::::0;;;;;;-1:-1:-1;;;;;15064:32:1;;;66619:72:0::1;::::0;::::1;15046:51:1::0;15113:18;;;15106:34;15019:18;;66619:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;61908:105::-:0;14660:13;:11;:13::i;:::-;61980:14:::1;:25:::0;61908:105::o;59180:115::-;59239:7;59266:21;59280:6;59266:13;:21::i;58154:122::-;14660:13;:11;:13::i;:::-;58234:19:::1;:34:::0;58154:122::o;62366:97::-;14660:13;:11;:13::i;:::-;62434:11:::1;:21:::0;62366:97::o;15680:201::-;14660:13;:11;:13::i;:::-;-1:-1:-1;;;;;15769:22:0;::::1;15761:73;;;::::0;-1:-1:-1;;;15761:73:0;;19423:2:1;15761:73:0::1;::::0;::::1;19405:21:1::0;19462:2;19442:18;;;19435:30;19501:34;19481:18;;;19474:62;-1:-1:-1;;;19552:18:1;;;19545:36;19598:19;;15761:73:0::1;19221:402:1::0;15761:73:0::1;15845:28;15864:8;15845:18;:28::i;58391:97::-:0;14660:13;:11;:13::i;:::-;58459::::1;:21:::0;58391:97::o;58284:99::-;14660:13;:11;:13::i;:::-;58353:14:::1;:22:::0;58284:99::o;59001:171::-;59123:40;;;;;;;19813:19:1;;;;19870:2;19866:15;;;;-1:-1:-1;;19862:53:1;19848:12;;;19841:75;19932:12;;;;19925:28;;;;59123:40:0;;;;;;;;;;19969:12:1;;;;59123:40:0;;;59113:51;;;;;;59001:171::o;59941:743::-;60081:11;;60096:1;60081:16;60073:57;;;;-1:-1:-1;;;60073:57:0;;20194:2:1;60073:57:0;;;20176:21:1;20233:2;20213:18;;;20206:30;20272;20252:18;;;20245:58;20320:18;;60073:57:0;19992:352:1;60073:57:0;60151:58;60165:35;60172:10;60184:6;60192:7;60165:6;:35::i;:::-;60202:6;;60151:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60151:13:0;;-1:-1:-1;;;60151:58:0:i;:::-;60143:84;;;;-1:-1:-1;;;60143:84:0;;13487:2:1;60143:84:0;;;13469:21:1;13526:2;13506:18;;;13499:30;-1:-1:-1;;;13545:18:1;;;13538:43;13598:18;;60143:84:0;13285:337:1;60143:84:0;60287:10;;60272:11;60256:13;39718:12;;39526:7;39702:13;:28;;39482:271;60256:13;:27;;;;:::i;:::-;:41;;60248:72;;;;-1:-1:-1;;;60248:72:0;;;;;;;:::i;:::-;60371:10;60350:32;;;;:20;:32;;;;;;60401:7;;60350:46;;60385:11;;60350:46;:::i;:::-;60349:59;;60341:95;;;;-1:-1:-1;;;60341:95:0;;14176:2:1;60341:95:0;;;14158:21:1;14215:2;14195:18;;;14188:30;-1:-1:-1;;;14234:18:1;;;14227:53;14297:18;;60341:95:0;13974:347:1;60341:95:0;60487:11;60470:14;;:28;;;;:::i;:::-;60457:9;:41;;60449:70;;;;-1:-1:-1;;;60449:70:0;;18161:2:1;60449:70:0;;;18143:21:1;18200:2;18180:18;;;18173:30;-1:-1:-1;;;18219:18:1;;;18212:46;18275:18;;60449:70:0;17959:340:1;60449:70:0;60548:34;60558:10;60570:11;60548:9;:34::i;:::-;60651:10;60630:32;;;;:20;:32;;;;;;:46;;60665:11;;60630:46;:::i;:::-;60616:10;60595:32;;;;:20;:32;;;;;:81;-1:-1:-1;;;;;59941:743:0:o;46639:144::-;46696:4;46730:13;;46720:7;:23;:55;;;;-1:-1:-1;;46748:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46748:27:0;;;;46747:28;;46639:144::o;53845:196::-;53960:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53960:29:0;-1:-1:-1;;;;;53960:29:0;;;;;;;;;54005:28;;53960:24;;54005:28;;;;;;;53845:196;;;:::o;49346:2112::-;49461:35;49499:20;49511:7;49499:11;:20::i;:::-;49574:18;;49461:58;;-1:-1:-1;49532:22:0;;-1:-1:-1;;;;;49558:34:0;13405:10;-1:-1:-1;;;;;49558:34:0;;:101;;;-1:-1:-1;49626:18:0;;49609:50;;13405:10;45314:164;:::i;49609:50::-;49558:154;;;-1:-1:-1;13405:10:0;49676:20;49688:7;49676:11;:20::i;:::-;-1:-1:-1;;;;;49676:36:0;;49558:154;49532:181;;49731:17;49726:66;;49757:35;;-1:-1:-1;;;49757:35:0;;;;;;;;;;;49726:66;49829:4;-1:-1:-1;;;;;49807:26:0;:13;:18;;;-1:-1:-1;;;;;49807:26:0;;49803:67;;49842:28;;-1:-1:-1;;;49842:28:0;;;;;;;;;;;49803:67;-1:-1:-1;;;;;49885:16:0;;49881:52;;49910:23;;-1:-1:-1;;;49910:23:0;;;;;;;;;;;49881:52;49946:43;49968:4;49974:2;49978:7;49987:1;49946:21;:43::i;:::-;50054:49;50071:1;50075:7;50084:13;:18;;;50054:8;:49::i;:::-;-1:-1:-1;;;;;50399:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;50399:31:0;;;-1:-1:-1;;;;;50399:31:0;;;-1:-1:-1;;50399:31:0;;;;;;;50445:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50445:29:0;;;;;;;;;;;50491:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50536:61:0;;;;-1:-1:-1;;;50581:15:0;50536:61;;;;;;;;;;;50871:11;;;50901:24;;;;;:29;50871:11;;50901:29;50897:445;;51126:13;;51112:11;:27;51108:219;;;51196:18;;;51164:24;;;:11;:24;;;;;;;;:50;;51279:28;;;;-1:-1:-1;;;;;51237:70:0;-1:-1:-1;;;51237:70:0;-1:-1:-1;;;;;;51237:70:0;;;-1:-1:-1;;;;;51164:50:0;;;51237:70;;;;;;;51108:219;50374:979;51389:7;51385:2;-1:-1:-1;;;;;51370:27:0;51379:4;-1:-1:-1;;;;;51370:27:0;;;;;;;;;;;51408:42;49450:2008;;49346:2112;;;:::o;62471:120::-;62550:33;62560:9;62571:11;62550:9;:33::i;14939:132::-;14847:6;;-1:-1:-1;;;;;14847:6:0;13405:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;20551:2:1;14995:68:0;;;20533:21:1;;;20570:18;;;20563:30;20629:34;20609:18;;;20602:62;20681:18;;14995:68:0;20349:356:1;41849:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;42015:13:0;;41959:7;;42008:20;;42004:861;;;42049:31;42083:17;;;:11;:17;;;;;;;;;42049:51;;;;;;;;;-1:-1:-1;;;;;42049:51:0;;;;-1:-1:-1;;;42049:51:0;;-1:-1:-1;;;;;42049:51:0;;;;;;;;-1:-1:-1;;;42049:51:0;;;;;;;;;;;;;;42119:731;;42169:14;;-1:-1:-1;;;;;42169:28:0;;42165:101;;42233:9;41849:1083;-1:-1:-1;;;41849:1083:0:o;42165:101::-;-1:-1:-1;;;42610:6:0;42655:17;;;;:11;:17;;;;;;;;;42643:29;;;;;;;;;-1:-1:-1;;;;;42643:29:0;;;;;-1:-1:-1;;;42643:29:0;;-1:-1:-1;;;;;42643:29:0;;;;;;;;-1:-1:-1;;;42643:29:0;;;;;;;;;;;;;42703:28;42699:109;;42771:9;41849:1083;-1:-1:-1;;;41849:1083:0:o;42699:109::-;42570:261;;;42030:835;42004:861;42893:31;;-1:-1:-1;;;42893:31:0;;;;;;;;;;;16041:191;16134:6;;;-1:-1:-1;;;;;16151:17:0;;;-1:-1:-1;;;;;;16151:17:0;;;;;;;16184:40;;16134:6;;;16151:17;16134:6;;16184:40;;16115:16;;16184:40;16104:128;16041:191;:::o;28508:190::-;28633:4;28686;28657:25;28670:5;28677:4;28657:12;:25::i;:::-;:33;;28508:190;-1:-1:-1;;;;28508:190:0:o;54606:790::-;54761:4;-1:-1:-1;;;;;54782:13:0;;17767:19;:23;54778:611;;54818:72;;-1:-1:-1;;;54818:72:0;;-1:-1:-1;;;;;54818:36:0;;;;;:72;;13405:10;;54869:4;;54875:7;;54884:5;;54818:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54818:72:0;;;;;;;;-1:-1:-1;;54818:72:0;;;;;;;;;;;;:::i;:::-;;;54814:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55064:6;:13;55081:1;55064:18;55060:259;;55114:40;;-1:-1:-1;;;55114:40:0;;;;;;;;;;;55060:259;55269:6;55263:13;55254:6;55250:2;55246:15;55239:38;54814:520;-1:-1:-1;;;;;;54941:55:0;-1:-1:-1;;;54941:55:0;;-1:-1:-1;54934:62:0;;54778:611;-1:-1:-1;55373:4:0;54778:611;54606:790;;;;;;:::o;61326:109::-;61386:13;61419:8;61412:15;;;;;:::i;25222:723::-;25278:13;25499:5;25508:1;25499:10;25495:53;;-1:-1:-1;;25526:10:0;;;;;;;;;;;;-1:-1:-1;;;25526:10:0;;;;;25222:723::o;25495:53::-;25573:5;25558:12;25614:78;25621:9;;25614:78;;25647:8;;;;:::i;:::-;;-1:-1:-1;25670:10:0;;-1:-1:-1;25678:2:0;25670:10;;:::i;:::-;;;25614:78;;;25702:19;25734:6;-1:-1:-1;;;;;25724:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25724:17:0;;25702:39;;25752:154;25759:10;;25752:154;;25786:11;25796:1;25786:11;;:::i;:::-;;-1:-1:-1;25855:10:0;25863:2;25855:5;:10;:::i;:::-;25842:24;;:2;:24;:::i;:::-;25829:39;;25812:6;25819;25812:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25812:56:0;;;;;;;;-1:-1:-1;25883:11:0;25892:2;25883:11;;:::i;:::-;;;25752:154;;40482:207;40543:7;-1:-1:-1;;;;;40567:19:0;;40563:59;;40595:27;;-1:-1:-1;;;40595:27:0;;;;;;;;;;;40563:59;-1:-1:-1;;;;;;40648:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;40648:32:0;;-1:-1:-1;;;;;40648:32:0;;40482:207::o;65649:758::-;-1:-1:-1;;;;;65856:18:0;;;;;;:60;;-1:-1:-1;65878:30:0;;;;:16;:30;;;;;;;;:38;;:30;:38;65856:60;65852:548;;;-1:-1:-1;;;;;65967:26:0;;;65933:31;65967:26;;;:20;:26;;;;;;66040:24;;;;;;;66100:12;65988:4;66100:6;:12::i;:::-;66081:31;;66150:15;66127:20;;;;:38;;;;66205:22;;;;:26;;66127:20;66205:26;:::i;:::-;66180:22;;;:51;66265:10;66272:2;66265:6;:10::i;:::-;66248:27;;66311:15;66290:18;;;;:36;;;;66364:20;;;;:24;;;:::i;:::-;66341:20;;;;:47;-1:-1:-1;65649:758:0;;;;:::o;46791:104::-;46860:27;46870:2;46874:8;46860:27;;;;;;;;;;;;:9;:27::i;29375:296::-;29458:7;29501:4;29458:7;29516:118;29540:5;:12;29536:1;:16;29516:118;;;29589:33;29599:12;29613:5;29619:1;29613:8;;;;;;;;:::i;:::-;;;;;;;29589:9;:33::i;:::-;29574:48;-1:-1:-1;29554:3:0;;;;:::i;:::-;;;;29516:118;;;-1:-1:-1;29651:12:0;29375:296;-1:-1:-1;;;29375:296:0:o;47258:163::-;47381:32;47387:2;47391:8;47401:5;47408:4;47381:5;:32::i;35582:149::-;35645:7;35676:1;35672;:5;:51;;35807:13;35901:15;;;35937:4;35930:15;;;35984:4;35968:21;;35672:51;;;35807:13;35901:15;;;35937:4;35930:15;;;35984:4;35968:21;;35680:20;35739:268;47680:1412;47819:20;47842:13;-1:-1:-1;;;;;47870:16:0;;47866:48;;47895:19;;-1:-1:-1;;;47895:19:0;;;;;;;;;;;47866:48;47929:8;47941:1;47929:13;47925:44;;47951:18;;-1:-1:-1;;;47951:18:0;;;;;;;;;;;47925:44;47982:61;48012:1;48016:2;48020:12;48034:8;47982:21;:61::i;:::-;-1:-1:-1;;;;;48320:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;48379:49:0;;-1:-1:-1;;;;;48320:44:0;;;;;;;48379:49;;;-1:-1:-1;;;;;48320:44:0;;;;;;48379:49;;;;;;;;;;;;;;;;48445:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48495:66:0;;;;-1:-1:-1;;;48545:15:0;48495:66;;;;;;;;;;;48445:25;;48630:328;48650:8;48646:1;:12;48630:328;;;48689:38;;48714:12;;-1:-1:-1;;;;;48689:38:0;;;48706:1;;48689:38;;48706:1;;48689:38;48750:4;:68;;;;;48759:59;48790:1;48794:2;48798:12;48812:5;48759:22;:59::i;:::-;48758:60;48750:68;48746:164;;;48850:40;;-1:-1:-1;;;48850:40:0;;;;;;;;;;;48746:164;48928:14;;;;;48660:3;48630:328;;;-1:-1:-1;48974:13:0;:28;49024:60;46042:342;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;565:131::-;-1:-1:-1;;;;;;639:32:1;;629:43;;619:71;;686:1;683;676:12;701:245;759:6;812:2;800:9;791:7;787:23;783:32;780:52;;;828:1;825;818:12;780:52;867:9;854:23;886:30;910:5;886:30;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:367::-;2614:8;2624:6;2678:3;2671:4;2663:6;2659:17;2655:27;2645:55;;2696:1;2693;2686:12;2645:55;-1:-1:-1;2719:20:1;;-1:-1:-1;;;;;2751:30:1;;2748:50;;;2794:1;2791;2784:12;2748:50;2831:4;2823:6;2819:17;2807:29;;2891:3;2884:4;2874:6;2871:1;2867:14;2859:6;2855:27;2851:38;2848:47;2845:67;;;2908:1;2905;2898:12;2845:67;2551:367;;;;;:::o;2923:437::-;3009:6;3017;3070:2;3058:9;3049:7;3045:23;3041:32;3038:52;;;3086:1;3083;3076:12;3038:52;3126:9;3113:23;-1:-1:-1;;;;;3151:6:1;3148:30;3145:50;;;3191:1;3188;3181:12;3145:50;3230:70;3292:7;3283:6;3272:9;3268:22;3230:70;:::i;:::-;3319:8;;3204:96;;-1:-1:-1;2923:437:1;-1:-1:-1;;;;2923:437:1:o;3365:328::-;3442:6;3450;3458;3511:2;3499:9;3490:7;3486:23;3482:32;3479:52;;;3527:1;3524;3517:12;3479:52;3550:29;3569:9;3550:29;:::i;:::-;3540:39;;3598:38;3632:2;3621:9;3617:18;3598:38;:::i;:::-;3588:48;;3683:2;3672:9;3668:18;3655:32;3645:42;;3365:328;;;;;:::o;3698:642::-;3811:6;3819;3827;3835;3843;3896:3;3884:9;3875:7;3871:23;3867:33;3864:53;;;3913:1;3910;3903:12;3864:53;3949:9;3936:23;3926:33;;4006:2;3995:9;3991:18;3978:32;3968:42;;4057:2;4046:9;4042:18;4029:32;4019:42;;4112:2;4101:9;4097:18;4084:32;-1:-1:-1;;;;;4131:6:1;4128:30;4125:50;;;4171:1;4168;4161:12;4125:50;4210:70;4272:7;4263:6;4252:9;4248:22;4210:70;:::i;:::-;3698:642;;;;-1:-1:-1;3698:642:1;;-1:-1:-1;4299:8:1;;4184:96;3698:642;-1:-1:-1;;;3698:642:1:o;4345:127::-;4406:10;4401:3;4397:20;4394:1;4387:31;4437:4;4434:1;4427:15;4461:4;4458:1;4451:15;4477:275;4548:2;4542:9;4613:2;4594:13;;-1:-1:-1;;4590:27:1;4578:40;;-1:-1:-1;;;;;4633:34:1;;4669:22;;;4630:62;4627:88;;;4695:18;;:::i;:::-;4731:2;4724:22;4477:275;;-1:-1:-1;4477:275:1:o;4757:407::-;4822:5;-1:-1:-1;;;;;4848:6:1;4845:30;4842:56;;;4878:18;;:::i;:::-;4916:57;4961:2;4940:15;;-1:-1:-1;;4936:29:1;4967:4;4932:40;4916:57;:::i;:::-;4907:66;;4996:6;4989:5;4982:21;5036:3;5027:6;5022:3;5018:16;5015:25;5012:45;;;5053:1;5050;5043:12;5012:45;5102:6;5097:3;5090:4;5083:5;5079:16;5066:43;5156:1;5149:4;5140:6;5133:5;5129:18;5125:29;5118:40;4757:407;;;;;:::o;5169:451::-;5238:6;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;5347:9;5334:23;-1:-1:-1;;;;;5372:6:1;5369:30;5366:50;;;5412:1;5409;5402:12;5366:50;5435:22;;5488:4;5480:13;;5476:27;-1:-1:-1;5466:55:1;;5517:1;5514;5507:12;5466:55;5540:74;5606:7;5601:2;5588:16;5583:2;5579;5575:11;5540:74;:::i;5625:632::-;5796:2;5848:21;;;5918:13;;5821:18;;;5940:22;;;5767:4;;5796:2;6019:15;;;;5993:2;5978:18;;;5767:4;6062:169;6076:6;6073:1;6070:13;6062:169;;;6137:13;;6125:26;;6206:15;;;;6171:12;;;;6098:1;6091:9;6062:169;;;-1:-1:-1;6248:3:1;;5625:632;-1:-1:-1;;;;;;5625:632:1:o;6262:183::-;6322:4;-1:-1:-1;;;;;6347:6:1;6344:30;6341:56;;;6377:18;;:::i;:::-;-1:-1:-1;6422:1:1;6418:14;6434:4;6414:25;;6262:183::o;6450:959::-;6543:6;6551;6604:2;6592:9;6583:7;6579:23;6575:32;6572:52;;;6620:1;6617;6610:12;6572:52;6656:9;6643:23;6633:33;;6685:2;6738;6727:9;6723:18;6710:32;-1:-1:-1;;;;;6757:6:1;6754:30;6751:50;;;6797:1;6794;6787:12;6751:50;6820:22;;6873:4;6865:13;;6861:27;-1:-1:-1;6851:55:1;;6902:1;6899;6892:12;6851:55;6938:2;6925:16;6961:60;6977:43;7017:2;6977:43;:::i;:::-;6961:60;:::i;:::-;7055:15;;;7137:1;7133:10;;;;7125:19;;7121:28;;;7086:12;;;;7161:19;;;7158:39;;;7193:1;7190;7183:12;7158:39;7217:11;;;;7237:142;7253:6;7248:3;7245:15;7237:142;;;7319:17;;7307:30;;7270:12;;;;7357;;;;7237:142;;;7398:5;7388:15;;;;;;;6450:959;;;;;:::o;8081:118::-;8167:5;8160:13;8153:21;8146:5;8143:32;8133:60;;8189:1;8186;8179:12;8204:315;8269:6;8277;8330:2;8318:9;8309:7;8305:23;8301:32;8298:52;;;8346:1;8343;8336:12;8298:52;8369:29;8388:9;8369:29;:::i;:::-;8359:39;;8448:2;8437:9;8433:18;8420:32;8461:28;8483:5;8461:28;:::i;:::-;8508:5;8498:15;;;8204:315;;;;;:::o;8524:667::-;8619:6;8627;8635;8643;8696:3;8684:9;8675:7;8671:23;8667:33;8664:53;;;8713:1;8710;8703:12;8664:53;8736:29;8755:9;8736:29;:::i;:::-;8726:39;;8784:38;8818:2;8807:9;8803:18;8784:38;:::i;:::-;8774:48;;8869:2;8858:9;8854:18;8841:32;8831:42;;8924:2;8913:9;8909:18;8896:32;-1:-1:-1;;;;;8943:6:1;8940:30;8937:50;;;8983:1;8980;8973:12;8937:50;9006:22;;9059:4;9051:13;;9047:27;-1:-1:-1;9037:55:1;;9088:1;9085;9078:12;9037:55;9111:74;9177:7;9172:2;9159:16;9154:2;9150;9146:11;9111:74;:::i;:::-;9101:84;;;8524:667;;;;;;;:::o;9196:967::-;9289:6;9297;9350:2;9338:9;9329:7;9325:23;9321:32;9318:52;;;9366:1;9363;9356:12;9318:52;9406:9;9393:23;-1:-1:-1;;;;;9431:6:1;9428:30;9425:50;;;9471:1;9468;9461:12;9425:50;9494:22;;9547:4;9539:13;;9535:27;-1:-1:-1;9525:55:1;;9576:1;9573;9566:12;9525:55;9612:2;9599:16;9634:4;9658:60;9674:43;9714:2;9674:43;:::i;9658:60::-;9752:15;;;9834:1;9830:10;;;;9822:19;;9818:28;;;9783:12;;;;9858:19;;;9855:39;;;9890:1;9887;9880:12;9855:39;9914:11;;;;9934:148;9950:6;9945:3;9942:15;9934:148;;;10016:23;10035:3;10016:23;:::i;:::-;10004:36;;9967:12;;;;10060;;;;9934:148;;;10101:5;10138:18;;;;10125:32;;-1:-1:-1;;;;;;9196:967:1:o;10492:260::-;10560:6;10568;10621:2;10609:9;10600:7;10596:23;10592:32;10589:52;;;10637:1;10634;10627:12;10589:52;10660:29;10679:9;10660:29;:::i;:::-;10650:39;;10708:38;10742:2;10731:9;10727:18;10708:38;:::i;:::-;10698:48;;10492:260;;;;;:::o;10942:322::-;11019:6;11027;11035;11088:2;11076:9;11067:7;11063:23;11059:32;11056:52;;;11104:1;11101;11094:12;11056:52;11127:29;11146:9;11127:29;:::i;:::-;11117:39;11203:2;11188:18;;11175:32;;-1:-1:-1;11254:2:1;11239:18;;;11226:32;;10942:322;-1:-1:-1;;;10942:322:1:o;11451:127::-;11512:10;11507:3;11503:20;11500:1;11493:31;11543:4;11540:1;11533:15;11567:4;11564:1;11557:15;11583:128;11650:9;;;11671:11;;;11668:37;;;11685:18;;:::i;11716:168::-;11756:7;11822:1;11818;11814:6;11810:14;11807:1;11804:21;11799:1;11792:9;11785:17;11781:45;11778:71;;;11829:18;;:::i;:::-;-1:-1:-1;11869:9:1;;11716:168::o;11889:127::-;11950:10;11945:3;11941:20;11938:1;11931:31;11981:4;11978:1;11971:15;12005:4;12002:1;11995:15;12021:120;12061:1;12087;12077:35;;12092:18;;:::i;:::-;-1:-1:-1;12126:9:1;;12021:120::o;12146:125::-;12211:9;;;12232:10;;;12229:36;;;12245:18;;:::i;12276:380::-;12355:1;12351:12;;;;12398;;;12419:61;;12473:4;12465:6;12461:17;12451:27;;12419:61;12526:2;12518:6;12515:14;12495:18;12492:38;12489:161;;12572:10;12567:3;12563:20;12560:1;12553:31;12607:4;12604:1;12597:15;12635:4;12632:1;12625:15;12661:127;12722:10;12717:3;12713:20;12710:1;12703:31;12753:4;12750:1;12743:15;12777:4;12774:1;12767:15;12793:135;12832:3;12853:17;;;12850:43;;12873:18;;:::i;:::-;-1:-1:-1;12920:1:1;12909:13;;12793:135::o;13627:342::-;13829:2;13811:21;;;13868:2;13848:18;;;13841:30;-1:-1:-1;;;13902:2:1;13887:18;;13880:48;13960:2;13945:18;;13627:342::o;14326:184::-;14396:6;14449:2;14437:9;14428:7;14424:23;14420:32;14417:52;;;14465:1;14462;14455:12;14417:52;-1:-1:-1;14488:16:1;;14326:184;-1:-1:-1;14326:184:1:o;15151:245::-;15218:6;15271:2;15259:9;15250:7;15246:23;15242:32;15239:52;;;15287:1;15284;15277:12;15239:52;15319:9;15313:16;15338:28;15360:5;15338:28;:::i;15527:545::-;15629:2;15624:3;15621:11;15618:448;;;15665:1;15690:5;15686:2;15679:17;15735:4;15731:2;15721:19;15805:2;15793:10;15789:19;15786:1;15782:27;15776:4;15772:38;15841:4;15829:10;15826:20;15823:47;;;-1:-1:-1;15864:4:1;15823:47;15919:2;15914:3;15910:12;15907:1;15903:20;15897:4;15893:31;15883:41;;15974:82;15992:2;15985:5;15982:13;15974:82;;;16037:17;;;16018:1;16007:13;15974:82;;;15978:3;;;15527:545;;;:::o;16248:1352::-;16374:3;16368:10;-1:-1:-1;;;;;16393:6:1;16390:30;16387:56;;;16423:18;;:::i;:::-;16452:97;16542:6;16502:38;16534:4;16528:11;16502:38;:::i;:::-;16496:4;16452:97;:::i;:::-;16604:4;;16668:2;16657:14;;16685:1;16680:663;;;;17387:1;17404:6;17401:89;;;-1:-1:-1;17456:19:1;;;17450:26;17401:89;-1:-1:-1;;16205:1:1;16201:11;;;16197:24;16193:29;16183:40;16229:1;16225:11;;;16180:57;17503:81;;16650:944;;16680:663;15474:1;15467:14;;;15511:4;15498:18;;-1:-1:-1;;16716:20:1;;;16834:236;16848:7;16845:1;16842:14;16834:236;;;16937:19;;;16931:26;16916:42;;17029:27;;;;16997:1;16985:14;;;;16864:19;;16834:236;;;16838:3;17098:6;17089:7;17086:19;17083:201;;;17159:19;;;17153:26;-1:-1:-1;;17242:1:1;17238:14;;;17254:3;17234:24;17230:37;17226:42;17211:58;17196:74;;17083:201;-1:-1:-1;;;;;17330:1:1;17314:14;;;17310:22;17297:36;;-1:-1:-1;16248:1352:1:o;18720:496::-;18899:3;18937:6;18931:13;18953:66;19012:6;19007:3;19000:4;18992:6;18988:17;18953:66;:::i;:::-;19082:13;;19041:16;;;;19104:70;19082:13;19041:16;19151:4;19139:17;;19104:70;:::i;:::-;19190:20;;18720:496;-1:-1:-1;;;;18720:496:1:o;20710:489::-;-1:-1:-1;;;;;20979:15:1;;;20961:34;;21031:15;;21026:2;21011:18;;21004:43;21078:2;21063:18;;21056:34;;;21126:3;21121:2;21106:18;;21099:31;;;20904:4;;21147:46;;21173:19;;21165:6;21147:46;:::i;:::-;21139:54;20710:489;-1:-1:-1;;;;;;20710:489:1:o;21204:249::-;21273:6;21326:2;21314:9;21305:7;21301:23;21297:32;21294:52;;;21342:1;21339;21332:12;21294:52;21374:9;21368:16;21393:30;21417:5;21393:30;:::i;21458:112::-;21490:1;21516;21506:35;;21521:18;;:::i;:::-;-1:-1:-1;21555:9:1;;21458:112::o

Swarm Source

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