ERC-721
Overview
Max Total Supply
555 CNA
Holders
110
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
8 CNALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ControlNetApes
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* . ..--.-.. .. .-.- . .. ..-..--.-..-..-..-.. .. ..-. |\/||- |-.| ||\/| | | ||\|| :|- |-'|-.|-'| || ||\|| : ' ''--'-'`-'' '-'- `-'' ''-''--'`-'-''`-`-'`-'' ''-' */ pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: OperatorFilterer.sol pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { 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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/erc721a.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.4; contract ControlNetApes is Ownable, ERC721A, DefaultOperatorFilterer { using Strings for uint256; string private baseTokenURI; uint64 public maxSupply = 555; uint64 public publicLimit = 5; bool public publicSaleActive = false; mapping(address => uint256) public claimed; constructor() ERC721A("ControlNet Apes", "CNA"){} modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 , "Invalid mint amount!"); require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function publicMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicSaleActive, "Public is not Active"); require(numberMinted(msg.sender) + _mintAmount <= publicLimit, "Mint limit exceeded." ); _safeMint(msg.sender, _mintAmount); } function ownerMint(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { if(exists(currentTokenId) == true) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } } currentTokenId++; } return ownedTokenIds; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString())) : ""; } function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function totalMinted() public view returns (uint256) { return _totalMinted(); } function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata _URI) external onlyOwner { baseTokenURI = _URI; } function setPublicActive(bool _state) public onlyOwner { publicSaleActive = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } /// Fallbacks receive() external payable { } fallback() external payable { } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLimit","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261022b600a60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506005600a60086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600a60106101000a81548160ff0219169083151502179055503480156200008157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f436f6e74726f6c4e6574204170657300000000000000000000000000000000008152506040518060400160405280600381526020017f434e41000000000000000000000000000000000000000000000000000000000081525062000125620001196200035e60201b60201c565b6200036660201b60201c565b8160039081620001369190620006ad565b508060049081620001489190620006ad565b50620001596200042a60201b60201c565b600181905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003565780156200021c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001e2929190620007d9565b600060405180830381600087803b158015620001fd57600080fd5b505af115801562000212573d6000803e3d6000fd5b5050505062000355565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029c929190620007d9565b600060405180830381600087803b158015620002b757600080fd5b505af1158015620002cc573d6000803e3d6000fd5b5050505062000354565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031f919062000806565b600060405180830381600087803b1580156200033a57600080fd5b505af11580156200034f573d6000803e3d6000fd5b505050505b5b5b505062000823565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b557607f821691505b602082108103620004cb57620004ca6200046d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f6565b620005418683620004f6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058e62000588620005828462000559565b62000563565b62000559565b9050919050565b6000819050919050565b620005aa836200056d565b620005c2620005b98262000595565b84845462000503565b825550505050565b600090565b620005d9620005ca565b620005e68184846200059f565b505050565b5b818110156200060e5762000602600082620005cf565b600181019050620005ec565b5050565b601f8211156200065d576200062781620004d1565b6200063284620004e6565b8101602085101562000642578190505b6200065a6200065185620004e6565b830182620005eb565b50505b505050565b600082821c905092915050565b6000620006826000198460080262000662565b1980831691505092915050565b60006200069d83836200066f565b9150826002028217905092915050565b620006b88262000433565b67ffffffffffffffff811115620006d457620006d36200043e565b5b620006e082546200049c565b620006ed82828562000612565b600060209050601f83116001811462000725576000841562000710578287015190505b6200071c85826200068f565b8655506200078c565b601f1984166200073586620004d1565b60005b828110156200075f5784890151825560018201915060208501945060208101905062000738565b868310156200077f57848901516200077b601f8916826200066f565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007c18262000794565b9050919050565b620007d381620007b4565b82525050565b6000604082019050620007f06000830185620007c8565b620007ff6020830184620007c8565b9392505050565b60006020820190506200081d6000830184620007c8565b92915050565b6140a980620008336000396000f3fe6080604052600436106101c65760003560e01c80638aca408c116100f7578063bc8893b411610095578063d5abeb0111610064578063d5abeb011461065f578063dc33e6811461068a578063e985e9c5146106c7578063f2fde38b14610704576101cd565b8063bc8893b414610591578063c87b56dd146105bc578063c884ef83146105f9578063d52c57e014610636576101cd565b8063a22cb465116100d1578063a22cb465146104e9578063a2309ff814610512578063a4331d2d1461053d578063b88d4fde14610568576101cd565b80638aca408c1461046a5780638da5cb5b1461049357806395d89b41146104be576101cd565b806342842e0e1161016457806355f804b31161013e57806355f804b3146103ab5780636352211e146103d45780636afcb7b01461041157806370a082311461042d576101cd565b806342842e0e14610308578063438b6300146103315780634f558e791461036e576101cd565b8063095ea7b3116101a0578063095ea7b31461027457806318160ddd1461029d57806323b872dd146102c85780633ccfd60b146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612eda565b61072d565b6040516102039190612f22565b60405180910390f35b34801561021857600080fd5b5061022161080f565b60405161022e9190612fcd565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190613025565b6108a1565b60405161026b9190613093565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906130da565b61091d565b005b3480156102a957600080fd5b506102b2610a27565b6040516102bf9190613129565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613144565b610a3e565b005b3480156102fd57600080fd5b50610306610c20565b005b34801561031457600080fd5b5061032f600480360381019061032a9190613144565b610d1c565b005b34801561033d57600080fd5b5061035860048036038101906103539190613197565b610efe565b6040516103659190613282565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613025565b61103b565b6040516103a29190612f22565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190613309565b61104d565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190613025565b6110df565b6040516104089190613093565b60405180910390f35b61042b60048036038101906104269190613396565b6110f5565b005b34801561043957600080fd5b50610454600480360381019061044f9190613197565b61129f565b6040516104619190613129565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906133ef565b61136e565b005b34801561049f57600080fd5b506104a8611407565b6040516104b59190613093565b60405180910390f35b3480156104ca57600080fd5b506104d3611430565b6040516104e09190612fcd565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061341c565b6114c2565b005b34801561051e57600080fd5b50610527611639565b6040516105349190613129565b60405180910390f35b34801561054957600080fd5b50610552611648565b60405161055f919061346b565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906135b6565b611662565b005b34801561059d57600080fd5b506105a6611847565b6040516105b39190612f22565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613025565b61185a565b6040516105f09190612fcd565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613197565b611901565b60405161062d9190613129565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613639565b611919565b005b34801561066b57600080fd5b50610674611a5d565b604051610681919061346b565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613197565b611a77565b6040516106be9190613129565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613679565b611a89565b6040516106fb9190612f22565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613197565b611b1d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610808575061080782611c14565b5b9050919050565b60606003805461081e906136e8565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906136e8565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ac82611c7e565b6108e2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610928826110df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae611ccc565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e057506109de816109d9611ccc565b611a89565b155b15610a17576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a22838383611cd4565b505050565b6000610a31611d86565b6002546001540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c0e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab057610aab848484611d8f565b610c1a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610af9929190613719565b602060405180830381865afa158015610b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3a9190613757565b8015610bcc57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b8a929190613719565b602060405180830381865afa158015610ba7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcb9190613757565b5b610c0d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c049190613093565b60405180910390fd5b5b610c19848484611d8f565b5b50505050565b610c28611ccc565b73ffffffffffffffffffffffffffffffffffffffff16610c46611407565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906137d0565b60405180910390fd5b6000610ca6611407565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc990613821565b60006040518083038185875af1925050503d8060008114610d06576040519150601f19603f3d011682016040523d82523d6000602084013e610d0b565b606091505b5050905080610d1957600080fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610eec573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8e57610d89848484611d9f565b610ef8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dd7929190613719565b602060405180830381865afa158015610df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e189190613757565b8015610eaa57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e68929190613719565b602060405180830381865afa158015610e85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea99190613757565b5b610eeb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ee29190613093565b60405180910390fd5b5b610ef7848484611d9f565b5b50505050565b60606000610f0b8361129f565b905060008167ffffffffffffffff811115610f2957610f2861348b565b5b604051908082528060200260200182016040528015610f575781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f925750600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168211155b1561102f5760011515610fa48361103b565b15150361101c576000610fb6836110df565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101a5782848381518110610fff57610ffe613836565b5b602002602001018181525050818061101690613894565b9250505b505b818061102790613894565b925050610f63565b82945050505050919050565b600061104682611c7e565b9050919050565b611055611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611073611407565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906137d0565b60405180910390fd5b8181600991826110da929190613a93565b505050565b60006110ea82611dbf565b600001519050919050565b8067ffffffffffffffff1660008111611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613baf565b60405180910390fd5b600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168161116d611639565b6111779190613bcf565b11156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613c4f565b60405180910390fd5b600a60109054906101000a900460ff16611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613cbb565b60405180910390fd5b600a60089054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661123c33611a77565b6112469190613bcf565b1115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613d27565b60405180910390fd5b61129b338367ffffffffffffffff1661204e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611306576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611376611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611394611407565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e1906137d0565b60405180910390fd5b80600a60106101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461143f906136e8565b80601f016020809104026020016040519081016040528092919081815260200182805461146b906136e8565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905090565b6114ca611ccc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061153b611ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e8611ccc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162d9190612f22565b60405180910390a35050565b600061164361206c565b905090565b600a60089054906101000a900467ffffffffffffffff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611833573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d5576116d08585858561207f565b611840565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161171e929190613719565b602060405180830381865afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190613757565b80156117f157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117af929190613719565b602060405180830381865afa1580156117cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f09190613757565b5b61183257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118299190613093565b60405180910390fd5b5b61183f8585858561207f565b5b5050505050565b600a60109054906101000a900460ff1681565b606061186582611c7e565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613db9565b60405180910390fd5b60006118ae6120fb565b905060008151116118ce57604051806020016040528060008152506118f9565b806118d88461218d565b6040516020016118e9929190613e15565b6040516020818303038152906040525b915050919050565b600b6020528060005260406000206000915090505481565b816000811161195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613baf565b60405180910390fd5b600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff1681611987611639565b6119919190613bcf565b11156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613c4f565b60405180910390fd5b6119da611ccc565b73ffffffffffffffffffffffffffffffffffffffff166119f8611407565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906137d0565b60405180910390fd5b611a58828461204e565b505050565b600a60009054906101000a900467ffffffffffffffff1681565b6000611a82826122ed565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b25611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611b43611407565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906137d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613eab565b60405180910390fd5b611c1181612357565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c89611d86565b11158015611c98575060015482105b8015611cc5575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611d9a83838361241b565b505050565b611dba83838360405180602001604052806000815250611662565b505050565b611dc7612e2b565b600082905080611dd5611d86565b11158015611de4575060015481105b15612017576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ef9578092505050612049565b5b60011561201457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461200f578092505050612049565b611efa565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6120688282604051806020016040528060008152506128cf565b5050565b6000612076611d86565b60015403905090565b61208a84848461241b565b6120a98373ffffffffffffffffffffffffffffffffffffffff166128e1565b80156120be57506120bc84848484612904565b155b156120f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461210a906136e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612136906136e8565b80156121835780601f1061215857610100808354040283529160200191612183565b820191906000526020600020905b81548152906001019060200180831161216657829003601f168201915b5050505050905090565b6060600082036121d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e8565b600082905060005b600082146122065780806121ef90613894565b915050600a826121ff9190613efa565b91506121dc565b60008167ffffffffffffffff8111156122225761222161348b565b5b6040519080825280601f01601f1916602001820160405280156122545781602001600182028036833780820191505090505b5090505b600085146122e15760018261226d9190613f2b565b9150600a8561227c9190613f5f565b60306122889190613bcf565b60f81b81838151811061229e5761229d613836565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122da9190613efa565b9450612258565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061242682611dbf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b2611ccc565b73ffffffffffffffffffffffffffffffffffffffff1614806124e157506124e0856124db611ccc565b611a89565b5b8061252657506124ef611ccc565b73ffffffffffffffffffffffffffffffffffffffff1661250e846108a1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d28585856001612a54565b6125de60008487611cd4565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361285d57600154821461285c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c88585856001612a5a565b5050505050565b6128dc8383836001612a60565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292a611ccc565b8786866040518563ffffffff1660e01b815260040161294c9493929190613fe5565b6020604051808303816000875af192505050801561298857506040513d601f19601f820116820180604052508101906129859190614046565b60015b612a01573d80600081146129b8576040519150601f19603f3d011682016040523d82523d6000602084013e6129bd565b606091505b5060008151036129f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612acd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612b07576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b146000868387612a54565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612cde5750612cdd8773ffffffffffffffffffffffffffffffffffffffff166128e1565b5b15612da3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d536000888480600101955088612904565b612d89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ce4578260015414612d9e57600080fd5b612e0e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612da4575b816001819055505050612e246000868387612a5a565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612eb781612e82565b8114612ec257600080fd5b50565b600081359050612ed481612eae565b92915050565b600060208284031215612ef057612eef612e78565b5b6000612efe84828501612ec5565b91505092915050565b60008115159050919050565b612f1c81612f07565b82525050565b6000602082019050612f376000830184612f13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f77578082015181840152602081019050612f5c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f9f82612f3d565b612fa98185612f48565b9350612fb9818560208601612f59565b612fc281612f83565b840191505092915050565b60006020820190508181036000830152612fe78184612f94565b905092915050565b6000819050919050565b61300281612fef565b811461300d57600080fd5b50565b60008135905061301f81612ff9565b92915050565b60006020828403121561303b5761303a612e78565b5b600061304984828501613010565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061307d82613052565b9050919050565b61308d81613072565b82525050565b60006020820190506130a86000830184613084565b92915050565b6130b781613072565b81146130c257600080fd5b50565b6000813590506130d4816130ae565b92915050565b600080604083850312156130f1576130f0612e78565b5b60006130ff858286016130c5565b925050602061311085828601613010565b9150509250929050565b61312381612fef565b82525050565b600060208201905061313e600083018461311a565b92915050565b60008060006060848603121561315d5761315c612e78565b5b600061316b868287016130c5565b935050602061317c868287016130c5565b925050604061318d86828701613010565b9150509250925092565b6000602082840312156131ad576131ac612e78565b5b60006131bb848285016130c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131f981612fef565b82525050565b600061320b83836131f0565b60208301905092915050565b6000602082019050919050565b600061322f826131c4565b61323981856131cf565b9350613244836131e0565b8060005b8381101561327557815161325c88826131ff565b975061326783613217565b925050600181019050613248565b5085935050505092915050565b6000602082019050818103600083015261329c8184613224565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132c9576132c86132a4565b5b8235905067ffffffffffffffff8111156132e6576132e56132a9565b5b602083019150836001820283011115613302576133016132ae565b5b9250929050565b600080602083850312156133205761331f612e78565b5b600083013567ffffffffffffffff81111561333e5761333d612e7d565b5b61334a858286016132b3565b92509250509250929050565b600067ffffffffffffffff82169050919050565b61337381613356565b811461337e57600080fd5b50565b6000813590506133908161336a565b92915050565b6000602082840312156133ac576133ab612e78565b5b60006133ba84828501613381565b91505092915050565b6133cc81612f07565b81146133d757600080fd5b50565b6000813590506133e9816133c3565b92915050565b60006020828403121561340557613404612e78565b5b6000613413848285016133da565b91505092915050565b6000806040838503121561343357613432612e78565b5b6000613441858286016130c5565b9250506020613452858286016133da565b9150509250929050565b61346581613356565b82525050565b6000602082019050613480600083018461345c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134c382612f83565b810181811067ffffffffffffffff821117156134e2576134e161348b565b5b80604052505050565b60006134f5612e6e565b905061350182826134ba565b919050565b600067ffffffffffffffff8211156135215761352061348b565b5b61352a82612f83565b9050602081019050919050565b82818337600083830152505050565b600061355961355484613506565b6134eb565b90508281526020810184848401111561357557613574613486565b5b613580848285613537565b509392505050565b600082601f83011261359d5761359c6132a4565b5b81356135ad848260208601613546565b91505092915050565b600080600080608085870312156135d0576135cf612e78565b5b60006135de878288016130c5565b94505060206135ef878288016130c5565b935050604061360087828801613010565b925050606085013567ffffffffffffffff81111561362157613620612e7d565b5b61362d87828801613588565b91505092959194509250565b600080604083850312156136505761364f612e78565b5b600061365e85828601613010565b925050602061366f858286016130c5565b9150509250929050565b600080604083850312156136905761368f612e78565b5b600061369e858286016130c5565b92505060206136af858286016130c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061370057607f821691505b602082108103613713576137126136b9565b5b50919050565b600060408201905061372e6000830185613084565b61373b6020830184613084565b9392505050565b600081519050613751816133c3565b92915050565b60006020828403121561376d5761376c612e78565b5b600061377b84828501613742565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ba602083612f48565b91506137c582613784565b602082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b600081905092915050565b50565b600061380b6000836137f0565b9150613816826137fb565b600082019050919050565b600061382c826137fe565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389f82612fef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d1576138d0613865565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261390c565b613953868361390c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061399061398b61398684612fef565b61396b565b612fef565b9050919050565b6000819050919050565b6139aa83613975565b6139be6139b682613997565b848454613919565b825550505050565b600090565b6139d36139c6565b6139de8184846139a1565b505050565b5b81811015613a02576139f76000826139cb565b6001810190506139e4565b5050565b601f821115613a4757613a18816138e7565b613a21846138fc565b81016020851015613a30578190505b613a44613a3c856138fc565b8301826139e3565b50505b505050565b600082821c905092915050565b6000613a6a60001984600802613a4c565b1980831691505092915050565b6000613a838383613a59565b9150826002028217905092915050565b613a9d83836138dc565b67ffffffffffffffff811115613ab657613ab561348b565b5b613ac082546136e8565b613acb828285613a06565b6000601f831160018114613afa5760008415613ae8578287013590505b613af28582613a77565b865550613b5a565b601f198416613b08866138e7565b60005b82811015613b3057848901358255600182019150602085019450602081019050613b0b565b86831015613b4d5784890135613b49601f891682613a59565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b99601483612f48565b9150613ba482613b63565b602082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b6000613bda82612fef565b9150613be583612fef565b9250828201905080821115613bfd57613bfc613865565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c39601483612f48565b9150613c4482613c03565b602082019050919050565b60006020820190508181036000830152613c6881613c2c565b9050919050565b7f5075626c6963206973206e6f7420416374697665000000000000000000000000600082015250565b6000613ca5601483612f48565b9150613cb082613c6f565b602082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f4d696e74206c696d69742065786365656465642e000000000000000000000000600082015250565b6000613d11601483612f48565b9150613d1c82613cdb565b602082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613da3602f83612f48565b9150613dae82613d47565b604082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b600081905092915050565b6000613def82612f3d565b613df98185613dd9565b9350613e09818560208601612f59565b80840191505092915050565b6000613e218285613de4565b9150613e2d8284613de4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e95602683612f48565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f0582612fef565b9150613f1083612fef565b925082613f2057613f1f613ecb565b5b828204905092915050565b6000613f3682612fef565b9150613f4183612fef565b9250828203905081811115613f5957613f58613865565b5b92915050565b6000613f6a82612fef565b9150613f7583612fef565b925082613f8557613f84613ecb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613fb782613f90565b613fc18185613f9b565b9350613fd1818560208601612f59565b613fda81612f83565b840191505092915050565b6000608082019050613ffa6000830187613084565b6140076020830186613084565b614014604083018561311a565b81810360608301526140268184613fac565b905095945050505050565b60008151905061404081612eae565b92915050565b60006020828403121561405c5761405b612e78565b5b600061406a84828501614031565b9150509291505056fea2646970667358221220f664b1efe80b595704674827b5b13e3e9ca437a701a2918bbff968804bb50d1664736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101c65760003560e01c80638aca408c116100f7578063bc8893b411610095578063d5abeb0111610064578063d5abeb011461065f578063dc33e6811461068a578063e985e9c5146106c7578063f2fde38b14610704576101cd565b8063bc8893b414610591578063c87b56dd146105bc578063c884ef83146105f9578063d52c57e014610636576101cd565b8063a22cb465116100d1578063a22cb465146104e9578063a2309ff814610512578063a4331d2d1461053d578063b88d4fde14610568576101cd565b80638aca408c1461046a5780638da5cb5b1461049357806395d89b41146104be576101cd565b806342842e0e1161016457806355f804b31161013e57806355f804b3146103ab5780636352211e146103d45780636afcb7b01461041157806370a082311461042d576101cd565b806342842e0e14610308578063438b6300146103315780634f558e791461036e576101cd565b8063095ea7b3116101a0578063095ea7b31461027457806318160ddd1461029d57806323b872dd146102c85780633ccfd60b146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612eda565b61072d565b6040516102039190612f22565b60405180910390f35b34801561021857600080fd5b5061022161080f565b60405161022e9190612fcd565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190613025565b6108a1565b60405161026b9190613093565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906130da565b61091d565b005b3480156102a957600080fd5b506102b2610a27565b6040516102bf9190613129565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613144565b610a3e565b005b3480156102fd57600080fd5b50610306610c20565b005b34801561031457600080fd5b5061032f600480360381019061032a9190613144565b610d1c565b005b34801561033d57600080fd5b5061035860048036038101906103539190613197565b610efe565b6040516103659190613282565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613025565b61103b565b6040516103a29190612f22565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190613309565b61104d565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190613025565b6110df565b6040516104089190613093565b60405180910390f35b61042b60048036038101906104269190613396565b6110f5565b005b34801561043957600080fd5b50610454600480360381019061044f9190613197565b61129f565b6040516104619190613129565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906133ef565b61136e565b005b34801561049f57600080fd5b506104a8611407565b6040516104b59190613093565b60405180910390f35b3480156104ca57600080fd5b506104d3611430565b6040516104e09190612fcd565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061341c565b6114c2565b005b34801561051e57600080fd5b50610527611639565b6040516105349190613129565b60405180910390f35b34801561054957600080fd5b50610552611648565b60405161055f919061346b565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906135b6565b611662565b005b34801561059d57600080fd5b506105a6611847565b6040516105b39190612f22565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613025565b61185a565b6040516105f09190612fcd565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613197565b611901565b60405161062d9190613129565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613639565b611919565b005b34801561066b57600080fd5b50610674611a5d565b604051610681919061346b565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613197565b611a77565b6040516106be9190613129565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613679565b611a89565b6040516106fb9190612f22565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613197565b611b1d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610808575061080782611c14565b5b9050919050565b60606003805461081e906136e8565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906136e8565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ac82611c7e565b6108e2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610928826110df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae611ccc565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e057506109de816109d9611ccc565b611a89565b155b15610a17576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a22838383611cd4565b505050565b6000610a31611d86565b6002546001540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c0e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab057610aab848484611d8f565b610c1a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610af9929190613719565b602060405180830381865afa158015610b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3a9190613757565b8015610bcc57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610b8a929190613719565b602060405180830381865afa158015610ba7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcb9190613757565b5b610c0d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c049190613093565b60405180910390fd5b5b610c19848484611d8f565b5b50505050565b610c28611ccc565b73ffffffffffffffffffffffffffffffffffffffff16610c46611407565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906137d0565b60405180910390fd5b6000610ca6611407565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc990613821565b60006040518083038185875af1925050503d8060008114610d06576040519150601f19603f3d011682016040523d82523d6000602084013e610d0b565b606091505b5050905080610d1957600080fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610eec573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8e57610d89848484611d9f565b610ef8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dd7929190613719565b602060405180830381865afa158015610df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e189190613757565b8015610eaa57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e68929190613719565b602060405180830381865afa158015610e85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea99190613757565b5b610eeb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ee29190613093565b60405180910390fd5b5b610ef7848484611d9f565b5b50505050565b60606000610f0b8361129f565b905060008167ffffffffffffffff811115610f2957610f2861348b565b5b604051908082528060200260200182016040528015610f575781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f925750600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168211155b1561102f5760011515610fa48361103b565b15150361101c576000610fb6836110df565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101a5782848381518110610fff57610ffe613836565b5b602002602001018181525050818061101690613894565b9250505b505b818061102790613894565b925050610f63565b82945050505050919050565b600061104682611c7e565b9050919050565b611055611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611073611407565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906137d0565b60405180910390fd5b8181600991826110da929190613a93565b505050565b60006110ea82611dbf565b600001519050919050565b8067ffffffffffffffff1660008111611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613baf565b60405180910390fd5b600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168161116d611639565b6111779190613bcf565b11156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613c4f565b60405180910390fd5b600a60109054906101000a900460ff16611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613cbb565b60405180910390fd5b600a60089054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661123c33611a77565b6112469190613bcf565b1115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613d27565b60405180910390fd5b61129b338367ffffffffffffffff1661204e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611306576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611376611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611394611407565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e1906137d0565b60405180910390fd5b80600a60106101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461143f906136e8565b80601f016020809104026020016040519081016040528092919081815260200182805461146b906136e8565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905090565b6114ca611ccc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061153b611ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e8611ccc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162d9190612f22565b60405180910390a35050565b600061164361206c565b905090565b600a60089054906101000a900467ffffffffffffffff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611833573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d5576116d08585858561207f565b611840565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161171e929190613719565b602060405180830381865afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190613757565b80156117f157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117af929190613719565b602060405180830381865afa1580156117cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f09190613757565b5b61183257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118299190613093565b60405180910390fd5b5b61183f8585858561207f565b5b5050505050565b600a60109054906101000a900460ff1681565b606061186582611c7e565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613db9565b60405180910390fd5b60006118ae6120fb565b905060008151116118ce57604051806020016040528060008152506118f9565b806118d88461218d565b6040516020016118e9929190613e15565b6040516020818303038152906040525b915050919050565b600b6020528060005260406000206000915090505481565b816000811161195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613baf565b60405180910390fd5b600a60009054906101000a900467ffffffffffffffff1667ffffffffffffffff1681611987611639565b6119919190613bcf565b11156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613c4f565b60405180910390fd5b6119da611ccc565b73ffffffffffffffffffffffffffffffffffffffff166119f8611407565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906137d0565b60405180910390fd5b611a58828461204e565b505050565b600a60009054906101000a900467ffffffffffffffff1681565b6000611a82826122ed565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b25611ccc565b73ffffffffffffffffffffffffffffffffffffffff16611b43611407565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906137d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613eab565b60405180910390fd5b611c1181612357565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c89611d86565b11158015611c98575060015482105b8015611cc5575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611d9a83838361241b565b505050565b611dba83838360405180602001604052806000815250611662565b505050565b611dc7612e2b565b600082905080611dd5611d86565b11158015611de4575060015481105b15612017576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ef9578092505050612049565b5b60011561201457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461200f578092505050612049565b611efa565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6120688282604051806020016040528060008152506128cf565b5050565b6000612076611d86565b60015403905090565b61208a84848461241b565b6120a98373ffffffffffffffffffffffffffffffffffffffff166128e1565b80156120be57506120bc84848484612904565b155b156120f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461210a906136e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612136906136e8565b80156121835780601f1061215857610100808354040283529160200191612183565b820191906000526020600020905b81548152906001019060200180831161216657829003601f168201915b5050505050905090565b6060600082036121d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e8565b600082905060005b600082146122065780806121ef90613894565b915050600a826121ff9190613efa565b91506121dc565b60008167ffffffffffffffff8111156122225761222161348b565b5b6040519080825280601f01601f1916602001820160405280156122545781602001600182028036833780820191505090505b5090505b600085146122e15760018261226d9190613f2b565b9150600a8561227c9190613f5f565b60306122889190613bcf565b60f81b81838151811061229e5761229d613836565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122da9190613efa565b9450612258565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061242682611dbf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b2611ccc565b73ffffffffffffffffffffffffffffffffffffffff1614806124e157506124e0856124db611ccc565b611a89565b5b8061252657506124ef611ccc565b73ffffffffffffffffffffffffffffffffffffffff1661250e846108a1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d28585856001612a54565b6125de60008487611cd4565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361285d57600154821461285c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c88585856001612a5a565b5050505050565b6128dc8383836001612a60565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292a611ccc565b8786866040518563ffffffff1660e01b815260040161294c9493929190613fe5565b6020604051808303816000875af192505050801561298857506040513d601f19601f820116820180604052508101906129859190614046565b60015b612a01573d80600081146129b8576040519150601f19603f3d011682016040523d82523d6000602084013e6129bd565b606091505b5060008151036129f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612acd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612b07576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b146000868387612a54565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612cde5750612cdd8773ffffffffffffffffffffffffffffffffffffffff166128e1565b5b15612da3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d536000888480600101955088612904565b612d89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ce4578260015414612d9e57600080fd5b612e0e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612da4575b816001819055505050612e246000868387612a5a565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612eb781612e82565b8114612ec257600080fd5b50565b600081359050612ed481612eae565b92915050565b600060208284031215612ef057612eef612e78565b5b6000612efe84828501612ec5565b91505092915050565b60008115159050919050565b612f1c81612f07565b82525050565b6000602082019050612f376000830184612f13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f77578082015181840152602081019050612f5c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f9f82612f3d565b612fa98185612f48565b9350612fb9818560208601612f59565b612fc281612f83565b840191505092915050565b60006020820190508181036000830152612fe78184612f94565b905092915050565b6000819050919050565b61300281612fef565b811461300d57600080fd5b50565b60008135905061301f81612ff9565b92915050565b60006020828403121561303b5761303a612e78565b5b600061304984828501613010565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061307d82613052565b9050919050565b61308d81613072565b82525050565b60006020820190506130a86000830184613084565b92915050565b6130b781613072565b81146130c257600080fd5b50565b6000813590506130d4816130ae565b92915050565b600080604083850312156130f1576130f0612e78565b5b60006130ff858286016130c5565b925050602061311085828601613010565b9150509250929050565b61312381612fef565b82525050565b600060208201905061313e600083018461311a565b92915050565b60008060006060848603121561315d5761315c612e78565b5b600061316b868287016130c5565b935050602061317c868287016130c5565b925050604061318d86828701613010565b9150509250925092565b6000602082840312156131ad576131ac612e78565b5b60006131bb848285016130c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131f981612fef565b82525050565b600061320b83836131f0565b60208301905092915050565b6000602082019050919050565b600061322f826131c4565b61323981856131cf565b9350613244836131e0565b8060005b8381101561327557815161325c88826131ff565b975061326783613217565b925050600181019050613248565b5085935050505092915050565b6000602082019050818103600083015261329c8184613224565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132c9576132c86132a4565b5b8235905067ffffffffffffffff8111156132e6576132e56132a9565b5b602083019150836001820283011115613302576133016132ae565b5b9250929050565b600080602083850312156133205761331f612e78565b5b600083013567ffffffffffffffff81111561333e5761333d612e7d565b5b61334a858286016132b3565b92509250509250929050565b600067ffffffffffffffff82169050919050565b61337381613356565b811461337e57600080fd5b50565b6000813590506133908161336a565b92915050565b6000602082840312156133ac576133ab612e78565b5b60006133ba84828501613381565b91505092915050565b6133cc81612f07565b81146133d757600080fd5b50565b6000813590506133e9816133c3565b92915050565b60006020828403121561340557613404612e78565b5b6000613413848285016133da565b91505092915050565b6000806040838503121561343357613432612e78565b5b6000613441858286016130c5565b9250506020613452858286016133da565b9150509250929050565b61346581613356565b82525050565b6000602082019050613480600083018461345c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134c382612f83565b810181811067ffffffffffffffff821117156134e2576134e161348b565b5b80604052505050565b60006134f5612e6e565b905061350182826134ba565b919050565b600067ffffffffffffffff8211156135215761352061348b565b5b61352a82612f83565b9050602081019050919050565b82818337600083830152505050565b600061355961355484613506565b6134eb565b90508281526020810184848401111561357557613574613486565b5b613580848285613537565b509392505050565b600082601f83011261359d5761359c6132a4565b5b81356135ad848260208601613546565b91505092915050565b600080600080608085870312156135d0576135cf612e78565b5b60006135de878288016130c5565b94505060206135ef878288016130c5565b935050604061360087828801613010565b925050606085013567ffffffffffffffff81111561362157613620612e7d565b5b61362d87828801613588565b91505092959194509250565b600080604083850312156136505761364f612e78565b5b600061365e85828601613010565b925050602061366f858286016130c5565b9150509250929050565b600080604083850312156136905761368f612e78565b5b600061369e858286016130c5565b92505060206136af858286016130c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061370057607f821691505b602082108103613713576137126136b9565b5b50919050565b600060408201905061372e6000830185613084565b61373b6020830184613084565b9392505050565b600081519050613751816133c3565b92915050565b60006020828403121561376d5761376c612e78565b5b600061377b84828501613742565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ba602083612f48565b91506137c582613784565b602082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b600081905092915050565b50565b600061380b6000836137f0565b9150613816826137fb565b600082019050919050565b600061382c826137fe565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389f82612fef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d1576138d0613865565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261390c565b613953868361390c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061399061398b61398684612fef565b61396b565b612fef565b9050919050565b6000819050919050565b6139aa83613975565b6139be6139b682613997565b848454613919565b825550505050565b600090565b6139d36139c6565b6139de8184846139a1565b505050565b5b81811015613a02576139f76000826139cb565b6001810190506139e4565b5050565b601f821115613a4757613a18816138e7565b613a21846138fc565b81016020851015613a30578190505b613a44613a3c856138fc565b8301826139e3565b50505b505050565b600082821c905092915050565b6000613a6a60001984600802613a4c565b1980831691505092915050565b6000613a838383613a59565b9150826002028217905092915050565b613a9d83836138dc565b67ffffffffffffffff811115613ab657613ab561348b565b5b613ac082546136e8565b613acb828285613a06565b6000601f831160018114613afa5760008415613ae8578287013590505b613af28582613a77565b865550613b5a565b601f198416613b08866138e7565b60005b82811015613b3057848901358255600182019150602085019450602081019050613b0b565b86831015613b4d5784890135613b49601f891682613a59565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b99601483612f48565b9150613ba482613b63565b602082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b6000613bda82612fef565b9150613be583612fef565b9250828201905080821115613bfd57613bfc613865565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c39601483612f48565b9150613c4482613c03565b602082019050919050565b60006020820190508181036000830152613c6881613c2c565b9050919050565b7f5075626c6963206973206e6f7420416374697665000000000000000000000000600082015250565b6000613ca5601483612f48565b9150613cb082613c6f565b602082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f4d696e74206c696d69742065786365656465642e000000000000000000000000600082015250565b6000613d11601483612f48565b9150613d1c82613cdb565b602082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613da3602f83612f48565b9150613dae82613d47565b604082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b600081905092915050565b6000613def82612f3d565b613df98185613dd9565b9350613e09818560208601612f59565b80840191505092915050565b6000613e218285613de4565b9150613e2d8284613de4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e95602683612f48565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f0582612fef565b9150613f1083612fef565b925082613f2057613f1f613ecb565b5b828204905092915050565b6000613f3682612fef565b9150613f4183612fef565b9250828203905081811115613f5957613f58613865565b5b92915050565b6000613f6a82612fef565b9150613f7583612fef565b925082613f8557613f84613ecb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613fb782613f90565b613fc18185613f9b565b9350613fd1818560208601612f59565b613fda81612f83565b840191505092915050565b6000608082019050613ffa6000830187613084565b6140076020830186613084565b614014604083018561311a565b81810360608301526140268184613fac565b905095945050505050565b60008151905061404081612eae565b92915050565b60006020828403121561405c5761405b612e78565b5b600061406a84828501614031565b9150509291505056fea2646970667358221220f664b1efe80b595704674827b5b13e3e9ca437a701a2918bbff968804bb50d1664736f6c63430008110033
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.