ETH Price: $3,257.77 (-0.79%)
Gas: 2 Gwei

Token

GarbageDoodles (GD)
 

Overview

Max Total Supply

2,806 GD

Holders

401

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ronnymirel.eth
Balance
1 GD
0xdd2cd8b0ab065ce0052f629f0de4fc69a7a67532
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:
GarbageDoodles

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.12;

import "@openzeppelin/contracts/utils/Strings.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;
    }
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}

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

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

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

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

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

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


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

/**
 * @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 StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 public currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

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

    mapping(uint => StakingInfo) public _stakedTokens;

    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(), ".json")) : '';
    }

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

    /**
     * @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 {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _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 && tokenId > 0;
    }

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

    /**
     * @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 GarbageDoodles is ERC721A, Ownable {

    uint public maxSupply = 6666;
    bool public saleStatus;
    uint public price = 0.009 ether;  
    uint public maxPerTx = 10;    
    uint public maxPerWallet = 10;
    uint public freeMintPrice = 0;
    uint public maxFreePerTx = 1;    
    uint public maxFreePerWallet = 1;
    
    string public baseExtension = ".json";
    string public notRevealedUri;
    bool public revealed = false;

    constructor() ERC721A("GarbageDoodles", "GD") {    }


    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    mapping(address => uint) public _freeminted; 

    mapping(address => uint8) private _allowList;


    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }

    function setFreeMintPrice(uint amount) external onlyOwner {
        freeMintPrice = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string memory _uri) public onlyOwner {
        uri = _uri;
    }

    //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }

      function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

    function getTotalSupply() public view returns(uint) {
        return currentIndex - 1;
    }

    function getMaxSupply() public view returns(uint) {
        return maxSupply;
    }

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension))
        : "";

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



    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function paidmint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(msg.value >= (price * amount),"Insufficient funds");
        require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _minted[msg.sender] += amount;
    }

    function freemint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * freeMintPrice == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_freeminted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _freeminted[msg.sender] += amount;
    }

    function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }

    function mintAllowList(uint8 amount) external payable 
    {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount <= _allowList[msg.sender], "Exceeded max available to purchase");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(freeMintPrice * amount <= msg.value, "Ether value sent is not correct");

        _safeMint(msg.sender, amount);       
    }
}

File 2 of 2 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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":"","type":"address"}],"name":"_freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","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":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"paidmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600055611a0a600a55661ff973cafa8000600c55600a600d55600a600e556000600f55600160105560016011556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060129080519060200190620000809291906200023e565b506000601460006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600e81526020017f47617262616765446f6f646c65730000000000000000000000000000000000008152506040518060400160405280600281526020017f474400000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200012e9291906200023e565b508060029080519060200190620001479291906200023e565b5050506200016a6200015e6200017060201b60201c565b6200017860201b60201c565b62000353565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024c906200031d565b90600052602060002090601f016020900481019282620002705760008555620002bc565b82601f106200028b57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bb5782518255916020019190600101906200029e565b5b509050620002cb9190620002cf565b5090565b5b80821115620002ea576000816000905550600101620002d0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c620002ee565b5b50919050565b61573380620003636000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063c6682862116100dc578063e268e4d311610095578063f2fde38b1161006f578063f2fde38b14610b41578063f737c47a14610b6a578063f9020e3314610b95578063f968adbe14610bc0576102ff565b8063e268e4d314610ab2578063e985e9c514610adb578063f2c4ce1e14610b18576102ff565b8063c6682862146109b1578063c6f6f216146109dc578063c76e545914610a05578063c87b56dd14610a2e578063d5abeb0114610a6b578063ddff5b1c14610a96576102ff565b806395d89b4111610149578063a475b5dd11610123578063a475b5dd1461091b578063a702735714610932578063b88d4fde1461095d578063c4e41b2214610986576102ff565b806395d89b411461089c578063a035b1fe146108c7578063a22cb465146108f2576102ff565b8063715018a6146107a05780637dc949b2146107b75780637de77ecc146107e25780638295784d1461081f5780638da5cb5b1461084857806391b7f5ed14610873576102ff565b806340f070a81161024f57806351830227116102085780636414044f116101e25780636414044f146106f55780636d7c4a4b146107115780636f8b44b01461073a57806370a0823114610763576102ff565b8063518302271461066457806355f804b31461068f5780636352211e146106b8576102ff565b806340f070a81461056857806342842e0e14610591578063453c2310146105ba5780634c0f38c2146105e55780634f6ccce714610610578063502b33af1461064d576102ff565b80631491c2e5116102bc57806323b872dd1161029657806323b872dd146104c057806326987b60146104e95780632f745c59146105145780633ccfd60b14610551576102ff565b80631491c2e51461041957806318160ddd14610456578063204f490c14610481576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063081c8c44146103a9578063095ea7b3146103d45780630fbe4fe2146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613c16565b610beb565b6040516103389190613c5e565b60405180910390f35b34801561034d57600080fd5b50610356610d35565b6040516103639190613d12565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613d6a565b610dc7565b6040516103a09190613dd8565b60405180910390f35b3480156103b557600080fd5b506103be610e4c565b6040516103cb9190613d12565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613e1f565b610eda565b005b61041760048036038101906104129190613d6a565b610ff3565b005b34801561042557600080fd5b50610440600480360381019061043b9190613e5f565b61126d565b60405161044d9190613e9b565b60405180910390f35b34801561046257600080fd5b5061046b611285565b6040516104789190613e9b565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613d6a565b61129b565b6040516104b793929190613eb6565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613eed565b6112df565b005b3480156104f557600080fd5b506104fe611353565b60405161050b9190613e9b565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613e1f565b611359565b6040516105489190613e9b565b60405180910390f35b34801561055d57600080fd5b5061056661154b565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613d6a565b611610565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613eed565b611696565b005b3480156105c657600080fd5b506105cf61171a565b6040516105dc9190613e9b565b60405180910390f35b3480156105f157600080fd5b506105fa611720565b6040516106079190613e9b565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613d6a565b61172a565b6040516106449190613e9b565b60405180910390f35b34801561065957600080fd5b5061066261177d565b005b34801561067057600080fd5b50610679611825565b6040516106869190613c5e565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190614075565b611838565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613d6a565b6118ce565b6040516106ec9190613dd8565b60405180910390f35b61070f600480360381019061070a9190613d6a565b6118e4565b005b34801561071d57600080fd5b5061073860048036038101906107339190613d6a565b611b5f565b005b34801561074657600080fd5b50610761600480360381019061075c9190613d6a565b611be5565b005b34801561076f57600080fd5b5061078a60048036038101906107859190613e5f565b611c6b565b6040516107979190613e9b565b60405180910390f35b3480156107ac57600080fd5b506107b5611d54565b005b3480156107c357600080fd5b506107cc611ddc565b6040516107d99190613e9b565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190613e5f565b611de2565b6040516108169190613e9b565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190614157565b611dfa565b005b34801561085457600080fd5b5061085d611f1c565b60405161086a9190613dd8565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613d6a565b611f46565b005b3480156108a857600080fd5b506108b1611fcc565b6040516108be9190613d12565b60405180910390f35b3480156108d357600080fd5b506108dc61205e565b6040516108e99190613e9b565b60405180910390f35b3480156108fe57600080fd5b50610919600480360381019061091491906141e3565b612064565b005b34801561092757600080fd5b506109306121e5565b005b34801561093e57600080fd5b5061094761227e565b6040516109549190613e9b565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906142c4565b612284565b005b34801561099257600080fd5b5061099b612344565b6040516109a89190613e9b565b60405180910390f35b3480156109bd57600080fd5b506109c661235a565b6040516109d39190613d12565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613d6a565b6123e8565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190613d6a565b61246e565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613d6a565b6124f4565b604051610a629190613d12565b60405180910390f35b348015610a7757600080fd5b50610a8061264d565b604051610a8d9190613e9b565b60405180910390f35b610ab06004803603810190610aab9190614347565b612653565b005b348015610abe57600080fd5b50610ad96004803603810190610ad49190613d6a565b6127e1565b005b348015610ae757600080fd5b50610b026004803603810190610afd9190614374565b612867565b604051610b0f9190613c5e565b60405180910390f35b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190614075565b6128fb565b005b348015610b4d57600080fd5b50610b686004803603810190610b639190613e5f565b612991565b005b348015610b7657600080fd5b50610b7f612a89565b604051610b8c9190613e9b565b60405180910390f35b348015610ba157600080fd5b50610baa612a8f565b604051610bb79190613c5e565b60405180910390f35b348015610bcc57600080fd5b50610bd5612aa2565b604051610be29190613e9b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cb657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d2e5750610d2d82612aa8565b5b9050919050565b606060018054610d44906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d70906143e3565b8015610dbd5780601f10610d9257610100808354040283529160200191610dbd565b820191906000526020600020905b815481529060010190602001808311610da057829003601f168201915b5050505050905090565b6000610dd282612b12565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614487565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610e59906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e85906143e3565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b6000610ee5826118ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90614519565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f75612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480610fa45750610fa381610f9e612b2b565b612867565b5b610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906145ab565b60405180910390fd5b610fee838383612b33565b505050565b600b60009054906101000a900460ff16611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614617565b60405180910390fd5b34600f54826110519190614666565b14611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061470c565b60405180910390fd5b6010548111156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614778565b60405180910390fd5b600a54600054111561111d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611114906147e4565b60405180910390fd5b600a546001826000546111309190614804565b61113a919061485a565b111561117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906148da565b60405180910390fd5b60115481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c99190614804565b111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614946565b60405180910390fd5b6112143382612be5565b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112639190614804565b9250508190555050565b60166020528060005260406000206000915090505481565b60006001600054611296919061485a565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906149b2565b60405180910390fd5b61134e838383612c03565b505050565b60005481565b600061136483611c6b565b82106113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614a44565b60405180910390fd5b60006113af611285565b905060008060005b83811015611509576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114fb57868414156114f2578195505050505050611545565b83806001019450505b5080806001019150506113b7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614ad6565b60405180910390fd5b92915050565b611553612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611571611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90614b42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561160d573d6000803e3d6000fd5b50565b611618612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611636611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614b42565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f1906149b2565b60405180910390fd5b61171583838360405180602001604052806000815250612284565b505050565b600e5481565b6000600a54905090565b6000611734611285565b8210611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614bd4565b60405180910390fd5b819050919050565b611785612b2b565b73ffffffffffffffffffffffffffffffffffffffff166117a3611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614b42565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b611840612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661185e611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614b42565b60405180910390fd5b80600390805190602001906118ca929190613acd565b5050565b60006118d982613143565b600001519050919050565b600b60009054906101000a900460ff16611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614617565b60405180910390fd5b80600c546119419190614666565b341015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90614c40565b60405180910390fd5b600d548111156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90614778565b60405180910390fd5b600a546000541115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906147e4565b60405180910390fd5b600a54600182600054611a229190614804565b611a2c919061485a565b1115611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a64906148da565b60405180910390fd5b600e5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611abb9190614804565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614946565b60405180910390fd5b611b063382612be5565b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b559190614804565b9250508190555050565b611b67612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611b85611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290614b42565b60405180910390fd5b8060118190555050565b611bed612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611c0b611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614b42565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614cd2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d5c612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611d7a611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614b42565b60405180910390fd5b611dda60006132dd565b565b60105481565b60156020528060005260406000206000915090505481565b611e02612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611e20611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614b42565b60405180910390fd5b60005b83839050811015611f16578160176000868685818110611e9c57611e9b614cf2565b5b9050602002016020810190611eb19190613e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f0e90614d21565b915050611e79565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4e612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611f6c611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614b42565b60405180910390fd5b80600c8190555050565b606060028054611fdb906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612007906143e3565b80156120545780601f1061202957610100808354040283529160200191612054565b820191906000526020600020905b81548152906001019060200180831161203757829003601f168201915b5050505050905090565b600c5481565b61206c612b2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614db6565b60405180910390fd5b80600760006120e7612b2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612194612b2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121d99190613c5e565b60405180910390a35050565b6121ed612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661220b611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614b42565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff16156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df906149b2565b60405180910390fd5b6122f3848484612c03565b6122ff848484846133a3565b61233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614e48565b60405180910390fd5b50505050565b60006001600054612355919061485a565b905090565b60128054612367906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612393906143e3565b80156123e05780601f106123b5576101008083540402835291602001916123e0565b820191906000526020600020905b8154815290600101906020018083116123c357829003601f168201915b505050505081565b6123f0612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661240e611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90614b42565b60405180910390fd5b80600d8190555050565b612476612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612494611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190614b42565b60405180910390fd5b80600f8190555050565b60606124ff82612b12565b61253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614eda565b60405180910390fd5b60001515601460009054906101000a900460ff16151514156125ec5760138054612567906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612593906143e3565b80156125e05780601f106125b5576101008083540402835291602001916125e0565b820191906000526020600020905b8154815290600101906020018083116125c357829003601f168201915b50505050509050612648565b60006125f661352b565b905060008151116126165760405180602001604052806000815250612644565b80612620846135bd565b601260405160200161263493929190614fca565b6040516020818303038152906040525b9150505b919050565b600a5481565b600b60009054906101000a900460ff166126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614617565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff161115612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e9061506d565b60405180910390fd5b600a54600054111561277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906147e4565b60405180910390fd5b348160ff16600f546127909190614666565b11156127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906150d9565b60405180910390fd5b6127de338260ff16612be5565b50565b6127e9612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612807611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614b42565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612903612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612921611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e90614b42565b60405180910390fd5b806013908051906020019061298d929190613acd565b5050565b612999612b2b565b73ffffffffffffffffffffffffffffffffffffffff166129b7611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490614b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061516b565b60405180910390fd5b612a86816132dd565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612b245750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612bff82826040518060200160405280600081525061371e565b5050565b6000612c0e82613143565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c35612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480612c915750612c5a612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612c7984610dc7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cad5750612cac8260000151612ca7612b2b565b612867565b5b905080612cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce6906151fd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d589061528f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc890615321565b60405180910390fd5b612dde8585856001613730565b612dee6000848460000151612b33565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130d35761303281612b12565b156130d25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313c8585856001613736565b5050505050565b61314b613b53565b61315482612b12565b613193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318a906153b3565b60405180910390fd5b60008290505b6000811061329c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461328d5780925050506132d8565b50808060019003915050613199565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf90615445565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133c48473ffffffffffffffffffffffffffffffffffffffff1661373c565b1561351e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ed612b2b565b8786866040518563ffffffff1660e01b815260040161340f94939291906154ba565b6020604051808303816000875af192505050801561344b57506040513d601f19601f82011682018060405250810190613448919061551b565b60015b6134ce573d806000811461347b576040519150601f19603f3d011682016040523d82523d6000602084013e613480565b606091505b506000815114156134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90614e48565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613523565b600190505b949350505050565b60606003805461353a906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054613566906143e3565b80156135b35780601f10613588576101008083540402835291602001916135b3565b820191906000526020600020905b81548152906001019060200180831161359657829003601f168201915b5050505050905090565b60606000821415613605576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613719565b600082905060005b6000821461363757808061362090614d21565b915050600a826136309190615577565b915061360d565b60008167ffffffffffffffff81111561365357613652613f4a565b5b6040519080825280601f01601f1916602001820160405280156136855781602001600182028036833780820191505090505b5090505b600085146137125760018261369e919061485a565b9150600a856136ad91906155a8565b60306136b99190614804565b60f81b8183815181106136cf576136ce614cf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561370b9190615577565b9450613689565b8093505050505b919050565b61372b838383600161374f565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bc9061564b565b60405180910390fd5b6000841415613809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613800906156dd565b60405180910390fd5b6138166000868387613730565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613ab057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9b57613a5b60008884886133a3565b613a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9190614e48565b60405180910390fd5b5b818060010192505080806001019150506139e4565b508060008190555050613ac66000868387613736565b5050505050565b828054613ad9906143e3565b90600052602060002090601f016020900481019282613afb5760008555613b42565b82601f10613b1457805160ff1916838001178555613b42565b82800160010185558215613b42579182015b82811115613b41578251825591602001919060010190613b26565b5b509050613b4f9190613b8d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ba6576000816000905550600101613b8e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bf381613bbe565b8114613bfe57600080fd5b50565b600081359050613c1081613bea565b92915050565b600060208284031215613c2c57613c2b613bb4565b5b6000613c3a84828501613c01565b91505092915050565b60008115159050919050565b613c5881613c43565b82525050565b6000602082019050613c736000830184613c4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb3578082015181840152602081019050613c98565b83811115613cc2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce482613c79565b613cee8185613c84565b9350613cfe818560208601613c95565b613d0781613cc8565b840191505092915050565b60006020820190508181036000830152613d2c8184613cd9565b905092915050565b6000819050919050565b613d4781613d34565b8114613d5257600080fd5b50565b600081359050613d6481613d3e565b92915050565b600060208284031215613d8057613d7f613bb4565b5b6000613d8e84828501613d55565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dc282613d97565b9050919050565b613dd281613db7565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b613dfc81613db7565b8114613e0757600080fd5b50565b600081359050613e1981613df3565b92915050565b60008060408385031215613e3657613e35613bb4565b5b6000613e4485828601613e0a565b9250506020613e5585828601613d55565b9150509250929050565b600060208284031215613e7557613e74613bb4565b5b6000613e8384828501613e0a565b91505092915050565b613e9581613d34565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b6000606082019050613ecb6000830186613c4f565b613ed86020830185613c4f565b613ee56040830184613e8c565b949350505050565b600080600060608486031215613f0657613f05613bb4565b5b6000613f1486828701613e0a565b9350506020613f2586828701613e0a565b9250506040613f3686828701613d55565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f8282613cc8565b810181811067ffffffffffffffff82111715613fa157613fa0613f4a565b5b80604052505050565b6000613fb4613baa565b9050613fc08282613f79565b919050565b600067ffffffffffffffff821115613fe057613fdf613f4a565b5b613fe982613cc8565b9050602081019050919050565b82818337600083830152505050565b600061401861401384613fc5565b613faa565b90508281526020810184848401111561403457614033613f45565b5b61403f848285613ff6565b509392505050565b600082601f83011261405c5761405b613f40565b5b813561406c848260208601614005565b91505092915050565b60006020828403121561408b5761408a613bb4565b5b600082013567ffffffffffffffff8111156140a9576140a8613bb9565b5b6140b584828501614047565b91505092915050565b600080fd5b600080fd5b60008083601f8401126140de576140dd613f40565b5b8235905067ffffffffffffffff8111156140fb576140fa6140be565b5b602083019150836020820283011115614117576141166140c3565b5b9250929050565b600060ff82169050919050565b6141348161411e565b811461413f57600080fd5b50565b6000813590506141518161412b565b92915050565b6000806000604084860312156141705761416f613bb4565b5b600084013567ffffffffffffffff81111561418e5761418d613bb9565b5b61419a868287016140c8565b935093505060206141ad86828701614142565b9150509250925092565b6141c081613c43565b81146141cb57600080fd5b50565b6000813590506141dd816141b7565b92915050565b600080604083850312156141fa576141f9613bb4565b5b600061420885828601613e0a565b9250506020614219858286016141ce565b9150509250929050565b600067ffffffffffffffff82111561423e5761423d613f4a565b5b61424782613cc8565b9050602081019050919050565b600061426761426284614223565b613faa565b90508281526020810184848401111561428357614282613f45565b5b61428e848285613ff6565b509392505050565b600082601f8301126142ab576142aa613f40565b5b81356142bb848260208601614254565b91505092915050565b600080600080608085870312156142de576142dd613bb4565b5b60006142ec87828801613e0a565b94505060206142fd87828801613e0a565b935050604061430e87828801613d55565b925050606085013567ffffffffffffffff81111561432f5761432e613bb9565b5b61433b87828801614296565b91505092959194509250565b60006020828403121561435d5761435c613bb4565b5b600061436b84828501614142565b91505092915050565b6000806040838503121561438b5761438a613bb4565b5b600061439985828601613e0a565b92505060206143aa85828601613e0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143fb57607f821691505b6020821081141561440f5761440e6143b4565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614471602d83613c84565b915061447c82614415565b604082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614503602283613c84565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614595603983613c84565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000614601601083613c84565b915061460c826145cb565b602082019050919050565b60006020820190508181036000830152614630816145f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061467182613d34565b915061467c83613d34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b5576146b4614637565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006146f6601183613c84565b9150614701826146c0565b602082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000614762601383613c84565b915061476d8261472c565b602082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b60006147ce601283613c84565b91506147d982614798565b602082019050919050565b600060208201905081810360008301526147fd816147c1565b9050919050565b600061480f82613d34565b915061481a83613d34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484f5761484e614637565b5b828201905092915050565b600061486582613d34565b915061487083613d34565b92508282101561488357614882614637565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b60006148c4601183613c84565b91506148cf8261488e565b602082019050919050565b600060208201905081810360008301526148f3816148b7565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000614930601783613c84565b915061493b826148fa565b602082019050919050565b6000602082019050818103600083015261495f81614923565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b600061499c600d83613c84565b91506149a782614966565b602082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2e602283613c84565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614ac0602e83613c84565b9150614acb82614a64565b604082019050919050565b60006020820190508181036000830152614aef81614ab3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b2c602083613c84565b9150614b3782614af6565b602082019050919050565b60006020820190508181036000830152614b5b81614b1f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbe602383613c84565b9150614bc982614b62565b604082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614c2a601283613c84565b9150614c3582614bf4565b602082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614cbc602b83613c84565b9150614cc782614c60565b604082019050919050565b60006020820190508181036000830152614ceb81614caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614d2c82613d34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d5f57614d5e614637565b5b600182019050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614da0601a83613c84565b9150614dab82614d6a565b602082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e32603383613c84565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ec4602f83613c84565b9150614ecf82614e68565b604082019050919050565b60006020820190508181036000830152614ef381614eb7565b9050919050565b600081905092915050565b6000614f1082613c79565b614f1a8185614efa565b9350614f2a818560208601613c95565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614f58816143e3565b614f628186614efa565b94506001821660008114614f7d5760018114614f8e57614fc1565b60ff19831686528186019350614fc1565b614f9785614f36565b60005b83811015614fb957815481890152600182019150602081019050614f9a565b838801955050505b50505092915050565b6000614fd68286614f05565b9150614fe28285614f05565b9150614fee8284614f4b565b9150819050949350505050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615057602283613c84565b915061506282614ffb565b604082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006150c3601f83613c84565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615155602683613c84565b9150615160826150f9565b604082019050919050565b6000602082019050818103600083015261518481615148565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006151e7603283613c84565b91506151f28261518b565b604082019050919050565b60006020820190508181036000830152615216816151da565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615279602683613c84565b91506152848261521d565b604082019050919050565b600060208201905081810360008301526152a88161526c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061530b602583613c84565b9150615316826152af565b604082019050919050565b6000602082019050818103600083015261533a816152fe565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061539d602a83613c84565b91506153a882615341565b604082019050919050565b600060208201905081810360008301526153cc81615390565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061542f602f83613c84565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061548c82615465565b6154968185615470565b93506154a6818560208601613c95565b6154af81613cc8565b840191505092915050565b60006080820190506154cf6000830187613dc9565b6154dc6020830186613dc9565b6154e96040830185613e8c565b81810360608301526154fb8184615481565b905095945050505050565b60008151905061551581613bea565b92915050565b60006020828403121561553157615530613bb4565b5b600061553f84828501615506565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061558282613d34565b915061558d83613d34565b92508261559d5761559c615548565b5b828204905092915050565b60006155b382613d34565b91506155be83613d34565b9250826155ce576155cd615548565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615635602183613c84565b9150615640826155d9565b604082019050919050565b6000602082019050818103600083015261566481615628565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006156c7602883613c84565b91506156d28261566b565b604082019050919050565b600060208201905081810360008301526156f6816156ba565b905091905056fea2646970667358221220d8a31599129809bf75654832cf570a6b9d8bc2ccde82e969d0951ae4ce4206ec64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063c6682862116100dc578063e268e4d311610095578063f2fde38b1161006f578063f2fde38b14610b41578063f737c47a14610b6a578063f9020e3314610b95578063f968adbe14610bc0576102ff565b8063e268e4d314610ab2578063e985e9c514610adb578063f2c4ce1e14610b18576102ff565b8063c6682862146109b1578063c6f6f216146109dc578063c76e545914610a05578063c87b56dd14610a2e578063d5abeb0114610a6b578063ddff5b1c14610a96576102ff565b806395d89b4111610149578063a475b5dd11610123578063a475b5dd1461091b578063a702735714610932578063b88d4fde1461095d578063c4e41b2214610986576102ff565b806395d89b411461089c578063a035b1fe146108c7578063a22cb465146108f2576102ff565b8063715018a6146107a05780637dc949b2146107b75780637de77ecc146107e25780638295784d1461081f5780638da5cb5b1461084857806391b7f5ed14610873576102ff565b806340f070a81161024f57806351830227116102085780636414044f116101e25780636414044f146106f55780636d7c4a4b146107115780636f8b44b01461073a57806370a0823114610763576102ff565b8063518302271461066457806355f804b31461068f5780636352211e146106b8576102ff565b806340f070a81461056857806342842e0e14610591578063453c2310146105ba5780634c0f38c2146105e55780634f6ccce714610610578063502b33af1461064d576102ff565b80631491c2e5116102bc57806323b872dd1161029657806323b872dd146104c057806326987b60146104e95780632f745c59146105145780633ccfd60b14610551576102ff565b80631491c2e51461041957806318160ddd14610456578063204f490c14610481576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063081c8c44146103a9578063095ea7b3146103d45780630fbe4fe2146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613c16565b610beb565b6040516103389190613c5e565b60405180910390f35b34801561034d57600080fd5b50610356610d35565b6040516103639190613d12565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613d6a565b610dc7565b6040516103a09190613dd8565b60405180910390f35b3480156103b557600080fd5b506103be610e4c565b6040516103cb9190613d12565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613e1f565b610eda565b005b61041760048036038101906104129190613d6a565b610ff3565b005b34801561042557600080fd5b50610440600480360381019061043b9190613e5f565b61126d565b60405161044d9190613e9b565b60405180910390f35b34801561046257600080fd5b5061046b611285565b6040516104789190613e9b565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613d6a565b61129b565b6040516104b793929190613eb6565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613eed565b6112df565b005b3480156104f557600080fd5b506104fe611353565b60405161050b9190613e9b565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613e1f565b611359565b6040516105489190613e9b565b60405180910390f35b34801561055d57600080fd5b5061056661154b565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613d6a565b611610565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613eed565b611696565b005b3480156105c657600080fd5b506105cf61171a565b6040516105dc9190613e9b565b60405180910390f35b3480156105f157600080fd5b506105fa611720565b6040516106079190613e9b565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613d6a565b61172a565b6040516106449190613e9b565b60405180910390f35b34801561065957600080fd5b5061066261177d565b005b34801561067057600080fd5b50610679611825565b6040516106869190613c5e565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190614075565b611838565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613d6a565b6118ce565b6040516106ec9190613dd8565b60405180910390f35b61070f600480360381019061070a9190613d6a565b6118e4565b005b34801561071d57600080fd5b5061073860048036038101906107339190613d6a565b611b5f565b005b34801561074657600080fd5b50610761600480360381019061075c9190613d6a565b611be5565b005b34801561076f57600080fd5b5061078a60048036038101906107859190613e5f565b611c6b565b6040516107979190613e9b565b60405180910390f35b3480156107ac57600080fd5b506107b5611d54565b005b3480156107c357600080fd5b506107cc611ddc565b6040516107d99190613e9b565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190613e5f565b611de2565b6040516108169190613e9b565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190614157565b611dfa565b005b34801561085457600080fd5b5061085d611f1c565b60405161086a9190613dd8565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613d6a565b611f46565b005b3480156108a857600080fd5b506108b1611fcc565b6040516108be9190613d12565b60405180910390f35b3480156108d357600080fd5b506108dc61205e565b6040516108e99190613e9b565b60405180910390f35b3480156108fe57600080fd5b50610919600480360381019061091491906141e3565b612064565b005b34801561092757600080fd5b506109306121e5565b005b34801561093e57600080fd5b5061094761227e565b6040516109549190613e9b565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906142c4565b612284565b005b34801561099257600080fd5b5061099b612344565b6040516109a89190613e9b565b60405180910390f35b3480156109bd57600080fd5b506109c661235a565b6040516109d39190613d12565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613d6a565b6123e8565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190613d6a565b61246e565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613d6a565b6124f4565b604051610a629190613d12565b60405180910390f35b348015610a7757600080fd5b50610a8061264d565b604051610a8d9190613e9b565b60405180910390f35b610ab06004803603810190610aab9190614347565b612653565b005b348015610abe57600080fd5b50610ad96004803603810190610ad49190613d6a565b6127e1565b005b348015610ae757600080fd5b50610b026004803603810190610afd9190614374565b612867565b604051610b0f9190613c5e565b60405180910390f35b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190614075565b6128fb565b005b348015610b4d57600080fd5b50610b686004803603810190610b639190613e5f565b612991565b005b348015610b7657600080fd5b50610b7f612a89565b604051610b8c9190613e9b565b60405180910390f35b348015610ba157600080fd5b50610baa612a8f565b604051610bb79190613c5e565b60405180910390f35b348015610bcc57600080fd5b50610bd5612aa2565b604051610be29190613e9b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cb657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d2e5750610d2d82612aa8565b5b9050919050565b606060018054610d44906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d70906143e3565b8015610dbd5780601f10610d9257610100808354040283529160200191610dbd565b820191906000526020600020905b815481529060010190602001808311610da057829003601f168201915b5050505050905090565b6000610dd282612b12565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614487565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610e59906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e85906143e3565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b6000610ee5826118ce565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90614519565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f75612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480610fa45750610fa381610f9e612b2b565b612867565b5b610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906145ab565b60405180910390fd5b610fee838383612b33565b505050565b600b60009054906101000a900460ff16611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614617565b60405180910390fd5b34600f54826110519190614666565b14611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061470c565b60405180910390fd5b6010548111156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614778565b60405180910390fd5b600a54600054111561111d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611114906147e4565b60405180910390fd5b600a546001826000546111309190614804565b61113a919061485a565b111561117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906148da565b60405180910390fd5b60115481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c99190614804565b111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614946565b60405180910390fd5b6112143382612be5565b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112639190614804565b9250508190555050565b60166020528060005260406000206000915090505481565b60006001600054611296919061485a565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906149b2565b60405180910390fd5b61134e838383612c03565b505050565b60005481565b600061136483611c6b565b82106113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614a44565b60405180910390fd5b60006113af611285565b905060008060005b83811015611509576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114fb57868414156114f2578195505050505050611545565b83806001019450505b5080806001019150506113b7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614ad6565b60405180910390fd5b92915050565b611553612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611571611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90614b42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561160d573d6000803e3d6000fd5b50565b611618612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611636611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614b42565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f1906149b2565b60405180910390fd5b61171583838360405180602001604052806000815250612284565b505050565b600e5481565b6000600a54905090565b6000611734611285565b8210611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614bd4565b60405180910390fd5b819050919050565b611785612b2b565b73ffffffffffffffffffffffffffffffffffffffff166117a3611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614b42565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b611840612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661185e611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614b42565b60405180910390fd5b80600390805190602001906118ca929190613acd565b5050565b60006118d982613143565b600001519050919050565b600b60009054906101000a900460ff16611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614617565b60405180910390fd5b80600c546119419190614666565b341015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90614c40565b60405180910390fd5b600d548111156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90614778565b60405180910390fd5b600a546000541115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906147e4565b60405180910390fd5b600a54600182600054611a229190614804565b611a2c919061485a565b1115611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a64906148da565b60405180910390fd5b600e5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611abb9190614804565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614946565b60405180910390fd5b611b063382612be5565b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b559190614804565b9250508190555050565b611b67612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611b85611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290614b42565b60405180910390fd5b8060118190555050565b611bed612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611c0b611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614b42565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614cd2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d5c612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611d7a611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614b42565b60405180910390fd5b611dda60006132dd565b565b60105481565b60156020528060005260406000206000915090505481565b611e02612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611e20611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614b42565b60405180910390fd5b60005b83839050811015611f16578160176000868685818110611e9c57611e9b614cf2565b5b9050602002016020810190611eb19190613e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f0e90614d21565b915050611e79565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4e612b2b565b73ffffffffffffffffffffffffffffffffffffffff16611f6c611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614b42565b60405180910390fd5b80600c8190555050565b606060028054611fdb906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612007906143e3565b80156120545780601f1061202957610100808354040283529160200191612054565b820191906000526020600020905b81548152906001019060200180831161203757829003601f168201915b5050505050905090565b600c5481565b61206c612b2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614db6565b60405180910390fd5b80600760006120e7612b2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612194612b2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121d99190613c5e565b60405180910390a35050565b6121ed612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661220b611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614b42565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff16156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df906149b2565b60405180910390fd5b6122f3848484612c03565b6122ff848484846133a3565b61233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614e48565b60405180910390fd5b50505050565b60006001600054612355919061485a565b905090565b60128054612367906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612393906143e3565b80156123e05780601f106123b5576101008083540402835291602001916123e0565b820191906000526020600020905b8154815290600101906020018083116123c357829003601f168201915b505050505081565b6123f0612b2b565b73ffffffffffffffffffffffffffffffffffffffff1661240e611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b90614b42565b60405180910390fd5b80600d8190555050565b612476612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612494611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190614b42565b60405180910390fd5b80600f8190555050565b60606124ff82612b12565b61253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614eda565b60405180910390fd5b60001515601460009054906101000a900460ff16151514156125ec5760138054612567906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612593906143e3565b80156125e05780601f106125b5576101008083540402835291602001916125e0565b820191906000526020600020905b8154815290600101906020018083116125c357829003601f168201915b50505050509050612648565b60006125f661352b565b905060008151116126165760405180602001604052806000815250612644565b80612620846135bd565b601260405160200161263493929190614fca565b6040516020818303038152906040525b9150505b919050565b600a5481565b600b60009054906101000a900460ff166126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614617565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff161115612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e9061506d565b60405180910390fd5b600a54600054111561277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906147e4565b60405180910390fd5b348160ff16600f546127909190614666565b11156127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906150d9565b60405180910390fd5b6127de338260ff16612be5565b50565b6127e9612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612807611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614b42565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612903612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612921611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e90614b42565b60405180910390fd5b806013908051906020019061298d929190613acd565b5050565b612999612b2b565b73ffffffffffffffffffffffffffffffffffffffff166129b7611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490614b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061516b565b60405180910390fd5b612a86816132dd565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612b245750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612bff82826040518060200160405280600081525061371e565b5050565b6000612c0e82613143565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c35612b2b565b73ffffffffffffffffffffffffffffffffffffffff161480612c915750612c5a612b2b565b73ffffffffffffffffffffffffffffffffffffffff16612c7984610dc7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cad5750612cac8260000151612ca7612b2b565b612867565b5b905080612cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce6906151fd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d589061528f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc890615321565b60405180910390fd5b612dde8585856001613730565b612dee6000848460000151612b33565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130d35761303281612b12565b156130d25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313c8585856001613736565b5050505050565b61314b613b53565b61315482612b12565b613193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318a906153b3565b60405180910390fd5b60008290505b6000811061329c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461328d5780925050506132d8565b50808060019003915050613199565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf90615445565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133c48473ffffffffffffffffffffffffffffffffffffffff1661373c565b1561351e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ed612b2b565b8786866040518563ffffffff1660e01b815260040161340f94939291906154ba565b6020604051808303816000875af192505050801561344b57506040513d601f19601f82011682018060405250810190613448919061551b565b60015b6134ce573d806000811461347b576040519150601f19603f3d011682016040523d82523d6000602084013e613480565b606091505b506000815114156134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90614e48565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613523565b600190505b949350505050565b60606003805461353a906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054613566906143e3565b80156135b35780601f10613588576101008083540402835291602001916135b3565b820191906000526020600020905b81548152906001019060200180831161359657829003601f168201915b5050505050905090565b60606000821415613605576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613719565b600082905060005b6000821461363757808061362090614d21565b915050600a826136309190615577565b915061360d565b60008167ffffffffffffffff81111561365357613652613f4a565b5b6040519080825280601f01601f1916602001820160405280156136855781602001600182028036833780820191505090505b5090505b600085146137125760018261369e919061485a565b9150600a856136ad91906155a8565b60306136b99190614804565b60f81b8183815181106136cf576136ce614cf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561370b9190615577565b9450613689565b8093505050505b919050565b61372b838383600161374f565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bc9061564b565b60405180910390fd5b6000841415613809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613800906156dd565b60405180910390fd5b6138166000868387613730565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613ab057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9b57613a5b60008884886133a3565b613a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9190614e48565b60405180910390fd5b5b818060010192505080806001019150506139e4565b508060008190555050613ac66000868387613736565b5050505050565b828054613ad9906143e3565b90600052602060002090601f016020900481019282613afb5760008555613b42565b82601f10613b1457805160ff1916838001178555613b42565b82800160010185558215613b42579182015b82811115613b41578251825591602001919060010190613b26565b5b509050613b4f9190613b8d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ba6576000816000905550600101613b8e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bf381613bbe565b8114613bfe57600080fd5b50565b600081359050613c1081613bea565b92915050565b600060208284031215613c2c57613c2b613bb4565b5b6000613c3a84828501613c01565b91505092915050565b60008115159050919050565b613c5881613c43565b82525050565b6000602082019050613c736000830184613c4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb3578082015181840152602081019050613c98565b83811115613cc2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce482613c79565b613cee8185613c84565b9350613cfe818560208601613c95565b613d0781613cc8565b840191505092915050565b60006020820190508181036000830152613d2c8184613cd9565b905092915050565b6000819050919050565b613d4781613d34565b8114613d5257600080fd5b50565b600081359050613d6481613d3e565b92915050565b600060208284031215613d8057613d7f613bb4565b5b6000613d8e84828501613d55565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dc282613d97565b9050919050565b613dd281613db7565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b613dfc81613db7565b8114613e0757600080fd5b50565b600081359050613e1981613df3565b92915050565b60008060408385031215613e3657613e35613bb4565b5b6000613e4485828601613e0a565b9250506020613e5585828601613d55565b9150509250929050565b600060208284031215613e7557613e74613bb4565b5b6000613e8384828501613e0a565b91505092915050565b613e9581613d34565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b6000606082019050613ecb6000830186613c4f565b613ed86020830185613c4f565b613ee56040830184613e8c565b949350505050565b600080600060608486031215613f0657613f05613bb4565b5b6000613f1486828701613e0a565b9350506020613f2586828701613e0a565b9250506040613f3686828701613d55565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f8282613cc8565b810181811067ffffffffffffffff82111715613fa157613fa0613f4a565b5b80604052505050565b6000613fb4613baa565b9050613fc08282613f79565b919050565b600067ffffffffffffffff821115613fe057613fdf613f4a565b5b613fe982613cc8565b9050602081019050919050565b82818337600083830152505050565b600061401861401384613fc5565b613faa565b90508281526020810184848401111561403457614033613f45565b5b61403f848285613ff6565b509392505050565b600082601f83011261405c5761405b613f40565b5b813561406c848260208601614005565b91505092915050565b60006020828403121561408b5761408a613bb4565b5b600082013567ffffffffffffffff8111156140a9576140a8613bb9565b5b6140b584828501614047565b91505092915050565b600080fd5b600080fd5b60008083601f8401126140de576140dd613f40565b5b8235905067ffffffffffffffff8111156140fb576140fa6140be565b5b602083019150836020820283011115614117576141166140c3565b5b9250929050565b600060ff82169050919050565b6141348161411e565b811461413f57600080fd5b50565b6000813590506141518161412b565b92915050565b6000806000604084860312156141705761416f613bb4565b5b600084013567ffffffffffffffff81111561418e5761418d613bb9565b5b61419a868287016140c8565b935093505060206141ad86828701614142565b9150509250925092565b6141c081613c43565b81146141cb57600080fd5b50565b6000813590506141dd816141b7565b92915050565b600080604083850312156141fa576141f9613bb4565b5b600061420885828601613e0a565b9250506020614219858286016141ce565b9150509250929050565b600067ffffffffffffffff82111561423e5761423d613f4a565b5b61424782613cc8565b9050602081019050919050565b600061426761426284614223565b613faa565b90508281526020810184848401111561428357614282613f45565b5b61428e848285613ff6565b509392505050565b600082601f8301126142ab576142aa613f40565b5b81356142bb848260208601614254565b91505092915050565b600080600080608085870312156142de576142dd613bb4565b5b60006142ec87828801613e0a565b94505060206142fd87828801613e0a565b935050604061430e87828801613d55565b925050606085013567ffffffffffffffff81111561432f5761432e613bb9565b5b61433b87828801614296565b91505092959194509250565b60006020828403121561435d5761435c613bb4565b5b600061436b84828501614142565b91505092915050565b6000806040838503121561438b5761438a613bb4565b5b600061439985828601613e0a565b92505060206143aa85828601613e0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143fb57607f821691505b6020821081141561440f5761440e6143b4565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614471602d83613c84565b915061447c82614415565b604082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614503602283613c84565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614595603983613c84565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000614601601083613c84565b915061460c826145cb565b602082019050919050565b60006020820190508181036000830152614630816145f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061467182613d34565b915061467c83613d34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b5576146b4614637565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006146f6601183613c84565b9150614701826146c0565b602082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000614762601383613c84565b915061476d8261472c565b602082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b60006147ce601283613c84565b91506147d982614798565b602082019050919050565b600060208201905081810360008301526147fd816147c1565b9050919050565b600061480f82613d34565b915061481a83613d34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484f5761484e614637565b5b828201905092915050565b600061486582613d34565b915061487083613d34565b92508282101561488357614882614637565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b60006148c4601183613c84565b91506148cf8261488e565b602082019050919050565b600060208201905081810360008301526148f3816148b7565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000614930601783613c84565b915061493b826148fa565b602082019050919050565b6000602082019050818103600083015261495f81614923565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b600061499c600d83613c84565b91506149a782614966565b602082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2e602283613c84565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614ac0602e83613c84565b9150614acb82614a64565b604082019050919050565b60006020820190508181036000830152614aef81614ab3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b2c602083613c84565b9150614b3782614af6565b602082019050919050565b60006020820190508181036000830152614b5b81614b1f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbe602383613c84565b9150614bc982614b62565b604082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614c2a601283613c84565b9150614c3582614bf4565b602082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614cbc602b83613c84565b9150614cc782614c60565b604082019050919050565b60006020820190508181036000830152614ceb81614caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614d2c82613d34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d5f57614d5e614637565b5b600182019050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614da0601a83613c84565b9150614dab82614d6a565b602082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e32603383613c84565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ec4602f83613c84565b9150614ecf82614e68565b604082019050919050565b60006020820190508181036000830152614ef381614eb7565b9050919050565b600081905092915050565b6000614f1082613c79565b614f1a8185614efa565b9350614f2a818560208601613c95565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614f58816143e3565b614f628186614efa565b94506001821660008114614f7d5760018114614f8e57614fc1565b60ff19831686528186019350614fc1565b614f9785614f36565b60005b83811015614fb957815481890152600182019150602081019050614f9a565b838801955050505b50505092915050565b6000614fd68286614f05565b9150614fe28285614f05565b9150614fee8284614f4b565b9150819050949350505050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615057602283613c84565b915061506282614ffb565b604082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006150c3601f83613c84565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615155602683613c84565b9150615160826150f9565b604082019050919050565b6000602082019050818103600083015261518481615148565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006151e7603283613c84565b91506151f28261518b565b604082019050919050565b60006020820190508181036000830152615216816151da565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615279602683613c84565b91506152848261521d565b604082019050919050565b600060208201905081810360008301526152a88161526c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061530b602583613c84565b9150615316826152af565b604082019050919050565b6000602082019050818103600083015261533a816152fe565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061539d602a83613c84565b91506153a882615341565b604082019050919050565b600060208201905081810360008301526153cc81615390565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061542f602f83613c84565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061548c82615465565b6154968185615470565b93506154a6818560208601613c95565b6154af81613cc8565b840191505092915050565b60006080820190506154cf6000830187613dc9565b6154dc6020830186613dc9565b6154e96040830185613e8c565b81810360608301526154fb8184615481565b905095945050505050565b60008151905061551581613bea565b92915050565b60006020828403121561553157615530613bb4565b5b600061553f84828501615506565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061558282613d34565b915061558d83613d34565b92508261559d5761559c615548565b5b828204905092915050565b60006155b382613d34565b91506155be83613d34565b9250826155ce576155cd615548565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615635602183613c84565b9150615640826155d9565b604082019050919050565b6000602082019050818103600083015261566481615628565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006156c7602883613c84565b91506156d28261566b565b604082019050919050565b600060208201905081810360008301526156f6816156ba565b905091905056fea2646970667358221220d8a31599129809bf75654832cf570a6b9d8bc2ccde82e969d0951ae4ce4206ec64736f6c634300080c0033

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.