ETH Price: $2,641.30 (+1.49%)

Token

Deeper Crypts of a Wandering Artist (DCWA)
 

Overview

Max Total Supply

3 DCWA

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DCWA
0xe4f44f453fbafdf39e7af6720b505fb64b041666
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:
DCWA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;


// 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
 * @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;
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @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);
}

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

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

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

// 
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
 * @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);
            }
        }
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}

// 
// Creator: Chiru Labs
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex-1;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override virtual {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    function _Transfer(
        address from,
        address to,
        uint256 tokenId
        ) internal{ 
            _transfer(from, to, tokenId);

    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract DCWA is ERC721A, Ownable {


    //author = atak.eth


    using Strings for uint256;
    string baseURI;    

    //Block between each state (approx. 6 hrs)
    uint256 public blocksPerState = 1191;

    //Previous tokens held by the wallet
    mapping(address => uint256[]) internal ownersPreviousTokens;
    //Last transfered block for each NFT
    mapping(uint256 => uint256) public lastTransferedBlock;
    //Last transfered to whitelisted wallet block for each NFT
    mapping(uint256 => uint256) public lastTransferedBlockToWhitelisted;
    //Exclusive tokens with more states than usual
    mapping(uint256 => uint256) public tokenMaxState;
    //Whitelisted wallets(No state change)
    mapping(address => bool) public whitelistedWallets;
    //Last token state before transfering to a whitelisted wallet
    mapping(uint256 => uint256) internal lastStateOfToken;


 
    
    
    
    constructor() ERC721A("Deeper Crypts of a Wandering Artist", "DCWA") {
        currentIndex++;
    }

    function manageWhitelistOfAddress(address _address, bool _whitelisted) public onlyOwner{
        whitelistedWallets[_address] = _whitelisted;
    }

    function changeMaxStateOfToken(uint256 _tokenId, uint256 _newMax) public onlyOwner{
        tokenMaxState[_tokenId] = _newMax;
    }

    function changeBlocksPerState(uint256 _newCount) public onlyOwner{
        blocksPerState = _newCount;
    }



    function getTokenState(uint256 tokenId) public view returns(uint256){

        uint256 blocksSinceLastTransfer = block.number - lastTransferedBlock[tokenId];
        uint256 stateCount = blocksSinceLastTransfer / blocksPerState;
        uint256 currentTokenState;

        if(whitelistedWallets[ownerOf(tokenId)]){
            currentTokenState = lastStateOfToken[tokenId];
        }else if(stateCount <= tokenMaxState[tokenId]){
            currentTokenState = stateCount;
        }else{
            currentTokenState = tokenMaxState[tokenId];
        }

        return currentTokenState;

    }

    function tokenURI(uint256 tokenId) public view override returns (string memory){

        return string(abi.encodePacked(baseURI, tokenId.toString(), "_", getTokenState(tokenId).toString(), ".json"));

    }

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


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


    function transferFrom(address from, address to, uint256 tokenId) public override {
        
        bool previouslyOwned = false;

        for(uint256 i = 0; i < ownersPreviousTokens[to].length; i++){
            if((ownersPreviousTokens[to])[i] == tokenId){
                previouslyOwned = true;
            }
        }

        
        if(whitelistedWallets[to]){
            lastStateOfToken[tokenId] = getTokenState(tokenId);
            lastTransferedBlockToWhitelisted[tokenId] = block.number;
        }else if(previouslyOwned){
            lastTransferedBlock[tokenId] = block.number;
        }else if(whitelistedWallets[from]){

            if(whitelistedWallets[to]){
                //for fast reset
                lastTransferedBlock[tokenId] = block.number;
            }else{
                lastTransferedBlock[tokenId] += (block.number - lastTransferedBlockToWhitelisted[tokenId]) ;
            }

            
        }else{
            ownersPreviousTokens[to].push(tokenId);

            uint256 maxBlockForState = tokenMaxState[tokenId] * blocksPerState;
            uint256 blocksPassedSinceLastTransfer = block.number - lastTransferedBlock[tokenId];
            uint256 extraBlockCount = 0;
            

            if(getTokenState(tokenId) > 0){
                //Goes 1 state back

                //To ensure that it goes one state back after its transfered when it reaches max state
                if(blocksPassedSinceLastTransfer > maxBlockForState){
                extraBlockCount = blocksPassedSinceLastTransfer - maxBlockForState;
                }

                lastTransferedBlock[tokenId] += blocksPerState + extraBlockCount;
            }
            
        }

        _Transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override {
        
        bool previouslyOwned = false;

        for(uint256 i = 0; i < ownersPreviousTokens[to].length; i++){
            if((ownersPreviousTokens[to])[i] == tokenId){
                previouslyOwned = true;
            }
        }

        
        if(whitelistedWallets[to]){
            lastStateOfToken[tokenId] = getTokenState(tokenId);
            lastTransferedBlockToWhitelisted[tokenId] = block.number;
        }else if(previouslyOwned){
            lastTransferedBlock[tokenId] = block.number;
        }else if(whitelistedWallets[from]){

            if(whitelistedWallets[to]){
                //for fast reset
                lastTransferedBlock[tokenId] = block.number;
            }else{
                lastTransferedBlock[tokenId] += (block.number - lastTransferedBlockToWhitelisted[tokenId]) ;
            }

            
        }else{

            ownersPreviousTokens[to].push(tokenId);

            uint256 maxBlockForState = tokenMaxState[tokenId] * blocksPerState;
            uint256 blocksPassedSinceLastTransfer = block.number - lastTransferedBlock[tokenId];
            uint256 extraBlockCount = 0;
            

            if(getTokenState(tokenId) > 0){
                //Goes 1 state back

                //To ensure that it goes one state back after its transfered when it reaches max state
                if(blocksPassedSinceLastTransfer > maxBlockForState){
                extraBlockCount = blocksPassedSinceLastTransfer - maxBlockForState;
                }

                lastTransferedBlock[tokenId] += blocksPerState + extraBlockCount;
            }
        }
        
        safeTransferFrom(from, to, tokenId, '');
    }


    function mint() external onlyOwner {

        lastTransferedBlock[currentIndex] = block.number;
        
        _safeMint(msg.sender, 1);
    }


    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(balance));
    }

}

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"},{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocksPerState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCount","type":"uint256"}],"name":"changeBlocksPerState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"changeMaxStateOfToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransferedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransferedBlockToWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"manageWhitelistOfAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104a76009553480156200001757600080fd5b50604051806060016040528060238152602001620048c0602391396040518060400160405280600481526020017f4443574100000000000000000000000000000000000000000000000000000000815250816001908051906020019062000080929190620001a9565b50806002908051906020019062000099929190620001a9565b505050620000bc620000b0620000db60201b60201c565b620000e360201b60201c565b600080815480929190620000d09062000299565b919050555062000345565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b79062000263565b90600052602060002090601f016020900481019282620001db576000855562000227565b82601f10620001f657805160ff191683800117855562000227565b8280016001018555821562000227579182015b828111156200022657825182559160200191906001019062000209565b5b5090506200023691906200023a565b5090565b5b80821115620002555760008160009055506001016200023b565b5090565b6000819050919050565b600060028204905060018216806200027c57607f821691505b6020821081141562000293576200029262000316565b5b50919050565b6000620002a68262000259565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620002dc57620002db620002e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61456b80620003556000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b9e2b691116100a2578063e7eed2e711610071578063e7eed2e71461058c578063e985e9c5146105aa578063f2fde38b146105da578063f45fd0f3146105f6576101e5565b8063b9e2b691146104f4578063c459044f14610524578063c87b56dd14610540578063ca12388f14610570576101e5565b806395d89b41116100de57806395d89b411461046e578063a22cb4651461048c578063a80dcfee146104a8578063b88d4fde146104d8576101e5565b8063715018a61461040c5780637d3bc15f14610416578063853828b6146104465780638da5cb5b14610450576101e5565b80632f745c591161018757806355f804b31161015657806355f804b3146103605780636352211e1461037c5780636a60e416146103ac57806370a08231146103dc576101e5565b80632f745c59146102c85780633ed916b2146102f857806342842e0e146103145780634f6ccce714610330576101e5565b8063095ea7b3116101c3578063095ea7b3146102685780631249c58b1461028457806318160ddd1461028e57806323b872dd146102ac576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff919061324d565b610626565b6040516102119190613816565b60405180910390f35b610222610770565b60405161022f9190613831565b60405180910390f35b610252600480360381019061024d91906132f0565b610802565b60405161025f91906137af565b60405180910390f35b610282600480360381019061027d919061320d565b610887565b005b61028c6109a0565b005b610296610a42565b6040516102a39190613a93565b60405180910390f35b6102c660048036038101906102c191906130f7565b610a58565b005b6102e260048036038101906102dd919061320d565b610e09565b6040516102ef9190613a93565b60405180910390f35b610312600480360381019061030d91906132f0565b610ffb565b005b61032e600480360381019061032991906130f7565b611081565b005b61034a600480360381019061034591906132f0565b611442565b6040516103579190613a93565b60405180910390f35b61037a600480360381019061037591906132a7565b611495565b005b610396600480360381019061039191906132f0565b61152b565b6040516103a391906137af565b60405180910390f35b6103c660048036038101906103c191906132f0565b611541565b6040516103d39190613a93565b60405180910390f35b6103f660048036038101906103f1919061308a565b611559565b6040516104039190613a93565b60405180910390f35b610414611642565b005b610430600480360381019061042b91906132f0565b6116ca565b60405161043d9190613a93565b60405180910390f35b61044e6116e2565b005b6104586117a4565b60405161046591906137af565b60405180910390f35b6104766117ce565b6040516104839190613831565b60405180910390f35b6104a660048036038101906104a191906131cd565b611860565b005b6104c260048036038101906104bd919061308a565b6119e1565b6040516104cf9190613816565b60405180910390f35b6104f260048036038101906104ed919061314a565b611a01565b005b61050e600480360381019061050991906132f0565b611a5d565b60405161051b9190613a93565b60405180910390f35b61053e6004803603810190610539919061331d565b611a75565b005b61055a600480360381019061055591906132f0565b611b0d565b6040516105679190613831565b60405180910390f35b61058a600480360381019061058591906131cd565b611b53565b005b610594611c2a565b6040516105a19190613a93565b60405180910390f35b6105c460048036038101906105bf91906130b7565b611c30565b6040516105d19190613816565b60405180910390f35b6105f460048036038101906105ef919061308a565b611cc4565b005b610610600480360381019061060b91906132f0565b611dbc565b60405161061d9190613a93565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610769575061076882611eae565b5b9050919050565b60606001805461077f90613d58565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90613d58565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b600061080d82611f18565b61084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390613a73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108928261152b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906139b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610922611f25565b73ffffffffffffffffffffffffffffffffffffffff16148061095157506109508161094b611f25565b611c30565b5b610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906138f3565b60405180910390fd5b61099b838383611f2d565b505050565b6109a8611f25565b73ffffffffffffffffffffffffffffffffffffffff166109c66117a4565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613953565b60405180910390fd5b43600b60008054815260200190815260200160002081905550610a40336001611fdf565b565b60006001600054610a539190613c6e565b905090565b6000805b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610b215782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610af857610af7613ec2565b5b90600052602060002001541415610b0e57600191505b8080610b1990613dbb565b915050610a5c565b50600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bb157610b7d82611dbc565b600f60008481526020019081526020016000208190555043600c600084815260200190815260200160002081905550610df8565b8015610bd45743600b600084815260200190815260200160002081905550610df7565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ce357600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c955743600b600084815260200190815260200160002081905550610cde565b600c60008381526020019081526020016000205443610cb49190613c6e565b600b60008481526020019081526020016000206000828254610cd69190613b8d565b925050819055505b610df6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000600954600d600085815260200190815260200160002054610d6c9190613c14565b90506000600b60008581526020019081526020016000205443610d8f9190613c6e565b9050600080610d9d86611dbc565b1115610df25782821115610dba578282610db79190613c6e565b90505b80600954610dc89190613b8d565b600b60008781526020019081526020016000206000828254610dea9190613b8d565b925050819055505b5050505b5b5b610e03848484611ffd565b50505050565b6000610e1483611559565b8210610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613853565b60405180910390fd5b6000610e5f610a42565b905060008060005b83811015610fb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fab5786841415610fa2578195505050505050610ff5565b83806001019450505b508080600101915050610e67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613a33565b60405180910390fd5b92915050565b611003611f25565b73ffffffffffffffffffffffffffffffffffffffff166110216117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613953565b60405180910390fd5b8060098190555050565b6000805b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561114a5782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061112157611120613ec2565b5b9060005260206000200154141561113757600191505b808061114290613dbb565b915050611085565b50600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111da576111a682611dbc565b600f60008481526020019081526020016000208190555043600c600084815260200190815260200160002081905550611421565b80156111fd5743600b600084815260200190815260200160002081905550611420565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561130c57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112be5743600b600084815260200190815260200160002081905550611307565b600c600083815260200190815260200160002054436112dd9190613c6e565b600b600084815260200190815260200160002060008282546112ff9190613b8d565b925050819055505b61141f565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000600954600d6000858152602001908152602001600020546113959190613c14565b90506000600b600085815260200190815260200160002054436113b89190613c6e565b90506000806113c686611dbc565b111561141b57828211156113e35782826113e09190613c6e565b90505b806009546113f19190613b8d565b600b600087815260200190815260200160002060008282546114139190613b8d565b925050819055505b5050505b5b5b61143c84848460405180602001604052806000815250611a01565b50505050565b600061144c610a42565b821061148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906138b3565b60405180910390fd5b819050919050565b61149d611f25565b73ffffffffffffffffffffffffffffffffffffffff166114bb6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613953565b60405180910390fd5b8060089080519060200190611527929190612e64565b5050565b60006115368261200d565b600001519050919050565b600b6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613913565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61164a611f25565b73ffffffffffffffffffffffffffffffffffffffff166116686117a4565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613953565b60405180910390fd5b6116c860006121a7565b565b600c6020528060005260406000206000915090505481565b6116ea611f25565b73ffffffffffffffffffffffffffffffffffffffff166117086117a4565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613953565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506117a157600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117dd90613d58565b80601f016020809104026020016040519081016040528092919081815260200182805461180990613d58565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b5050505050905090565b611868611f25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613973565b60405180910390fd5b80600660006118e3611f25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990611f25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190613816565b60405180910390a35050565b600e6020528060005260406000206000915054906101000a900460ff1681565b611a0c84848461226d565b611a18848484846127ad565b611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906139d3565b60405180910390fd5b50505050565b600d6020528060005260406000206000915090505481565b611a7d611f25565b73ffffffffffffffffffffffffffffffffffffffff16611a9b6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613953565b60405180910390fd5b80600d6000848152602001908152602001600020819055505050565b60606008611b1a83612944565b611b2b611b2685611dbc565b612944565b604051602001611b3d93929190613768565b6040516020818303038152906040529050919050565b611b5b611f25565b73ffffffffffffffffffffffffffffffffffffffff16611b796117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613953565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611f25565b73ffffffffffffffffffffffffffffffffffffffff16611cea6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613953565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613873565b60405180910390fd5b611db9816121a7565b50565b600080600b60008481526020019081526020016000205443611dde9190613c6e565b9050600060095482611df09190613be3565b90506000600e6000611e018761152b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e6957600f6000868152602001908152602001600020549050611ea3565b600d6000868152602001908152602001600020548211611e8b57819050611ea2565b600d60008681526020019081526020016000205490505b5b809350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ff9828260405180602001604052806000815250612aa5565b5050565b61200883838361226d565b505050565b612015612eea565b61201e82611f18565b61205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613893565b60405180910390fd5b60008290505b60008110612166576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121575780925050506121a2565b50808060019003915050612063565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613a53565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122788261200d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661229f611f25565b73ffffffffffffffffffffffffffffffffffffffff1614806122fb57506122c4611f25565b73ffffffffffffffffffffffffffffffffffffffff166122e384610802565b73ffffffffffffffffffffffffffffffffffffffff16145b8061231757506123168260000151612311611f25565b611c30565b5b905080612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613993565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290613933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612432906138d3565b60405180910390fd5b6124488585856001612ab7565b6124586000848460000151611f2d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561273d5761269c81611f18565b1561273c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a68585856001612abd565b5050505050565b60006127ce8473ffffffffffffffffffffffffffffffffffffffff16612ac3565b15612937578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f7611f25565b8786866040518563ffffffff1660e01b815260040161281994939291906137ca565b602060405180830381600087803b15801561283357600080fd5b505af192505050801561286457506040513d601f19601f82011682018060405250810190612861919061327a565b60015b6128e7573d8060008114612894576040519150601f19603f3d011682016040523d82523d6000602084013e612899565b606091505b506000815114156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d6906139d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061293c565b600190505b949350505050565b6060600082141561298c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa0565b600082905060005b600082146129be5780806129a790613dbb565b915050600a826129b79190613be3565b9150612994565b60008167ffffffffffffffff8111156129da576129d9613ef1565b5b6040519080825280601f01601f191660200182016040528015612a0c5781602001600182028036833780820191505090505b5090505b60008514612a9957600182612a259190613c6e565b9150600a85612a349190613e04565b6030612a409190613b8d565b60f81b818381518110612a5657612a55613ec2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a929190613be3565b9450612a10565b8093505050505b919050565b612ab28383836001612ae6565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b53906139f3565b60405180910390fd5b6000841415612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613a13565b60405180910390fd5b612bad6000868387612ab7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e4757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e3257612df260008884886127ad565b612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e28906139d3565b60405180910390fd5b5b81806001019250508080600101915050612d7b565b508060008190555050612e5d6000868387612abd565b5050505050565b828054612e7090613d58565b90600052602060002090601f016020900481019282612e925760008555612ed9565b82601f10612eab57805160ff1916838001178555612ed9565b82800160010185558215612ed9579182015b82811115612ed8578251825591602001919060010190612ebd565b5b509050612ee69190612f24565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f3d576000816000905550600101612f25565b5090565b6000612f54612f4f84613ad3565b613aae565b905082815260208101848484011115612f7057612f6f613f25565b5b612f7b848285613d16565b509392505050565b6000612f96612f9184613b04565b613aae565b905082815260208101848484011115612fb257612fb1613f25565b5b612fbd848285613d16565b509392505050565b600081359050612fd4816144d9565b92915050565b600081359050612fe9816144f0565b92915050565b600081359050612ffe81614507565b92915050565b60008151905061301381614507565b92915050565b600082601f83011261302e5761302d613f20565b5b813561303e848260208601612f41565b91505092915050565b600082601f83011261305c5761305b613f20565b5b813561306c848260208601612f83565b91505092915050565b6000813590506130848161451e565b92915050565b6000602082840312156130a05761309f613f2f565b5b60006130ae84828501612fc5565b91505092915050565b600080604083850312156130ce576130cd613f2f565b5b60006130dc85828601612fc5565b92505060206130ed85828601612fc5565b9150509250929050565b6000806000606084860312156131105761310f613f2f565b5b600061311e86828701612fc5565b935050602061312f86828701612fc5565b925050604061314086828701613075565b9150509250925092565b6000806000806080858703121561316457613163613f2f565b5b600061317287828801612fc5565b945050602061318387828801612fc5565b935050604061319487828801613075565b925050606085013567ffffffffffffffff8111156131b5576131b4613f2a565b5b6131c187828801613019565b91505092959194509250565b600080604083850312156131e4576131e3613f2f565b5b60006131f285828601612fc5565b925050602061320385828601612fda565b9150509250929050565b6000806040838503121561322457613223613f2f565b5b600061323285828601612fc5565b925050602061324385828601613075565b9150509250929050565b60006020828403121561326357613262613f2f565b5b600061327184828501612fef565b91505092915050565b6000602082840312156132905761328f613f2f565b5b600061329e84828501613004565b91505092915050565b6000602082840312156132bd576132bc613f2f565b5b600082013567ffffffffffffffff8111156132db576132da613f2a565b5b6132e784828501613047565b91505092915050565b60006020828403121561330657613305613f2f565b5b600061331484828501613075565b91505092915050565b6000806040838503121561333457613333613f2f565b5b600061334285828601613075565b925050602061335385828601613075565b9150509250929050565b61336681613ca2565b82525050565b61337581613cb4565b82525050565b600061338682613b4a565b6133908185613b60565b93506133a0818560208601613d25565b6133a981613f34565b840191505092915050565b60006133bf82613b55565b6133c98185613b71565b93506133d9818560208601613d25565b6133e281613f34565b840191505092915050565b60006133f882613b55565b6134028185613b82565b9350613412818560208601613d25565b80840191505092915050565b6000815461342b81613d58565b6134358186613b82565b94506001821660008114613450576001811461346157613494565b60ff19831686528186019350613494565b61346a85613b35565b60005b8381101561348c5781548189015260018201915060208101905061346d565b838801955050505b50505092915050565b60006134aa602283613b71565b91506134b582613f45565b604082019050919050565b60006134cd602683613b71565b91506134d882613f94565b604082019050919050565b60006134f0602a83613b71565b91506134fb82613fe3565b604082019050919050565b6000613513602383613b71565b915061351e82614032565b604082019050919050565b6000613536602583613b71565b915061354182614081565b604082019050919050565b6000613559603983613b71565b9150613564826140d0565b604082019050919050565b600061357c602b83613b71565b91506135878261411f565b604082019050919050565b600061359f602683613b71565b91506135aa8261416e565b604082019050919050565b60006135c2600583613b82565b91506135cd826141bd565b600582019050919050565b60006135e5602083613b71565b91506135f0826141e6565b602082019050919050565b6000613608601a83613b71565b91506136138261420f565b602082019050919050565b600061362b603283613b71565b915061363682614238565b604082019050919050565b600061364e602283613b71565b915061365982614287565b604082019050919050565b6000613671603383613b71565b915061367c826142d6565b604082019050919050565b6000613694600183613b82565b915061369f82614325565b600182019050919050565b60006136b7602183613b71565b91506136c28261434e565b604082019050919050565b60006136da602883613b71565b91506136e58261439d565b604082019050919050565b60006136fd602e83613b71565b9150613708826143ec565b604082019050919050565b6000613720602f83613b71565b915061372b8261443b565b604082019050919050565b6000613743602d83613b71565b915061374e8261448a565b604082019050919050565b61376281613d0c565b82525050565b6000613774828661341e565b915061378082856133ed565b915061378b82613687565b915061379782846133ed565b91506137a2826135b5565b9150819050949350505050565b60006020820190506137c4600083018461335d565b92915050565b60006080820190506137df600083018761335d565b6137ec602083018661335d565b6137f96040830185613759565b818103606083015261380b818461337b565b905095945050505050565b600060208201905061382b600083018461336c565b92915050565b6000602082019050818103600083015261384b81846133b4565b905092915050565b6000602082019050818103600083015261386c8161349d565b9050919050565b6000602082019050818103600083015261388c816134c0565b9050919050565b600060208201905081810360008301526138ac816134e3565b9050919050565b600060208201905081810360008301526138cc81613506565b9050919050565b600060208201905081810360008301526138ec81613529565b9050919050565b6000602082019050818103600083015261390c8161354c565b9050919050565b6000602082019050818103600083015261392c8161356f565b9050919050565b6000602082019050818103600083015261394c81613592565b9050919050565b6000602082019050818103600083015261396c816135d8565b9050919050565b6000602082019050818103600083015261398c816135fb565b9050919050565b600060208201905081810360008301526139ac8161361e565b9050919050565b600060208201905081810360008301526139cc81613641565b9050919050565b600060208201905081810360008301526139ec81613664565b9050919050565b60006020820190508181036000830152613a0c816136aa565b9050919050565b60006020820190508181036000830152613a2c816136cd565b9050919050565b60006020820190508181036000830152613a4c816136f0565b9050919050565b60006020820190508181036000830152613a6c81613713565b9050919050565b60006020820190508181036000830152613a8c81613736565b9050919050565b6000602082019050613aa86000830184613759565b92915050565b6000613ab8613ac9565b9050613ac48282613d8a565b919050565b6000604051905090565b600067ffffffffffffffff821115613aee57613aed613ef1565b5b613af782613f34565b9050602081019050919050565b600067ffffffffffffffff821115613b1f57613b1e613ef1565b5b613b2882613f34565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b9882613d0c565b9150613ba383613d0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd857613bd7613e35565b5b828201905092915050565b6000613bee82613d0c565b9150613bf983613d0c565b925082613c0957613c08613e64565b5b828204905092915050565b6000613c1f82613d0c565b9150613c2a83613d0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6357613c62613e35565b5b828202905092915050565b6000613c7982613d0c565b9150613c8483613d0c565b925082821015613c9757613c96613e35565b5b828203905092915050565b6000613cad82613cec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d43578082015181840152602081019050613d28565b83811115613d52576000848401525b50505050565b60006002820490506001821680613d7057607f821691505b60208210811415613d8457613d83613e93565b5b50919050565b613d9382613f34565b810181811067ffffffffffffffff82111715613db257613db1613ef1565b5b80604052505050565b6000613dc682613d0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df957613df8613e35565b5b600182019050919050565b6000613e0f82613d0c565b9150613e1a83613d0c565b925082613e2a57613e29613e64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6144e281613ca2565b81146144ed57600080fd5b50565b6144f981613cb4565b811461450457600080fd5b50565b61451081613cc0565b811461451b57600080fd5b50565b61452781613d0c565b811461453257600080fd5b5056fea2646970667358221220b6db56075c07c314c450fa0484abad55b84db46d0228b4118726c7e38d96a42c64736f6c6343000807003344656570657220437279707473206f6620612057616e646572696e6720417274697374

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b9e2b691116100a2578063e7eed2e711610071578063e7eed2e71461058c578063e985e9c5146105aa578063f2fde38b146105da578063f45fd0f3146105f6576101e5565b8063b9e2b691146104f4578063c459044f14610524578063c87b56dd14610540578063ca12388f14610570576101e5565b806395d89b41116100de57806395d89b411461046e578063a22cb4651461048c578063a80dcfee146104a8578063b88d4fde146104d8576101e5565b8063715018a61461040c5780637d3bc15f14610416578063853828b6146104465780638da5cb5b14610450576101e5565b80632f745c591161018757806355f804b31161015657806355f804b3146103605780636352211e1461037c5780636a60e416146103ac57806370a08231146103dc576101e5565b80632f745c59146102c85780633ed916b2146102f857806342842e0e146103145780634f6ccce714610330576101e5565b8063095ea7b3116101c3578063095ea7b3146102685780631249c58b1461028457806318160ddd1461028e57806323b872dd146102ac576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff919061324d565b610626565b6040516102119190613816565b60405180910390f35b610222610770565b60405161022f9190613831565b60405180910390f35b610252600480360381019061024d91906132f0565b610802565b60405161025f91906137af565b60405180910390f35b610282600480360381019061027d919061320d565b610887565b005b61028c6109a0565b005b610296610a42565b6040516102a39190613a93565b60405180910390f35b6102c660048036038101906102c191906130f7565b610a58565b005b6102e260048036038101906102dd919061320d565b610e09565b6040516102ef9190613a93565b60405180910390f35b610312600480360381019061030d91906132f0565b610ffb565b005b61032e600480360381019061032991906130f7565b611081565b005b61034a600480360381019061034591906132f0565b611442565b6040516103579190613a93565b60405180910390f35b61037a600480360381019061037591906132a7565b611495565b005b610396600480360381019061039191906132f0565b61152b565b6040516103a391906137af565b60405180910390f35b6103c660048036038101906103c191906132f0565b611541565b6040516103d39190613a93565b60405180910390f35b6103f660048036038101906103f1919061308a565b611559565b6040516104039190613a93565b60405180910390f35b610414611642565b005b610430600480360381019061042b91906132f0565b6116ca565b60405161043d9190613a93565b60405180910390f35b61044e6116e2565b005b6104586117a4565b60405161046591906137af565b60405180910390f35b6104766117ce565b6040516104839190613831565b60405180910390f35b6104a660048036038101906104a191906131cd565b611860565b005b6104c260048036038101906104bd919061308a565b6119e1565b6040516104cf9190613816565b60405180910390f35b6104f260048036038101906104ed919061314a565b611a01565b005b61050e600480360381019061050991906132f0565b611a5d565b60405161051b9190613a93565b60405180910390f35b61053e6004803603810190610539919061331d565b611a75565b005b61055a600480360381019061055591906132f0565b611b0d565b6040516105679190613831565b60405180910390f35b61058a600480360381019061058591906131cd565b611b53565b005b610594611c2a565b6040516105a19190613a93565b60405180910390f35b6105c460048036038101906105bf91906130b7565b611c30565b6040516105d19190613816565b60405180910390f35b6105f460048036038101906105ef919061308a565b611cc4565b005b610610600480360381019061060b91906132f0565b611dbc565b60405161061d9190613a93565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610769575061076882611eae565b5b9050919050565b60606001805461077f90613d58565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90613d58565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b600061080d82611f18565b61084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390613a73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108928261152b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906139b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610922611f25565b73ffffffffffffffffffffffffffffffffffffffff16148061095157506109508161094b611f25565b611c30565b5b610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906138f3565b60405180910390fd5b61099b838383611f2d565b505050565b6109a8611f25565b73ffffffffffffffffffffffffffffffffffffffff166109c66117a4565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613953565b60405180910390fd5b43600b60008054815260200190815260200160002081905550610a40336001611fdf565b565b60006001600054610a539190613c6e565b905090565b6000805b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610b215782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610af857610af7613ec2565b5b90600052602060002001541415610b0e57600191505b8080610b1990613dbb565b915050610a5c565b50600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bb157610b7d82611dbc565b600f60008481526020019081526020016000208190555043600c600084815260200190815260200160002081905550610df8565b8015610bd45743600b600084815260200190815260200160002081905550610df7565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ce357600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c955743600b600084815260200190815260200160002081905550610cde565b600c60008381526020019081526020016000205443610cb49190613c6e565b600b60008481526020019081526020016000206000828254610cd69190613b8d565b925050819055505b610df6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000600954600d600085815260200190815260200160002054610d6c9190613c14565b90506000600b60008581526020019081526020016000205443610d8f9190613c6e565b9050600080610d9d86611dbc565b1115610df25782821115610dba578282610db79190613c6e565b90505b80600954610dc89190613b8d565b600b60008781526020019081526020016000206000828254610dea9190613b8d565b925050819055505b5050505b5b5b610e03848484611ffd565b50505050565b6000610e1483611559565b8210610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613853565b60405180910390fd5b6000610e5f610a42565b905060008060005b83811015610fb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fab5786841415610fa2578195505050505050610ff5565b83806001019450505b508080600101915050610e67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613a33565b60405180910390fd5b92915050565b611003611f25565b73ffffffffffffffffffffffffffffffffffffffff166110216117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613953565b60405180910390fd5b8060098190555050565b6000805b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561114a5782600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061112157611120613ec2565b5b9060005260206000200154141561113757600191505b808061114290613dbb565b915050611085565b50600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111da576111a682611dbc565b600f60008481526020019081526020016000208190555043600c600084815260200190815260200160002081905550611421565b80156111fd5743600b600084815260200190815260200160002081905550611420565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561130c57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112be5743600b600084815260200190815260200160002081905550611307565b600c600083815260200190815260200160002054436112dd9190613c6e565b600b600084815260200190815260200160002060008282546112ff9190613b8d565b925050819055505b61141f565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000600954600d6000858152602001908152602001600020546113959190613c14565b90506000600b600085815260200190815260200160002054436113b89190613c6e565b90506000806113c686611dbc565b111561141b57828211156113e35782826113e09190613c6e565b90505b806009546113f19190613b8d565b600b600087815260200190815260200160002060008282546114139190613b8d565b925050819055505b5050505b5b5b61143c84848460405180602001604052806000815250611a01565b50505050565b600061144c610a42565b821061148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906138b3565b60405180910390fd5b819050919050565b61149d611f25565b73ffffffffffffffffffffffffffffffffffffffff166114bb6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613953565b60405180910390fd5b8060089080519060200190611527929190612e64565b5050565b60006115368261200d565b600001519050919050565b600b6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613913565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61164a611f25565b73ffffffffffffffffffffffffffffffffffffffff166116686117a4565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613953565b60405180910390fd5b6116c860006121a7565b565b600c6020528060005260406000206000915090505481565b6116ea611f25565b73ffffffffffffffffffffffffffffffffffffffff166117086117a4565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613953565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506117a157600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117dd90613d58565b80601f016020809104026020016040519081016040528092919081815260200182805461180990613d58565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b5050505050905090565b611868611f25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613973565b60405180910390fd5b80600660006118e3611f25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990611f25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190613816565b60405180910390a35050565b600e6020528060005260406000206000915054906101000a900460ff1681565b611a0c84848461226d565b611a18848484846127ad565b611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906139d3565b60405180910390fd5b50505050565b600d6020528060005260406000206000915090505481565b611a7d611f25565b73ffffffffffffffffffffffffffffffffffffffff16611a9b6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613953565b60405180910390fd5b80600d6000848152602001908152602001600020819055505050565b60606008611b1a83612944565b611b2b611b2685611dbc565b612944565b604051602001611b3d93929190613768565b6040516020818303038152906040529050919050565b611b5b611f25565b73ffffffffffffffffffffffffffffffffffffffff16611b796117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613953565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ccc611f25565b73ffffffffffffffffffffffffffffffffffffffff16611cea6117a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613953565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613873565b60405180910390fd5b611db9816121a7565b50565b600080600b60008481526020019081526020016000205443611dde9190613c6e565b9050600060095482611df09190613be3565b90506000600e6000611e018761152b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e6957600f6000868152602001908152602001600020549050611ea3565b600d6000868152602001908152602001600020548211611e8b57819050611ea2565b600d60008681526020019081526020016000205490505b5b809350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ff9828260405180602001604052806000815250612aa5565b5050565b61200883838361226d565b505050565b612015612eea565b61201e82611f18565b61205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613893565b60405180910390fd5b60008290505b60008110612166576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121575780925050506121a2565b50808060019003915050612063565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613a53565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122788261200d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661229f611f25565b73ffffffffffffffffffffffffffffffffffffffff1614806122fb57506122c4611f25565b73ffffffffffffffffffffffffffffffffffffffff166122e384610802565b73ffffffffffffffffffffffffffffffffffffffff16145b8061231757506123168260000151612311611f25565b611c30565b5b905080612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613993565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290613933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612432906138d3565b60405180910390fd5b6124488585856001612ab7565b6124586000848460000151611f2d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561273d5761269c81611f18565b1561273c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a68585856001612abd565b5050505050565b60006127ce8473ffffffffffffffffffffffffffffffffffffffff16612ac3565b15612937578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f7611f25565b8786866040518563ffffffff1660e01b815260040161281994939291906137ca565b602060405180830381600087803b15801561283357600080fd5b505af192505050801561286457506040513d601f19601f82011682018060405250810190612861919061327a565b60015b6128e7573d8060008114612894576040519150601f19603f3d011682016040523d82523d6000602084013e612899565b606091505b506000815114156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d6906139d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061293c565b600190505b949350505050565b6060600082141561298c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa0565b600082905060005b600082146129be5780806129a790613dbb565b915050600a826129b79190613be3565b9150612994565b60008167ffffffffffffffff8111156129da576129d9613ef1565b5b6040519080825280601f01601f191660200182016040528015612a0c5781602001600182028036833780820191505090505b5090505b60008514612a9957600182612a259190613c6e565b9150600a85612a349190613e04565b6030612a409190613b8d565b60f81b818381518110612a5657612a55613ec2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a929190613be3565b9450612a10565b8093505050505b919050565b612ab28383836001612ae6565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b53906139f3565b60405180910390fd5b6000841415612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613a13565b60405180910390fd5b612bad6000868387612ab7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e4757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e3257612df260008884886127ad565b612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e28906139d3565b60405180910390fd5b5b81806001019250508080600101915050612d7b565b508060008190555050612e5d6000868387612abd565b5050505050565b828054612e7090613d58565b90600052602060002090601f016020900481019282612e925760008555612ed9565b82601f10612eab57805160ff1916838001178555612ed9565b82800160010185558215612ed9579182015b82811115612ed8578251825591602001919060010190612ebd565b5b509050612ee69190612f24565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f3d576000816000905550600101612f25565b5090565b6000612f54612f4f84613ad3565b613aae565b905082815260208101848484011115612f7057612f6f613f25565b5b612f7b848285613d16565b509392505050565b6000612f96612f9184613b04565b613aae565b905082815260208101848484011115612fb257612fb1613f25565b5b612fbd848285613d16565b509392505050565b600081359050612fd4816144d9565b92915050565b600081359050612fe9816144f0565b92915050565b600081359050612ffe81614507565b92915050565b60008151905061301381614507565b92915050565b600082601f83011261302e5761302d613f20565b5b813561303e848260208601612f41565b91505092915050565b600082601f83011261305c5761305b613f20565b5b813561306c848260208601612f83565b91505092915050565b6000813590506130848161451e565b92915050565b6000602082840312156130a05761309f613f2f565b5b60006130ae84828501612fc5565b91505092915050565b600080604083850312156130ce576130cd613f2f565b5b60006130dc85828601612fc5565b92505060206130ed85828601612fc5565b9150509250929050565b6000806000606084860312156131105761310f613f2f565b5b600061311e86828701612fc5565b935050602061312f86828701612fc5565b925050604061314086828701613075565b9150509250925092565b6000806000806080858703121561316457613163613f2f565b5b600061317287828801612fc5565b945050602061318387828801612fc5565b935050604061319487828801613075565b925050606085013567ffffffffffffffff8111156131b5576131b4613f2a565b5b6131c187828801613019565b91505092959194509250565b600080604083850312156131e4576131e3613f2f565b5b60006131f285828601612fc5565b925050602061320385828601612fda565b9150509250929050565b6000806040838503121561322457613223613f2f565b5b600061323285828601612fc5565b925050602061324385828601613075565b9150509250929050565b60006020828403121561326357613262613f2f565b5b600061327184828501612fef565b91505092915050565b6000602082840312156132905761328f613f2f565b5b600061329e84828501613004565b91505092915050565b6000602082840312156132bd576132bc613f2f565b5b600082013567ffffffffffffffff8111156132db576132da613f2a565b5b6132e784828501613047565b91505092915050565b60006020828403121561330657613305613f2f565b5b600061331484828501613075565b91505092915050565b6000806040838503121561333457613333613f2f565b5b600061334285828601613075565b925050602061335385828601613075565b9150509250929050565b61336681613ca2565b82525050565b61337581613cb4565b82525050565b600061338682613b4a565b6133908185613b60565b93506133a0818560208601613d25565b6133a981613f34565b840191505092915050565b60006133bf82613b55565b6133c98185613b71565b93506133d9818560208601613d25565b6133e281613f34565b840191505092915050565b60006133f882613b55565b6134028185613b82565b9350613412818560208601613d25565b80840191505092915050565b6000815461342b81613d58565b6134358186613b82565b94506001821660008114613450576001811461346157613494565b60ff19831686528186019350613494565b61346a85613b35565b60005b8381101561348c5781548189015260018201915060208101905061346d565b838801955050505b50505092915050565b60006134aa602283613b71565b91506134b582613f45565b604082019050919050565b60006134cd602683613b71565b91506134d882613f94565b604082019050919050565b60006134f0602a83613b71565b91506134fb82613fe3565b604082019050919050565b6000613513602383613b71565b915061351e82614032565b604082019050919050565b6000613536602583613b71565b915061354182614081565b604082019050919050565b6000613559603983613b71565b9150613564826140d0565b604082019050919050565b600061357c602b83613b71565b91506135878261411f565b604082019050919050565b600061359f602683613b71565b91506135aa8261416e565b604082019050919050565b60006135c2600583613b82565b91506135cd826141bd565b600582019050919050565b60006135e5602083613b71565b91506135f0826141e6565b602082019050919050565b6000613608601a83613b71565b91506136138261420f565b602082019050919050565b600061362b603283613b71565b915061363682614238565b604082019050919050565b600061364e602283613b71565b915061365982614287565b604082019050919050565b6000613671603383613b71565b915061367c826142d6565b604082019050919050565b6000613694600183613b82565b915061369f82614325565b600182019050919050565b60006136b7602183613b71565b91506136c28261434e565b604082019050919050565b60006136da602883613b71565b91506136e58261439d565b604082019050919050565b60006136fd602e83613b71565b9150613708826143ec565b604082019050919050565b6000613720602f83613b71565b915061372b8261443b565b604082019050919050565b6000613743602d83613b71565b915061374e8261448a565b604082019050919050565b61376281613d0c565b82525050565b6000613774828661341e565b915061378082856133ed565b915061378b82613687565b915061379782846133ed565b91506137a2826135b5565b9150819050949350505050565b60006020820190506137c4600083018461335d565b92915050565b60006080820190506137df600083018761335d565b6137ec602083018661335d565b6137f96040830185613759565b818103606083015261380b818461337b565b905095945050505050565b600060208201905061382b600083018461336c565b92915050565b6000602082019050818103600083015261384b81846133b4565b905092915050565b6000602082019050818103600083015261386c8161349d565b9050919050565b6000602082019050818103600083015261388c816134c0565b9050919050565b600060208201905081810360008301526138ac816134e3565b9050919050565b600060208201905081810360008301526138cc81613506565b9050919050565b600060208201905081810360008301526138ec81613529565b9050919050565b6000602082019050818103600083015261390c8161354c565b9050919050565b6000602082019050818103600083015261392c8161356f565b9050919050565b6000602082019050818103600083015261394c81613592565b9050919050565b6000602082019050818103600083015261396c816135d8565b9050919050565b6000602082019050818103600083015261398c816135fb565b9050919050565b600060208201905081810360008301526139ac8161361e565b9050919050565b600060208201905081810360008301526139cc81613641565b9050919050565b600060208201905081810360008301526139ec81613664565b9050919050565b60006020820190508181036000830152613a0c816136aa565b9050919050565b60006020820190508181036000830152613a2c816136cd565b9050919050565b60006020820190508181036000830152613a4c816136f0565b9050919050565b60006020820190508181036000830152613a6c81613713565b9050919050565b60006020820190508181036000830152613a8c81613736565b9050919050565b6000602082019050613aa86000830184613759565b92915050565b6000613ab8613ac9565b9050613ac48282613d8a565b919050565b6000604051905090565b600067ffffffffffffffff821115613aee57613aed613ef1565b5b613af782613f34565b9050602081019050919050565b600067ffffffffffffffff821115613b1f57613b1e613ef1565b5b613b2882613f34565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b9882613d0c565b9150613ba383613d0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd857613bd7613e35565b5b828201905092915050565b6000613bee82613d0c565b9150613bf983613d0c565b925082613c0957613c08613e64565b5b828204905092915050565b6000613c1f82613d0c565b9150613c2a83613d0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6357613c62613e35565b5b828202905092915050565b6000613c7982613d0c565b9150613c8483613d0c565b925082821015613c9757613c96613e35565b5b828203905092915050565b6000613cad82613cec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d43578082015181840152602081019050613d28565b83811115613d52576000848401525b50505050565b60006002820490506001821680613d7057607f821691505b60208210811415613d8457613d83613e93565b5b50919050565b613d9382613f34565b810181811067ffffffffffffffff82111715613db257613db1613ef1565b5b80604052505050565b6000613dc682613d0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df957613df8613e35565b5b600182019050919050565b6000613e0f82613d0c565b9150613e1a83613d0c565b925082613e2a57613e29613e64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6144e281613ca2565b81146144ed57600080fd5b50565b6144f981613cb4565b811461450457600080fd5b50565b61451081613cc0565b811461451b57600080fd5b50565b61452781613d0c565b811461453257600080fd5b5056fea2646970667358221220b6db56075c07c314c450fa0484abad55b84db46d0228b4118726c7e38d96a42c64736f6c63430008070033

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.