Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
23
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NotaGoblinTownProject
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** _ _ ___ _____ ___ | \| | / _ \ |_ _| o O O / \ | .` | | (_) | | | o | - | |_|\_| \___/ _|_|_ TS__[O] |_|_| _|"""""|_|"""""|_|"""""| {======|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'./o--000'"`-0-0-' ___ ___ ___ _ ___ _ _ _____ ___ __ ___ _ / __| / _ \ | _ ) | | |_ _| | \| | |_ _| / _ \ \ \ / / \| | | (_ | | (_) | | _ \ | |__ | | | .` | | | | (_) | \ \/\/ /| .` | \___| \___/ |___/ |____| |___| |_|\_| _|_|_ \___/ \_/\_/ |_|\_| _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' ___ ___ ___ _ ___ ___ _____ | _ \ | _ \ / _ \ _ | | | __| / __| |_ _| | _/ | / | (_) | | || | | _| | (__ | | _|_|_ |_|_\ \___/ _\__/ |___| \___| _|_|_ _| """ |_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.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); } 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); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.7; contract NotaGoblinTownProject is ERC721A, DefaultOperatorFilterer , Ownable { using Strings for uint256; string private uriPrefix ; string public hiddenURL; uint256 public cost = 0.003 ether; uint16 public maxSupply = 777; uint8 public maxMintAmountPerTx = 4; uint8 public maxFreeMintAmountPerWallet = 1; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerPublicAddress; constructor() ERC721A("Not a Goblintown Project", "GOBLINTOWN") { } function publicMint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function ownerMint(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString())) : ""; } function setFreeMaxLimit(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function toggleMint() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } 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); } }
{ "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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660aa87bee538000600b55610309600c60006101000a81548161ffff021916908361ffff1602179055506004600c60026101000a81548160ff021916908360ff1602179055506001600c60036101000a81548160ff021916908360ff1602179055506001600c60046101000a81548160ff0219169083151502179055506000600c60056101000a81548160ff021916908315150217905550348015620000a957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601881526020017f4e6f74206120476f626c696e746f776e2050726f6a65637400000000000000008152506040518060400160405280600a81526020017f474f424c494e544f574e0000000000000000000000000000000000000000000081525081600290816200013e9190620006d3565b508060039081620001509190620006d3565b50620001616200038660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200035e57801562000224576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ea929190620007ff565b600060405180830381600087803b1580156200020557600080fd5b505af11580156200021a573d6000803e3d6000fd5b505050506200035d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002de576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002a4929190620007ff565b600060405180830381600087803b158015620002bf57600080fd5b505af1158015620002d4573d6000803e3d6000fd5b505050506200035c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200032791906200082c565b600060405180830381600087803b1580156200034257600080fd5b505af115801562000357573d6000803e3d6000fd5b505050505b5b5b505062000380620003746200038b60201b60201c565b6200039360201b60201c565b62000849565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004db57607f821691505b602082108103620004f157620004f062000493565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051c565b6200056786836200051c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005b4620005ae620005a8846200057f565b62000589565b6200057f565b9050919050565b6000819050919050565b620005d08362000593565b620005e8620005df82620005bb565b84845462000529565b825550505050565b600090565b620005ff620005f0565b6200060c818484620005c5565b505050565b5b81811015620006345762000628600082620005f5565b60018101905062000612565b5050565b601f82111562000683576200064d81620004f7565b62000658846200050c565b8101602085101562000668578190505b6200068062000677856200050c565b83018262000611565b50505b505050565b600082821c905092915050565b6000620006a86000198460080262000688565b1980831691505092915050565b6000620006c3838362000695565b9150826002028217905092915050565b620006de8262000459565b67ffffffffffffffff811115620006fa57620006f962000464565b5b620007068254620004c2565b6200071382828562000638565b600060209050601f8311600181146200074b576000841562000736578287015190505b620007428582620006b5565b865550620007b2565b601f1984166200075b86620004f7565b60005b8281101562000785578489015182556001820191506020850194506020810190506200075e565b86831015620007a55784890151620007a1601f89168262000695565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e782620007ba565b9050919050565b620007f981620007da565b82525050565b6000604082019050620008166000830185620007ee565b620008256020830184620007ee565b9392505050565b6000602082019050620008436000830184620007ee565b92915050565b6148db80620008596000396000f3fe6080604052600436106102195760003560e01c8063715018a611610123578063c87b56dd116100ab578063e94053c71161006f578063e94053c71461075f578063e985e9c51461079c578063eef440af146107d9578063f2fde38b14610804578063f8bf51721461082d57610219565b8063c87b56dd1461068e578063d2444d67146106cb578063d3dd5fe0146106f4578063d5abeb011461070b578063d5f7ec8d1461073657610219565b806394354fd0116100f257806394354fd0146105bb57806395d89b41146105e6578063a22cb46514610611578063a475b5dd1461063a578063b88d4fde1461066557610219565b8063715018a6146105345780637ec4a6591461054b578063858e83b5146105745780638da5cb5b1461059057610219565b806323b872dd116101a657806344a0d68a1161017557806344a0d68a1461043d5780635c975abb14610466578063622e4e78146104915780636352211e146104ba57806370a08231146104f757610219565b806323b872dd146103bd5780633bd64968146103e65780633ccfd60b146103fd57806342842e0e1461041457610219565b8063081812fc116101ed578063081812fc146102d8578063095ea7b3146103155780631067fcc71461033e57806313faede61461036757806318160ddd1461039257610219565b8062a4f1f21461021e57806301ffc9a71461024757806306421c2f1461028457806306fdde03146102ad575b600080fd5b34801561022a57600080fd5b50610245600480360381019061024091906135e0565b610858565b005b34801561025357600080fd5b5061026e60048036038101906102699190613665565b6108f6565b60405161027b91906136ad565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613702565b6109d8565b005b3480156102b957600080fd5b506102c2610a74565b6040516102cf91906137bf565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190613817565b610b06565b60405161030c9190613885565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906138cc565b610b82565b005b34801561034a57600080fd5b5061036560048036038101906103609190613a41565b610c8c565b005b34801561037357600080fd5b5061037c610d1b565b6040516103899190613a99565b60405180910390f35b34801561039e57600080fd5b506103a7610d21565b6040516103b49190613a99565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613ab4565b610d38565b005b3480156103f257600080fd5b506103fb610f1a565b005b34801561040957600080fd5b50610412610fc2565b005b34801561042057600080fd5b5061043b60048036038101906104369190613ab4565b61108d565b005b34801561044957600080fd5b50610464600480360381019061045f9190613817565b61126f565b005b34801561047257600080fd5b5061047b6112f5565b60405161048891906136ad565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906135e0565b611308565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613817565b6113a2565b6040516104ee9190613885565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613b07565b6113b8565b60405161052b9190613a99565b60405180910390f35b34801561054057600080fd5b50610549611487565b005b34801561055757600080fd5b50610572600480360381019061056d9190613a41565b61150f565b005b61058e600480360381019061058991906135e0565b61159e565b005b34801561059c57600080fd5b506105a56118a8565b6040516105b29190613885565b60405180910390f35b3480156105c757600080fd5b506105d06118d2565b6040516105dd9190613b43565b60405180910390f35b3480156105f257600080fd5b506105fb6118e5565b60405161060891906137bf565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613b8a565b611977565b005b34801561064657600080fd5b5061064f611aee565b60405161065c91906136ad565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613c6b565b611b01565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613817565b611ce6565b6040516106c291906137bf565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613d4e565b611e3b565b005b34801561070057600080fd5b50610709611fa4565b005b34801561071757600080fd5b5061072061204c565b60405161072d9190613dbd565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613dd8565b612060565b005b34801561076b57600080fd5b5061078660048036038101906107819190613b07565b61216d565b6040516107939190613b43565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613e18565b61218d565b6040516107d091906136ad565b60405180910390f35b3480156107e557600080fd5b506107ee612221565b6040516107fb91906137bf565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613b07565b6122af565b005b34801561083957600080fd5b506108426123a6565b60405161084f9190613b43565b60405180910390f35b6108606123b9565b73ffffffffffffffffffffffffffffffffffffffff1661087e6118a8565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613ea4565b60405180910390fd5b80600c60036101000a81548160ff021916908360ff1602179055506000905050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d157506109d0826123c1565b5b9050919050565b6109e06123b9565b73ffffffffffffffffffffffffffffffffffffffff166109fe6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613ea4565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a8390613ef3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613ef3565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b118261242b565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d826113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c136123b9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c455750610c4381610c3e6123b9565b61218d565b155b15610c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c87838383612479565b505050565b610c946123b9565b73ffffffffffffffffffffffffffffffffffffffff16610cb26118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613ea4565b60405180910390fd5b80600a9081610d1791906140d0565b5050565b600b5481565b6000610d2b61252b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f08573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610daa57610da5848484612530565b610f14565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610df39291906141a2565b602060405180830381865afa158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3491906141e0565b8015610ec657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e849291906141a2565b602060405180830381865afa158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec591906141e0565b5b610f0757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610efe9190613885565b60405180910390fd5b5b610f13848484612530565b5b50505050565b610f226123b9565b73ffffffffffffffffffffffffffffffffffffffff16610f406118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613ea4565b60405180910390fd5b600c60059054906101000a900460ff1615600c60056101000a81548160ff021916908315150217905550565b610fca6123b9565b73ffffffffffffffffffffffffffffffffffffffff16610fe86118a8565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613ea4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561125d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ff576110fa848484612540565b611269565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111489291906141a2565b602060405180830381865afa158015611165573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118991906141e0565b801561121b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111d99291906141a2565b602060405180830381865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a91906141e0565b5b61125c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112539190613885565b60405180910390fd5b5b611268848484612540565b5b50505050565b6112776123b9565b73ffffffffffffffffffffffffffffffffffffffff166112956118a8565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613ea4565b60405180910390fd5b80600b8190555050565b600c60049054906101000a900460ff1681565b6113106123b9565b73ffffffffffffffffffffffffffffffffffffffff1661132e6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613ea4565b60405180910390fd5b80600c60026101000a81548160ff021916908360ff16021790555050565b60006113ad82612560565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61148f6123b9565b73ffffffffffffffffffffffffffffffffffffffff166114ad6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613ea4565b60405180910390fd5b61150d60006127ef565b565b6115176123b9565b73ffffffffffffffffffffffffffffffffffffffff166115356118a8565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613ea4565b60405180910390fd5b806009908161159a91906140d0565b5050565b60006115a8610d21565b90506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600c60009054906101000a900461ffff1661ffff168360ff168361161f919061423c565b61ffff161115611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b906142be565b60405180910390fd5b600c60029054906101000a900460ff1660ff16818461168391906142de565b60ff1611156116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be9061435f565b60405180910390fd5b600c60049054906101000a900460ff1615611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e906143cb565b60405180910390fd5b600c60039054906101000a900460ff1660ff168160ff161061178b578260ff16600b5461174491906143eb565b341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614479565b60405180910390fd5b61182b565b6000818461179991906142de565b9050600c60039054906101000a900460ff1660ff168160ff16111561182957600c60039054906101000a900460ff16816117d39190614499565b90508060ff16600b546117e691906143eb565b341015611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614479565b60405180910390fd5b5b505b611838338460ff166128b5565b808361184491906142de565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60029054906101000a900460ff1681565b6060600380546118f490613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461192090613ef3565b801561196d5780601f106119425761010080835404028352916020019161196d565b820191906000526020600020905b81548152906001019060200180831161195057829003601f168201915b5050505050905090565b61197f6123b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119f06123b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9d6123b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae291906136ad565b60405180910390a35050565b600c60059054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611cd2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b7457611b6f858585856128d3565b611cdf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611bbd9291906141a2565b602060405180830381865afa158015611bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfe91906141e0565b8015611c9057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c4e9291906141a2565b602060405180830381865afa158015611c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8f91906141e0565b5b611cd157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cc89190613885565b60405180910390fd5b5b611cde858585856128d3565b5b5050505050565b6060611cf18261242b565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614540565b60405180910390fd5b60001515600c60059054906101000a900460ff16151503611ddd57600a8054611d5890613ef3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490613ef3565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050611e36565b6000611de761294f565b90506000815111611e075760405180602001604052806000815250611e32565b80611e11846129e1565b604051602001611e2292919061459c565b6040516020818303038152906040525b9150505b919050565b611e436123b9565b73ffffffffffffffffffffffffffffffffffffffff16611e616118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613ea4565b60405180910390fd5b6000611ec1610d21565b90506000838390508560ff16611ed791906143eb565b9050600c60009054906101000a900461ffff1661ffff16818361ffff16611efe91906145c0565b1115611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906142be565b60405180910390fd5b60005b84849050811015611f9457611f81858583818110611f6357611f626145f4565b5b9050602002016020810190611f789190613b07565b8760ff166128b5565b8080611f8c90614623565b915050611f42565b5060009450600091505050505050565b611fac6123b9565b73ffffffffffffffffffffffffffffffffffffffff16611fca6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613ea4565b60405180910390fd5b600c60049054906101000a900460ff1615600c60046101000a81548160ff021916908315150217905550565b600c60009054906101000a900461ffff1681565b6120686123b9565b73ffffffffffffffffffffffffffffffffffffffff166120866118a8565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613ea4565b60405180910390fd5b60006120e6610d21565b9050600c60009054906101000a900461ffff1661ffff168382612109919061423c565b61ffff16111561214e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612145906142be565b60405180910390fd5b61215c828461ffff166128b5565b600092506000915060009050505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461222e90613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90613ef3565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b505050505081565b6122b76123b9565b73ffffffffffffffffffffffffffffffffffffffff166122d56118a8565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613ea4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361239a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612391906146dd565b60405180910390fd5b6123a3816127ef565b50565b600c60039054906101000a900460ff1681565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161243661252b565b11158015612445575060005482105b8015612472575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61253b838383612b41565b505050565b61255b83838360405180602001604052806000815250611b01565b505050565b612568613550565b60008290508061257661252b565b11158015612585575060005481105b156127b8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269a5780925050506127ea565b5b6001156127b557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b05780925050506127ea565b61269b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cf828260405180602001604052806000815250612ff5565b5050565b6128de848484612b41565b6128fd8373ffffffffffffffffffffffffffffffffffffffff16613007565b801561291257506129108484848461302a565b155b15612949576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461295e90613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461298a90613ef3565b80156129d75780601f106129ac576101008083540402835291602001916129d7565b820191906000526020600020905b8154815290600101906020018083116129ba57829003601f168201915b5050505050905090565b606060008203612a28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b3c565b600082905060005b60008214612a5a578080612a4390614623565b915050600a82612a53919061472c565b9150612a30565b60008167ffffffffffffffff811115612a7657612a75613916565b5b6040519080825280601f01601f191660200182016040528015612aa85781602001600182028036833780820191505090505b5090505b60008514612b3557600182612ac1919061475d565b9150600a85612ad09190614791565b6030612adc91906145c0565b60f81b818381518110612af257612af16145f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b2e919061472c565b9450612aac565b8093505050505b919050565b6000612b4c82612560565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bb7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bd86123b9565b73ffffffffffffffffffffffffffffffffffffffff161480612c075750612c0685612c016123b9565b61218d565b5b80612c4c5750612c156123b9565b73ffffffffffffffffffffffffffffffffffffffff16612c3484610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c85576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ceb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf8858585600161317a565b612d0460008487612479565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f83576000548214612f8257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fee8585856001613180565b5050505050565b6130028383836001613186565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130506123b9565b8786866040518563ffffffff1660e01b81526004016130729493929190614817565b6020604051808303816000875af19250505080156130ae57506040513d601f19601f820116820180604052508101906130ab9190614878565b60015b613127573d80600081146130de576040519150601f19603f3d011682016040523d82523d6000602084013e6130e3565b606091505b50600081510361311f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361322c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613239600086838761317a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561340357506134028773ffffffffffffffffffffffffffffffffffffffff16613007565b5b156134c8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613478600088848060010195508861302a565b6134ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036134095782600054146134c357600080fd5b613533565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134c9575b8160008190555050506135496000868387613180565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b6135bd816135a7565b81146135c857600080fd5b50565b6000813590506135da816135b4565b92915050565b6000602082840312156135f6576135f561359d565b5b6000613604848285016135cb565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136428161360d565b811461364d57600080fd5b50565b60008135905061365f81613639565b92915050565b60006020828403121561367b5761367a61359d565b5b600061368984828501613650565b91505092915050565b60008115159050919050565b6136a781613692565b82525050565b60006020820190506136c2600083018461369e565b92915050565b600061ffff82169050919050565b6136df816136c8565b81146136ea57600080fd5b50565b6000813590506136fc816136d6565b92915050565b6000602082840312156137185761371761359d565b5b6000613726848285016136ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561376957808201518184015260208101905061374e565b60008484015250505050565b6000601f19601f8301169050919050565b60006137918261372f565b61379b818561373a565b93506137ab81856020860161374b565b6137b481613775565b840191505092915050565b600060208201905081810360008301526137d98184613786565b905092915050565b6000819050919050565b6137f4816137e1565b81146137ff57600080fd5b50565b600081359050613811816137eb565b92915050565b60006020828403121561382d5761382c61359d565b5b600061383b84828501613802565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061386f82613844565b9050919050565b61387f81613864565b82525050565b600060208201905061389a6000830184613876565b92915050565b6138a981613864565b81146138b457600080fd5b50565b6000813590506138c6816138a0565b92915050565b600080604083850312156138e3576138e261359d565b5b60006138f1858286016138b7565b925050602061390285828601613802565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61394e82613775565b810181811067ffffffffffffffff8211171561396d5761396c613916565b5b80604052505050565b6000613980613593565b905061398c8282613945565b919050565b600067ffffffffffffffff8211156139ac576139ab613916565b5b6139b582613775565b9050602081019050919050565b82818337600083830152505050565b60006139e46139df84613991565b613976565b905082815260208101848484011115613a00576139ff613911565b5b613a0b8482856139c2565b509392505050565b600082601f830112613a2857613a2761390c565b5b8135613a388482602086016139d1565b91505092915050565b600060208284031215613a5757613a5661359d565b5b600082013567ffffffffffffffff811115613a7557613a746135a2565b5b613a8184828501613a13565b91505092915050565b613a93816137e1565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600080600060608486031215613acd57613acc61359d565b5b6000613adb868287016138b7565b9350506020613aec868287016138b7565b9250506040613afd86828701613802565b9150509250925092565b600060208284031215613b1d57613b1c61359d565b5b6000613b2b848285016138b7565b91505092915050565b613b3d816135a7565b82525050565b6000602082019050613b586000830184613b34565b92915050565b613b6781613692565b8114613b7257600080fd5b50565b600081359050613b8481613b5e565b92915050565b60008060408385031215613ba157613ba061359d565b5b6000613baf858286016138b7565b9250506020613bc085828601613b75565b9150509250929050565b600067ffffffffffffffff821115613be557613be4613916565b5b613bee82613775565b9050602081019050919050565b6000613c0e613c0984613bca565b613976565b905082815260208101848484011115613c2a57613c29613911565b5b613c358482856139c2565b509392505050565b600082601f830112613c5257613c5161390c565b5b8135613c62848260208601613bfb565b91505092915050565b60008060008060808587031215613c8557613c8461359d565b5b6000613c93878288016138b7565b9450506020613ca4878288016138b7565b9350506040613cb587828801613802565b925050606085013567ffffffffffffffff811115613cd657613cd56135a2565b5b613ce287828801613c3d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613d0e57613d0d61390c565b5b8235905067ffffffffffffffff811115613d2b57613d2a613cee565b5b602083019150836020820283011115613d4757613d46613cf3565b5b9250929050565b600080600060408486031215613d6757613d6661359d565b5b6000613d75868287016135cb565b935050602084013567ffffffffffffffff811115613d9657613d956135a2565b5b613da286828701613cf8565b92509250509250925092565b613db7816136c8565b82525050565b6000602082019050613dd26000830184613dae565b92915050565b60008060408385031215613def57613dee61359d565b5b6000613dfd858286016136ed565b9250506020613e0e858286016138b7565b9150509250929050565b60008060408385031215613e2f57613e2e61359d565b5b6000613e3d858286016138b7565b9250506020613e4e858286016138b7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e8e60208361373a565b9150613e9982613e58565b602082019050919050565b60006020820190508181036000830152613ebd81613e81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f0b57607f821691505b602082108103613f1e57613f1d613ec4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f49565b613f908683613f49565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fcd613fc8613fc3846137e1565b613fa8565b6137e1565b9050919050565b6000819050919050565b613fe783613fb2565b613ffb613ff382613fd4565b848454613f56565b825550505050565b600090565b614010614003565b61401b818484613fde565b505050565b5b8181101561403f57614034600082614008565b600181019050614021565b5050565b601f8211156140845761405581613f24565b61405e84613f39565b8101602085101561406d578190505b61408161407985613f39565b830182614020565b50505b505050565b600082821c905092915050565b60006140a760001984600802614089565b1980831691505092915050565b60006140c08383614096565b9150826002028217905092915050565b6140d98261372f565b67ffffffffffffffff8111156140f2576140f1613916565b5b6140fc8254613ef3565b614107828285614043565b600060209050601f83116001811461413a5760008415614128578287015190505b61413285826140b4565b86555061419a565b601f19841661414886613f24565b60005b828110156141705784890151825560018201915060208501945060208101905061414b565b8683101561418d5784890151614189601f891682614096565b8355505b6001600288020188555050505b505050505050565b60006040820190506141b76000830185613876565b6141c46020830184613876565b9392505050565b6000815190506141da81613b5e565b92915050565b6000602082840312156141f6576141f561359d565b5b6000614204848285016141cb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614247826136c8565b9150614252836136c8565b9250828201905061ffff81111561426c5761426b61420d565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006142a860138361373a565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b60006142e9826135a7565b91506142f4836135a7565b9250828201905060ff81111561430d5761430c61420d565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614349601c8361373a565b915061435482614313565b602082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006143b560178361373a565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b60006143f6826137e1565b9150614401836137e1565b925082820261440f816137e1565b915082820484148315176144265761442561420d565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061446360138361373a565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006144a4826135a7565b91506144af836135a7565b9250828203905060ff8111156144c8576144c761420d565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061452a602f8361373a565b9150614535826144ce565b604082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b600081905092915050565b60006145768261372f565b6145808185614560565b935061459081856020860161374b565b80840191505092915050565b60006145a8828561456b565b91506145b4828461456b565b91508190509392505050565b60006145cb826137e1565b91506145d6836137e1565b92508282019050808211156145ee576145ed61420d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061462e826137e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146605761465f61420d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c760268361373a565b91506146d28261466b565b604082019050919050565b600060208201905081810360008301526146f6816146ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614737826137e1565b9150614742836137e1565b925082614752576147516146fd565b5b828204905092915050565b6000614768826137e1565b9150614773836137e1565b925082820390508181111561478b5761478a61420d565b5b92915050565b600061479c826137e1565b91506147a7836137e1565b9250826147b7576147b66146fd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006147e9826147c2565b6147f381856147cd565b935061480381856020860161374b565b61480c81613775565b840191505092915050565b600060808201905061482c6000830187613876565b6148396020830186613876565b6148466040830185613a8a565b818103606083015261485881846147de565b905095945050505050565b60008151905061487281613639565b92915050565b60006020828403121561488e5761488d61359d565b5b600061489c84828501614863565b9150509291505056fea2646970667358221220ee41ad4bd81cc80e8d20a3049b85f3fc2ab8e8a6dd0f6c0d315a7033b329547664736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102195760003560e01c8063715018a611610123578063c87b56dd116100ab578063e94053c71161006f578063e94053c71461075f578063e985e9c51461079c578063eef440af146107d9578063f2fde38b14610804578063f8bf51721461082d57610219565b8063c87b56dd1461068e578063d2444d67146106cb578063d3dd5fe0146106f4578063d5abeb011461070b578063d5f7ec8d1461073657610219565b806394354fd0116100f257806394354fd0146105bb57806395d89b41146105e6578063a22cb46514610611578063a475b5dd1461063a578063b88d4fde1461066557610219565b8063715018a6146105345780637ec4a6591461054b578063858e83b5146105745780638da5cb5b1461059057610219565b806323b872dd116101a657806344a0d68a1161017557806344a0d68a1461043d5780635c975abb14610466578063622e4e78146104915780636352211e146104ba57806370a08231146104f757610219565b806323b872dd146103bd5780633bd64968146103e65780633ccfd60b146103fd57806342842e0e1461041457610219565b8063081812fc116101ed578063081812fc146102d8578063095ea7b3146103155780631067fcc71461033e57806313faede61461036757806318160ddd1461039257610219565b8062a4f1f21461021e57806301ffc9a71461024757806306421c2f1461028457806306fdde03146102ad575b600080fd5b34801561022a57600080fd5b50610245600480360381019061024091906135e0565b610858565b005b34801561025357600080fd5b5061026e60048036038101906102699190613665565b6108f6565b60405161027b91906136ad565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613702565b6109d8565b005b3480156102b957600080fd5b506102c2610a74565b6040516102cf91906137bf565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190613817565b610b06565b60405161030c9190613885565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906138cc565b610b82565b005b34801561034a57600080fd5b5061036560048036038101906103609190613a41565b610c8c565b005b34801561037357600080fd5b5061037c610d1b565b6040516103899190613a99565b60405180910390f35b34801561039e57600080fd5b506103a7610d21565b6040516103b49190613a99565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613ab4565b610d38565b005b3480156103f257600080fd5b506103fb610f1a565b005b34801561040957600080fd5b50610412610fc2565b005b34801561042057600080fd5b5061043b60048036038101906104369190613ab4565b61108d565b005b34801561044957600080fd5b50610464600480360381019061045f9190613817565b61126f565b005b34801561047257600080fd5b5061047b6112f5565b60405161048891906136ad565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906135e0565b611308565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613817565b6113a2565b6040516104ee9190613885565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613b07565b6113b8565b60405161052b9190613a99565b60405180910390f35b34801561054057600080fd5b50610549611487565b005b34801561055757600080fd5b50610572600480360381019061056d9190613a41565b61150f565b005b61058e600480360381019061058991906135e0565b61159e565b005b34801561059c57600080fd5b506105a56118a8565b6040516105b29190613885565b60405180910390f35b3480156105c757600080fd5b506105d06118d2565b6040516105dd9190613b43565b60405180910390f35b3480156105f257600080fd5b506105fb6118e5565b60405161060891906137bf565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613b8a565b611977565b005b34801561064657600080fd5b5061064f611aee565b60405161065c91906136ad565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613c6b565b611b01565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613817565b611ce6565b6040516106c291906137bf565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613d4e565b611e3b565b005b34801561070057600080fd5b50610709611fa4565b005b34801561071757600080fd5b5061072061204c565b60405161072d9190613dbd565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613dd8565b612060565b005b34801561076b57600080fd5b5061078660048036038101906107819190613b07565b61216d565b6040516107939190613b43565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613e18565b61218d565b6040516107d091906136ad565b60405180910390f35b3480156107e557600080fd5b506107ee612221565b6040516107fb91906137bf565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613b07565b6122af565b005b34801561083957600080fd5b506108426123a6565b60405161084f9190613b43565b60405180910390f35b6108606123b9565b73ffffffffffffffffffffffffffffffffffffffff1661087e6118a8565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613ea4565b60405180910390fd5b80600c60036101000a81548160ff021916908360ff1602179055506000905050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d157506109d0826123c1565b5b9050919050565b6109e06123b9565b73ffffffffffffffffffffffffffffffffffffffff166109fe6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613ea4565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a8390613ef3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613ef3565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b118261242b565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d826113a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c136123b9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c455750610c4381610c3e6123b9565b61218d565b155b15610c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c87838383612479565b505050565b610c946123b9565b73ffffffffffffffffffffffffffffffffffffffff16610cb26118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613ea4565b60405180910390fd5b80600a9081610d1791906140d0565b5050565b600b5481565b6000610d2b61252b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f08573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610daa57610da5848484612530565b610f14565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610df39291906141a2565b602060405180830381865afa158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3491906141e0565b8015610ec657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e849291906141a2565b602060405180830381865afa158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec591906141e0565b5b610f0757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610efe9190613885565b60405180910390fd5b5b610f13848484612530565b5b50505050565b610f226123b9565b73ffffffffffffffffffffffffffffffffffffffff16610f406118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613ea4565b60405180910390fd5b600c60059054906101000a900460ff1615600c60056101000a81548160ff021916908315150217905550565b610fca6123b9565b73ffffffffffffffffffffffffffffffffffffffff16610fe86118a8565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613ea4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561125d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ff576110fa848484612540565b611269565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111489291906141a2565b602060405180830381865afa158015611165573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118991906141e0565b801561121b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111d99291906141a2565b602060405180830381865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a91906141e0565b5b61125c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112539190613885565b60405180910390fd5b5b611268848484612540565b5b50505050565b6112776123b9565b73ffffffffffffffffffffffffffffffffffffffff166112956118a8565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613ea4565b60405180910390fd5b80600b8190555050565b600c60049054906101000a900460ff1681565b6113106123b9565b73ffffffffffffffffffffffffffffffffffffffff1661132e6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613ea4565b60405180910390fd5b80600c60026101000a81548160ff021916908360ff16021790555050565b60006113ad82612560565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61148f6123b9565b73ffffffffffffffffffffffffffffffffffffffff166114ad6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613ea4565b60405180910390fd5b61150d60006127ef565b565b6115176123b9565b73ffffffffffffffffffffffffffffffffffffffff166115356118a8565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613ea4565b60405180910390fd5b806009908161159a91906140d0565b5050565b60006115a8610d21565b90506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600c60009054906101000a900461ffff1661ffff168360ff168361161f919061423c565b61ffff161115611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b906142be565b60405180910390fd5b600c60029054906101000a900460ff1660ff16818461168391906142de565b60ff1611156116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be9061435f565b60405180910390fd5b600c60049054906101000a900460ff1615611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e906143cb565b60405180910390fd5b600c60039054906101000a900460ff1660ff168160ff161061178b578260ff16600b5461174491906143eb565b341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614479565b60405180910390fd5b61182b565b6000818461179991906142de565b9050600c60039054906101000a900460ff1660ff168160ff16111561182957600c60039054906101000a900460ff16816117d39190614499565b90508060ff16600b546117e691906143eb565b341015611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614479565b60405180910390fd5b5b505b611838338460ff166128b5565b808361184491906142de565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60029054906101000a900460ff1681565b6060600380546118f490613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461192090613ef3565b801561196d5780601f106119425761010080835404028352916020019161196d565b820191906000526020600020905b81548152906001019060200180831161195057829003601f168201915b5050505050905090565b61197f6123b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119f06123b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9d6123b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae291906136ad565b60405180910390a35050565b600c60059054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611cd2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b7457611b6f858585856128d3565b611cdf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611bbd9291906141a2565b602060405180830381865afa158015611bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfe91906141e0565b8015611c9057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c4e9291906141a2565b602060405180830381865afa158015611c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8f91906141e0565b5b611cd157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cc89190613885565b60405180910390fd5b5b611cde858585856128d3565b5b5050505050565b6060611cf18261242b565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614540565b60405180910390fd5b60001515600c60059054906101000a900460ff16151503611ddd57600a8054611d5890613ef3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490613ef3565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050611e36565b6000611de761294f565b90506000815111611e075760405180602001604052806000815250611e32565b80611e11846129e1565b604051602001611e2292919061459c565b6040516020818303038152906040525b9150505b919050565b611e436123b9565b73ffffffffffffffffffffffffffffffffffffffff16611e616118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613ea4565b60405180910390fd5b6000611ec1610d21565b90506000838390508560ff16611ed791906143eb565b9050600c60009054906101000a900461ffff1661ffff16818361ffff16611efe91906145c0565b1115611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906142be565b60405180910390fd5b60005b84849050811015611f9457611f81858583818110611f6357611f626145f4565b5b9050602002016020810190611f789190613b07565b8760ff166128b5565b8080611f8c90614623565b915050611f42565b5060009450600091505050505050565b611fac6123b9565b73ffffffffffffffffffffffffffffffffffffffff16611fca6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613ea4565b60405180910390fd5b600c60049054906101000a900460ff1615600c60046101000a81548160ff021916908315150217905550565b600c60009054906101000a900461ffff1681565b6120686123b9565b73ffffffffffffffffffffffffffffffffffffffff166120866118a8565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613ea4565b60405180910390fd5b60006120e6610d21565b9050600c60009054906101000a900461ffff1661ffff168382612109919061423c565b61ffff16111561214e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612145906142be565b60405180910390fd5b61215c828461ffff166128b5565b600092506000915060009050505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461222e90613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90613ef3565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b505050505081565b6122b76123b9565b73ffffffffffffffffffffffffffffffffffffffff166122d56118a8565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613ea4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361239a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612391906146dd565b60405180910390fd5b6123a3816127ef565b50565b600c60039054906101000a900460ff1681565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161243661252b565b11158015612445575060005482105b8015612472575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61253b838383612b41565b505050565b61255b83838360405180602001604052806000815250611b01565b505050565b612568613550565b60008290508061257661252b565b11158015612585575060005481105b156127b8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269a5780925050506127ea565b5b6001156127b557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b05780925050506127ea565b61269b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cf828260405180602001604052806000815250612ff5565b5050565b6128de848484612b41565b6128fd8373ffffffffffffffffffffffffffffffffffffffff16613007565b801561291257506129108484848461302a565b155b15612949576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461295e90613ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461298a90613ef3565b80156129d75780601f106129ac576101008083540402835291602001916129d7565b820191906000526020600020905b8154815290600101906020018083116129ba57829003601f168201915b5050505050905090565b606060008203612a28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b3c565b600082905060005b60008214612a5a578080612a4390614623565b915050600a82612a53919061472c565b9150612a30565b60008167ffffffffffffffff811115612a7657612a75613916565b5b6040519080825280601f01601f191660200182016040528015612aa85781602001600182028036833780820191505090505b5090505b60008514612b3557600182612ac1919061475d565b9150600a85612ad09190614791565b6030612adc91906145c0565b60f81b818381518110612af257612af16145f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b2e919061472c565b9450612aac565b8093505050505b919050565b6000612b4c82612560565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bb7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bd86123b9565b73ffffffffffffffffffffffffffffffffffffffff161480612c075750612c0685612c016123b9565b61218d565b5b80612c4c5750612c156123b9565b73ffffffffffffffffffffffffffffffffffffffff16612c3484610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c85576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ceb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf8858585600161317a565b612d0460008487612479565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f83576000548214612f8257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fee8585856001613180565b5050505050565b6130028383836001613186565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130506123b9565b8786866040518563ffffffff1660e01b81526004016130729493929190614817565b6020604051808303816000875af19250505080156130ae57506040513d601f19601f820116820180604052508101906130ab9190614878565b60015b613127573d80600081146130de576040519150601f19603f3d011682016040523d82523d6000602084013e6130e3565b606091505b50600081510361311f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361322c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613239600086838761317a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561340357506134028773ffffffffffffffffffffffffffffffffffffffff16613007565b5b156134c8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613478600088848060010195508861302a565b6134ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036134095782600054146134c357600080fd5b613533565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134c9575b8160008190555050506135496000868387613180565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b6135bd816135a7565b81146135c857600080fd5b50565b6000813590506135da816135b4565b92915050565b6000602082840312156135f6576135f561359d565b5b6000613604848285016135cb565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136428161360d565b811461364d57600080fd5b50565b60008135905061365f81613639565b92915050565b60006020828403121561367b5761367a61359d565b5b600061368984828501613650565b91505092915050565b60008115159050919050565b6136a781613692565b82525050565b60006020820190506136c2600083018461369e565b92915050565b600061ffff82169050919050565b6136df816136c8565b81146136ea57600080fd5b50565b6000813590506136fc816136d6565b92915050565b6000602082840312156137185761371761359d565b5b6000613726848285016136ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561376957808201518184015260208101905061374e565b60008484015250505050565b6000601f19601f8301169050919050565b60006137918261372f565b61379b818561373a565b93506137ab81856020860161374b565b6137b481613775565b840191505092915050565b600060208201905081810360008301526137d98184613786565b905092915050565b6000819050919050565b6137f4816137e1565b81146137ff57600080fd5b50565b600081359050613811816137eb565b92915050565b60006020828403121561382d5761382c61359d565b5b600061383b84828501613802565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061386f82613844565b9050919050565b61387f81613864565b82525050565b600060208201905061389a6000830184613876565b92915050565b6138a981613864565b81146138b457600080fd5b50565b6000813590506138c6816138a0565b92915050565b600080604083850312156138e3576138e261359d565b5b60006138f1858286016138b7565b925050602061390285828601613802565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61394e82613775565b810181811067ffffffffffffffff8211171561396d5761396c613916565b5b80604052505050565b6000613980613593565b905061398c8282613945565b919050565b600067ffffffffffffffff8211156139ac576139ab613916565b5b6139b582613775565b9050602081019050919050565b82818337600083830152505050565b60006139e46139df84613991565b613976565b905082815260208101848484011115613a00576139ff613911565b5b613a0b8482856139c2565b509392505050565b600082601f830112613a2857613a2761390c565b5b8135613a388482602086016139d1565b91505092915050565b600060208284031215613a5757613a5661359d565b5b600082013567ffffffffffffffff811115613a7557613a746135a2565b5b613a8184828501613a13565b91505092915050565b613a93816137e1565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600080600060608486031215613acd57613acc61359d565b5b6000613adb868287016138b7565b9350506020613aec868287016138b7565b9250506040613afd86828701613802565b9150509250925092565b600060208284031215613b1d57613b1c61359d565b5b6000613b2b848285016138b7565b91505092915050565b613b3d816135a7565b82525050565b6000602082019050613b586000830184613b34565b92915050565b613b6781613692565b8114613b7257600080fd5b50565b600081359050613b8481613b5e565b92915050565b60008060408385031215613ba157613ba061359d565b5b6000613baf858286016138b7565b9250506020613bc085828601613b75565b9150509250929050565b600067ffffffffffffffff821115613be557613be4613916565b5b613bee82613775565b9050602081019050919050565b6000613c0e613c0984613bca565b613976565b905082815260208101848484011115613c2a57613c29613911565b5b613c358482856139c2565b509392505050565b600082601f830112613c5257613c5161390c565b5b8135613c62848260208601613bfb565b91505092915050565b60008060008060808587031215613c8557613c8461359d565b5b6000613c93878288016138b7565b9450506020613ca4878288016138b7565b9350506040613cb587828801613802565b925050606085013567ffffffffffffffff811115613cd657613cd56135a2565b5b613ce287828801613c3d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613d0e57613d0d61390c565b5b8235905067ffffffffffffffff811115613d2b57613d2a613cee565b5b602083019150836020820283011115613d4757613d46613cf3565b5b9250929050565b600080600060408486031215613d6757613d6661359d565b5b6000613d75868287016135cb565b935050602084013567ffffffffffffffff811115613d9657613d956135a2565b5b613da286828701613cf8565b92509250509250925092565b613db7816136c8565b82525050565b6000602082019050613dd26000830184613dae565b92915050565b60008060408385031215613def57613dee61359d565b5b6000613dfd858286016136ed565b9250506020613e0e858286016138b7565b9150509250929050565b60008060408385031215613e2f57613e2e61359d565b5b6000613e3d858286016138b7565b9250506020613e4e858286016138b7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e8e60208361373a565b9150613e9982613e58565b602082019050919050565b60006020820190508181036000830152613ebd81613e81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f0b57607f821691505b602082108103613f1e57613f1d613ec4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f49565b613f908683613f49565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613fcd613fc8613fc3846137e1565b613fa8565b6137e1565b9050919050565b6000819050919050565b613fe783613fb2565b613ffb613ff382613fd4565b848454613f56565b825550505050565b600090565b614010614003565b61401b818484613fde565b505050565b5b8181101561403f57614034600082614008565b600181019050614021565b5050565b601f8211156140845761405581613f24565b61405e84613f39565b8101602085101561406d578190505b61408161407985613f39565b830182614020565b50505b505050565b600082821c905092915050565b60006140a760001984600802614089565b1980831691505092915050565b60006140c08383614096565b9150826002028217905092915050565b6140d98261372f565b67ffffffffffffffff8111156140f2576140f1613916565b5b6140fc8254613ef3565b614107828285614043565b600060209050601f83116001811461413a5760008415614128578287015190505b61413285826140b4565b86555061419a565b601f19841661414886613f24565b60005b828110156141705784890151825560018201915060208501945060208101905061414b565b8683101561418d5784890151614189601f891682614096565b8355505b6001600288020188555050505b505050505050565b60006040820190506141b76000830185613876565b6141c46020830184613876565b9392505050565b6000815190506141da81613b5e565b92915050565b6000602082840312156141f6576141f561359d565b5b6000614204848285016141cb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614247826136c8565b9150614252836136c8565b9250828201905061ffff81111561426c5761426b61420d565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006142a860138361373a565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b60006142e9826135a7565b91506142f4836135a7565b9250828201905060ff81111561430d5761430c61420d565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614349601c8361373a565b915061435482614313565b602082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006143b560178361373a565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b60006143f6826137e1565b9150614401836137e1565b925082820261440f816137e1565b915082820484148315176144265761442561420d565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061446360138361373a565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006144a4826135a7565b91506144af836135a7565b9250828203905060ff8111156144c8576144c761420d565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061452a602f8361373a565b9150614535826144ce565b604082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b600081905092915050565b60006145768261372f565b6145808185614560565b935061459081856020860161374b565b80840191505092915050565b60006145a8828561456b565b91506145b4828461456b565b91508190509392505050565b60006145cb826137e1565b91506145d6836137e1565b92508282019050808211156145ee576145ed61420d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061462e826137e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146605761465f61420d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c760268361373a565b91506146d28261466b565b604082019050919050565b600060208201905081810360008301526146f6816146ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614737826137e1565b9150614742836137e1565b925082614752576147516146fd565b5b828204905092915050565b6000614768826137e1565b9150614773836137e1565b925082820390508181111561478b5761478a61420d565b5b92915050565b600061479c826137e1565b91506147a7836137e1565b9250826147b7576147b66146fd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006147e9826147c2565b6147f381856147cd565b935061480381856020860161374b565b61480c81613775565b840191505092915050565b600060808201905061482c6000830187613876565b6148396020830186613876565b6148466040830185613a8a565b818103606083015261485881846147de565b905095945050505050565b60008151905061487281613639565b92915050565b60006020828403121561488e5761488d61359d565b5b600061489c84828501614863565b9150509291505056fea2646970667358221220ee41ad4bd81cc80e8d20a3049b85f3fc2ab8e8a6dd0f6c0d315a7033b329547664736f6c63430008120033
Loading...
Loading
Loading...
Loading
[ 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.