ETH Price: $2,595.63 (-2.35%)

Token

Crasher/Meridian Hoodie NFT (C98HUDY)
 

Overview

Max Total Supply

60 C98HUDY

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 C98HUDY
0x641daa44170d795982a54f05d0fc94c3d6293c51
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:
C98HUDY

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, 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_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr && 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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

    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;
            uint256 end = updatedIndex + quantity;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: contracts/NFT.sol

pragma solidity ^0.8.13;



contract C98HUDY is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    enum MintState {
        PUBLIC,
        WHITELIST,
        CLOSED
    }

    uint16 public constant MAX_SUPPLY = 150;

    uint256 public constant PRICE = 0.00 ether; // price is 0.00 ether.

    // the base uri for the token
    string public baseURI;

    mapping(address => bool) private _whitelisted;

    mapping(address => bool) private _minted;

    // the state of whether minting is allowed.
    MintState private mintingState = MintState.CLOSED;

    constructor() ERC721A("Crasher/Meridian Hoodie NFT", "C98HUDY") {}

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

    function setBaseURI(string calldata _uri) external onlyOwner {
        baseURI = _uri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return bytes(baseURI).length > 0
                        ? string(
                            abi.encodePacked(
                                baseURI,
                                
                                ""))
                        : "";
    }

    modifier mintOpen() {
        require(mintingState != MintState.CLOSED, "minting not active."); //0 is public, 1 is whitelist, 2 is closed
        _;
    }

    modifier whitelistOnly() {
        require(mintingState == MintState.WHITELIST);
        require(_whitelisted[msg.sender], "not whitelisted");
        _;
    }

    function addWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelisted[addresses[i]] = true;
        }
    }

    function removeWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelisted[addresses[i]] = false;
        }
    }

    function ownerMint(uint16 amount) external onlyOwner {
        uint256 totalSupply = totalSupply();
        // ensure minting the amount entered would not mint over the max supply
        require(
            totalSupply + amount < MAX_SUPPLY,
            "mint amount would be out of range."
        );

          _safeMint(_msgSender(), amount);
    }

    // whitelist only mint function
    function mint() external payable nonReentrant whitelistOnly {
        require(!_minted[msg.sender], "already minted.");
        // ensure minting the amount entered would not mint over the max supply
        require(
            totalSupply() < MAX_SUPPLY,
            "mint amount would be out of range."
        );
        // ensure enough ether was sent - don't allow for overpayment
        require(msg.value == PRICE, "not enough ether sent");
        _safeMint(msg.sender, 1);

        _minted[msg.sender] = true;
    }

    // toggles the state of mint
    function setMintingState(MintState state) external onlyOwner {
        mintingState = state;
    }

    // Issue a withdrawal to a specific address
    function withdraw(address sendTo) external onlyOwner {
        (bool ok, ) = payable(sendTo).call{value: address(this).balance}("");
        require(ok);
    }
}

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":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhitelist","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum C98HUDY.MintState","name":"state","type":"uint8"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sendTo","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526002600d60006101000a81548160ff021916908360028111156200002d576200002c620001ed565b5b02179055503480156200003f57600080fd5b506040518060400160405280601b81526020017f437261736865722f4d6572696469616e20486f6f646965204e465400000000008152506040518060400160405280600781526020017f43393848554459000000000000000000000000000000000000000000000000008152508160029081620000bd919062000496565b508060039081620000cf919062000496565b50620000e06200011660201b60201c565b600081905550505062000108620000fc6200011f60201b60201c565b6200012760201b60201c565b60016009819055506200057d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b602082108103620002b457620002b362000256565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200031e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002df565b6200032a8683620002df565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000377620003716200036b8462000342565b6200034c565b62000342565b9050919050565b6000819050919050565b620003938362000356565b620003ab620003a2826200037e565b848454620002ec565b825550505050565b600090565b620003c2620003b3565b620003cf81848462000388565b505050565b5b81811015620003f757620003eb600082620003b8565b600181019050620003d5565b5050565b601f82111562000446576200041081620002ba565b6200041b84620002cf565b810160208510156200042b578190505b620004436200043a85620002cf565b830182620003d4565b50505b505050565b600082821c905092915050565b60006200046b600019846008026200044b565b1980831691505092915050565b600062000486838362000458565b9150826002028217905092915050565b620004a1826200021c565b67ffffffffffffffff811115620004bd57620004bc62000227565b5b620004c9825462000285565b620004d6828285620003fb565b600060209050601f8311600181146200050e5760008415620004f9578287015190505b62000505858262000478565b86555062000575565b601f1984166200051e86620002ba565b60005b82811015620005485784890151825560018201915060208501945060208101905062000521565b8683101562000568578489015162000564601f89168262000458565b8355505b6001600288020188555050505b505050505050565b613996806200058d6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610591578063edac985b146105ce578063f2fde38b146105f7578063fd52bd76146106205761019c565b8063a22cb46514610502578063b88d4fde1461052b578063c87b56dd146105545761019c565b8063715018a6116100c6578063715018a61461046a5780638d859f3e146104815780638da5cb5b146104ac57806395d89b41146104d75761019c565b80636352211e146103c55780636c0360eb1461040257806370a082311461042d5761019c565b8063232452161161015957806336e8942f1161013357806336e8942f1461032157806342842e0e1461034a57806351cff8d91461037357806355f804b31461039c5761019c565b806323245216146102a457806323b872dd146102cd57806332cb6b0c146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612821565b610649565b6040516101d59190612869565b60405180910390f35b3480156101ea57600080fd5b506101f361072b565b6040516102009190612914565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061296c565b6107bd565b60405161023d91906129da565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612a21565b610839565b005b610277610943565b005b34801561028557600080fd5b5061028e610be7565b60405161029b9190612a70565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612af0565b610bfe565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612b3d565b610d1f565b005b34801561030257600080fd5b5061030b610d2f565b6040516103189190612bad565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612bf4565b610d34565b005b34801561035657600080fd5b50610371600480360381019061036c9190612b3d565b610e2b565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612c21565b610e4b565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612ca4565b610f41565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061296c565b610fd3565b6040516103f991906129da565b60405180910390f35b34801561040e57600080fd5b50610417610fe9565b6040516104249190612914565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612c21565b611077565b6040516104619190612a70565b60405180910390f35b34801561047657600080fd5b5061047f611146565b005b34801561048d57600080fd5b506104966111ce565b6040516104a39190612a70565b60405180910390f35b3480156104b857600080fd5b506104c16111d3565b6040516104ce91906129da565b60405180910390f35b3480156104e357600080fd5b506104ec6111fd565b6040516104f99190612914565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612d1d565b61128f565b005b34801561053757600080fd5b50610552600480360381019061054d9190612e8d565b611406565b005b34801561056057600080fd5b5061057b6004803603810190610576919061296c565b611482565b6040516105889190612914565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612f10565b611520565b6040516105c59190612869565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612af0565b6115b4565b005b34801561060357600080fd5b5061061e60048036038101906106199190612c21565b6116d5565b005b34801561062c57600080fd5b5061064760048036038101906106429190612f75565b6117cc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610724575061072382611875565b5b9050919050565b60606002805461073a90612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461076690612fd1565b80156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107c8826118df565b6107fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084482610fd3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ab576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ca61192d565b73ffffffffffffffffffffffffffffffffffffffff16141580156108fc57506108fa816108f561192d565b611520565b155b15610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093e838383611935565b505050565b600260095403610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f9061304e565b60405180910390fd5b6002600981905550600160028111156109a4576109a361306e565b5b600d60009054906101000a900460ff1660028111156109c6576109c561306e565b5b146109d057600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906130e9565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090613155565b60405180910390fd5b609661ffff16610af7610be7565b10610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906131e7565b60405180910390fd5b60003414610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613253565b60405180910390fd5b610b853360016119e7565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600981905550565b6000610bf1611a05565b6001546000540303905090565b610c0661192d565b73ffffffffffffffffffffffffffffffffffffffff16610c246111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71906132bf565b60405180910390fd5b60005b82829050811015610d1a576000600b6000858585818110610ca157610ca06132df565b5b9050602002016020810190610cb69190612c21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d129061333d565b915050610c7d565b505050565b610d2a838383611a0e565b505050565b609681565b610d3c61192d565b73ffffffffffffffffffffffffffffffffffffffff16610d5a6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906132bf565b60405180910390fd5b6000610dba610be7565b9050609661ffff168261ffff1682610dd29190613385565b10610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e09906131e7565b60405180910390fd5b610e27610e1d61192d565b8361ffff166119e7565b5050565b610e4683838360405180602001604052806000815250611406565b505050565b610e5361192d565b73ffffffffffffffffffffffffffffffffffffffff16610e716111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906132bf565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610eed906133ea565b60006040518083038185875af1925050503d8060008114610f2a576040519150601f19603f3d011682016040523d82523d6000602084013e610f2f565b606091505b5050905080610f3d57600080fd5b5050565b610f4961192d565b73ffffffffffffffffffffffffffffffffffffffff16610f676111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906132bf565b60405180910390fd5b8181600a9182610fce9291906135b6565b505050565b6000610fde82611ec2565b600001519050919050565b600a8054610ff690612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461102290612fd1565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61114e61192d565b73ffffffffffffffffffffffffffffffffffffffff1661116c6111d3565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b9906132bf565b60405180910390fd5b6111cc6000612151565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120c90612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612fd1565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b61129761192d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130861192d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b561192d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190612869565b60405180910390a35050565b611411848484611a0e565b6114308373ffffffffffffffffffffffffffffffffffffffff16612217565b801561144557506114438484848461223a565b155b1561147c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148d826118df565b6114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906136f8565b60405180910390fd5b6000600a80546114db90612fd1565b9050116114f75760405180602001604052806000815250611519565b600a60405160200161150991906137c9565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc61192d565b73ffffffffffffffffffffffffffffffffffffffff166115da6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906132bf565b60405180910390fd5b60005b828290508110156116d0576001600b6000858585818110611657576116566132df565b5b905060200201602081019061166c9190612c21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116c89061333d565b915050611633565b505050565b6116dd61192d565b73ffffffffffffffffffffffffffffffffffffffff166116fb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611748906132bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b79061385d565b60405180910390fd5b6117c981612151565b50565b6117d461192d565b73ffffffffffffffffffffffffffffffffffffffff166117f26111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906132bf565b60405180910390fd5b80600d60006101000a81548160ff0219169083600281111561186d5761186c61306e565b5b021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118ea611a05565b111580156118f9575060005482105b8015611926575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611a0182826040518060200160405280600081525061238a565b5050565b60006001905090565b6000611a1982611ec2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a84576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611aa561192d565b73ffffffffffffffffffffffffffffffffffffffff161480611ad45750611ad385611ace61192d565b611520565b5b80611b195750611ae261192d565b73ffffffffffffffffffffffffffffffffffffffff16611b01846107bd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b52576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bb8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc5858585600161239c565b611bd160008487611935565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e50576000548214611e4f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebb85858560016123a2565b5050505050565b611eca612772565b600082905080611ed8611a05565b11158015611ee7575060005481105b1561211a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161211857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffc57809250505061214c565b5b60011561211757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211257809250505061214c565b611ffd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226061192d565b8786866040518563ffffffff1660e01b815260040161228294939291906138d2565b6020604051808303816000875af19250505080156122be57506040513d601f19601f820116820180604052508101906122bb9190613933565b60015b612337573d80600081146122ee576040519150601f19603f3d011682016040523d82523d6000602084013e6122f3565b606091505b50600081510361232f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61239783838360016123a8565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612414576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361244e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61245b600086838761239c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561262557506126248773ffffffffffffffffffffffffffffffffffffffff16612217565b5b156126ea575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269a600088848060010195508861223a565b6126d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361262b5782600054146126e557600080fd5b612755565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036126eb575b81600081905550505061276b60008683876123a2565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127fe816127c9565b811461280957600080fd5b50565b60008135905061281b816127f5565b92915050565b600060208284031215612837576128366127bf565b5b60006128458482850161280c565b91505092915050565b60008115159050919050565b6128638161284e565b82525050565b600060208201905061287e600083018461285a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128be5780820151818401526020810190506128a3565b60008484015250505050565b6000601f19601f8301169050919050565b60006128e682612884565b6128f0818561288f565b93506129008185602086016128a0565b612909816128ca565b840191505092915050565b6000602082019050818103600083015261292e81846128db565b905092915050565b6000819050919050565b61294981612936565b811461295457600080fd5b50565b60008135905061296681612940565b92915050565b600060208284031215612982576129816127bf565b5b600061299084828501612957565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c482612999565b9050919050565b6129d4816129b9565b82525050565b60006020820190506129ef60008301846129cb565b92915050565b6129fe816129b9565b8114612a0957600080fd5b50565b600081359050612a1b816129f5565b92915050565b60008060408385031215612a3857612a376127bf565b5b6000612a4685828601612a0c565b9250506020612a5785828601612957565b9150509250929050565b612a6a81612936565b82525050565b6000602082019050612a856000830184612a61565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ab057612aaf612a8b565b5b8235905067ffffffffffffffff811115612acd57612acc612a90565b5b602083019150836020820283011115612ae957612ae8612a95565b5b9250929050565b60008060208385031215612b0757612b066127bf565b5b600083013567ffffffffffffffff811115612b2557612b246127c4565b5b612b3185828601612a9a565b92509250509250929050565b600080600060608486031215612b5657612b556127bf565b5b6000612b6486828701612a0c565b9350506020612b7586828701612a0c565b9250506040612b8686828701612957565b9150509250925092565b600061ffff82169050919050565b612ba781612b90565b82525050565b6000602082019050612bc26000830184612b9e565b92915050565b612bd181612b90565b8114612bdc57600080fd5b50565b600081359050612bee81612bc8565b92915050565b600060208284031215612c0a57612c096127bf565b5b6000612c1884828501612bdf565b91505092915050565b600060208284031215612c3757612c366127bf565b5b6000612c4584828501612a0c565b91505092915050565b60008083601f840112612c6457612c63612a8b565b5b8235905067ffffffffffffffff811115612c8157612c80612a90565b5b602083019150836001820283011115612c9d57612c9c612a95565b5b9250929050565b60008060208385031215612cbb57612cba6127bf565b5b600083013567ffffffffffffffff811115612cd957612cd86127c4565b5b612ce585828601612c4e565b92509250509250929050565b612cfa8161284e565b8114612d0557600080fd5b50565b600081359050612d1781612cf1565b92915050565b60008060408385031215612d3457612d336127bf565b5b6000612d4285828601612a0c565b9250506020612d5385828601612d08565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9a826128ca565b810181811067ffffffffffffffff82111715612db957612db8612d62565b5b80604052505050565b6000612dcc6127b5565b9050612dd88282612d91565b919050565b600067ffffffffffffffff821115612df857612df7612d62565b5b612e01826128ca565b9050602081019050919050565b82818337600083830152505050565b6000612e30612e2b84612ddd565b612dc2565b905082815260208101848484011115612e4c57612e4b612d5d565b5b612e57848285612e0e565b509392505050565b600082601f830112612e7457612e73612a8b565b5b8135612e84848260208601612e1d565b91505092915050565b60008060008060808587031215612ea757612ea66127bf565b5b6000612eb587828801612a0c565b9450506020612ec687828801612a0c565b9350506040612ed787828801612957565b925050606085013567ffffffffffffffff811115612ef857612ef76127c4565b5b612f0487828801612e5f565b91505092959194509250565b60008060408385031215612f2757612f266127bf565b5b6000612f3585828601612a0c565b9250506020612f4685828601612a0c565b9150509250929050565b60038110612f5d57600080fd5b50565b600081359050612f6f81612f50565b92915050565b600060208284031215612f8b57612f8a6127bf565b5b6000612f9984828501612f60565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fe957607f821691505b602082108103612ffc57612ffb612fa2565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613038601f8361288f565b915061304382613002565b602082019050919050565b600060208201905081810360008301526130678161302b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f6e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006130d3600f8361288f565b91506130de8261309d565b602082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b7f616c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b600061313f600f8361288f565b915061314a82613109565b602082019050919050565b6000602082019050818103600083015261316e81613132565b9050919050565b7f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006131d160228361288f565b91506131dc82613175565b604082019050919050565b60006020820190508181036000830152613200816131c4565b9050919050565b7f6e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061323d60158361288f565b915061324882613207565b602082019050919050565b6000602082019050818103600083015261326c81613230565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132a960208361288f565b91506132b482613273565b602082019050919050565b600060208201905081810360008301526132d88161329c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334882612936565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361337a5761337961330e565b5b600182019050919050565b600061339082612936565b915061339b83612936565b92508282019050808211156133b3576133b261330e565b5b92915050565b600081905092915050565b50565b60006133d46000836133b9565b91506133df826133c4565b600082019050919050565b60006133f5826133c7565b9150819050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261346c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342f565b613476868361342f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134b36134ae6134a984612936565b61348e565b612936565b9050919050565b6000819050919050565b6134cd83613498565b6134e16134d9826134ba565b84845461343c565b825550505050565b600090565b6134f66134e9565b6135018184846134c4565b505050565b5b818110156135255761351a6000826134ee565b600181019050613507565b5050565b601f82111561356a5761353b8161340a565b6135448461341f565b81016020851015613553578190505b61356761355f8561341f565b830182613506565b50505b505050565b600082821c905092915050565b600061358d6000198460080261356f565b1980831691505092915050565b60006135a6838361357c565b9150826002028217905092915050565b6135c083836133ff565b67ffffffffffffffff8111156135d9576135d8612d62565b5b6135e38254612fd1565b6135ee828285613529565b6000601f83116001811461361d576000841561360b578287013590505b613615858261359a565b86555061367d565b601f19841661362b8661340a565b60005b828110156136535784890135825560018201915060208501945060208101905061362e565b86831015613670578489013561366c601f89168261357c565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136e2602f8361288f565b91506136ed82613686565b604082019050919050565b60006020820190508181036000830152613711816136d5565b9050919050565b600081905092915050565b6000815461373081612fd1565b61373a8186613718565b94506001821660008114613755576001811461376a5761379d565b60ff198316865281151582028601935061379d565b6137738561340a565b60005b8381101561379557815481890152600182019150602081019050613776565b838801955050505b50505092915050565b60006137b3600083613718565b91506137be826133c4565b600082019050919050565b60006137d58284613723565b91506137e0826137a6565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061384760268361288f565b9150613852826137eb565b604082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138a48261387d565b6138ae8185613888565b93506138be8185602086016128a0565b6138c7816128ca565b840191505092915050565b60006080820190506138e760008301876129cb565b6138f460208301866129cb565b6139016040830185612a61565b81810360608301526139138184613899565b905095945050505050565b60008151905061392d816127f5565b92915050565b600060208284031215613949576139486127bf565b5b60006139578482850161391e565b9150509291505056fea264697066735822122030249f43976c9a5751f2e8812a2de66dc26d14d02b5f34b5f25dceffcda0302e64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610591578063edac985b146105ce578063f2fde38b146105f7578063fd52bd76146106205761019c565b8063a22cb46514610502578063b88d4fde1461052b578063c87b56dd146105545761019c565b8063715018a6116100c6578063715018a61461046a5780638d859f3e146104815780638da5cb5b146104ac57806395d89b41146104d75761019c565b80636352211e146103c55780636c0360eb1461040257806370a082311461042d5761019c565b8063232452161161015957806336e8942f1161013357806336e8942f1461032157806342842e0e1461034a57806351cff8d91461037357806355f804b31461039c5761019c565b806323245216146102a457806323b872dd146102cd57806332cb6b0c146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612821565b610649565b6040516101d59190612869565b60405180910390f35b3480156101ea57600080fd5b506101f361072b565b6040516102009190612914565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061296c565b6107bd565b60405161023d91906129da565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612a21565b610839565b005b610277610943565b005b34801561028557600080fd5b5061028e610be7565b60405161029b9190612a70565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612af0565b610bfe565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612b3d565b610d1f565b005b34801561030257600080fd5b5061030b610d2f565b6040516103189190612bad565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612bf4565b610d34565b005b34801561035657600080fd5b50610371600480360381019061036c9190612b3d565b610e2b565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612c21565b610e4b565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612ca4565b610f41565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061296c565b610fd3565b6040516103f991906129da565b60405180910390f35b34801561040e57600080fd5b50610417610fe9565b6040516104249190612914565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612c21565b611077565b6040516104619190612a70565b60405180910390f35b34801561047657600080fd5b5061047f611146565b005b34801561048d57600080fd5b506104966111ce565b6040516104a39190612a70565b60405180910390f35b3480156104b857600080fd5b506104c16111d3565b6040516104ce91906129da565b60405180910390f35b3480156104e357600080fd5b506104ec6111fd565b6040516104f99190612914565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612d1d565b61128f565b005b34801561053757600080fd5b50610552600480360381019061054d9190612e8d565b611406565b005b34801561056057600080fd5b5061057b6004803603810190610576919061296c565b611482565b6040516105889190612914565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612f10565b611520565b6040516105c59190612869565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612af0565b6115b4565b005b34801561060357600080fd5b5061061e60048036038101906106199190612c21565b6116d5565b005b34801561062c57600080fd5b5061064760048036038101906106429190612f75565b6117cc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610724575061072382611875565b5b9050919050565b60606002805461073a90612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461076690612fd1565b80156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107c8826118df565b6107fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084482610fd3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ab576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ca61192d565b73ffffffffffffffffffffffffffffffffffffffff16141580156108fc57506108fa816108f561192d565b611520565b155b15610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093e838383611935565b505050565b600260095403610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f9061304e565b60405180910390fd5b6002600981905550600160028111156109a4576109a361306e565b5b600d60009054906101000a900460ff1660028111156109c6576109c561306e565b5b146109d057600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906130e9565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090613155565b60405180910390fd5b609661ffff16610af7610be7565b10610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906131e7565b60405180910390fd5b60003414610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613253565b60405180910390fd5b610b853360016119e7565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600981905550565b6000610bf1611a05565b6001546000540303905090565b610c0661192d565b73ffffffffffffffffffffffffffffffffffffffff16610c246111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71906132bf565b60405180910390fd5b60005b82829050811015610d1a576000600b6000858585818110610ca157610ca06132df565b5b9050602002016020810190610cb69190612c21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d129061333d565b915050610c7d565b505050565b610d2a838383611a0e565b505050565b609681565b610d3c61192d565b73ffffffffffffffffffffffffffffffffffffffff16610d5a6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906132bf565b60405180910390fd5b6000610dba610be7565b9050609661ffff168261ffff1682610dd29190613385565b10610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e09906131e7565b60405180910390fd5b610e27610e1d61192d565b8361ffff166119e7565b5050565b610e4683838360405180602001604052806000815250611406565b505050565b610e5361192d565b73ffffffffffffffffffffffffffffffffffffffff16610e716111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906132bf565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610eed906133ea565b60006040518083038185875af1925050503d8060008114610f2a576040519150601f19603f3d011682016040523d82523d6000602084013e610f2f565b606091505b5050905080610f3d57600080fd5b5050565b610f4961192d565b73ffffffffffffffffffffffffffffffffffffffff16610f676111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906132bf565b60405180910390fd5b8181600a9182610fce9291906135b6565b505050565b6000610fde82611ec2565b600001519050919050565b600a8054610ff690612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461102290612fd1565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61114e61192d565b73ffffffffffffffffffffffffffffffffffffffff1661116c6111d3565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b9906132bf565b60405180910390fd5b6111cc6000612151565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120c90612fd1565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612fd1565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b61129761192d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130861192d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b561192d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fa9190612869565b60405180910390a35050565b611411848484611a0e565b6114308373ffffffffffffffffffffffffffffffffffffffff16612217565b801561144557506114438484848461223a565b155b1561147c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061148d826118df565b6114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906136f8565b60405180910390fd5b6000600a80546114db90612fd1565b9050116114f75760405180602001604052806000815250611519565b600a60405160200161150991906137c9565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc61192d565b73ffffffffffffffffffffffffffffffffffffffff166115da6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906132bf565b60405180910390fd5b60005b828290508110156116d0576001600b6000858585818110611657576116566132df565b5b905060200201602081019061166c9190612c21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116c89061333d565b915050611633565b505050565b6116dd61192d565b73ffffffffffffffffffffffffffffffffffffffff166116fb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611748906132bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b79061385d565b60405180910390fd5b6117c981612151565b50565b6117d461192d565b73ffffffffffffffffffffffffffffffffffffffff166117f26111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906132bf565b60405180910390fd5b80600d60006101000a81548160ff0219169083600281111561186d5761186c61306e565b5b021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118ea611a05565b111580156118f9575060005482105b8015611926575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611a0182826040518060200160405280600081525061238a565b5050565b60006001905090565b6000611a1982611ec2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a84576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611aa561192d565b73ffffffffffffffffffffffffffffffffffffffff161480611ad45750611ad385611ace61192d565b611520565b5b80611b195750611ae261192d565b73ffffffffffffffffffffffffffffffffffffffff16611b01846107bd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b52576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bb8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc5858585600161239c565b611bd160008487611935565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e50576000548214611e4f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebb85858560016123a2565b5050505050565b611eca612772565b600082905080611ed8611a05565b11158015611ee7575060005481105b1561211a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161211857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffc57809250505061214c565b5b60011561211757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211257809250505061214c565b611ffd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226061192d565b8786866040518563ffffffff1660e01b815260040161228294939291906138d2565b6020604051808303816000875af19250505080156122be57506040513d601f19601f820116820180604052508101906122bb9190613933565b60015b612337573d80600081146122ee576040519150601f19603f3d011682016040523d82523d6000602084013e6122f3565b606091505b50600081510361232f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61239783838360016123a8565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612414576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361244e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61245b600086838761239c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561262557506126248773ffffffffffffffffffffffffffffffffffffffff16612217565b5b156126ea575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269a600088848060010195508861223a565b6126d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361262b5782600054146126e557600080fd5b612755565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036126eb575b81600081905550505061276b60008683876123a2565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127fe816127c9565b811461280957600080fd5b50565b60008135905061281b816127f5565b92915050565b600060208284031215612837576128366127bf565b5b60006128458482850161280c565b91505092915050565b60008115159050919050565b6128638161284e565b82525050565b600060208201905061287e600083018461285a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128be5780820151818401526020810190506128a3565b60008484015250505050565b6000601f19601f8301169050919050565b60006128e682612884565b6128f0818561288f565b93506129008185602086016128a0565b612909816128ca565b840191505092915050565b6000602082019050818103600083015261292e81846128db565b905092915050565b6000819050919050565b61294981612936565b811461295457600080fd5b50565b60008135905061296681612940565b92915050565b600060208284031215612982576129816127bf565b5b600061299084828501612957565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c482612999565b9050919050565b6129d4816129b9565b82525050565b60006020820190506129ef60008301846129cb565b92915050565b6129fe816129b9565b8114612a0957600080fd5b50565b600081359050612a1b816129f5565b92915050565b60008060408385031215612a3857612a376127bf565b5b6000612a4685828601612a0c565b9250506020612a5785828601612957565b9150509250929050565b612a6a81612936565b82525050565b6000602082019050612a856000830184612a61565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ab057612aaf612a8b565b5b8235905067ffffffffffffffff811115612acd57612acc612a90565b5b602083019150836020820283011115612ae957612ae8612a95565b5b9250929050565b60008060208385031215612b0757612b066127bf565b5b600083013567ffffffffffffffff811115612b2557612b246127c4565b5b612b3185828601612a9a565b92509250509250929050565b600080600060608486031215612b5657612b556127bf565b5b6000612b6486828701612a0c565b9350506020612b7586828701612a0c565b9250506040612b8686828701612957565b9150509250925092565b600061ffff82169050919050565b612ba781612b90565b82525050565b6000602082019050612bc26000830184612b9e565b92915050565b612bd181612b90565b8114612bdc57600080fd5b50565b600081359050612bee81612bc8565b92915050565b600060208284031215612c0a57612c096127bf565b5b6000612c1884828501612bdf565b91505092915050565b600060208284031215612c3757612c366127bf565b5b6000612c4584828501612a0c565b91505092915050565b60008083601f840112612c6457612c63612a8b565b5b8235905067ffffffffffffffff811115612c8157612c80612a90565b5b602083019150836001820283011115612c9d57612c9c612a95565b5b9250929050565b60008060208385031215612cbb57612cba6127bf565b5b600083013567ffffffffffffffff811115612cd957612cd86127c4565b5b612ce585828601612c4e565b92509250509250929050565b612cfa8161284e565b8114612d0557600080fd5b50565b600081359050612d1781612cf1565b92915050565b60008060408385031215612d3457612d336127bf565b5b6000612d4285828601612a0c565b9250506020612d5385828601612d08565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9a826128ca565b810181811067ffffffffffffffff82111715612db957612db8612d62565b5b80604052505050565b6000612dcc6127b5565b9050612dd88282612d91565b919050565b600067ffffffffffffffff821115612df857612df7612d62565b5b612e01826128ca565b9050602081019050919050565b82818337600083830152505050565b6000612e30612e2b84612ddd565b612dc2565b905082815260208101848484011115612e4c57612e4b612d5d565b5b612e57848285612e0e565b509392505050565b600082601f830112612e7457612e73612a8b565b5b8135612e84848260208601612e1d565b91505092915050565b60008060008060808587031215612ea757612ea66127bf565b5b6000612eb587828801612a0c565b9450506020612ec687828801612a0c565b9350506040612ed787828801612957565b925050606085013567ffffffffffffffff811115612ef857612ef76127c4565b5b612f0487828801612e5f565b91505092959194509250565b60008060408385031215612f2757612f266127bf565b5b6000612f3585828601612a0c565b9250506020612f4685828601612a0c565b9150509250929050565b60038110612f5d57600080fd5b50565b600081359050612f6f81612f50565b92915050565b600060208284031215612f8b57612f8a6127bf565b5b6000612f9984828501612f60565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fe957607f821691505b602082108103612ffc57612ffb612fa2565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613038601f8361288f565b915061304382613002565b602082019050919050565b600060208201905081810360008301526130678161302b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f6e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006130d3600f8361288f565b91506130de8261309d565b602082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b7f616c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b600061313f600f8361288f565b915061314a82613109565b602082019050919050565b6000602082019050818103600083015261316e81613132565b9050919050565b7f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006131d160228361288f565b91506131dc82613175565b604082019050919050565b60006020820190508181036000830152613200816131c4565b9050919050565b7f6e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061323d60158361288f565b915061324882613207565b602082019050919050565b6000602082019050818103600083015261326c81613230565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132a960208361288f565b91506132b482613273565b602082019050919050565b600060208201905081810360008301526132d88161329c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334882612936565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361337a5761337961330e565b5b600182019050919050565b600061339082612936565b915061339b83612936565b92508282019050808211156133b3576133b261330e565b5b92915050565b600081905092915050565b50565b60006133d46000836133b9565b91506133df826133c4565b600082019050919050565b60006133f5826133c7565b9150819050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261346c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342f565b613476868361342f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134b36134ae6134a984612936565b61348e565b612936565b9050919050565b6000819050919050565b6134cd83613498565b6134e16134d9826134ba565b84845461343c565b825550505050565b600090565b6134f66134e9565b6135018184846134c4565b505050565b5b818110156135255761351a6000826134ee565b600181019050613507565b5050565b601f82111561356a5761353b8161340a565b6135448461341f565b81016020851015613553578190505b61356761355f8561341f565b830182613506565b50505b505050565b600082821c905092915050565b600061358d6000198460080261356f565b1980831691505092915050565b60006135a6838361357c565b9150826002028217905092915050565b6135c083836133ff565b67ffffffffffffffff8111156135d9576135d8612d62565b5b6135e38254612fd1565b6135ee828285613529565b6000601f83116001811461361d576000841561360b578287013590505b613615858261359a565b86555061367d565b601f19841661362b8661340a565b60005b828110156136535784890135825560018201915060208501945060208101905061362e565b86831015613670578489013561366c601f89168261357c565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136e2602f8361288f565b91506136ed82613686565b604082019050919050565b60006020820190508181036000830152613711816136d5565b9050919050565b600081905092915050565b6000815461373081612fd1565b61373a8186613718565b94506001821660008114613755576001811461376a5761379d565b60ff198316865281151582028601935061379d565b6137738561340a565b60005b8381101561379557815481890152600182019150602081019050613776565b838801955050505b50505092915050565b60006137b3600083613718565b91506137be826133c4565b600082019050919050565b60006137d58284613723565b91506137e0826137a6565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061384760268361288f565b9150613852826137eb565b604082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138a48261387d565b6138ae8185613888565b93506138be8185602086016128a0565b6138c7816128ca565b840191505092915050565b60006080820190506138e760008301876129cb565b6138f460208301866129cb565b6139016040830185612a61565b81810360608301526139138184613899565b905095945050505050565b60008151905061392d816127f5565b92915050565b600060208284031215613949576139486127bf565b5b60006139578482850161391e565b9150509291505056fea264697066735822122030249f43976c9a5751f2e8812a2de66dc26d14d02b5f34b5f25dceffcda0302e64736f6c63430008110033

