ETH Price: $3,511.26 (+2.84%)
Gas: 4 Gwei

Token

QuantumLand (QLND)
 

Overview

Max Total Supply

4,000 QLND

Holders

1,010

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 QLND
0xc2226673d4fa0743196f2ffc803108c8b16a4ff4
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:
QuantumLand

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : QuantumLand.sol
// SPDX-License-Identifier: MIT

// 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/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

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);
    }
}
    pragma solidity ^0.8.7;
    
    contract QuantumLand is ERC721A, Ownable {
    using Strings for uint256;

    string private uriPrefix = "QmNMGQPDrD4UyzcrP5HcMGwj9Gkb22H2t4Po1BqkobV8au/";
    string private uriSuffix = ".json";
    string public hiddenURL;
    uint public totalTokSupply;
    uint256 public cost = 0.001 ether;
    
    uint16 public maxSupply = 4000;
    uint8 public maxMintAmountPerTx = 10;
    uint8 public maxFreeMintAmountPerWallet = 1;
                                    
    bool public paused = true;
    bool public reveal = true;
    mapping (address => uint8) public NFTPerPublicAddress;
    
    constructor() ERC721A("QuantumLand", "QLND") {
    }

    function burn(uint[] calldata token) external onlyOwner{
        for(uint i ; i <token.length ; i ++)
    _burn(token[i]);
    }
  
 
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }
    


    _safeMint(msg.sender , _mintAmount);

    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
    if ( reveal == false)
    {
        return hiddenURL;
    }
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 

 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}
  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

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

    modifier updateStakingReward(address _account) {
        _;
    }

  function stake(uint _amount) external updateStakingReward(msg.sender) {
        require(_amount > 0, "amount = 0");
        totalTokSupply += _amount;
    }
    


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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"token","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","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":[],"name":"totalTokSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602f815260200162004d43602f91396009908051906020019062000035929190620002d9565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000083929190620002d9565b5066038d7ea4c68000600d55610fa0600e60006101000a81548161ffff021916908361ffff160217905550600a600e60026101000a81548160ff021916908360ff1602179055506001600e60036101000a81548160ff021916908360ff1602179055506001600e60046101000a81548160ff0219169083151502179055506001600e60056101000a81548160ff0219169083151502179055503480156200012957600080fd5b506040518060400160405280600b81526020017f5175616e74756d4c616e640000000000000000000000000000000000000000008152506040518060400160405280600481526020017f514c4e44000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ae929190620002d9565b508060039080519060200190620001c7929190620002d9565b50620001d86200020660201b60201c565b600081905550505062000200620001f46200020b60201b60201c565b6200021360201b60201c565b620003ee565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e790620003b8565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003d157607f821691505b60208210811415620003e857620003e762000389565b5b50919050565b61494580620003fe6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e94053c71161006f578063e94053c7146107fe578063e985e9c51461083b578063eef440af14610878578063f2fde38b146108a3578063f8bf5172146108cc5761023b565b8063b88d4fde14610719578063c87b56dd14610742578063cffb6e201461077f578063d5abeb01146107a8578063e1e4bc12146107d35761023b565b8063a22cb465116100f2578063a22cb4651461064a578063a475b5dd14610673578063a694fc3a1461069e578063aa062290146106c7578063b80f55c9146106f05761023b565b8063715018a6146105895780637ec4a659146105a05780638da5cb5b146105c957806394354fd0146105f457806395d89b411461061f5761023b565b806337a66d85116101bc5780634d9c1848116101805780634d9c18481461049f5780635c975abb146104c85780636352211e146104f35780636ecd23061461053057806370a082311461054c5761023b565b806337a66d85146104085780633bd649681461041f5780633ccfd60b1461043657806342842e0e1461044d57806344a0d68a146104765761023b565b80631067fcc7116102035780631067fcc71461033757806313faede61461036057806318160ddd1461038b57806323b872dd146103b65780632f6f98e1146103df5761023b565b806301ffc9a71461024057806306421c2f1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ee565b6108f7565b6040516102749190613736565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061378b565b6109d9565b005b3480156102b257600080fd5b506102bb610a75565b6040516102c89190613851565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906138a9565b610b07565b6040516103059190613917565b60405180910390f35b34801561031a57600080fd5b506103356004803603810190610330919061395e565b610b83565b005b34801561034357600080fd5b5061035e60048036038101906103599190613ad3565b610c8e565b005b34801561036c57600080fd5b50610375610d24565b6040516103829190613b2b565b60405180910390f35b34801561039757600080fd5b506103a0610d2a565b6040516103ad9190613b2b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613b46565b610d41565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613b99565b610d51565b005b34801561041457600080fd5b5061041d610e5e565b005b34801561042b57600080fd5b50610434610f06565b005b34801561044257600080fd5b5061044b610fae565b005b34801561045957600080fd5b50610474600480360381019061046f9190613b46565b611079565b005b34801561048257600080fd5b5061049d600480360381019061049891906138a9565b611099565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613c12565b61111f565b005b3480156104d457600080fd5b506104dd6111bd565b6040516104ea9190613736565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906138a9565b6111d0565b6040516105279190613917565b60405180910390f35b61054a60048036038101906105459190613c12565b6111e6565b005b34801561055857600080fd5b50610573600480360381019061056e9190613c3f565b6114f0565b6040516105809190613b2b565b60405180910390f35b34801561059557600080fd5b5061059e6115c0565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190613ad3565b611648565b005b3480156105d557600080fd5b506105de6116de565b6040516105eb9190613917565b60405180910390f35b34801561060057600080fd5b50610609611708565b6040516106169190613c7b565b60405180910390f35b34801561062b57600080fd5b5061063461171b565b6040516106419190613851565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613cc2565b6117ad565b005b34801561067f57600080fd5b50610688611925565b6040516106959190613736565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906138a9565b611938565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613c12565b611999565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613d62565b611a33565b005b34801561072557600080fd5b50610740600480360381019061073b9190613e50565b611af7565b005b34801561074e57600080fd5b50610769600480360381019061076491906138a9565b611b73565b6040516107769190613851565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613f29565b611ccc565b005b3480156107b457600080fd5b506107bd611e35565b6040516107ca9190613f98565b60405180910390f35b3480156107df57600080fd5b506107e8611e49565b6040516107f59190613b2b565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613c3f565b611e4f565b6040516108329190613c7b565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613fb3565b611e6f565b60405161086f9190613736565b60405180910390f35b34801561088457600080fd5b5061088d611f03565b60405161089a9190613851565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613c3f565b611f91565b005b3480156108d857600080fd5b506108e1612089565b6040516108ee9190613c7b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d257506109d18261209c565b5b9050919050565b6109e1612106565b73ffffffffffffffffffffffffffffffffffffffff166109ff6116de565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c9061403f565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a849061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab09061408e565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b128261210e565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8e826111d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c15612106565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c475750610c4581610c40612106565b611e6f565b155b15610c7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8983838361215c565b505050565b610c96612106565b73ffffffffffffffffffffffffffffffffffffffff16610cb46116de565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061403f565b60405180910390fd5b80600b9080519060200190610d2092919061359c565b5050565b600d5481565b6000610d3461220e565b6001546000540303905090565b610d4c838383612213565b505050565b610d59612106565b73ffffffffffffffffffffffffffffffffffffffff16610d776116de565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061403f565b60405180910390fd5b6000610dd7610d2a565b9050600e60009054906101000a900461ffff1661ffff168382610dfa91906140ef565b61ffff161115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690614173565b60405180910390fd5b610e4d828461ffff166126c9565b600092506000915060009050505050565b610e66612106565b73ffffffffffffffffffffffffffffffffffffffff16610e846116de565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061403f565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b610f0e612106565b73ffffffffffffffffffffffffffffffffffffffff16610f2c6116de565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061403f565b60405180910390fd5b600e60059054906101000a900460ff1615600e60056101000a81548160ff021916908315150217905550565b610fb6612106565b73ffffffffffffffffffffffffffffffffffffffff16610fd46116de565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061403f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611075573d6000803e3d6000fd5b5050565b61109483838360405180602001604052806000815250611af7565b505050565b6110a1612106565b73ffffffffffffffffffffffffffffffffffffffff166110bf6116de565b73ffffffffffffffffffffffffffffffffffffffff1614611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061403f565b60405180910390fd5b80600d8190555050565b611127612106565b73ffffffffffffffffffffffffffffffffffffffff166111456116de565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061403f565b60405180910390fd5b80600e60036101000a81548160ff021916908360ff1602179055506000905050565b600e60049054906101000a900460ff1681565b60006111db826126e7565b600001519050919050565b60006111f0610d2a565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900461ffff1661ffff168360ff168361126791906140ef565b61ffff1611156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a3906141df565b60405180910390fd5b600e60029054906101000a900460ff1660ff1681846112cb91906141ff565b60ff16111561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614282565b60405180910390fd5b600e60049054906101000a900460ff161561135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906142ee565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff16106113d3578260ff16600d5461138c919061430e565b3410156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906143b4565b60405180910390fd5b611473565b600081846113e191906141ff565b9050600e60039054906101000a900460ff1660ff168160ff16111561147157600e60039054906101000a900460ff168161141b91906143d4565b90508060ff16600d5461142e919061430e565b341015611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906143b4565b60405180910390fd5b5b505b611480338460ff166126c9565b808361148c91906141ff565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611558576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115c8612106565b73ffffffffffffffffffffffffffffffffffffffff166115e66116de565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061403f565b60405180910390fd5b6116466000612976565b565b611650612106565b73ffffffffffffffffffffffffffffffffffffffff1661166e6116de565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061403f565b60405180910390fd5b80600990805190602001906116da92919061359c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60029054906101000a900460ff1681565b60606003805461172a9061408e565b80601f01602080910402602001604051908101604052809291908181526020018280546117569061408e565b80156117a35780601f10611778576101008083540402835291602001916117a3565b820191906000526020600020905b81548152906001019060200180831161178657829003601f168201915b5050505050905090565b6117b5612106565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611827612106565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d4612106565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119199190613736565b60405180910390a35050565b600e60059054906101000a900460ff1681565b336000821161197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390614454565b60405180910390fd5b81600c600082825461198e9190614474565b925050819055505050565b6119a1612106565b73ffffffffffffffffffffffffffffffffffffffff166119bf6116de565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061403f565b60405180910390fd5b80600e60026101000a81548160ff021916908360ff16021790555050565b611a3b612106565b73ffffffffffffffffffffffffffffffffffffffff16611a596116de565b73ffffffffffffffffffffffffffffffffffffffff1614611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa69061403f565b60405180910390fd5b60005b82829050811015611af257611adf838383818110611ad357611ad26144ca565b5b90506020020135612a3c565b8080611aea906144f9565b915050611ab2565b505050565b611b02848484612213565b611b218373ffffffffffffffffffffffffffffffffffffffff16612a4a565b8015611b365750611b3484848484612a6d565b155b15611b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b7e8261210e565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb4906145b4565b60405180910390fd5b60001515600e60059054906101000a900460ff1615151415611c6b57600b8054611be69061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c129061408e565b8015611c5f5780601f10611c3457610100808354040283529160200191611c5f565b820191906000526020600020905b815481529060010190602001808311611c4257829003601f168201915b50505050509050611cc7565b6000611c75612bcd565b90506000815111611c955760405180602001604052806000815250611cc3565b80611c9f84612c5f565b600a604051602001611cb3939291906146a4565b6040516020818303038152906040525b9150505b919050565b611cd4612106565b73ffffffffffffffffffffffffffffffffffffffff16611cf26116de565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061403f565b60405180910390fd5b6000611d52610d2a565b90506000838390508560ff16611d68919061430e565b9050600e60009054906101000a900461ffff1661ffff16818361ffff16611d8f9190614474565b1115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614173565b60405180910390fd5b60005b84849050811015611e2557611e12858583818110611df457611df36144ca565b5b9050602002016020810190611e099190613c3f565b8760ff166126c9565b8080611e1d906144f9565b915050611dd3565b5060009450600091505050505050565b600e60009054906101000a900461ffff1681565b600c5481565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611f109061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3c9061408e565b8015611f895780601f10611f5e57610100808354040283529160200191611f89565b820191906000526020600020905b815481529060010190602001808311611f6c57829003601f168201915b505050505081565b611f99612106565b73ffffffffffffffffffffffffffffffffffffffff16611fb76116de565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120049061403f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614747565b60405180910390fd5b61208681612976565b50565b600e60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161211961220e565b11158015612128575060005482105b8015612155575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061221e826126e7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612289576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122aa612106565b73ffffffffffffffffffffffffffffffffffffffff1614806122d957506122d8856122d3612106565b611e6f565b5b8061231e57506122e7612106565b73ffffffffffffffffffffffffffffffffffffffff1661230684610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612357576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123cb8585856001612dc0565b6123d76000848761215c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561265757600054821461265657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126c28585856001612dc6565b5050505050565b6126e3828260405180602001604052806000815250612dcc565b5050565b6126ef613622565b6000829050806126fd61220e565b1115801561270c575060005481105b1561293f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612821578092505050612971565b5b60011561293c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612937578092505050612971565b612822565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a47816000612dde565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a93612106565b8786866040518563ffffffff1660e01b8152600401612ab594939291906147bc565b602060405180830381600087803b158015612acf57600080fd5b505af1925050508015612b0057506040513d601f19601f82011682018060405250810190612afd919061481d565b60015b612b7a573d8060008114612b30576040519150601f19603f3d011682016040523d82523d6000602084013e612b35565b606091505b50600081511415612b72576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612bdc9061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054612c089061408e565b8015612c555780601f10612c2a57610100808354040283529160200191612c55565b820191906000526020600020905b815481529060010190602001808311612c3857829003601f168201915b5050505050905090565b60606000821415612ca7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dbb565b600082905060005b60008214612cd9578080612cc2906144f9565b915050600a82612cd29190614879565b9150612caf565b60008167ffffffffffffffff811115612cf557612cf46139a8565b5b6040519080825280601f01601f191660200182016040528015612d275781602001600182028036833780820191505090505b5090505b60008514612db457600182612d4091906148aa565b9150600a85612d4f91906148de565b6030612d5b9190614474565b60f81b818381518110612d7157612d706144ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dad9190614879565b9450612d2b565b8093505050505b919050565b50505050565b50505050565b612dd983838360016131ce565b505050565b6000612de9836126e7565b90506000816000015190508215612eca5760008173ffffffffffffffffffffffffffffffffffffffff16612e1b612106565b73ffffffffffffffffffffffffffffffffffffffff161480612e4a5750612e4982612e44612106565b611e6f565b5b80612e8f5750612e58612106565b73ffffffffffffffffffffffffffffffffffffffff16612e7786610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ec8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612ed8816000866001612dc0565b612ee46000858361215c565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561314857600054821461314757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131b6816000866001612dc6565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561323b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613276576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132836000868387612dc0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561344d575061344c8773ffffffffffffffffffffffffffffffffffffffff16612a4a565b5b15613513575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134c26000888480600101955088612a6d565b6134f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561345357826000541461350e57600080fd5b61357f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613514575b8160008190555050506135956000868387612dc6565b5050505050565b8280546135a89061408e565b90600052602060002090601f0160209004810192826135ca5760008555613611565b82601f106135e357805160ff1916838001178555613611565b82800160010185558215613611579182015b828111156136105782518255916020019190600101906135f5565b5b50905061361e9190613665565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561367e576000816000905550600101613666565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136cb81613696565b81146136d657600080fd5b50565b6000813590506136e8816136c2565b92915050565b6000602082840312156137045761370361368c565b5b6000613712848285016136d9565b91505092915050565b60008115159050919050565b6137308161371b565b82525050565b600060208201905061374b6000830184613727565b92915050565b600061ffff82169050919050565b61376881613751565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b6000602082840312156137a1576137a061368c565b5b60006137af84828501613776565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137f25780820151818401526020810190506137d7565b83811115613801576000848401525b50505050565b6000601f19601f8301169050919050565b6000613823826137b8565b61382d81856137c3565b935061383d8185602086016137d4565b61384681613807565b840191505092915050565b6000602082019050818103600083015261386b8184613818565b905092915050565b6000819050919050565b61388681613873565b811461389157600080fd5b50565b6000813590506138a38161387d565b92915050565b6000602082840312156138bf576138be61368c565b5b60006138cd84828501613894565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613901826138d6565b9050919050565b613911816138f6565b82525050565b600060208201905061392c6000830184613908565b92915050565b61393b816138f6565b811461394657600080fd5b50565b60008135905061395881613932565b92915050565b600080604083850312156139755761397461368c565b5b600061398385828601613949565b925050602061399485828601613894565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e082613807565b810181811067ffffffffffffffff821117156139ff576139fe6139a8565b5b80604052505050565b6000613a12613682565b9050613a1e82826139d7565b919050565b600067ffffffffffffffff821115613a3e57613a3d6139a8565b5b613a4782613807565b9050602081019050919050565b82818337600083830152505050565b6000613a76613a7184613a23565b613a08565b905082815260208101848484011115613a9257613a916139a3565b5b613a9d848285613a54565b509392505050565b600082601f830112613aba57613ab961399e565b5b8135613aca848260208601613a63565b91505092915050565b600060208284031215613ae957613ae861368c565b5b600082013567ffffffffffffffff811115613b0757613b06613691565b5b613b1384828501613aa5565b91505092915050565b613b2581613873565b82525050565b6000602082019050613b406000830184613b1c565b92915050565b600080600060608486031215613b5f57613b5e61368c565b5b6000613b6d86828701613949565b9350506020613b7e86828701613949565b9250506040613b8f86828701613894565b9150509250925092565b60008060408385031215613bb057613baf61368c565b5b6000613bbe85828601613776565b9250506020613bcf85828601613949565b9150509250929050565b600060ff82169050919050565b613bef81613bd9565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b600060208284031215613c2857613c2761368c565b5b6000613c3684828501613bfd565b91505092915050565b600060208284031215613c5557613c5461368c565b5b6000613c6384828501613949565b91505092915050565b613c7581613bd9565b82525050565b6000602082019050613c906000830184613c6c565b92915050565b613c9f8161371b565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd861368c565b5b6000613ce785828601613949565b9250506020613cf885828601613cad565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613d2257613d2161399e565b5b8235905067ffffffffffffffff811115613d3f57613d3e613d02565b5b602083019150836020820283011115613d5b57613d5a613d07565b5b9250929050565b60008060208385031215613d7957613d7861368c565b5b600083013567ffffffffffffffff811115613d9757613d96613691565b5b613da385828601613d0c565b92509250509250929050565b600067ffffffffffffffff821115613dca57613dc96139a8565b5b613dd382613807565b9050602081019050919050565b6000613df3613dee84613daf565b613a08565b905082815260208101848484011115613e0f57613e0e6139a3565b5b613e1a848285613a54565b509392505050565b600082601f830112613e3757613e3661399e565b5b8135613e47848260208601613de0565b91505092915050565b60008060008060808587031215613e6a57613e6961368c565b5b6000613e7887828801613949565b9450506020613e8987828801613949565b9350506040613e9a87828801613894565b925050606085013567ffffffffffffffff811115613ebb57613eba613691565b5b613ec787828801613e22565b91505092959194509250565b60008083601f840112613ee957613ee861399e565b5b8235905067ffffffffffffffff811115613f0657613f05613d02565b5b602083019150836020820283011115613f2257613f21613d07565b5b9250929050565b600080600060408486031215613f4257613f4161368c565b5b6000613f5086828701613bfd565b935050602084013567ffffffffffffffff811115613f7157613f70613691565b5b613f7d86828701613ed3565b92509250509250925092565b613f9281613751565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b60008060408385031215613fca57613fc961368c565b5b6000613fd885828601613949565b9250506020613fe985828601613949565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140296020836137c3565b915061403482613ff3565b602082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a657607f821691505b602082108114156140ba576140b961405f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140fa82613751565b915061410583613751565b92508261ffff0382111561411c5761411b6140c0565b5b828201905092915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b600061415d6013836137c3565b915061416882614127565b602082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006141c96013836137c3565b91506141d482614193565b602082019050919050565b600060208201905081810360008301526141f8816141bc565b9050919050565b600061420a82613bd9565b915061421583613bd9565b92508260ff0382111561422b5761422a6140c0565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061426c601c836137c3565b915061427782614236565b602082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006142d86017836137c3565b91506142e3826142a2565b602082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b600061431982613873565b915061432483613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435d5761435c6140c0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061439e6013836137c3565b91506143a982614368565b602082019050919050565b600060208201905081810360008301526143cd81614391565b9050919050565b60006143df82613bd9565b91506143ea83613bd9565b9250828210156143fd576143fc6140c0565b5b828203905092915050565b7f616d6f756e74203d203000000000000000000000000000000000000000000000600082015250565b600061443e600a836137c3565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b600061447f82613873565b915061448a83613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144bf576144be6140c0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061450482613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614537576145366140c0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061459e602f836137c3565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b600081905092915050565b60006145ea826137b8565b6145f481856145d4565b93506146048185602086016137d4565b80840191505092915050565b60008190508160005260206000209050919050565b600081546146328161408e565b61463c81866145d4565b9450600182166000811461465757600181146146685761469b565b60ff1983168652818601935061469b565b61467185614610565b60005b8381101561469357815481890152600182019150602081019050614674565b838801955050505b50505092915050565b60006146b082866145df565b91506146bc82856145df565b91506146c88284614625565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147316026836137c3565b915061473c826146d5565b604082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478e82614767565b6147988185614772565b93506147a88185602086016137d4565b6147b181613807565b840191505092915050565b60006080820190506147d16000830187613908565b6147de6020830186613908565b6147eb6040830185613b1c565b81810360608301526147fd8184614783565b905095945050505050565b600081519050614817816136c2565b92915050565b6000602082840312156148335761483261368c565b5b600061484184828501614808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488482613873565b915061488f83613873565b92508261489f5761489e61484a565b5b828204905092915050565b60006148b582613873565b91506148c083613873565b9250828210156148d3576148d26140c0565b5b828203905092915050565b60006148e982613873565b91506148f483613873565b9250826149045761490361484a565b5b82820690509291505056fea264697066735822122055da863e06f0df58c701d0ffc1634683de4654e530e3209c72f810b1765fba8e64736f6c63430008090033516d4e4d4751504472443455797a6372503548634d47776a39476b62323248327434506f3142716b6f62563861752f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e94053c71161006f578063e94053c7146107fe578063e985e9c51461083b578063eef440af14610878578063f2fde38b146108a3578063f8bf5172146108cc5761023b565b8063b88d4fde14610719578063c87b56dd14610742578063cffb6e201461077f578063d5abeb01146107a8578063e1e4bc12146107d35761023b565b8063a22cb465116100f2578063a22cb4651461064a578063a475b5dd14610673578063a694fc3a1461069e578063aa062290146106c7578063b80f55c9146106f05761023b565b8063715018a6146105895780637ec4a659146105a05780638da5cb5b146105c957806394354fd0146105f457806395d89b411461061f5761023b565b806337a66d85116101bc5780634d9c1848116101805780634d9c18481461049f5780635c975abb146104c85780636352211e146104f35780636ecd23061461053057806370a082311461054c5761023b565b806337a66d85146104085780633bd649681461041f5780633ccfd60b1461043657806342842e0e1461044d57806344a0d68a146104765761023b565b80631067fcc7116102035780631067fcc71461033757806313faede61461036057806318160ddd1461038b57806323b872dd146103b65780632f6f98e1146103df5761023b565b806301ffc9a71461024057806306421c2f1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ee565b6108f7565b6040516102749190613736565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061378b565b6109d9565b005b3480156102b257600080fd5b506102bb610a75565b6040516102c89190613851565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906138a9565b610b07565b6040516103059190613917565b60405180910390f35b34801561031a57600080fd5b506103356004803603810190610330919061395e565b610b83565b005b34801561034357600080fd5b5061035e60048036038101906103599190613ad3565b610c8e565b005b34801561036c57600080fd5b50610375610d24565b6040516103829190613b2b565b60405180910390f35b34801561039757600080fd5b506103a0610d2a565b6040516103ad9190613b2b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613b46565b610d41565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613b99565b610d51565b005b34801561041457600080fd5b5061041d610e5e565b005b34801561042b57600080fd5b50610434610f06565b005b34801561044257600080fd5b5061044b610fae565b005b34801561045957600080fd5b50610474600480360381019061046f9190613b46565b611079565b005b34801561048257600080fd5b5061049d600480360381019061049891906138a9565b611099565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613c12565b61111f565b005b3480156104d457600080fd5b506104dd6111bd565b6040516104ea9190613736565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906138a9565b6111d0565b6040516105279190613917565b60405180910390f35b61054a60048036038101906105459190613c12565b6111e6565b005b34801561055857600080fd5b50610573600480360381019061056e9190613c3f565b6114f0565b6040516105809190613b2b565b60405180910390f35b34801561059557600080fd5b5061059e6115c0565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190613ad3565b611648565b005b3480156105d557600080fd5b506105de6116de565b6040516105eb9190613917565b60405180910390f35b34801561060057600080fd5b50610609611708565b6040516106169190613c7b565b60405180910390f35b34801561062b57600080fd5b5061063461171b565b6040516106419190613851565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613cc2565b6117ad565b005b34801561067f57600080fd5b50610688611925565b6040516106959190613736565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906138a9565b611938565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613c12565b611999565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613d62565b611a33565b005b34801561072557600080fd5b50610740600480360381019061073b9190613e50565b611af7565b005b34801561074e57600080fd5b50610769600480360381019061076491906138a9565b611b73565b6040516107769190613851565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613f29565b611ccc565b005b3480156107b457600080fd5b506107bd611e35565b6040516107ca9190613f98565b60405180910390f35b3480156107df57600080fd5b506107e8611e49565b6040516107f59190613b2b565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613c3f565b611e4f565b6040516108329190613c7b565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613fb3565b611e6f565b60405161086f9190613736565b60405180910390f35b34801561088457600080fd5b5061088d611f03565b60405161089a9190613851565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613c3f565b611f91565b005b3480156108d857600080fd5b506108e1612089565b6040516108ee9190613c7b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d257506109d18261209c565b5b9050919050565b6109e1612106565b73ffffffffffffffffffffffffffffffffffffffff166109ff6116de565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c9061403f565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a849061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab09061408e565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b128261210e565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8e826111d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c15612106565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c475750610c4581610c40612106565b611e6f565b155b15610c7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8983838361215c565b505050565b610c96612106565b73ffffffffffffffffffffffffffffffffffffffff16610cb46116de565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061403f565b60405180910390fd5b80600b9080519060200190610d2092919061359c565b5050565b600d5481565b6000610d3461220e565b6001546000540303905090565b610d4c838383612213565b505050565b610d59612106565b73ffffffffffffffffffffffffffffffffffffffff16610d776116de565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061403f565b60405180910390fd5b6000610dd7610d2a565b9050600e60009054906101000a900461ffff1661ffff168382610dfa91906140ef565b61ffff161115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690614173565b60405180910390fd5b610e4d828461ffff166126c9565b600092506000915060009050505050565b610e66612106565b73ffffffffffffffffffffffffffffffffffffffff16610e846116de565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061403f565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b610f0e612106565b73ffffffffffffffffffffffffffffffffffffffff16610f2c6116de565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061403f565b60405180910390fd5b600e60059054906101000a900460ff1615600e60056101000a81548160ff021916908315150217905550565b610fb6612106565b73ffffffffffffffffffffffffffffffffffffffff16610fd46116de565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061403f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611075573d6000803e3d6000fd5b5050565b61109483838360405180602001604052806000815250611af7565b505050565b6110a1612106565b73ffffffffffffffffffffffffffffffffffffffff166110bf6116de565b73ffffffffffffffffffffffffffffffffffffffff1614611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061403f565b60405180910390fd5b80600d8190555050565b611127612106565b73ffffffffffffffffffffffffffffffffffffffff166111456116de565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061403f565b60405180910390fd5b80600e60036101000a81548160ff021916908360ff1602179055506000905050565b600e60049054906101000a900460ff1681565b60006111db826126e7565b600001519050919050565b60006111f0610d2a565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900461ffff1661ffff168360ff168361126791906140ef565b61ffff1611156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a3906141df565b60405180910390fd5b600e60029054906101000a900460ff1660ff1681846112cb91906141ff565b60ff16111561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614282565b60405180910390fd5b600e60049054906101000a900460ff161561135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906142ee565b60405180910390fd5b600e60039054906101000a900460ff1660ff168160ff16106113d3578260ff16600d5461138c919061430e565b3410156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906143b4565b60405180910390fd5b611473565b600081846113e191906141ff565b9050600e60039054906101000a900460ff1660ff168160ff16111561147157600e60039054906101000a900460ff168161141b91906143d4565b90508060ff16600d5461142e919061430e565b341015611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906143b4565b60405180910390fd5b5b505b611480338460ff166126c9565b808361148c91906141ff565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611558576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115c8612106565b73ffffffffffffffffffffffffffffffffffffffff166115e66116de565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061403f565b60405180910390fd5b6116466000612976565b565b611650612106565b73ffffffffffffffffffffffffffffffffffffffff1661166e6116de565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061403f565b60405180910390fd5b80600990805190602001906116da92919061359c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60029054906101000a900460ff1681565b60606003805461172a9061408e565b80601f01602080910402602001604051908101604052809291908181526020018280546117569061408e565b80156117a35780601f10611778576101008083540402835291602001916117a3565b820191906000526020600020905b81548152906001019060200180831161178657829003601f168201915b5050505050905090565b6117b5612106565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611827612106565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d4612106565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119199190613736565b60405180910390a35050565b600e60059054906101000a900460ff1681565b336000821161197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390614454565b60405180910390fd5b81600c600082825461198e9190614474565b925050819055505050565b6119a1612106565b73ffffffffffffffffffffffffffffffffffffffff166119bf6116de565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061403f565b60405180910390fd5b80600e60026101000a81548160ff021916908360ff16021790555050565b611a3b612106565b73ffffffffffffffffffffffffffffffffffffffff16611a596116de565b73ffffffffffffffffffffffffffffffffffffffff1614611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa69061403f565b60405180910390fd5b60005b82829050811015611af257611adf838383818110611ad357611ad26144ca565b5b90506020020135612a3c565b8080611aea906144f9565b915050611ab2565b505050565b611b02848484612213565b611b218373ffffffffffffffffffffffffffffffffffffffff16612a4a565b8015611b365750611b3484848484612a6d565b155b15611b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b7e8261210e565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb4906145b4565b60405180910390fd5b60001515600e60059054906101000a900460ff1615151415611c6b57600b8054611be69061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c129061408e565b8015611c5f5780601f10611c3457610100808354040283529160200191611c5f565b820191906000526020600020905b815481529060010190602001808311611c4257829003601f168201915b50505050509050611cc7565b6000611c75612bcd565b90506000815111611c955760405180602001604052806000815250611cc3565b80611c9f84612c5f565b600a604051602001611cb3939291906146a4565b6040516020818303038152906040525b9150505b919050565b611cd4612106565b73ffffffffffffffffffffffffffffffffffffffff16611cf26116de565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061403f565b60405180910390fd5b6000611d52610d2a565b90506000838390508560ff16611d68919061430e565b9050600e60009054906101000a900461ffff1661ffff16818361ffff16611d8f9190614474565b1115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614173565b60405180910390fd5b60005b84849050811015611e2557611e12858583818110611df457611df36144ca565b5b9050602002016020810190611e099190613c3f565b8760ff166126c9565b8080611e1d906144f9565b915050611dd3565b5060009450600091505050505050565b600e60009054906101000a900461ffff1681565b600c5481565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611f109061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3c9061408e565b8015611f895780601f10611f5e57610100808354040283529160200191611f89565b820191906000526020600020905b815481529060010190602001808311611f6c57829003601f168201915b505050505081565b611f99612106565b73ffffffffffffffffffffffffffffffffffffffff16611fb76116de565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120049061403f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614747565b60405180910390fd5b61208681612976565b50565b600e60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161211961220e565b11158015612128575060005482105b8015612155575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061221e826126e7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612289576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122aa612106565b73ffffffffffffffffffffffffffffffffffffffff1614806122d957506122d8856122d3612106565b611e6f565b5b8061231e57506122e7612106565b73ffffffffffffffffffffffffffffffffffffffff1661230684610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612357576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123cb8585856001612dc0565b6123d76000848761215c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561265757600054821461265657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126c28585856001612dc6565b5050505050565b6126e3828260405180602001604052806000815250612dcc565b5050565b6126ef613622565b6000829050806126fd61220e565b1115801561270c575060005481105b1561293f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612821578092505050612971565b5b60011561293c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612937578092505050612971565b612822565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a47816000612dde565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a93612106565b8786866040518563ffffffff1660e01b8152600401612ab594939291906147bc565b602060405180830381600087803b158015612acf57600080fd5b505af1925050508015612b0057506040513d601f19601f82011682018060405250810190612afd919061481d565b60015b612b7a573d8060008114612b30576040519150601f19603f3d011682016040523d82523d6000602084013e612b35565b606091505b50600081511415612b72576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612bdc9061408e565b80601f0160208091040260200160405190810160405280929190818152602001828054612c089061408e565b8015612c555780601f10612c2a57610100808354040283529160200191612c55565b820191906000526020600020905b815481529060010190602001808311612c3857829003601f168201915b5050505050905090565b60606000821415612ca7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dbb565b600082905060005b60008214612cd9578080612cc2906144f9565b915050600a82612cd29190614879565b9150612caf565b60008167ffffffffffffffff811115612cf557612cf46139a8565b5b6040519080825280601f01601f191660200182016040528015612d275781602001600182028036833780820191505090505b5090505b60008514612db457600182612d4091906148aa565b9150600a85612d4f91906148de565b6030612d5b9190614474565b60f81b818381518110612d7157612d706144ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dad9190614879565b9450612d2b565b8093505050505b919050565b50505050565b50505050565b612dd983838360016131ce565b505050565b6000612de9836126e7565b90506000816000015190508215612eca5760008173ffffffffffffffffffffffffffffffffffffffff16612e1b612106565b73ffffffffffffffffffffffffffffffffffffffff161480612e4a5750612e4982612e44612106565b611e6f565b5b80612e8f5750612e58612106565b73ffffffffffffffffffffffffffffffffffffffff16612e7786610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ec8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612ed8816000866001612dc0565b612ee46000858361215c565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561314857600054821461314757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131b6816000866001612dc6565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561323b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613276576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132836000868387612dc0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561344d575061344c8773ffffffffffffffffffffffffffffffffffffffff16612a4a565b5b15613513575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134c26000888480600101955088612a6d565b6134f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561345357826000541461350e57600080fd5b61357f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613514575b8160008190555050506135956000868387612dc6565b5050505050565b8280546135a89061408e565b90600052602060002090601f0160209004810192826135ca5760008555613611565b82601f106135e357805160ff1916838001178555613611565b82800160010185558215613611579182015b828111156136105782518255916020019190600101906135f5565b5b50905061361e9190613665565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561367e576000816000905550600101613666565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136cb81613696565b81146136d657600080fd5b50565b6000813590506136e8816136c2565b92915050565b6000602082840312156137045761370361368c565b5b6000613712848285016136d9565b91505092915050565b60008115159050919050565b6137308161371b565b82525050565b600060208201905061374b6000830184613727565b92915050565b600061ffff82169050919050565b61376881613751565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b6000602082840312156137a1576137a061368c565b5b60006137af84828501613776565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137f25780820151818401526020810190506137d7565b83811115613801576000848401525b50505050565b6000601f19601f8301169050919050565b6000613823826137b8565b61382d81856137c3565b935061383d8185602086016137d4565b61384681613807565b840191505092915050565b6000602082019050818103600083015261386b8184613818565b905092915050565b6000819050919050565b61388681613873565b811461389157600080fd5b50565b6000813590506138a38161387d565b92915050565b6000602082840312156138bf576138be61368c565b5b60006138cd84828501613894565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613901826138d6565b9050919050565b613911816138f6565b82525050565b600060208201905061392c6000830184613908565b92915050565b61393b816138f6565b811461394657600080fd5b50565b60008135905061395881613932565b92915050565b600080604083850312156139755761397461368c565b5b600061398385828601613949565b925050602061399485828601613894565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e082613807565b810181811067ffffffffffffffff821117156139ff576139fe6139a8565b5b80604052505050565b6000613a12613682565b9050613a1e82826139d7565b919050565b600067ffffffffffffffff821115613a3e57613a3d6139a8565b5b613a4782613807565b9050602081019050919050565b82818337600083830152505050565b6000613a76613a7184613a23565b613a08565b905082815260208101848484011115613a9257613a916139a3565b5b613a9d848285613a54565b509392505050565b600082601f830112613aba57613ab961399e565b5b8135613aca848260208601613a63565b91505092915050565b600060208284031215613ae957613ae861368c565b5b600082013567ffffffffffffffff811115613b0757613b06613691565b5b613b1384828501613aa5565b91505092915050565b613b2581613873565b82525050565b6000602082019050613b406000830184613b1c565b92915050565b600080600060608486031215613b5f57613b5e61368c565b5b6000613b6d86828701613949565b9350506020613b7e86828701613949565b9250506040613b8f86828701613894565b9150509250925092565b60008060408385031215613bb057613baf61368c565b5b6000613bbe85828601613776565b9250506020613bcf85828601613949565b9150509250929050565b600060ff82169050919050565b613bef81613bd9565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b600060208284031215613c2857613c2761368c565b5b6000613c3684828501613bfd565b91505092915050565b600060208284031215613c5557613c5461368c565b5b6000613c6384828501613949565b91505092915050565b613c7581613bd9565b82525050565b6000602082019050613c906000830184613c6c565b92915050565b613c9f8161371b565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd861368c565b5b6000613ce785828601613949565b9250506020613cf885828601613cad565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613d2257613d2161399e565b5b8235905067ffffffffffffffff811115613d3f57613d3e613d02565b5b602083019150836020820283011115613d5b57613d5a613d07565b5b9250929050565b60008060208385031215613d7957613d7861368c565b5b600083013567ffffffffffffffff811115613d9757613d96613691565b5b613da385828601613d0c565b92509250509250929050565b600067ffffffffffffffff821115613dca57613dc96139a8565b5b613dd382613807565b9050602081019050919050565b6000613df3613dee84613daf565b613a08565b905082815260208101848484011115613e0f57613e0e6139a3565b5b613e1a848285613a54565b509392505050565b600082601f830112613e3757613e3661399e565b5b8135613e47848260208601613de0565b91505092915050565b60008060008060808587031215613e6a57613e6961368c565b5b6000613e7887828801613949565b9450506020613e8987828801613949565b9350506040613e9a87828801613894565b925050606085013567ffffffffffffffff811115613ebb57613eba613691565b5b613ec787828801613e22565b91505092959194509250565b60008083601f840112613ee957613ee861399e565b5b8235905067ffffffffffffffff811115613f0657613f05613d02565b5b602083019150836020820283011115613f2257613f21613d07565b5b9250929050565b600080600060408486031215613f4257613f4161368c565b5b6000613f5086828701613bfd565b935050602084013567ffffffffffffffff811115613f7157613f70613691565b5b613f7d86828701613ed3565b92509250509250925092565b613f9281613751565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b60008060408385031215613fca57613fc961368c565b5b6000613fd885828601613949565b9250506020613fe985828601613949565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140296020836137c3565b915061403482613ff3565b602082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a657607f821691505b602082108114156140ba576140b961405f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140fa82613751565b915061410583613751565b92508261ffff0382111561411c5761411b6140c0565b5b828201905092915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b600061415d6013836137c3565b915061416882614127565b602082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006141c96013836137c3565b91506141d482614193565b602082019050919050565b600060208201905081810360008301526141f8816141bc565b9050919050565b600061420a82613bd9565b915061421583613bd9565b92508260ff0382111561422b5761422a6140c0565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061426c601c836137c3565b915061427782614236565b602082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006142d86017836137c3565b91506142e3826142a2565b602082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b600061431982613873565b915061432483613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435d5761435c6140c0565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061439e6013836137c3565b91506143a982614368565b602082019050919050565b600060208201905081810360008301526143cd81614391565b9050919050565b60006143df82613bd9565b91506143ea83613bd9565b9250828210156143fd576143fc6140c0565b5b828203905092915050565b7f616d6f756e74203d203000000000000000000000000000000000000000000000600082015250565b600061443e600a836137c3565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b600061447f82613873565b915061448a83613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144bf576144be6140c0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061450482613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614537576145366140c0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061459e602f836137c3565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b600081905092915050565b60006145ea826137b8565b6145f481856145d4565b93506146048185602086016137d4565b80840191505092915050565b60008190508160005260206000209050919050565b600081546146328161408e565b61463c81866145d4565b9450600182166000811461465757600181146146685761469b565b60ff1983168652818601935061469b565b61467185614610565b60005b8381101561469357815481890152600182019150602081019050614674565b838801955050505b50505092915050565b60006146b082866145df565b91506146bc82856145df565b91506146c88284614625565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147316026836137c3565b915061473c826146d5565b604082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478e82614767565b6147988185614772565b93506147a88185602086016137d4565b6147b181613807565b840191505092915050565b60006080820190506147d16000830187613908565b6147de6020830186613908565b6147eb6040830185613b1c565b81810360608301526147fd8184614783565b905095945050505050565b600081519050614817816136c2565b92915050565b6000602082840312156148335761483261368c565b5b600061484184828501614808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488482613873565b915061488f83613873565b92508261489f5761489e61484a565b5b828204905092915050565b60006148b582613873565b91506148c083613873565b9250828210156148d3576148d26140c0565b5b828203905092915050565b60006148e982613873565b91506148f483613873565b9250826149045761490361484a565b5b82820690509291505056fea264697066735822122055da863e06f0df58c701d0ffc1634683de4654e530e3209c72f810b1765fba8e64736f6c63430008090033

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.