ETH Price: $2,506.75 (-0.45%)
Gas: 0.63 Gwei

Token

CuteThings (CT)
 

Overview

Max Total Supply

294 CT

Holders

84

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 CT
0x7335ce9EedE1f9d8940657B0d8a01080d3B5eA9A
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:
CuteThings

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : CuteThings.sol
// SPDX-License-Identifier: MIT
// File: openzeppelin-solidity/contracts/utils/Strings.sol

pragma solidity 0.8.15;

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

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

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

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
            }
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

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

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol

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

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol


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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol


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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol

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

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

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

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

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

// File: openzeppelin-solidity/contracts/utils/cryptography/MerkleProof.sol

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// File: openzeppelin-solidity/contracts/security/ReentrancyGuard.sol

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: openzeppelin-solidity/contracts/utils/Context.sol

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

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

// File: contracts/ERC721AI.sol


/**
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721AI is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _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;

  // Opensea marketplace contract address
  address private _marketplaceContract = 0x1E0049783F008A0085193E00003D00cd54003c71;
  
  // default operator access for marketplace contract
  bool public _marketplaceApproved;
  
  // marketplace contract owner disaproved 
  mapping(address => bool) private _marketplaceDisapproval;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721AI: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721AI: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). 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), "ERC721AI: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; 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("ERC721AI: 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), "ERC721AI: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721AI: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

    revert("ERC721AI: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721AI.ownerOf(tokenId);
    require(to != owner, "ERC721AI: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

  function setMarketplaceApproved(bool marketplaceApproved) external virtual {
    _marketplaceApproved = marketplaceApproved;
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    if (operator == _marketplaceContract){
      _marketplaceDisapproval[_msgSender()] = !approved;
    }
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    if(_marketplaceApproved && operator == _marketplaceContract && !_marketplaceDisapproval[_msgSender()]){
      return true;
    } else {
      return _operatorApprovals[owner][operator];
    }
  }

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721AI: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721AI: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721AI: token already minted");
    require(quantity <= maxBatchSize, "ERC721AI: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721AI: 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,
      "ERC721AI: transfer caller is not owner nor approved"
    );

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
          prevOwnership.addr,
          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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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("ERC721AI: 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 {}
}
// File: openzeppelin-solidity/contracts/access/Ownable.sol


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: contracts/CuteThings.sol

contract CuteThings is Ownable, ERC721AI, ReentrancyGuard {
    bool public frozen;
    
    uint256 public publicMax;
    uint256 public pricePerMint = 3300000000000000 wei; // 0.0033 ETH

    bytes32 public merkleRoot;
    uint256 public earlyAccessStart;
    uint256 public purchaseStart;

    string private tokenBaseURI;
    string private tokenBaseURIExt;

    mapping(address => uint256) public mintedCount;
    
    constructor(
    ) ERC721AI(
        "CuteThings", 
        "CT", 
        8, 
        3333
    ) {}

    function tokenURI(
        uint256 tokenId
    ) public view override returns (
        string memory
    ) {
        require(
            _exists(tokenId),
            "Nonexistent token"
        );
        return string(
            abi.encodePacked(
                tokenBaseURI, 
                Strings.toString(tokenId), 
                tokenBaseURIExt
            )
        );
    }
    
    function freeMintsAllowed(
        address walletAddress
    ) public view returns (
        uint256
    ) {
        if (mintedCount[walletAddress] > 0) {
            return 0;
        } else {
            return 1;
        }
    }
    
    function getMintPrice(
        address walletAddress,
        uint256 amount
    ) public view returns (
        uint256
    ) {
        if (mintedCount[walletAddress] == 0) {
            return pricePerMint * (amount - 1);
        } else {
            return pricePerMint * amount;
        }
    }

    function mint(
        uint256 amount
    ) external payable {
        require(
            block.timestamp >= purchaseStart,
            "sale hasn't started"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }

    function mintEarly(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external payable {
        require(
            block.timestamp >= earlyAccessStart,
            "window closed"
        );
        require(
            mintedCount[_msgSender()] + amount <= maxBatchSize,
            "wallet mint limit"
        );
        bytes32 node = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "invalid proof"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }
    
    function setPublicMax(
        uint256 _publicMax
    ) external onlyOwner {
        require(
            _publicMax <= collectionSize, 
            "too high"
        );
        publicMax = _publicMax;
    }
    
    function setPricePerMint(
        uint256 _pricePerMint
    ) external onlyOwner {
        pricePerMint = _pricePerMint;
    }
    
    function setMerkleRoot(
        bytes32 _merkleRoot
    ) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
    
    function setEarlyAccessStart(
        uint256 _earlyAccessStart
    ) external onlyOwner {
        earlyAccessStart = _earlyAccessStart;
    }
    
    function setPurchaseStart(
        uint256 _purchaseStart
    ) external onlyOwner {
        purchaseStart = _purchaseStart;
    }

    function setMarketplaceApproved(
        bool marketplaceApproved
    ) external override onlyOwner {
        _marketplaceApproved = marketplaceApproved;
    }

    function setURI(
        string calldata _tokenBaseURI,
        string calldata _tokenBaseURIExt
    ) external onlyOwner {
        require(
            !frozen,
            "Contract is frozen"
        );
        tokenBaseURI = _tokenBaseURI;
        tokenBaseURIExt = _tokenBaseURIExt;
    }

    function freezeBaseURI(
    ) external onlyOwner {
        frozen = true;
    }
    
    function withdraw(
    ) external onlyOwner {
        payable(
            _msgSender()
        ).transfer(
            address(this).balance
        );
    }

    function _mintPublic(
        address _address,
        uint256 amount,
        uint256 value
    ) internal {
        require(
            amount <= maxBatchSize,
            "max batch limit"
        );
        require(
            totalSupply() + amount <= publicMax, 
            "reached max public"
        );
        require(
            value >= getMintPrice(_msgSender(), amount),
            "Not enough ETH sent"
        );
        mintedCount[_msgSender()] += amount;
        _safeMint(_address, amount);
    }
}

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

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":[],"name":"_marketplaceApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"earlyAccessStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"freeMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getMintPrice","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintEarly","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlyAccessStart","type":"uint256"}],"name":"setEarlyAccessStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"marketplaceApproved","type":"bool"}],"name":"setMarketplaceApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerMint","type":"uint256"}],"name":"setPricePerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMax","type":"uint256"}],"name":"setPublicMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_purchaseStart","type":"uint256"}],"name":"setPurchaseStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_tokenBaseURIExt","type":"string"}],"name":"setURI","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"}]

60c060405260018055731e0049783f008a0085193e00003d00cd54003c71600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a55660bb9551fc24000600e553480156200007a57600080fd5b506040518060400160405280600a81526020017f437574655468696e6773000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f43540000000000000000000000000000000000000000000000000000000000008152506008610d056200010c62000100620001de60201b60201c565b620001e660201b60201c565b6000811162000152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001499062000331565b60405180910390fd5b6000821162000198576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018f90620003c9565b60405180910390fd5b8360029081620001a9919062000665565b508260039081620001bb919062000665565b508160a081815250508060808181525050505050506001600b819055506200074c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f45524337323141493a20636f6c6c656374696f6e206d7573742068617665206160008201527f206e6f6e7a65726f20737570706c790000000000000000000000000000000000602082015250565b600062000319602f83620002aa565b91506200032682620002bb565b604082019050919050565b600060208201905081810360008301526200034c816200030a565b9050919050565b7f45524337323141493a206d61782062617463682073697a65206d75737420626560008201527f206e6f6e7a65726f000000000000000000000000000000000000000000000000602082015250565b6000620003b1602883620002aa565b9150620003be8262000353565b604082019050919050565b60006020820190508181036000830152620003e481620003a2565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046d57607f821691505b60208210810362000483576200048262000425565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ae565b620004f98683620004ae565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000546620005406200053a8462000511565b6200051b565b62000511565b9050919050565b6000819050919050565b620005628362000525565b6200057a62000571826200054d565b848454620004bb565b825550505050565b600090565b6200059162000582565b6200059e81848462000557565b505050565b5b81811015620005c657620005ba60008262000587565b600181019050620005a4565b5050565b601f8211156200061557620005df8162000489565b620005ea846200049e565b81016020851015620005fa578190505b6200061262000609856200049e565b830182620005a3565b50505b505050565b600082821c905092915050565b60006200063a600019846008026200061a565b1980831691505092915050565b600062000655838362000627565b9150826002028217905092915050565b6200067082620003eb565b67ffffffffffffffff8111156200068c576200068b620003f6565b5b62000698825462000454565b620006a5828285620005ca565b600060209050601f831160018114620006dd5760008415620006c8578287015190505b620006d4858262000647565b86555062000744565b601f198416620006ed8662000489565b60005b828110156200071757848901518255600182019150602085019450602081019050620006f0565b8683101562000737578489015162000733601f89168262000627565b8355505b6001600288020188555050505b505050505050565b60805160a0516153d66200078e6000396000818161124001528181612831015281816129fc01528181612a2501526130540152600061146301526153d66000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063c5610a29116100b6578063e7bc82081161007a578063e7bc820814610870578063e985e9c514610887578063ea101122146108c4578063f2fde38b146108ef578063fddcb5ea14610918578063fedb248e1461095557610246565b8063c5610a2914610789578063c87b56dd146107b4578063d474459d146107f1578063d7224ba01461081a578063e527c6dd1461084557610246565b80639e908a9d116100fd5780639e908a9d146106b5578063a0712d68146106f2578063a22cb4651461070e578063b88d4fde14610737578063bf2db4c81461076057610246565b8063715018a6146105e25780637cb64759146105f957806387944db8146106225780638da5cb5b1461065f57806395d89b411461068a57610246565b80632f745c59116101c75780635aa6fe171161018b5780635aa6fe17146104f85780635db24af4146105145780636352211e1461053f578063665660461461057c57806370a08231146105a557610246565b80632f745c5914610415578063321ddbcb146104525780633ccfd60b1461047b57806342842e0e146104925780634f6ccce7146104bb57610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d578063222913bd1461039857806323b872dd146103c15780632eb4a7ab146103ea57610246565b806301466bc01461024b57806301ffc9a714610274578063054f7d9c146102b157806306fdde03146102dc578063081812fc14610307575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906134f6565b610980565b005b34801561028057600080fd5b5061029b6004803603810190610296919061357b565b610a06565b6040516102a891906135c3565b60405180910390f35b3480156102bd57600080fd5b506102c6610b50565b6040516102d391906135c3565b60405180910390f35b3480156102e857600080fd5b506102f1610b63565b6040516102fe9190613677565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906134f6565b610bf5565b60405161033b91906136da565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613721565b610c7a565b005b34801561037957600080fd5b50610382610d92565b60405161038f9190613770565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906134f6565b610d9c565b005b3480156103cd57600080fd5b506103e860048036038101906103e3919061378b565b610e22565b005b3480156103f657600080fd5b506103ff610e32565b60405161040c91906137f7565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613721565b610e38565b6040516104499190613770565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906134f6565b611034565b005b34801561048757600080fd5b506104906110ba565b005b34801561049e57600080fd5b506104b960048036038101906104b4919061378b565b611186565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906134f6565b6111a6565b6040516104ef9190613770565b60405180910390f35b610512600480360381019061050d9190613877565b6111f9565b005b34801561052057600080fd5b506105296113c9565b6040516105369190613770565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906134f6565b6113cf565b60405161057391906136da565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906134f6565b6113e5565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906138d7565b6114ce565b6040516105d99190613770565b60405180910390f35b3480156105ee57600080fd5b506105f76115b6565b005b34801561060557600080fd5b50610620600480360381019061061b9190613930565b61163e565b005b34801561062e57600080fd5b5061064960048036038101906106449190613721565b6116c4565b6040516106569190613770565b60405180910390f35b34801561066b57600080fd5b50610674611744565b60405161068191906136da565b60405180910390f35b34801561069657600080fd5b5061069f61176d565b6040516106ac9190613677565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906138d7565b6117ff565b6040516106e99190613770565b60405180910390f35b61070c600480360381019061070791906134f6565b61185b565b005b34801561071a57600080fd5b5061073560048036038101906107309190613989565b6118b5565b005b34801561074357600080fd5b5061075e60048036038101906107599190613af9565b611aea565b005b34801561076c57600080fd5b5061078760048036038101906107829190613bd2565b611b46565b005b34801561079557600080fd5b5061079e611c3c565b6040516107ab9190613770565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906134f6565b611c42565b6040516107e89190613677565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190613c53565b611cc1565b005b34801561082657600080fd5b5061082f611d5a565b60405161083c9190613770565b60405180910390f35b34801561085157600080fd5b5061085a611d60565b6040516108679190613770565b60405180910390f35b34801561087c57600080fd5b50610885611d66565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613c80565b611dff565b6040516108bb91906135c3565b60405180910390f35b3480156108d057600080fd5b506108d9611f68565b6040516108e691906135c3565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906138d7565b611f7b565b005b34801561092457600080fd5b5061093f600480360381019061093a91906138d7565b612072565b60405161094c9190613770565b60405180910390f35b34801561096157600080fd5b5061096a61208a565b6040516109779190613770565b60405180910390f35b610988612090565b73ffffffffffffffffffffffffffffffffffffffff166109a6611744565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390613d0c565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b495750610b4882612098565b5b9050919050565b600c60009054906101000a900460ff1681565b606060028054610b7290613d5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90613d5b565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b5050505050905090565b6000610c0082612102565b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613dfe565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c85826113cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613e90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d14612090565b73ffffffffffffffffffffffffffffffffffffffff161480610d435750610d4281610d3d612090565b611dff565b5b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613f22565b60405180910390fd5b610d8d838383612110565b505050565b6000600154905090565b610da4612090565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611744565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613d0c565b60405180910390fd5b8060108190555050565b610e2d8383836121c2565b505050565b600f5481565b6000610e43836114ce565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613fb4565b60405180910390fd5b6000610e8e610d92565b905060008060005b83811015610ff2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde57868403610fcf57819550505050505061102e565b8380610fda90614003565b9450505b508080610fea90614003565b915050610e96565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906140bd565b60405180910390fd5b92915050565b61103c612090565b73ffffffffffffffffffffffffffffffffffffffff1661105a611744565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613d0c565b60405180910390fd5b8060118190555050565b6110c2612090565b73ffffffffffffffffffffffffffffffffffffffff166110e0611744565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613d0c565b60405180910390fd5b61113e612090565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611183573d6000803e3d6000fd5b50565b6111a183838360405180602001604052806000815250611aea565b505050565b60006111b0610d92565b82106111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061414f565b60405180910390fd5b819050919050565b60105442101561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906141bb565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000836014600061126c612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b191906141db565b11156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e99061427d565b60405180910390fd5b60006112fc612090565b60405160200161130c91906142e5565b604051602081830303815290604052805190602001209050611372838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612779565b6113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a89061434c565b60405180910390fd5b6113c36113bc612090565b853461282f565b50505050565b60105481565b60006113da826129a8565b600001519050919050565b6113ed612090565b73ffffffffffffffffffffffffffffffffffffffff1661140b611744565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613d0c565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008111156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906143b8565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115359061444a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115be612090565b73ffffffffffffffffffffffffffffffffffffffff166115dc611744565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613d0c565b60405180910390fd5b61163c6000612bab565b565b611646612090565b73ffffffffffffffffffffffffffffffffffffffff16611664611744565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613d0c565b60405180910390fd5b80600f8190555050565b600080601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361172d57600182611719919061446a565b600e54611726919061449e565b905061173e565b81600e5461173b919061449e565b90505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461177c90613d5b565b80601f01602080910402602001604051908101604052809291908181526020018280546117a890613d5b565b80156117f55780601f106117ca576101008083540402835291602001916117f5565b820191906000526020600020905b8154815290600101906020018083116117d857829003601f168201915b5050505050905090565b600080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118515760009050611856565b600190505b919050565b6011544210156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614544565b60405180910390fd5b6118b26118ab612090565b823461282f565b50565b6118bd612090565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611921906145b0565b60405180910390fd5b8060076000611937612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a7a57801560096000611a28612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8173ffffffffffffffffffffffffffffffffffffffff16611a99612090565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ade91906135c3565b60405180910390a35050565b611af58484846121c2565b611b0184848484612c6f565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614642565b60405180910390fd5b50505050565b611b4e612090565b73ffffffffffffffffffffffffffffffffffffffff16611b6c611744565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613d0c565b60405180910390fd5b600c60009054906101000a900460ff1615611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906146ae565b60405180910390fd5b838360129182611c23929190614885565b50818160139182611c35929190614885565b5050505050565b600e5481565b6060611c4d82612102565b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906149a1565b60405180910390fd5b6012611c9783612df6565b6013604051602001611cab93929190614a80565b6040516020818303038152906040529050919050565b611cc9612090565b73ffffffffffffffffffffffffffffffffffffffff16611ce7611744565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d0c565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b600a5481565b600d5481565b611d6e612090565b73ffffffffffffffffffffffffffffffffffffffff16611d8c611744565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613d0c565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6000600860149054906101000a900460ff168015611e6a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611ec7575060096000611e7d612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ed55760019050611f62565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b600860149054906101000a900460ff1681565b611f83612090565b73ffffffffffffffffffffffffffffffffffffffff16611fa1611744565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613d0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614b23565b60405180910390fd5b61206f81612bab565b50565b60146020528060005260406000206000915090505481565b60115481565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121cd826129a8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f4612090565b73ffffffffffffffffffffffffffffffffffffffff1614806122505750612219612090565b73ffffffffffffffffffffffffffffffffffffffff1661223884610bf5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226c575061226b8260000151612266612090565b611dff565b5b9050806122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614bb5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790614c47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614cd9565b60405180910390fd5b61239c8585856001612f56565b6123ac6000848460000151612110565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661241a9190614d15565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124be9190614d49565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125c491906141db565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036127095761263981612102565b15612708576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127718686866001612f5c565b505050505050565b60008082905060005b85518110156128215760008682815181106127a05761279f614d8f565b5b602002602001015190508083116127e15782816040516020016127c4929190614ddf565b60405160208183030381529060405280519060200120925061280d565b80836040516020016127f4929190614ddf565b6040516020818303038152906040528051906020012092505b50808061281990614003565b915050612782565b508381149150509392505050565b7f0000000000000000000000000000000000000000000000000000000000000000821115612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614e57565b60405180910390fd5b600d548261289e610d92565b6128a891906141db565b11156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614ec3565b60405180910390fd5b6128fa6128f4612090565b836116c4565b81101561293c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293390614f2f565b60405180910390fd5b8160146000612949612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299291906141db565b925050819055506129a38383612f62565b505050565b6129b0613472565b6129b982612102565b6129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef90614fc1565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612a5c5760017f000000000000000000000000000000000000000000000000000000000000000084612a4f919061446a565b612a5991906141db565b90505b60008390505b818110612b6a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5657809350505050612ba6565b508080612b6290614fe1565b915050612a62565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d9061507c565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c908473ffffffffffffffffffffffffffffffffffffffff16612f80565b15612de9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb9612090565b8786866040518563ffffffff1660e01b8152600401612cdb94939291906150f1565b6020604051808303816000875af1925050508015612d1757506040513d601f19601f82011682018060405250810190612d149190615152565b60015b612d99573d8060008114612d47576040519150601f19603f3d011682016040523d82523d6000602084013e612d4c565b606091505b506000815103612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890614642565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dee565b600190505b949350505050565b606060008203612e3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f51565b600082905060005b60008214612e6f578080612e5890614003565b915050600a82612e6891906151ae565b9150612e45565b60008167ffffffffffffffff811115612e8b57612e8a6139ce565b5b6040519080825280601f01601f191660200182016040528015612ebd5781602001600182028036833780820191505090505b5090505b60008514612f4a57600182612ed6919061446a565b9150600a85612ee591906151df565b6030612ef191906141db565b60f81b818381518110612f0757612f06614d8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f4391906151ae565b9450612ec1565b8093505050505b919050565b50505050565b50505050565b612f7c828260405180602001604052806000815250612f93565b5050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300090615282565b60405180910390fd5b61301281612102565b15613052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613049906152ee565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615380565b60405180910390fd5b6130c26000858386612f56565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131bf9190614d49565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131e69190614d49565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561345557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133f56000888488612c6f565b613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90614642565b60405180910390fd5b818061343f90614003565b925050808061344d90614003565b915050613384565b508060018190555061346a6000878588612f5c565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b60006020828403121561350c5761350b6134b6565b5b600061351a848285016134e1565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355881613523565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b600060208284031215613591576135906134b6565b5b600061359f84828501613566565b91505092915050565b60008115159050919050565b6135bd816135a8565b82525050565b60006020820190506135d860008301846135b4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136185780820151818401526020810190506135fd565b83811115613627576000848401525b50505050565b6000601f19601f8301169050919050565b6000613649826135de565b61365381856135e9565b93506136638185602086016135fa565b61366c8161362d565b840191505092915050565b60006020820190508181036000830152613691818461363e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c482613699565b9050919050565b6136d4816136b9565b82525050565b60006020820190506136ef60008301846136cb565b92915050565b6136fe816136b9565b811461370957600080fd5b50565b60008135905061371b816136f5565b92915050565b60008060408385031215613738576137376134b6565b5b60006137468582860161370c565b9250506020613757858286016134e1565b9150509250929050565b61376a816134c0565b82525050565b60006020820190506137856000830184613761565b92915050565b6000806000606084860312156137a4576137a36134b6565b5b60006137b28682870161370c565b93505060206137c38682870161370c565b92505060406137d4868287016134e1565b9150509250925092565b6000819050919050565b6137f1816137de565b82525050565b600060208201905061380c60008301846137e8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261383757613836613812565b5b8235905067ffffffffffffffff81111561385457613853613817565b5b6020830191508360208202830111156138705761386f61381c565b5b9250929050565b6000806000604084860312156138905761388f6134b6565b5b600061389e868287016134e1565b935050602084013567ffffffffffffffff8111156138bf576138be6134bb565b5b6138cb86828701613821565b92509250509250925092565b6000602082840312156138ed576138ec6134b6565b5b60006138fb8482850161370c565b91505092915050565b61390d816137de565b811461391857600080fd5b50565b60008135905061392a81613904565b92915050565b600060208284031215613946576139456134b6565b5b60006139548482850161391b565b91505092915050565b613966816135a8565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f6134b6565b5b60006139ae8582860161370c565b92505060206139bf85828601613974565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a068261362d565b810181811067ffffffffffffffff82111715613a2557613a246139ce565b5b80604052505050565b6000613a386134ac565b9050613a4482826139fd565b919050565b600067ffffffffffffffff821115613a6457613a636139ce565b5b613a6d8261362d565b9050602081019050919050565b82818337600083830152505050565b6000613a9c613a9784613a49565b613a2e565b905082815260208101848484011115613ab857613ab76139c9565b5b613ac3848285613a7a565b509392505050565b600082601f830112613ae057613adf613812565b5b8135613af0848260208601613a89565b91505092915050565b60008060008060808587031215613b1357613b126134b6565b5b6000613b218782880161370c565b9450506020613b328782880161370c565b9350506040613b43878288016134e1565b925050606085013567ffffffffffffffff811115613b6457613b636134bb565b5b613b7087828801613acb565b91505092959194509250565b60008083601f840112613b9257613b91613812565b5b8235905067ffffffffffffffff811115613baf57613bae613817565b5b602083019150836001820283011115613bcb57613bca61381c565b5b9250929050565b60008060008060408587031215613bec57613beb6134b6565b5b600085013567ffffffffffffffff811115613c0a57613c096134bb565b5b613c1687828801613b7c565b9450945050602085013567ffffffffffffffff811115613c3957613c386134bb565b5b613c4587828801613b7c565b925092505092959194509250565b600060208284031215613c6957613c686134b6565b5b6000613c7784828501613974565b91505092915050565b60008060408385031215613c9757613c966134b6565b5b6000613ca58582860161370c565b9250506020613cb68582860161370c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf66020836135e9565b9150613d0182613cc0565b602082019050919050565b60006020820190508181036000830152613d2581613ce9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7357607f821691505b602082108103613d8657613d85613d2c565b5b50919050565b7f45524337323141493a20617070726f76656420717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613de8602e836135e9565b9150613df382613d8c565b604082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b7f45524337323141493a20617070726f76616c20746f2063757272656e74206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000613e7a6023836135e9565b9150613e8582613e1e565b604082019050919050565b60006020820190508181036000830152613ea981613e6d565b9050919050565b7f45524337323141493a20617070726f76652063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000602082015250565b6000613f0c603a836135e9565b9150613f1782613eb0565b604082019050919050565b60006020820190508181036000830152613f3b81613eff565b9050919050565b7f45524337323141493a206f776e657220696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9e6023836135e9565b9150613fa982613f42565b604082019050919050565b60006020820190508181036000830152613fcd81613f91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061400e826134c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140405761403f613fd4565b5b600182019050919050565b7f45524337323141493a20756e61626c6520746f2067657420746f6b656e206f6660008201527f206f776e657220627920696e6465780000000000000000000000000000000000602082015250565b60006140a7602f836135e9565b91506140b28261404b565b604082019050919050565b600060208201905081810360008301526140d68161409a565b9050919050565b7f45524337323141493a20676c6f62616c20696e646578206f7574206f6620626f60008201527f756e647300000000000000000000000000000000000000000000000000000000602082015250565b60006141396024836135e9565b9150614144826140dd565b604082019050919050565b600060208201905081810360008301526141688161412c565b9050919050565b7f77696e646f7720636c6f73656400000000000000000000000000000000000000600082015250565b60006141a5600d836135e9565b91506141b08261416f565b602082019050919050565b600060208201905081810360008301526141d481614198565b9050919050565b60006141e6826134c0565b91506141f1836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561422657614225613fd4565b5b828201905092915050565b7f77616c6c6574206d696e74206c696d6974000000000000000000000000000000600082015250565b60006142676011836135e9565b915061427282614231565b602082019050919050565b600060208201905081810360008301526142968161425a565b9050919050565b60008160601b9050919050565b60006142b58261429d565b9050919050565b60006142c7826142aa565b9050919050565b6142df6142da826136b9565b6142bc565b82525050565b60006142f182846142ce565b60148201915081905092915050565b7f696e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614336600d836135e9565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b60006143a26008836135e9565b91506143ad8261436c565b602082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524337323141493a2062616c616e636520717565727920666f72207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000614434602c836135e9565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b6000614475826134c0565b9150614480836134c0565b92508282101561449357614492613fd4565b5b828203905092915050565b60006144a9826134c0565b91506144b4836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144ed576144ec613fd4565b5b828202905092915050565b7f73616c65206861736e2774207374617274656400000000000000000000000000600082015250565b600061452e6013836135e9565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f45524337323141493a20617070726f766520746f2063616c6c65720000000000600082015250565b600061459a601b836135e9565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f45524337323141493a207472616e7366657220746f206e6f6e2045524337323160008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061462c6034836135e9565b9150614637826145d0565b604082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f436f6e74726163742069732066726f7a656e0000000000000000000000000000600082015250565b60006146986012836135e9565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261473b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146fe565b61474586836146fe565b95508019841693508086168417925050509392505050565b6000819050919050565b600061478261477d614778846134c0565b61475d565b6134c0565b9050919050565b6000819050919050565b61479c83614767565b6147b06147a882614789565b84845461470b565b825550505050565b600090565b6147c56147b8565b6147d0818484614793565b505050565b5b818110156147f4576147e96000826147bd565b6001810190506147d6565b5050565b601f8211156148395761480a816146d9565b614813846146ee565b81016020851015614822578190505b61483661482e856146ee565b8301826147d5565b50505b505050565b600082821c905092915050565b600061485c6000198460080261483e565b1980831691505092915050565b6000614875838361484b565b9150826002028217905092915050565b61488f83836146ce565b67ffffffffffffffff8111156148a8576148a76139ce565b5b6148b28254613d5b565b6148bd8282856147f8565b6000601f8311600181146148ec57600084156148da578287013590505b6148e48582614869565b86555061494c565b601f1984166148fa866146d9565b60005b82811015614922578489013582556001820191506020850194506020810190506148fd565b8683101561493f578489013561493b601f89168261484b565b8355505b6001600288020188555050505b50505050505050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061498b6011836135e9565b915061499682614955565b602082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b600081905092915050565b600081546149d981613d5b565b6149e381866149c1565b945060018216600081146149fe5760018114614a1357614a46565b60ff1983168652811515820286019350614a46565b614a1c856146d9565b60005b83811015614a3e57815481890152600182019150602081019050614a1f565b838801955050505b50505092915050565b6000614a5a826135de565b614a6481856149c1565b9350614a748185602086016135fa565b80840191505092915050565b6000614a8c82866149cc565b9150614a988285614a4f565b9150614aa482846149cc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b0d6026836135e9565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f45524337323141493a207472616e736665722063616c6c6572206973206e6f7460008201527f206f776e6572206e6f7220617070726f76656400000000000000000000000000602082015250565b6000614b9f6033836135e9565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f45524337323141493a207472616e736665722066726f6d20696e636f7272656360008201527f74206f776e657200000000000000000000000000000000000000000000000000602082015250565b6000614c316027836135e9565b9150614c3c82614bd5565b604082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f45524337323141493a207472616e7366657220746f20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cc36026836135e9565b9150614cce82614c67565b604082019050919050565b60006020820190508181036000830152614cf281614cb6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614d2082614cf9565b9150614d2b83614cf9565b925082821015614d3e57614d3d613fd4565b5b828203905092915050565b6000614d5482614cf9565b9150614d5f83614cf9565b9250826fffffffffffffffffffffffffffffffff03821115614d8457614d83613fd4565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614dd9614dd4826137de565b614dbe565b82525050565b6000614deb8285614dc8565b602082019150614dfb8284614dc8565b6020820191508190509392505050565b7f6d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b6000614e41600f836135e9565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f72656163686564206d6178207075626c69630000000000000000000000000000600082015250565b6000614ead6012836135e9565b9150614eb882614e77565b602082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b6000614f196013836135e9565b9150614f2482614ee3565b602082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f45524337323141493a206f776e657220717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000614fab602b836135e9565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b6000614fec826134c0565b915060008203614fff57614ffe613fd4565b5b600182039050919050565b7f45524337323141493a20756e61626c6520746f2064657465726d696e6520746860008201527f65206f776e6572206f6620746f6b656e00000000000000000000000000000000602082015250565b60006150666030836135e9565b91506150718261500a565b604082019050919050565b6000602082019050818103600083015261509581615059565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150c38261509c565b6150cd81856150a7565b93506150dd8185602086016135fa565b6150e68161362d565b840191505092915050565b600060808201905061510660008301876136cb565b61511360208301866136cb565b6151206040830185613761565b818103606083015261513281846150b8565b905095945050505050565b60008151905061514c8161354f565b92915050565b600060208284031215615168576151676134b6565b5b60006151768482850161513d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151b9826134c0565b91506151c4836134c0565b9250826151d4576151d361517f565b5b828204905092915050565b60006151ea826134c0565b91506151f5836134c0565b9250826152055761520461517f565b5b828206905092915050565b7f45524337323141493a206d696e7420746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061526c6022836135e9565b915061527782615210565b604082019050919050565b6000602082019050818103600083015261529b8161525f565b9050919050565b7f45524337323141493a20746f6b656e20616c7265616479206d696e7465640000600082015250565b60006152d8601e836135e9565b91506152e3826152a2565b602082019050919050565b60006020820190508181036000830152615307816152cb565b9050919050565b7f45524337323141493a207175616e7469747920746f206d696e7420746f6f206860008201527f6967680000000000000000000000000000000000000000000000000000000000602082015250565b600061536a6023836135e9565b91506153758261530e565b604082019050919050565b600060208201905081810360008301526153998161535d565b905091905056fea2646970667358221220ea1ea73f0ccab6a2f1211e3906c3c871910fa018293d4ad9678a2a89a6c7998864736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063c5610a29116100b6578063e7bc82081161007a578063e7bc820814610870578063e985e9c514610887578063ea101122146108c4578063f2fde38b146108ef578063fddcb5ea14610918578063fedb248e1461095557610246565b8063c5610a2914610789578063c87b56dd146107b4578063d474459d146107f1578063d7224ba01461081a578063e527c6dd1461084557610246565b80639e908a9d116100fd5780639e908a9d146106b5578063a0712d68146106f2578063a22cb4651461070e578063b88d4fde14610737578063bf2db4c81461076057610246565b8063715018a6146105e25780637cb64759146105f957806387944db8146106225780638da5cb5b1461065f57806395d89b411461068a57610246565b80632f745c59116101c75780635aa6fe171161018b5780635aa6fe17146104f85780635db24af4146105145780636352211e1461053f578063665660461461057c57806370a08231146105a557610246565b80632f745c5914610415578063321ddbcb146104525780633ccfd60b1461047b57806342842e0e146104925780634f6ccce7146104bb57610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d578063222913bd1461039857806323b872dd146103c15780632eb4a7ab146103ea57610246565b806301466bc01461024b57806301ffc9a714610274578063054f7d9c146102b157806306fdde03146102dc578063081812fc14610307575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906134f6565b610980565b005b34801561028057600080fd5b5061029b6004803603810190610296919061357b565b610a06565b6040516102a891906135c3565b60405180910390f35b3480156102bd57600080fd5b506102c6610b50565b6040516102d391906135c3565b60405180910390f35b3480156102e857600080fd5b506102f1610b63565b6040516102fe9190613677565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906134f6565b610bf5565b60405161033b91906136da565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613721565b610c7a565b005b34801561037957600080fd5b50610382610d92565b60405161038f9190613770565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906134f6565b610d9c565b005b3480156103cd57600080fd5b506103e860048036038101906103e3919061378b565b610e22565b005b3480156103f657600080fd5b506103ff610e32565b60405161040c91906137f7565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613721565b610e38565b6040516104499190613770565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906134f6565b611034565b005b34801561048757600080fd5b506104906110ba565b005b34801561049e57600080fd5b506104b960048036038101906104b4919061378b565b611186565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906134f6565b6111a6565b6040516104ef9190613770565b60405180910390f35b610512600480360381019061050d9190613877565b6111f9565b005b34801561052057600080fd5b506105296113c9565b6040516105369190613770565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906134f6565b6113cf565b60405161057391906136da565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906134f6565b6113e5565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906138d7565b6114ce565b6040516105d99190613770565b60405180910390f35b3480156105ee57600080fd5b506105f76115b6565b005b34801561060557600080fd5b50610620600480360381019061061b9190613930565b61163e565b005b34801561062e57600080fd5b5061064960048036038101906106449190613721565b6116c4565b6040516106569190613770565b60405180910390f35b34801561066b57600080fd5b50610674611744565b60405161068191906136da565b60405180910390f35b34801561069657600080fd5b5061069f61176d565b6040516106ac9190613677565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906138d7565b6117ff565b6040516106e99190613770565b60405180910390f35b61070c600480360381019061070791906134f6565b61185b565b005b34801561071a57600080fd5b5061073560048036038101906107309190613989565b6118b5565b005b34801561074357600080fd5b5061075e60048036038101906107599190613af9565b611aea565b005b34801561076c57600080fd5b5061078760048036038101906107829190613bd2565b611b46565b005b34801561079557600080fd5b5061079e611c3c565b6040516107ab9190613770565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906134f6565b611c42565b6040516107e89190613677565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190613c53565b611cc1565b005b34801561082657600080fd5b5061082f611d5a565b60405161083c9190613770565b60405180910390f35b34801561085157600080fd5b5061085a611d60565b6040516108679190613770565b60405180910390f35b34801561087c57600080fd5b50610885611d66565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613c80565b611dff565b6040516108bb91906135c3565b60405180910390f35b3480156108d057600080fd5b506108d9611f68565b6040516108e691906135c3565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906138d7565b611f7b565b005b34801561092457600080fd5b5061093f600480360381019061093a91906138d7565b612072565b60405161094c9190613770565b60405180910390f35b34801561096157600080fd5b5061096a61208a565b6040516109779190613770565b60405180910390f35b610988612090565b73ffffffffffffffffffffffffffffffffffffffff166109a6611744565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390613d0c565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b495750610b4882612098565b5b9050919050565b600c60009054906101000a900460ff1681565b606060028054610b7290613d5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90613d5b565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b5050505050905090565b6000610c0082612102565b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613dfe565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c85826113cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613e90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d14612090565b73ffffffffffffffffffffffffffffffffffffffff161480610d435750610d4281610d3d612090565b611dff565b5b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613f22565b60405180910390fd5b610d8d838383612110565b505050565b6000600154905090565b610da4612090565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611744565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613d0c565b60405180910390fd5b8060108190555050565b610e2d8383836121c2565b505050565b600f5481565b6000610e43836114ce565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613fb4565b60405180910390fd5b6000610e8e610d92565b905060008060005b83811015610ff2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde57868403610fcf57819550505050505061102e565b8380610fda90614003565b9450505b508080610fea90614003565b915050610e96565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906140bd565b60405180910390fd5b92915050565b61103c612090565b73ffffffffffffffffffffffffffffffffffffffff1661105a611744565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613d0c565b60405180910390fd5b8060118190555050565b6110c2612090565b73ffffffffffffffffffffffffffffffffffffffff166110e0611744565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613d0c565b60405180910390fd5b61113e612090565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611183573d6000803e3d6000fd5b50565b6111a183838360405180602001604052806000815250611aea565b505050565b60006111b0610d92565b82106111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061414f565b60405180910390fd5b819050919050565b60105442101561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906141bb565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000008836014600061126c612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b191906141db565b11156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e99061427d565b60405180910390fd5b60006112fc612090565b60405160200161130c91906142e5565b604051602081830303815290604052805190602001209050611372838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612779565b6113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a89061434c565b60405180910390fd5b6113c36113bc612090565b853461282f565b50505050565b60105481565b60006113da826129a8565b600001519050919050565b6113ed612090565b73ffffffffffffffffffffffffffffffffffffffff1661140b611744565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613d0c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d058111156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906143b8565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115359061444a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115be612090565b73ffffffffffffffffffffffffffffffffffffffff166115dc611744565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613d0c565b60405180910390fd5b61163c6000612bab565b565b611646612090565b73ffffffffffffffffffffffffffffffffffffffff16611664611744565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613d0c565b60405180910390fd5b80600f8190555050565b600080601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361172d57600182611719919061446a565b600e54611726919061449e565b905061173e565b81600e5461173b919061449e565b90505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461177c90613d5b565b80601f01602080910402602001604051908101604052809291908181526020018280546117a890613d5b565b80156117f55780601f106117ca576101008083540402835291602001916117f5565b820191906000526020600020905b8154815290600101906020018083116117d857829003601f168201915b5050505050905090565b600080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118515760009050611856565b600190505b919050565b6011544210156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614544565b60405180910390fd5b6118b26118ab612090565b823461282f565b50565b6118bd612090565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611921906145b0565b60405180910390fd5b8060076000611937612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a7a57801560096000611a28612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8173ffffffffffffffffffffffffffffffffffffffff16611a99612090565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ade91906135c3565b60405180910390a35050565b611af58484846121c2565b611b0184848484612c6f565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614642565b60405180910390fd5b50505050565b611b4e612090565b73ffffffffffffffffffffffffffffffffffffffff16611b6c611744565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613d0c565b60405180910390fd5b600c60009054906101000a900460ff1615611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906146ae565b60405180910390fd5b838360129182611c23929190614885565b50818160139182611c35929190614885565b5050505050565b600e5481565b6060611c4d82612102565b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906149a1565b60405180910390fd5b6012611c9783612df6565b6013604051602001611cab93929190614a80565b6040516020818303038152906040529050919050565b611cc9612090565b73ffffffffffffffffffffffffffffffffffffffff16611ce7611744565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d0c565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b600a5481565b600d5481565b611d6e612090565b73ffffffffffffffffffffffffffffffffffffffff16611d8c611744565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613d0c565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6000600860149054906101000a900460ff168015611e6a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611ec7575060096000611e7d612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ed55760019050611f62565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b600860149054906101000a900460ff1681565b611f83612090565b73ffffffffffffffffffffffffffffffffffffffff16611fa1611744565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613d0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614b23565b60405180910390fd5b61206f81612bab565b50565b60146020528060005260406000206000915090505481565b60115481565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121cd826129a8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f4612090565b73ffffffffffffffffffffffffffffffffffffffff1614806122505750612219612090565b73ffffffffffffffffffffffffffffffffffffffff1661223884610bf5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226c575061226b8260000151612266612090565b611dff565b5b9050806122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614bb5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790614c47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614cd9565b60405180910390fd5b61239c8585856001612f56565b6123ac6000848460000151612110565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661241a9190614d15565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124be9190614d49565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125c491906141db565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036127095761263981612102565b15612708576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127718686866001612f5c565b505050505050565b60008082905060005b85518110156128215760008682815181106127a05761279f614d8f565b5b602002602001015190508083116127e15782816040516020016127c4929190614ddf565b60405160208183030381529060405280519060200120925061280d565b80836040516020016127f4929190614ddf565b6040516020818303038152906040528051906020012092505b50808061281990614003565b915050612782565b508381149150509392505050565b7f0000000000000000000000000000000000000000000000000000000000000008821115612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614e57565b60405180910390fd5b600d548261289e610d92565b6128a891906141db565b11156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614ec3565b60405180910390fd5b6128fa6128f4612090565b836116c4565b81101561293c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293390614f2f565b60405180910390fd5b8160146000612949612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299291906141db565b925050819055506129a38383612f62565b505050565b6129b0613472565b6129b982612102565b6129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef90614fc1565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000088310612a5c5760017f000000000000000000000000000000000000000000000000000000000000000884612a4f919061446a565b612a5991906141db565b90505b60008390505b818110612b6a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5657809350505050612ba6565b508080612b6290614fe1565b915050612a62565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d9061507c565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c908473ffffffffffffffffffffffffffffffffffffffff16612f80565b15612de9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb9612090565b8786866040518563ffffffff1660e01b8152600401612cdb94939291906150f1565b6020604051808303816000875af1925050508015612d1757506040513d601f19601f82011682018060405250810190612d149190615152565b60015b612d99573d8060008114612d47576040519150601f19603f3d011682016040523d82523d6000602084013e612d4c565b606091505b506000815103612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890614642565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dee565b600190505b949350505050565b606060008203612e3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f51565b600082905060005b60008214612e6f578080612e5890614003565b915050600a82612e6891906151ae565b9150612e45565b60008167ffffffffffffffff811115612e8b57612e8a6139ce565b5b6040519080825280601f01601f191660200182016040528015612ebd5781602001600182028036833780820191505090505b5090505b60008514612f4a57600182612ed6919061446a565b9150600a85612ee591906151df565b6030612ef191906141db565b60f81b818381518110612f0757612f06614d8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f4391906151ae565b9450612ec1565b8093505050505b919050565b50505050565b50505050565b612f7c828260405180602001604052806000815250612f93565b5050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300090615282565b60405180910390fd5b61301281612102565b15613052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613049906152ee565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000088311156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615380565b60405180910390fd5b6130c26000858386612f56565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131bf9190614d49565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131e69190614d49565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561345557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133f56000888488612c6f565b613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90614642565b60405180910390fd5b818061343f90614003565b925050808061344d90614003565b915050613384565b508060018190555061346a6000878588612f5c565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b60006020828403121561350c5761350b6134b6565b5b600061351a848285016134e1565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355881613523565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b600060208284031215613591576135906134b6565b5b600061359f84828501613566565b91505092915050565b60008115159050919050565b6135bd816135a8565b82525050565b60006020820190506135d860008301846135b4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136185780820151818401526020810190506135fd565b83811115613627576000848401525b50505050565b6000601f19601f8301169050919050565b6000613649826135de565b61365381856135e9565b93506136638185602086016135fa565b61366c8161362d565b840191505092915050565b60006020820190508181036000830152613691818461363e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c482613699565b9050919050565b6136d4816136b9565b82525050565b60006020820190506136ef60008301846136cb565b92915050565b6136fe816136b9565b811461370957600080fd5b50565b60008135905061371b816136f5565b92915050565b60008060408385031215613738576137376134b6565b5b60006137468582860161370c565b9250506020613757858286016134e1565b9150509250929050565b61376a816134c0565b82525050565b60006020820190506137856000830184613761565b92915050565b6000806000606084860312156137a4576137a36134b6565b5b60006137b28682870161370c565b93505060206137c38682870161370c565b92505060406137d4868287016134e1565b9150509250925092565b6000819050919050565b6137f1816137de565b82525050565b600060208201905061380c60008301846137e8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261383757613836613812565b5b8235905067ffffffffffffffff81111561385457613853613817565b5b6020830191508360208202830111156138705761386f61381c565b5b9250929050565b6000806000604084860312156138905761388f6134b6565b5b600061389e868287016134e1565b935050602084013567ffffffffffffffff8111156138bf576138be6134bb565b5b6138cb86828701613821565b92509250509250925092565b6000602082840312156138ed576138ec6134b6565b5b60006138fb8482850161370c565b91505092915050565b61390d816137de565b811461391857600080fd5b50565b60008135905061392a81613904565b92915050565b600060208284031215613946576139456134b6565b5b60006139548482850161391b565b91505092915050565b613966816135a8565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f6134b6565b5b60006139ae8582860161370c565b92505060206139bf85828601613974565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a068261362d565b810181811067ffffffffffffffff82111715613a2557613a246139ce565b5b80604052505050565b6000613a386134ac565b9050613a4482826139fd565b919050565b600067ffffffffffffffff821115613a6457613a636139ce565b5b613a6d8261362d565b9050602081019050919050565b82818337600083830152505050565b6000613a9c613a9784613a49565b613a2e565b905082815260208101848484011115613ab857613ab76139c9565b5b613ac3848285613a7a565b509392505050565b600082601f830112613ae057613adf613812565b5b8135613af0848260208601613a89565b91505092915050565b60008060008060808587031215613b1357613b126134b6565b5b6000613b218782880161370c565b9450506020613b328782880161370c565b9350506040613b43878288016134e1565b925050606085013567ffffffffffffffff811115613b6457613b636134bb565b5b613b7087828801613acb565b91505092959194509250565b60008083601f840112613b9257613b91613812565b5b8235905067ffffffffffffffff811115613baf57613bae613817565b5b602083019150836001820283011115613bcb57613bca61381c565b5b9250929050565b60008060008060408587031215613bec57613beb6134b6565b5b600085013567ffffffffffffffff811115613c0a57613c096134bb565b5b613c1687828801613b7c565b9450945050602085013567ffffffffffffffff811115613c3957613c386134bb565b5b613c4587828801613b7c565b925092505092959194509250565b600060208284031215613c6957613c686134b6565b5b6000613c7784828501613974565b91505092915050565b60008060408385031215613c9757613c966134b6565b5b6000613ca58582860161370c565b9250506020613cb68582860161370c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf66020836135e9565b9150613d0182613cc0565b602082019050919050565b60006020820190508181036000830152613d2581613ce9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7357607f821691505b602082108103613d8657613d85613d2c565b5b50919050565b7f45524337323141493a20617070726f76656420717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613de8602e836135e9565b9150613df382613d8c565b604082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b7f45524337323141493a20617070726f76616c20746f2063757272656e74206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000613e7a6023836135e9565b9150613e8582613e1e565b604082019050919050565b60006020820190508181036000830152613ea981613e6d565b9050919050565b7f45524337323141493a20617070726f76652063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000602082015250565b6000613f0c603a836135e9565b9150613f1782613eb0565b604082019050919050565b60006020820190508181036000830152613f3b81613eff565b9050919050565b7f45524337323141493a206f776e657220696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9e6023836135e9565b9150613fa982613f42565b604082019050919050565b60006020820190508181036000830152613fcd81613f91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061400e826134c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140405761403f613fd4565b5b600182019050919050565b7f45524337323141493a20756e61626c6520746f2067657420746f6b656e206f6660008201527f206f776e657220627920696e6465780000000000000000000000000000000000602082015250565b60006140a7602f836135e9565b91506140b28261404b565b604082019050919050565b600060208201905081810360008301526140d68161409a565b9050919050565b7f45524337323141493a20676c6f62616c20696e646578206f7574206f6620626f60008201527f756e647300000000000000000000000000000000000000000000000000000000602082015250565b60006141396024836135e9565b9150614144826140dd565b604082019050919050565b600060208201905081810360008301526141688161412c565b9050919050565b7f77696e646f7720636c6f73656400000000000000000000000000000000000000600082015250565b60006141a5600d836135e9565b91506141b08261416f565b602082019050919050565b600060208201905081810360008301526141d481614198565b9050919050565b60006141e6826134c0565b91506141f1836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561422657614225613fd4565b5b828201905092915050565b7f77616c6c6574206d696e74206c696d6974000000000000000000000000000000600082015250565b60006142676011836135e9565b915061427282614231565b602082019050919050565b600060208201905081810360008301526142968161425a565b9050919050565b60008160601b9050919050565b60006142b58261429d565b9050919050565b60006142c7826142aa565b9050919050565b6142df6142da826136b9565b6142bc565b82525050565b60006142f182846142ce565b60148201915081905092915050565b7f696e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614336600d836135e9565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b60006143a26008836135e9565b91506143ad8261436c565b602082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524337323141493a2062616c616e636520717565727920666f72207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000614434602c836135e9565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b6000614475826134c0565b9150614480836134c0565b92508282101561449357614492613fd4565b5b828203905092915050565b60006144a9826134c0565b91506144b4836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144ed576144ec613fd4565b5b828202905092915050565b7f73616c65206861736e2774207374617274656400000000000000000000000000600082015250565b600061452e6013836135e9565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f45524337323141493a20617070726f766520746f2063616c6c65720000000000600082015250565b600061459a601b836135e9565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f45524337323141493a207472616e7366657220746f206e6f6e2045524337323160008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061462c6034836135e9565b9150614637826145d0565b604082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f436f6e74726163742069732066726f7a656e0000000000000000000000000000600082015250565b60006146986012836135e9565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261473b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146fe565b61474586836146fe565b95508019841693508086168417925050509392505050565b6000819050919050565b600061478261477d614778846134c0565b61475d565b6134c0565b9050919050565b6000819050919050565b61479c83614767565b6147b06147a882614789565b84845461470b565b825550505050565b600090565b6147c56147b8565b6147d0818484614793565b505050565b5b818110156147f4576147e96000826147bd565b6001810190506147d6565b5050565b601f8211156148395761480a816146d9565b614813846146ee565b81016020851015614822578190505b61483661482e856146ee565b8301826147d5565b50505b505050565b600082821c905092915050565b600061485c6000198460080261483e565b1980831691505092915050565b6000614875838361484b565b9150826002028217905092915050565b61488f83836146ce565b67ffffffffffffffff8111156148a8576148a76139ce565b5b6148b28254613d5b565b6148bd8282856147f8565b6000601f8311600181146148ec57600084156148da578287013590505b6148e48582614869565b86555061494c565b601f1984166148fa866146d9565b60005b82811015614922578489013582556001820191506020850194506020810190506148fd565b8683101561493f578489013561493b601f89168261484b565b8355505b6001600288020188555050505b50505050505050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061498b6011836135e9565b915061499682614955565b602082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b600081905092915050565b600081546149d981613d5b565b6149e381866149c1565b945060018216600081146149fe5760018114614a1357614a46565b60ff1983168652811515820286019350614a46565b614a1c856146d9565b60005b83811015614a3e57815481890152600182019150602081019050614a1f565b838801955050505b50505092915050565b6000614a5a826135de565b614a6481856149c1565b9350614a748185602086016135fa565b80840191505092915050565b6000614a8c82866149cc565b9150614a988285614a4f565b9150614aa482846149cc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b0d6026836135e9565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f45524337323141493a207472616e736665722063616c6c6572206973206e6f7460008201527f206f776e6572206e6f7220617070726f76656400000000000000000000000000602082015250565b6000614b9f6033836135e9565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f45524337323141493a207472616e736665722066726f6d20696e636f7272656360008201527f74206f776e657200000000000000000000000000000000000000000000000000602082015250565b6000614c316027836135e9565b9150614c3c82614bd5565b604082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f45524337323141493a207472616e7366657220746f20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cc36026836135e9565b9150614cce82614c67565b604082019050919050565b60006020820190508181036000830152614cf281614cb6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614d2082614cf9565b9150614d2b83614cf9565b925082821015614d3e57614d3d613fd4565b5b828203905092915050565b6000614d5482614cf9565b9150614d5f83614cf9565b9250826fffffffffffffffffffffffffffffffff03821115614d8457614d83613fd4565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614dd9614dd4826137de565b614dbe565b82525050565b6000614deb8285614dc8565b602082019150614dfb8284614dc8565b6020820191508190509392505050565b7f6d6178206261746368206c696d69740000000000000000000000000000000000600082015250565b6000614e41600f836135e9565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f72656163686564206d6178207075626c69630000000000000000000000000000600082015250565b6000614ead6012836135e9565b9150614eb882614e77565b602082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b6000614f196013836135e9565b9150614f2482614ee3565b602082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f45524337323141493a206f776e657220717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000614fab602b836135e9565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b6000614fec826134c0565b915060008203614fff57614ffe613fd4565b5b600182039050919050565b7f45524337323141493a20756e61626c6520746f2064657465726d696e6520746860008201527f65206f776e6572206f6620746f6b656e00000000000000000000000000000000602082015250565b60006150666030836135e9565b91506150718261500a565b604082019050919050565b6000602082019050818103600083015261509581615059565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150c38261509c565b6150cd81856150a7565b93506150dd8185602086016135fa565b6150e68161362d565b840191505092915050565b600060808201905061510660008301876136cb565b61511360208301866136cb565b6151206040830185613761565b818103606083015261513281846150b8565b905095945050505050565b60008151905061514c8161354f565b92915050565b600060208284031215615168576151676134b6565b5b60006151768482850161513d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151b9826134c0565b91506151c4836134c0565b9250826151d4576151d361517f565b5b828204905092915050565b60006151ea826134c0565b91506151f5836134c0565b9250826152055761520461517f565b5b828206905092915050565b7f45524337323141493a206d696e7420746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061526c6022836135e9565b915061527782615210565b604082019050919050565b6000602082019050818103600083015261529b8161525f565b9050919050565b7f45524337323141493a20746f6b656e20616c7265616479206d696e7465640000600082015250565b60006152d8601e836135e9565b91506152e3826152a2565b602082019050919050565b60006020820190508181036000830152615307816152cb565b9050919050565b7f45524337323141493a207175616e7469747920746f206d696e7420746f6f206860008201527f6967680000000000000000000000000000000000000000000000000000000000602082015250565b600061536a6023836135e9565b91506153758261530e565b604082019050919050565b600060208201905081810360008301526153998161535d565b905091905056fea2646970667358221220ea1ea73f0ccab6a2f1211e3906c3c871910fa018293d4ad9678a2a89a6c7998864736f6c634300080f0033

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.