Deployed Bytecode Sourcemap

47438:3540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27101:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30214:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31717:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31280:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50077:537;;;:::i;:::-;;26350:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49462:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32582:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47617:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49670:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32823:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50813:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48287:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30022:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47775:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27470:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46559:103;;;;;;;;;;;;;:::i;:::-;;47665:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45908:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30383:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31993:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33079:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48389:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32351:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49258:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46817:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50656:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27101:305;27203:4;27255:25;27240:40;;;:11;:40;;;;:105;;;;27312:33;27297:48;;;:11;:48;;;;27240:105;:158;;;;27362:36;27386:11;27362:23;:36::i;:::-;27240:158;27220:178;;27101:305;;;:::o;30214:100::-;30268:13;30301:5;30294:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30214:100;:::o;31717:204::-;31785:7;31810:16;31818:7;31810;:16::i;:::-;31805:64;;31835:34;;;;;;;;;;;;;;31805:64;31889:15;:24;31905:7;31889:24;;;;;;;;;;;;;;;;;;;;;31882:31;;31717:204;;;:::o;31280:371::-;31353:13;31369:24;31385:7;31369:15;:24::i;:::-;31353:40;;31414:5;31408:11;;:2;:11;;;31404:48;;31428:24;;;;;;;;;;;;;;31404:48;31485:5;31469:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31495:37;31512:5;31519:12;:10;:12::i;:::-;31495:16;:37::i;:::-;31494:38;31469:63;31465:138;;;31556:35;;;;;;;;;;;;;;31465:138;31615:28;31624:2;31628:7;31637:5;31615:8;:28::i;:::-;31342:309;31280:371;;:::o;50077:537::-;20999:1;21597:7;;:19;21589:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;20999:1;21730:7;:18;;;;49147:19:::1;49131:35;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:35;;;;;;;;:::i;:::-;;;49123:44;;;::::0;::::1;;49186:12;:24;49199:10;49186:24;;;;;;;;;;;;;;;;;;;;;;;;;49178:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50157:7:::2;:19;50165:10;50157:19;;;;;;;;;;;;;;;;;;;;;;;;;50156:20;50148:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47653:3;50310:26;;:13;:11;:13::i;:::-;:26;50288:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47697:10;50488:9;:18;50480:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50543:24;50553:10;50565:1;50543:9;:24::i;:::-;50602:4;50580:7;:19;50588:10;50580:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;20955:1:::0;21909:7;:22;;;;50077:537::o;26350:303::-;26394:7;26619:15;:13;:15::i;:::-;26604:12;;26588:13;;:28;:46;26581:53;;26350:303;:::o;49462:200::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49552:9:::1;49547:108;49571:9;;:16;;49567:1;:20;49547:108;;;49638:5;49609:12;:26;49622:9;;49632:1;49622:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49609:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;49589:3;;;;;:::i;:::-;;;;49547:108;;;;49462:200:::0;;:::o;32582:170::-;32716:28;32726:4;32732:2;32736:7;32716:9;:28::i;:::-;32582:170;;;:::o;47617:39::-;47653:3;47617:39;:::o;49670:362::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49734:19:::1;49756:13;:11;:13::i;:::-;49734:35;;47653:3;49883:33;;49897:6;49883:20;;:11;:20;;;;:::i;:::-;:33;49861:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;49993:31;50003:12;:10;:12::i;:::-;50017:6;49993:31;;:9;:31::i;:::-;49723:309;49670:362:::0;:::o;32823:185::-;32961:39;32978:4;32984:2;32988:7;32961:39;;;;;;;;;;;;:16;:39::i;:::-;32823:185;;;:::o;50813:162::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50878:7:::1;50899:6;50891:20;;50919:21;50891:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50877:68;;;50964:2;50956:11;;;::::0;::::1;;50866:109;50813:162:::0;:::o;48287:94::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48369:4:::1;;48359:7;:14;;;;;;;:::i;:::-;;48287:94:::0;;:::o;30022:125::-;30086:7;30113:21;30126:7;30113:12;:21::i;:::-;:26;;;30106:33;;30022:125;;;:::o;47775:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27470:206::-;27534:7;27575:1;27558:19;;:5;:19;;;27554:60;;27586:28;;;;;;;;;;;;;;27554:60;27640:12;:19;27653:5;27640:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27632:36;;27625:43;;27470:206;;;:::o;46559:103::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46624:30:::1;46651:1;46624:18;:30::i;:::-;46559:103::o:0;47665:42::-;47697:10;47665:42;:::o;45908:87::-;45954:7;45981:6;;;;;;;;;;;45974:13;;45908:87;:::o;30383:104::-;30439:13;30472:7;30465:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30383:104;:::o;31993:287::-;32104:12;:10;:12::i;:::-;32092:24;;:8;:24;;;32088:54;;32125:17;;;;;;;;;;;;;;32088:54;32200:8;32155:18;:32;32174:12;:10;:12::i;:::-;32155:32;;;;;;;;;;;;;;;:42;32188:8;32155:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32253:8;32224:48;;32239:12;:10;:12::i;:::-;32224:48;;;32263:8;32224:48;;;;;;:::i;:::-;;;;;;;;31993:287;;:::o;33079:369::-;33246:28;33256:4;33262:2;33266:7;33246:9;:28::i;:::-;33289:15;:2;:13;;;:15::i;:::-;:76;;;;;33309:56;33340:4;33346:2;33350:7;33359:5;33309:30;:56::i;:::-;33308:57;33289:76;33285:156;;;33389:40;;;;;;;;;;;;;;33285:156;33079:369;;;;:::o;48389:524::-;48490:13;48543:16;48551:7;48543;:16::i;:::-;48521:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48678:1;48660:7;48654:21;;;;;:::i;:::-;;;:25;:251;;;;;;;;;;;;;;;;;48795:7;48744:130;;;;;;;;:::i;:::-;;;;;;;;;;;;;48654:251;48647:258;;48389:524;;;:::o;32351:164::-;32448:4;32472:18;:25;32491:5;32472:25;;;;;;;;;;;;;;;:35;32498:8;32472:35;;;;;;;;;;;;;;;;;;;;;;;;;32465:42;;32351:164;;;;:::o;49258:196::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49345:9:::1;49340:107;49364:9;;:16;;49360:1;:20;49340:107;;;49431:4;49402:12;:26;49415:9;;49425:1;49415:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49402:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;49382:3;;;;;:::i;:::-;;;;49340:107;;;;49258:196:::0;;:::o;46817:201::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46926:1:::1;46906:22;;:8;:22;;::::0;46898:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46982:28;47001:8;46982:18;:28::i;:::-;46817:201:::0;:::o;50656:100::-;46139:12;:10;:12::i;:::-;46128:23;;:7;:5;:7::i;:::-;:23;;;46120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50743:5:::1;50728:12;;:20;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;50656:100:::0;:::o;11224:157::-;11309:4;11348:25;11333:40;;;:11;:40;;;;11326:47;;11224:157;;;:::o;33703:174::-;33760:4;33803:7;33784:15;:13;:15::i;:::-;:26;;:53;;;;;33824:13;;33814:7;:23;33784:53;:85;;;;;33842:11;:20;33854:7;33842:20;;;;;;;;;;;:27;;;;;;;;;;;;33841:28;33784:85;33777:92;;33703:174;;;:::o;22625:98::-;22678:7;22705:10;22698:17;;22625:98;:::o;41860:196::-;42002:2;41975:15;:24;41991:7;41975:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42040:7;42036:2;42020:28;;42029:5;42020:28;;;;;;;;;;;;41860:196;;;:::o;33885:104::-;33954:27;33964:2;33968:8;33954:27;;;;;;;;;;;;:9;:27::i;:::-;33885:104;;:::o;48178:101::-;48243:7;48270:1;48263:8;;48178:101;:::o;36803:2130::-;36918:35;36956:21;36969:7;36956:12;:21::i;:::-;36918:59;;37016:4;36994:26;;:13;:18;;;:26;;;36990:67;;37029:28;;;;;;;;;;;;;;36990:67;37070:22;37112:4;37096:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37133:36;37150:4;37156:12;:10;:12::i;:::-;37133:16;:36::i;:::-;37096:73;:126;;;;37210:12;:10;:12::i;:::-;37186:36;;:20;37198:7;37186:11;:20::i;:::-;:36;;;37096:126;37070:153;;37241:17;37236:66;;37267:35;;;;;;;;;;;;;;37236:66;37331:1;37317:16;;:2;:16;;;37313:52;;37342:23;;;;;;;;;;;;;;37313:52;37378:43;37400:4;37406:2;37410:7;37419:1;37378:21;:43::i;:::-;37486:35;37503:1;37507:7;37516:4;37486:8;:35::i;:::-;37847:1;37817:12;:18;37830:4;37817:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37891:1;37863:12;:16;37876:2;37863:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37909:31;37943:11;:20;37955:7;37943:20;;;;;;;;;;;37909:54;;37994:2;37978:8;:13;;;:18;;;;;;;;;;;;;;;;;;38044:15;38011:8;:23;;;:49;;;;;;;;;;;;;;;;;;38312:19;38344:1;38334:7;:11;38312:33;;38360:31;38394:11;:24;38406:11;38394:24;;;;;;;;;;;38360:58;;38462:1;38437:27;;:8;:13;;;;;;;;;;;;:27;;;38433:384;;38647:13;;38632:11;:28;38628:174;;38701:4;38685:8;:13;;;:20;;;;;;;;;;;;;;;;;;38754:13;:28;;;38728:8;:23;;;:54;;;;;;;;;;;;;;;;;;38628:174;38433:384;37792:1036;;;38864:7;38860:2;38845:27;;38854:4;38845:27;;;;;;;;;;;;38883:42;38904:4;38910:2;38914:7;38923:1;38883:20;:42::i;:::-;36907:2026;;36803:2130;;;:::o;28851:1109::-;28913:21;;:::i;:::-;28947:12;28962:7;28947:22;;29030:4;29011:15;:13;:15::i;:::-;:23;;:47;;;;;29045:13;;29038:4;:20;29011:47;29007:886;;;29079:31;29113:11;:17;29125:4;29113:17;;;;;;;;;;;29079:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29154:9;:16;;;29149:729;;29225:1;29199:28;;:9;:14;;;:28;;;29195:101;;29263:9;29256:16;;;;;;29195:101;29598:261;29605:4;29598:261;;;29638:6;;;;;;;;29683:11;:17;29695:4;29683:17;;;;;;;;;;;29671:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29757:1;29731:28;;:9;:14;;;:28;;;29727:109;;29799:9;29792:16;;;;;;29727:109;29598:261;;;29149:729;29060:833;29007:886;29921:31;;;;;;;;;;;;;;28851:1109;;;;:::o;47178:191::-;47252:16;47271:6;;;;;;;;;;;47252:25;;47297:8;47288:6;;:17;;;;;;;;;;;;;;;;;;47352:8;47321:40;;47342:8;47321:40;;;;;;;;;;;;47241:128;47178:191;:::o;1141:326::-;1201:4;1458:1;1436:7;:19;;;:23;1429:30;;1141:326;;;:::o;42548:667::-;42711:4;42748:2;42732:36;;;42769:12;:10;:12::i;:::-;42783:4;42789:7;42798:5;42732:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42728:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42983:1;42966:6;:13;:18;42962:235;;43012:40;;;;;;;;;;;;;;42962:235;43155:6;43149:13;43140:6;43136:2;43132:15;43125:38;42728:480;42861:45;;;42851:55;;;:6;:55;;;;42844:62;;;42548:667;;;;;;:::o;34352:163::-;34475:32;34481:2;34485:8;34495:5;34502:4;34475:5;:32::i;:::-;34352:163;;;:::o;43863:159::-;;;;;:::o;44681:158::-;;;;;:::o;34774:1775::-;34913:20;34936:13;;34913:36;;34978:1;34964:16;;:2;:16;;;34960:48;;34989:19;;;;;;;;;;;;;;34960:48;35035:1;35023:8;:13;35019:44;;35045:18;;;;;;;;;;;;;;35019:44;35076:61;35106:1;35110:2;35114:12;35128:8;35076:21;:61::i;:::-;35449:8;35414:12;:16;35427:2;35414:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35513:8;35473:12;:16;35486:2;35473:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35572:2;35539:11;:25;35551:12;35539:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35639:15;35589:11;:25;35601:12;35589:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35672:20;35695:12;35672:35;;35722:11;35751:8;35736:12;:23;35722:37;;35780:4;:23;;;;;35788:15;:2;:13;;;:15::i;:::-;35780:23;35776:641;;;35824:314;35880:12;35876:2;35855:38;;35872:1;35855:38;;;;;;;;;;;;35921:69;35960:1;35964:2;35968:14;;;;;;35984:5;35921:30;:69::i;:::-;35916:174;;36026:40;;;;;;;;;;;;;;35916:174;36133:3;36117:12;:19;35824:314;;36219:12;36202:13;;:29;36198:43;;36233:8;;;36198:43;35776:641;;;36282:120;36338:14;;;;;;36334:2;36313:40;;36330:1;36313:40;;;;;;;;;;;;36397:3;36381:12;:19;36282:120;;35776:641;36447:12;36431:13;:28;;;;35389:1082;;36481:60;36510:1;36514:2;36518:12;36532:8;36481:20;:60::i;:::-;34902:1647;34774:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5628:568;5701:8;5711:6;5761:3;5754:4;5746:6;5742:17;5738:27;5728:122;;5769:79;;:::i;:::-;5728:122;5882:6;5869:20;5859:30;;5912:18;5904:6;5901:30;5898:117;;;5934:79;;:::i;:::-;5898:117;6048:4;6040:6;6036:17;6024:29;;6102:3;6094:4;6086:6;6082:17;6072:8;6068:32;6065:41;6062:128;;;6109:79;;:::i;:::-;6062:128;5628:568;;;;;:::o;6202:559::-;6288:6;6296;6345:2;6333:9;6324:7;6320:23;6316:32;6313:119;;;6351:79;;:::i;:::-;6313:119;6499:1;6488:9;6484:17;6471:31;6529:18;6521:6;6518:30;6515:117;;;6551:79;;:::i;:::-;6515:117;6664:80;6736:7;6727:6;6716:9;6712:22;6664:80;:::i;:::-;6646:98;;;;6442:312;6202:559;;;;;:::o;6767:619::-;6844:6;6852;6860;6909:2;6897:9;6888:7;6884:23;6880:32;6877:119;;;6915:79;;:::i;:::-;6877:119;7035:1;7060:53;7105:7;7096:6;7085:9;7081:22;7060:53;:::i;:::-;7050:63;;7006:117;7162:2;7188:53;7233:7;7224:6;7213:9;7209:22;7188:53;:::i;:::-;7178:63;;7133:118;7290:2;7316:53;7361:7;7352:6;7341:9;7337:22;7316:53;:::i;:::-;7306:63;;7261:118;6767:619;;;;;:::o;7392:89::-;7428:7;7468:6;7461:5;7457:18;7446:29;;7392:89;;;:::o;7487:115::-;7572:23;7589:5;7572:23;:::i;:::-;7567:3;7560:36;7487:115;;:::o;7608:218::-;7699:4;7737:2;7726:9;7722:18;7714:26;;7750:69;7816:1;7805:9;7801:17;7792:6;7750:69;:::i;:::-;7608:218;;;;:::o;7832:120::-;7904:23;7921:5;7904:23;:::i;:::-;7897:5;7894:34;7884:62;;7942:1;7939;7932:12;7884:62;7832:120;:::o;7958:137::-;8003:5;8041:6;8028:20;8019:29;;8057:32;8083:5;8057:32;:::i;:::-;7958:137;;;;:::o;8101:327::-;8159:6;8208:2;8196:9;8187:7;8183:23;8179:32;8176:119;;;8214:79;;:::i;:::-;8176:119;8334:1;8359:52;8403:7;8394:6;8383:9;8379:22;8359:52;:::i;:::-;8349:62;;8305:116;8101:327;;;;:::o;8434:329::-;8493:6;8542:2;8530:9;8521:7;8517:23;8513:32;8510:119;;;8548:79;;:::i;:::-;8510:119;8668:1;8693:53;8738:7;8729:6;8718:9;8714:22;8693:53;:::i;:::-;8683:63;;8639:117;8434:329;;;;:::o;8783:553::-;8841:8;8851:6;8901:3;8894:4;8886:6;8882:17;8878:27;8868:122;;8909:79;;:::i;:::-;8868:122;9022:6;9009:20;8999:30;;9052:18;9044:6;9041:30;9038:117;;;9074:79;;:::i;:::-;9038:117;9188:4;9180:6;9176:17;9164:29;;9242:3;9234:4;9226:6;9222:17;9212:8;9208:32;9205:41;9202:128;;;9249:79;;:::i;:::-;9202:128;8783:553;;;;;:::o;9342:529::-;9413:6;9421;9470:2;9458:9;9449:7;9445:23;9441:32;9438:119;;;9476:79;;:::i;:::-;9438:119;9624:1;9613:9;9609:17;9596:31;9654:18;9646:6;9643:30;9640:117;;;9676:79;;:::i;:::-;9640:117;9789:65;9846:7;9837:6;9826:9;9822:22;9789:65;:::i;:::-;9771:83;;;;9567:297;9342:529;;;;;:::o;9877:116::-;9947:21;9962:5;9947:21;:::i;:::-;9940:5;9937:32;9927:60;;9983:1;9980;9973:12;9927:60;9877:116;:::o;9999:133::-;10042:5;10080:6;10067:20;10058:29;;10096:30;10120:5;10096:30;:::i;:::-;9999:133;;;;:::o;10138:468::-;10203:6;10211;10260:2;10248:9;10239:7;10235:23;10231:32;10228:119;;;10266:79;;:::i;:::-;10228:119;10386:1;10411:53;10456:7;10447:6;10436:9;10432:22;10411:53;:::i;:::-;10401:63;;10357:117;10513:2;10539:50;10581:7;10572:6;10561:9;10557:22;10539:50;:::i;:::-;10529:60;;10484:115;10138:468;;;;;:::o;10612:117::-;10721:1;10718;10711:12;10735:180;10783:77;10780:1;10773:88;10880:4;10877:1;10870:15;10904:4;10901:1;10894:15;10921:281;11004:27;11026:4;11004:27;:::i;:::-;10996:6;10992:40;11134:6;11122:10;11119:22;11098:18;11086:10;11083:34;11080:62;11077:88;;;11145:18;;:::i;:::-;11077:88;11185:10;11181:2;11174:22;10964:238;10921:281;;:::o;11208:129::-;11242:6;11269:20;;:::i;:::-;11259:30;;11298:33;11326:4;11318:6;11298:33;:::i;:::-;11208:129;;;:::o;11343:307::-;11404:4;11494:18;11486:6;11483:30;11480:56;;;11516:18;;:::i;:::-;11480:56;11554:29;11576:6;11554:29;:::i;:::-;11546:37;;11638:4;11632;11628:15;11620:23;;11343:307;;;:::o;11656:146::-;11753:6;11748:3;11743;11730:30;11794:1;11785:6;11780:3;11776:16;11769:27;11656:146;;;:::o;11808:423::-;11885:5;11910:65;11926:48;11967:6;11926:48;:::i;:::-;11910:65;:::i;:::-;11901:74;;11998:6;11991:5;11984:21;12036:4;12029:5;12025:16;12074:3;12065:6;12060:3;12056:16;12053:25;12050:112;;;12081:79;;:::i;:::-;12050:112;12171:54;12218:6;12213:3;12208;12171:54;:::i;:::-;11891:340;11808:423;;;;;:::o;12250:338::-;12305:5;12354:3;12347:4;12339:6;12335:17;12331:27;12321:122;;12362:79;;:::i;:::-;12321:122;12479:6;12466:20;12504:78;12578:3;12570:6;12563:4;12555:6;12551:17;12504:78;:::i;:::-;12495:87;;12311:277;12250:338;;;;:::o;12594:943::-;12689:6;12697;12705;12713;12762:3;12750:9;12741:7;12737:23;12733:33;12730:120;;;12769:79;;:::i;:::-;12730:120;12889:1;12914:53;12959:7;12950:6;12939:9;12935:22;12914:53;:::i;:::-;12904:63;;12860:117;13016:2;13042:53;13087:7;13078:6;13067:9;13063:22;13042:53;:::i;:::-;13032:63;;12987:118;13144:2;13170:53;13215:7;13206:6;13195:9;13191:22;13170:53;:::i;:::-;13160:63;;13115:118;13300:2;13289:9;13285:18;13272:32;13331:18;13323:6;13320:30;13317:117;;;13353:79;;:::i;:::-;13317:117;13458:62;13512:7;13503:6;13492:9;13488:22;13458:62;:::i;:::-;13448:72;;13243:287;12594:943;;;;;;;:::o;13543:474::-;13611:6;13619;13668:2;13656:9;13647:7;13643:23;13639:32;13636:119;;;13674:79;;:::i;:::-;13636:119;13794:1;13819:53;13864:7;13855:6;13844:9;13840:22;13819:53;:::i;:::-;13809:63;;13765:117;13921:2;13947:53;13992:7;13983:6;13972:9;13968:22;13947:53;:::i;:::-;13937:63;;13892:118;13543:474;;;;;:::o;14023:113::-;14110:1;14103:5;14100:12;14090:40;;14126:1;14123;14116:12;14090:40;14023:113;:::o;14142:167::-;14202:5;14240:6;14227:20;14218:29;;14256:47;14297:5;14256:47;:::i;:::-;14142:167;;;;:::o;14315:357::-;14388:6;14437:2;14425:9;14416:7;14412:23;14408:32;14405:119;;;14443:79;;:::i;:::-;14405:119;14563:1;14588:67;14647:7;14638:6;14627:9;14623:22;14588:67;:::i;:::-;14578:77;;14534:131;14315:357;;;;:::o;14678:180::-;14726:77;14723:1;14716:88;14823:4;14820:1;14813:15;14847:4;14844:1;14837:15;14864:320;14908:6;14945:1;14939:4;14935:12;14925:22;;14992:1;14986:4;14982:12;15013:18;15003:81;;15069:4;15061:6;15057:17;15047:27;;15003:81;15131:2;15123:6;15120:14;15100:18;15097:38;15094:84;;15150:18;;:::i;:::-;15094:84;14915:269;14864:320;;;:::o;15190:181::-;15330:33;15326:1;15318:6;15314:14;15307:57;15190:181;:::o;15377:366::-;15519:3;15540:67;15604:2;15599:3;15540:67;:::i;:::-;15533:74;;15616:93;15705:3;15616:93;:::i;:::-;15734:2;15729:3;15725:12;15718:19;;15377:366;;;:::o;15749:419::-;15915:4;15953:2;15942:9;15938:18;15930:26;;16002:9;15996:4;15992:20;15988:1;15977:9;15973:17;15966:47;16030:131;16156:4;16030:131;:::i;:::-;16022:139;;15749:419;;;:::o;16174:180::-;16222:77;16219:1;16212:88;16319:4;16316:1;16309:15;16343:4;16340:1;16333:15;16360:165;16500:17;16496:1;16488:6;16484:14;16477:41;16360:165;:::o;16531:366::-;16673:3;16694:67;16758:2;16753:3;16694:67;:::i;:::-;16687:74;;16770:93;16859:3;16770:93;:::i;:::-;16888:2;16883:3;16879:12;16872:19;;16531:366;;;:::o;16903:419::-;17069:4;17107:2;17096:9;17092:18;17084:26;;17156:9;17150:4;17146:20;17142:1;17131:9;17127:17;17120:47;17184:131;17310:4;17184:131;:::i;:::-;17176:139;;16903:419;;;:::o;17328:165::-;17468:17;17464:1;17456:6;17452:14;17445:41;17328:165;:::o;17499:366::-;17641:3;17662:67;17726:2;17721:3;17662:67;:::i;:::-;17655:74;;17738:93;17827:3;17738:93;:::i;:::-;17856:2;17851:3;17847:12;17840:19;;17499:366;;;:::o;17871:419::-;18037:4;18075:2;18064:9;18060:18;18052:26;;18124:9;18118:4;18114:20;18110:1;18099:9;18095:17;18088:47;18152:131;18278:4;18152:131;:::i;:::-;18144:139;;17871:419;;;:::o;18296:221::-;18436:34;18432:1;18424:6;18420:14;18413:58;18505:4;18500:2;18492:6;18488:15;18481:29;18296:221;:::o;18523:366::-;18665:3;18686:67;18750:2;18745:3;18686:67;:::i;:::-;18679:74;;18762:93;18851:3;18762:93;:::i;:::-;18880:2;18875:3;18871:12;18864:19;;18523:366;;;:::o;18895:419::-;19061:4;19099:2;19088:9;19084:18;19076:26;;19148:9;19142:4;19138:20;19134:1;19123:9;19119:17;19112:47;19176:131;19302:4;19176:131;:::i;:::-;19168:139;;18895:419;;;:::o;19320:171::-;19460:23;19456:1;19448:6;19444:14;19437:47;19320:171;:::o;19497:366::-;19639:3;19660:67;19724:2;19719:3;19660:67;:::i;:::-;19653:74;;19736:93;19825:3;19736:93;:::i;:::-;19854:2;19849:3;19845:12;19838:19;;19497:366;;;:::o;19869:419::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:182::-;20434:34;20430:1;20422:6;20418:14;20411:58;20294:182;:::o;20482:366::-;20624:3;20645:67;20709:2;20704:3;20645:67;:::i;:::-;20638:74;;20721:93;20810:3;20721:93;:::i;:::-;20839:2;20834:3;20830:12;20823:19;;20482:366;;;:::o;20854:419::-;21020:4;21058:2;21047:9;21043:18;21035:26;;21107:9;21101:4;21097:20;21093:1;21082:9;21078:17;21071:47;21135:131;21261:4;21135:131;:::i;:::-;21127:139;;20854:419;;;:::o;21279:180::-;21327:77;21324:1;21317:88;21424:4;21421:1;21414:15;21448:4;21445:1;21438:15;21465:180;21513:77;21510:1;21503:88;21610:4;21607:1;21600:15;21634:4;21631:1;21624:15;21651:233;21690:3;21713:24;21731:5;21713:24;:::i;:::-;21704:33;;21759:66;21752:5;21749:77;21746:103;;21829:18;;:::i;:::-;21746:103;21876:1;21869:5;21865:13;21858:20;;21651:233;;;:::o;21890:191::-;21930:3;21949:20;21967:1;21949:20;:::i;:::-;21944:25;;21983:20;22001:1;21983:20;:::i;:::-;21978:25;;22026:1;22023;22019:9;22012:16;;22047:3;22044:1;22041:10;22038:36;;;22054:18;;:::i;:::-;22038:36;21890:191;;;;:::o;22087:147::-;22188:11;22225:3;22210:18;;22087:147;;;;:::o;22240:114::-;;:::o;22360:398::-;22519:3;22540:83;22621:1;22616:3;22540:83;:::i;:::-;22533:90;;22632:93;22721:3;22632:93;:::i;:::-;22750:1;22745:3;22741:11;22734:18;;22360:398;;;:::o;22764:379::-;22948:3;22970:147;23113:3;22970:147;:::i;:::-;22963:154;;23134:3;23127:10;;22764:379;;;:::o;23149:97::-;23208:6;23236:3;23226:13;;23149:97;;;;:::o;23252:141::-;23301:4;23324:3;23316:11;;23347:3;23344:1;23337:14;23381:4;23378:1;23368:18;23360:26;;23252:141;;;:::o;23399:93::-;23436:6;23483:2;23478;23471:5;23467:14;23463:23;23453:33;;23399:93;;;:::o;23498:107::-;23542:8;23592:5;23586:4;23582:16;23561:37;;23498:107;;;;:::o;23611:393::-;23680:6;23730:1;23718:10;23714:18;23753:97;23783:66;23772:9;23753:97;:::i;:::-;23871:39;23901:8;23890:9;23871:39;:::i;:::-;23859:51;;23943:4;23939:9;23932:5;23928:21;23919:30;;23992:4;23982:8;23978:19;23971:5;23968:30;23958:40;;23687:317;;23611:393;;;;;:::o;24010:60::-;24038:3;24059:5;24052:12;;24010:60;;;:::o;24076:142::-;24126:9;24159:53;24177:34;24186:24;24204:5;24186:24;:::i;:::-;24177:34;:::i;:::-;24159:53;:::i;:::-;24146:66;;24076:142;;;:::o;24224:75::-;24267:3;24288:5;24281:12;;24224:75;;;:::o;24305:269::-;24415:39;24446:7;24415:39;:::i;:::-;24476:91;24525:41;24549:16;24525:41;:::i;:::-;24517:6;24510:4;24504:11;24476:91;:::i;:::-;24470:4;24463:105;24381:193;24305:269;;;:::o;24580:73::-;24625:3;24580:73;:::o;24659:189::-;24736:32;;:::i;:::-;24777:65;24835:6;24827;24821:4;24777:65;:::i;:::-;24712:136;24659:189;;:::o;24854:186::-;24914:120;24931:3;24924:5;24921:14;24914:120;;;24985:39;25022:1;25015:5;24985:39;:::i;:::-;24958:1;24951:5;24947:13;24938:22;;24914:120;;;24854:186;;:::o;25046:543::-;25147:2;25142:3;25139:11;25136:446;;;25181:38;25213:5;25181:38;:::i;:::-;25265:29;25283:10;25265:29;:::i;:::-;25255:8;25251:44;25448:2;25436:10;25433:18;25430:49;;;25469:8;25454:23;;25430:49;25492:80;25548:22;25566:3;25548:22;:::i;:::-;25538:8;25534:37;25521:11;25492:80;:::i;:::-;25151:431;;25136:446;25046:543;;;:::o;25595:117::-;25649:8;25699:5;25693:4;25689:16;25668:37;;25595:117;;;;:::o;25718:169::-;25762:6;25795:51;25843:1;25839:6;25831:5;25828:1;25824:13;25795:51;:::i;:::-;25791:56;25876:4;25870;25866:15;25856:25;;25769:118;25718:169;;;;:::o;25892:295::-;25968:4;26114:29;26139:3;26133:4;26114:29;:::i;:::-;26106:37;;26176:3;26173:1;26169:11;26163:4;26160:21;26152:29;;25892:295;;;;:::o;26192:1403::-;26316:44;26356:3;26351;26316:44;:::i;:::-;26425:18;26417:6;26414:30;26411:56;;;26447:18;;:::i;:::-;26411:56;26491:38;26523:4;26517:11;26491:38;:::i;:::-;26576:67;26636:6;26628;26622:4;26576:67;:::i;:::-;26670:1;26699:2;26691:6;26688:14;26716:1;26711:632;;;;27387:1;27404:6;27401:84;;;27460:9;27455:3;27451:19;27438:33;27429:42;;27401:84;27511:67;27571:6;27564:5;27511:67;:::i;:::-;27505:4;27498:81;27360:229;26681:908;;26711:632;26763:4;26759:9;26751:6;26747:22;26797:37;26829:4;26797:37;:::i;:::-;26856:1;26870:215;26884:7;26881:1;26878:14;26870:215;;;26970:9;26965:3;26961:19;26948:33;26940:6;26933:49;27021:1;27013:6;27009:14;26999:24;;27068:2;27057:9;27053:18;27040:31;;26907:4;26904:1;26900:12;26895:17;;26870:215;;;27113:6;27104:7;27101:19;27098:186;;;27178:9;27173:3;27169:19;27156:33;27221:48;27263:4;27255:6;27251:17;27240:9;27221:48;:::i;:::-;27213:6;27206:64;27121:163;27098:186;27330:1;27326;27318:6;27314:14;27310:22;27304:4;27297:36;26718:625;;;26681:908;;26291:1304;;;26192:1403;;;:::o;27601:234::-;27741:34;27737:1;27729:6;27725:14;27718:58;27810:17;27805:2;27797:6;27793:15;27786:42;27601:234;:::o;27841:366::-;27983:3;28004:67;28068:2;28063:3;28004:67;:::i;:::-;27997:74;;28080:93;28169:3;28080:93;:::i;:::-;28198:2;28193:3;28189:12;28182:19;;27841:366;;;:::o;28213:419::-;28379:4;28417:2;28406:9;28402:18;28394:26;;28466:9;28460:4;28456:20;28452:1;28441:9;28437:17;28430:47;28494:131;28620:4;28494:131;:::i;:::-;28486:139;;28213:419;;;:::o;28638:148::-;28740:11;28777:3;28762:18;;28638:148;;;;:::o;28816:874::-;28919:3;28956:5;28950:12;28985:36;29011:9;28985:36;:::i;:::-;29037:89;29119:6;29114:3;29037:89;:::i;:::-;29030:96;;29157:1;29146:9;29142:17;29173:1;29168:166;;;;29348:1;29343:341;;;;29135:549;;29168:166;29252:4;29248:9;29237;29233:25;29228:3;29221:38;29314:6;29307:14;29300:22;29292:6;29288:35;29283:3;29279:45;29272:52;;29168:166;;29343:341;29410:38;29442:5;29410:38;:::i;:::-;29470:1;29484:154;29498:6;29495:1;29492:13;29484:154;;;29572:7;29566:14;29562:1;29557:3;29553:11;29546:35;29622:1;29613:7;29609:15;29598:26;;29520:4;29517:1;29513:12;29508:17;;29484:154;;;29667:6;29662:3;29658:16;29651:23;;29350:334;;29135:549;;28923:767;;28816:874;;;;:::o;29696:400::-;29856:3;29877:84;29959:1;29954:3;29877:84;:::i;:::-;29870:91;;29970:93;30059:3;29970:93;:::i;:::-;30088:1;30083:3;30079:11;30072:18;;29696:400;;;:::o;30102:535::-;30332:3;30354:92;30442:3;30433:6;30354:92;:::i;:::-;30347:99;;30463:148;30607:3;30463:148;:::i;:::-;30456:155;;30628:3;30621:10;;30102:535;;;;:::o;30643:225::-;30783:34;30779:1;30771:6;30767:14;30760:58;30852:8;30847:2;30839:6;30835:15;30828:33;30643:225;:::o;30874:366::-;31016:3;31037:67;31101:2;31096:3;31037:67;:::i;:::-;31030:74;;31113:93;31202:3;31113:93;:::i;:::-;31231:2;31226:3;31222:12;31215:19;;30874:366;;;:::o;31246:419::-;31412:4;31450:2;31439:9;31435:18;31427:26;;31499:9;31493:4;31489:20;31485:1;31474:9;31470:17;31463:47;31527:131;31653:4;31527:131;:::i;:::-;31519:139;;31246:419;;;:::o;31671:98::-;31722:6;31756:5;31750:12;31740:22;;31671:98;;;:::o;31775:168::-;31858:11;31892:6;31887:3;31880:19;31932:4;31927:3;31923:14;31908:29;;31775:168;;;;:::o;31949:373::-;32035:3;32063:38;32095:5;32063:38;:::i;:::-;32117:70;32180:6;32175:3;32117:70;:::i;:::-;32110:77;;32196:65;32254:6;32249:3;32242:4;32235:5;32231:16;32196:65;:::i;:::-;32286:29;32308:6;32286:29;:::i;:::-;32281:3;32277:39;32270:46;;32039:283;31949:373;;;;:::o;32328:640::-;32523:4;32561:3;32550:9;32546:19;32538:27;;32575:71;32643:1;32632:9;32628:17;32619:6;32575:71;:::i;:::-;32656:72;32724:2;32713:9;32709:18;32700:6;32656:72;:::i;:::-;32738;32806:2;32795:9;32791:18;32782:6;32738:72;:::i;:::-;32857:9;32851:4;32847:20;32842:2;32831:9;32827:18;32820:48;32885:76;32956:4;32947:6;32885:76;:::i;:::-;32877:84;;32328:640;;;;;;;:::o;32974:141::-;33030:5;33061:6;33055:13;33046:22;;33077:32;33103:5;33077:32;:::i;:::-;32974:141;;;;:::o;33121:349::-;33190:6;33239:2;33227:9;33218:7;33214:23;33210:32;33207:119;;;33245:79;;:::i;:::-;33207:119;33365:1;33390:63;33445:7;33436:6;33425:9;33421:22;33390:63;:::i;:::-;33380:73;;33336:127;33121:349;;;;:::o

Swarm Source

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