ERC-721
Overview
Max Total Supply
850 MNTFYLP
Holders
367
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MNTFYLPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MintifyLitePass
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MintifyLitePass is ERC721, Ownable { uint16 nextTokenId = 1; string private baseURI = "https://ipfs.io/ipfs/QmbqVwJ4pyWKt6EYvbTZ1sa5gqe9u4wVMsoTF5XTMBTiYk"; // Constructor constructor() ERC721("Mintify Lite Pass", "MNTFYLP") { } // Mint function airDrop(address[] memory accounts) public onlyOwner { for (uint i=0; i < accounts.length; i++) { _safeMint(accounts[i], nextTokenId); nextTokenId++; } } // Sets BaseURI function setBaseURI(string calldata _baseURI ) public onlyOwner { baseURI = _baseURI; } // Gets total supply function totalSupply() public view returns(uint) { return nextTokenId - 1; } // Withdraw Balance to Address function withdraw(address payable _to) public onlyOwner { _to.transfer(address(this).balance); } // Gets token URI function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return bytes(baseURI).length > 0 ? baseURI : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // 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); }
{ "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"},{"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":"accounts","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600660146101000a81548161ffff021916908361ffff160217905550604051806080016040528060438152602001620032d760439139600790816200004c91906200045b565b503480156200005a57600080fd5b506040518060400160405280601181526020017f4d696e74696679204c69746520506173730000000000000000000000000000008152506040518060400160405280600781526020017f4d4e5446594c50000000000000000000000000000000000000000000000000008152508160009081620000d891906200045b565b508060019081620000ea91906200045b565b5050506200010d620001016200011360201b60201c565b6200011b60201b60201c565b62000542565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026357607f821691505b6020821081036200027957620002786200021b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a4565b620002ef8683620002a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200033c62000336620003308462000307565b62000311565b62000307565b9050919050565b6000819050919050565b62000358836200031b565b62000370620003678262000343565b848454620002b1565b825550505050565b600090565b6200038762000378565b620003948184846200034d565b505050565b5b81811015620003bc57620003b06000826200037d565b6001810190506200039a565b5050565b601f8211156200040b57620003d5816200027f565b620003e08462000294565b81016020851015620003f0578190505b62000408620003ff8562000294565b83018262000399565b50505b505050565b600082821c905092915050565b6000620004306000198460080262000410565b1980831691505092915050565b60006200044b83836200041d565b9150826002028217905092915050565b6200046682620001e1565b67ffffffffffffffff811115620004825762000481620001ec565b5b6200048e82546200024a565b6200049b828285620003c0565b600060209050601f831160018114620004d35760008415620004be578287015190505b620004ca85826200043d565b8655506200053a565b601f198416620004e3866200027f565b60005b828110156200050d57848901518255600182019150602085019450602081019050620004e6565b868310156200052d578489015162000529601f8916826200041d565b8355505b6001600288020188555050505b505050505050565b612d8580620005526000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb4651461031a578063b88d4fde14610336578063c87b56dd14610352578063e985e9c514610382578063f2fde38b146103b25761012b565b80636352211e1461027457806370a08231146102a4578063715018a6146102d45780638da5cb5b146102de57806395d89b41146102fc5761012b565b806318160ddd116100f457806318160ddd146101e657806323b872dd1461020457806342842e0e1461022057806351cff8d91461023c57806355f804b3146102585761012b565b8062b6849f1461013057806301ffc9a71461014c57806306fdde031461017c578063081812fc1461019a578063095ea7b3146101ca575b600080fd5b61014a60048036038101906101459190611ade565b6103ce565b005b61016660048036038101906101619190611b7f565b61046c565b6040516101739190611bc7565b60405180910390f35b61018461054e565b6040516101919190611c61565b60405180910390f35b6101b460048036038101906101af9190611cb9565b6105e0565b6040516101c19190611cf5565b60405180910390f35b6101e460048036038101906101df9190611d10565b610626565b005b6101ee61073d565b6040516101fb9190611d5f565b60405180910390f35b61021e60048036038101906102199190611d7a565b610765565b005b61023a60048036038101906102359190611d7a565b6107c5565b005b61025660048036038101906102519190611e0b565b6107e5565b005b610272600480360381019061026d9190611e93565b610837565b005b61028e60048036038101906102899190611cb9565b610855565b60405161029b9190611cf5565b60405180910390f35b6102be60048036038101906102b99190611ee0565b610906565b6040516102cb9190611d5f565b60405180910390f35b6102dc6109bd565b005b6102e66109d1565b6040516102f39190611cf5565b60405180910390f35b6103046109fb565b6040516103119190611c61565b60405180910390f35b610334600480360381019061032f9190611f39565b610a8d565b005b610350600480360381019061034b919061202e565b610aa3565b005b61036c60048036038101906103679190611cb9565b610b05565b6040516103799190611c61565b60405180910390f35b61039c600480360381019061039791906120b1565b610c0d565b6040516103a99190611bc7565b60405180910390f35b6103cc60048036038101906103c79190611ee0565b610ca1565b005b6103d6610d24565b60005b81518110156104685761041a8282815181106103f8576103f76120f1565b5b6020026020010151600660149054906101000a900461ffff1661ffff16610da2565b6006601481819054906101000a900461ffff168092919061043a9061215d565b91906101000a81548161ffff021916908361ffff16021790555050808061046090612187565b9150506103d9565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610547575061054682610dc0565b5b9050919050565b60606000805461055d906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906121fe565b80156105d65780601f106105ab576101008083540402835291602001916105d6565b820191906000526020600020905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b60006105eb82610e2a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063182610855565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906122a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c0610e75565b73ffffffffffffffffffffffffffffffffffffffff1614806106ef57506106ee816106e9610e75565b610c0d565b5b61072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612333565b60405180910390fd5b6107388383610e7d565b505050565b60006001600660149054906101000a900461ffff1661075c9190612353565b61ffff16905090565b610776610770610e75565b82610f36565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906123fb565b60405180910390fd5b6107c0838383610fcb565b505050565b6107e083838360405180602001604052806000815250610aa3565b505050565b6107ed610d24565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610833573d6000803e3d6000fd5b5050565b61083f610d24565b8181600791826108509291906125d2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f4906126ee565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612780565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c5610d24565b6109cf6000611231565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0a906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906121fe565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b610a9f610a98610e75565b83836112f7565b5050565b610ab4610aae610e75565b83610f36565b610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906123fb565b60405180910390fd5b610aff84848484611463565b50505050565b6060610b10826114bf565b610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b46906127ec565b60405180910390fd5b600060078054610b5e906121fe565b905011610b7a5760405180602001604052806000815250610c06565b60078054610b87906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb3906121fe565b8015610c005780601f10610bd557610100808354040283529160200191610c00565b820191906000526020600020905b815481529060010190602001808311610be357829003601f168201915b50505050505b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ca9610d24565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061287e565b60405180910390fd5b610d2181611231565b50565b610d2c610e75565b73ffffffffffffffffffffffffffffffffffffffff16610d4a6109d1565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d97906128ea565b60405180910390fd5b565b610dbc82826040518060200160405280600081525061152b565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e33816114bf565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e69906126ee565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ef083610855565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610f4283610855565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f845750610f838185610c0d565b5b80610fc257508373ffffffffffffffffffffffffffffffffffffffff16610faa846105e0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610feb82610855565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110389061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612a0e565b60405180910390fd5b6110bb838383611586565b6110c6600082610e7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111169190612a2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461116d9190612a62565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461122c83838361158b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612ae2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114569190611bc7565b60405180910390a3505050565b61146e848484610fcb565b61147a84848484611590565b6114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612b74565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6115358383611717565b6115426000848484611590565b611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612b74565b60405180910390fd5b505050565b505050565b505050565b60006115b18473ffffffffffffffffffffffffffffffffffffffff166118f0565b1561170a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115da610e75565b8786866040518563ffffffff1660e01b81526004016115fc9493929190612be9565b6020604051808303816000875af192505050801561163857506040513d601f19601f820116820180604052508101906116359190612c4a565b60015b6116ba573d8060008114611668576040519150601f19603f3d011682016040523d82523d6000602084013e61166d565b606091505b5060008151036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990612b74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061170f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612cc3565b60405180910390fd5b61178f816114bf565b156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690612d2f565b60405180910390fd5b6117db60008383611586565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182b9190612a62565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ec6000838361158b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119758261192c565b810181811067ffffffffffffffff821117156119945761199361193d565b5b80604052505050565b60006119a7611913565b90506119b3828261196c565b919050565b600067ffffffffffffffff8211156119d3576119d261193d565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a14826119e9565b9050919050565b611a2481611a09565b8114611a2f57600080fd5b50565b600081359050611a4181611a1b565b92915050565b6000611a5a611a55846119b8565b61199d565b90508083825260208201905060208402830185811115611a7d57611a7c6119e4565b5b835b81811015611aa65780611a928882611a32565b845260208401935050602081019050611a7f565b5050509392505050565b600082601f830112611ac557611ac4611927565b5b8135611ad5848260208601611a47565b91505092915050565b600060208284031215611af457611af361191d565b5b600082013567ffffffffffffffff811115611b1257611b11611922565b5b611b1e84828501611ab0565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b5c81611b27565b8114611b6757600080fd5b50565b600081359050611b7981611b53565b92915050565b600060208284031215611b9557611b9461191d565b5b6000611ba384828501611b6a565b91505092915050565b60008115159050919050565b611bc181611bac565b82525050565b6000602082019050611bdc6000830184611bb8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c1c578082015181840152602081019050611c01565b60008484015250505050565b6000611c3382611be2565b611c3d8185611bed565b9350611c4d818560208601611bfe565b611c568161192c565b840191505092915050565b60006020820190508181036000830152611c7b8184611c28565b905092915050565b6000819050919050565b611c9681611c83565b8114611ca157600080fd5b50565b600081359050611cb381611c8d565b92915050565b600060208284031215611ccf57611cce61191d565b5b6000611cdd84828501611ca4565b91505092915050565b611cef81611a09565b82525050565b6000602082019050611d0a6000830184611ce6565b92915050565b60008060408385031215611d2757611d2661191d565b5b6000611d3585828601611a32565b9250506020611d4685828601611ca4565b9150509250929050565b611d5981611c83565b82525050565b6000602082019050611d746000830184611d50565b92915050565b600080600060608486031215611d9357611d9261191d565b5b6000611da186828701611a32565b9350506020611db286828701611a32565b9250506040611dc386828701611ca4565b9150509250925092565b6000611dd8826119e9565b9050919050565b611de881611dcd565b8114611df357600080fd5b50565b600081359050611e0581611ddf565b92915050565b600060208284031215611e2157611e2061191d565b5b6000611e2f84828501611df6565b91505092915050565b600080fd5b60008083601f840112611e5357611e52611927565b5b8235905067ffffffffffffffff811115611e7057611e6f611e38565b5b602083019150836001820283011115611e8c57611e8b6119e4565b5b9250929050565b60008060208385031215611eaa57611ea961191d565b5b600083013567ffffffffffffffff811115611ec857611ec7611922565b5b611ed485828601611e3d565b92509250509250929050565b600060208284031215611ef657611ef561191d565b5b6000611f0484828501611a32565b91505092915050565b611f1681611bac565b8114611f2157600080fd5b50565b600081359050611f3381611f0d565b92915050565b60008060408385031215611f5057611f4f61191d565b5b6000611f5e85828601611a32565b9250506020611f6f85828601611f24565b9150509250929050565b600080fd5b600067ffffffffffffffff821115611f9957611f9861193d565b5b611fa28261192c565b9050602081019050919050565b82818337600083830152505050565b6000611fd1611fcc84611f7e565b61199d565b905082815260208101848484011115611fed57611fec611f79565b5b611ff8848285611faf565b509392505050565b600082601f83011261201557612014611927565b5b8135612025848260208601611fbe565b91505092915050565b600080600080608085870312156120485761204761191d565b5b600061205687828801611a32565b945050602061206787828801611a32565b935050604061207887828801611ca4565b925050606085013567ffffffffffffffff81111561209957612098611922565b5b6120a587828801612000565b91505092959194509250565b600080604083850312156120c8576120c761191d565b5b60006120d685828601611a32565b92505060206120e785828601611a32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff82169050919050565b60006121688261214f565b915061ffff820361217c5761217b612120565b5b600182019050919050565b600061219282611c83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036121c4576121c3612120565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221657607f821691505b602082108103612229576122286121cf565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061228b602183611bed565b91506122968261222f565b604082019050919050565b600060208201905081810360008301526122ba8161227e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061231d603e83611bed565b9150612328826122c1565b604082019050919050565b6000602082019050818103600083015261234c81612310565b9050919050565b600061235e8261214f565b91506123698361214f565b9250828203905061ffff81111561238357612382612120565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006123e5602e83611bed565b91506123f082612389565b604082019050919050565b60006020820190508181036000830152612414816123d8565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261244b565b612492868361244b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124cf6124ca6124c584611c83565b6124aa565b611c83565b9050919050565b6000819050919050565b6124e9836124b4565b6124fd6124f5826124d6565b848454612458565b825550505050565b600090565b612512612505565b61251d8184846124e0565b505050565b5b818110156125415761253660008261250a565b600181019050612523565b5050565b601f8211156125865761255781612426565b6125608461243b565b8101602085101561256f578190505b61258361257b8561243b565b830182612522565b50505b505050565b600082821c905092915050565b60006125a96000198460080261258b565b1980831691505092915050565b60006125c28383612598565b9150826002028217905092915050565b6125dc838361241b565b67ffffffffffffffff8111156125f5576125f461193d565b5b6125ff82546121fe565b61260a828285612545565b6000601f8311600181146126395760008415612627578287013590505b61263185826125b6565b865550612699565b601f19841661264786612426565b60005b8281101561266f5784890135825560018201915060208501945060208101905061264a565b8683101561268c5784890135612688601f891682612598565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006126d8601883611bed565b91506126e3826126a2565b602082019050919050565b60006020820190508181036000830152612707816126cb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061276a602983611bed565b91506127758261270e565b604082019050919050565b600060208201905081810360008301526127998161275d565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006127d6601183611bed565b91506127e1826127a0565b602082019050919050565b60006020820190508181036000830152612805816127c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612868602683611bed565b91506128738261280c565b604082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128d4602083611bed565b91506128df8261289e565b602082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612966602583611bed565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129f8602483611bed565b9150612a038261299c565b604082019050919050565b60006020820190508181036000830152612a27816129eb565b9050919050565b6000612a3982611c83565b9150612a4483611c83565b9250828203905081811115612a5c57612a5b612120565b5b92915050565b6000612a6d82611c83565b9150612a7883611c83565b9250828201905080821115612a9057612a8f612120565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612acc601983611bed565b9150612ad782612a96565b602082019050919050565b60006020820190508181036000830152612afb81612abf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b5e603283611bed565b9150612b6982612b02565b604082019050919050565b60006020820190508181036000830152612b8d81612b51565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612bbb82612b94565b612bc58185612b9f565b9350612bd5818560208601611bfe565b612bde8161192c565b840191505092915050565b6000608082019050612bfe6000830187611ce6565b612c0b6020830186611ce6565b612c186040830185611d50565b8181036060830152612c2a8184612bb0565b905095945050505050565b600081519050612c4481611b53565b92915050565b600060208284031215612c6057612c5f61191d565b5b6000612c6e84828501612c35565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612cad602083611bed565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612d19601c83611bed565b9150612d2482612ce3565b602082019050919050565b60006020820190508181036000830152612d4881612d0c565b905091905056fea264697066735822122071c0548b60ee17917d252d5eccf67df84e6bc42589abc371fe6f67c8e84cd3db64736f6c6343000811003368747470733a2f2f697066732e696f2f697066732f516d627156774a347079574b743645597662545a3173613567716539753477564d736f54463558544d425469596b
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb4651461031a578063b88d4fde14610336578063c87b56dd14610352578063e985e9c514610382578063f2fde38b146103b25761012b565b80636352211e1461027457806370a08231146102a4578063715018a6146102d45780638da5cb5b146102de57806395d89b41146102fc5761012b565b806318160ddd116100f457806318160ddd146101e657806323b872dd1461020457806342842e0e1461022057806351cff8d91461023c57806355f804b3146102585761012b565b8062b6849f1461013057806301ffc9a71461014c57806306fdde031461017c578063081812fc1461019a578063095ea7b3146101ca575b600080fd5b61014a60048036038101906101459190611ade565b6103ce565b005b61016660048036038101906101619190611b7f565b61046c565b6040516101739190611bc7565b60405180910390f35b61018461054e565b6040516101919190611c61565b60405180910390f35b6101b460048036038101906101af9190611cb9565b6105e0565b6040516101c19190611cf5565b60405180910390f35b6101e460048036038101906101df9190611d10565b610626565b005b6101ee61073d565b6040516101fb9190611d5f565b60405180910390f35b61021e60048036038101906102199190611d7a565b610765565b005b61023a60048036038101906102359190611d7a565b6107c5565b005b61025660048036038101906102519190611e0b565b6107e5565b005b610272600480360381019061026d9190611e93565b610837565b005b61028e60048036038101906102899190611cb9565b610855565b60405161029b9190611cf5565b60405180910390f35b6102be60048036038101906102b99190611ee0565b610906565b6040516102cb9190611d5f565b60405180910390f35b6102dc6109bd565b005b6102e66109d1565b6040516102f39190611cf5565b60405180910390f35b6103046109fb565b6040516103119190611c61565b60405180910390f35b610334600480360381019061032f9190611f39565b610a8d565b005b610350600480360381019061034b919061202e565b610aa3565b005b61036c60048036038101906103679190611cb9565b610b05565b6040516103799190611c61565b60405180910390f35b61039c600480360381019061039791906120b1565b610c0d565b6040516103a99190611bc7565b60405180910390f35b6103cc60048036038101906103c79190611ee0565b610ca1565b005b6103d6610d24565b60005b81518110156104685761041a8282815181106103f8576103f76120f1565b5b6020026020010151600660149054906101000a900461ffff1661ffff16610da2565b6006601481819054906101000a900461ffff168092919061043a9061215d565b91906101000a81548161ffff021916908361ffff16021790555050808061046090612187565b9150506103d9565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610547575061054682610dc0565b5b9050919050565b60606000805461055d906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906121fe565b80156105d65780601f106105ab576101008083540402835291602001916105d6565b820191906000526020600020905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b60006105eb82610e2a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063182610855565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906122a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c0610e75565b73ffffffffffffffffffffffffffffffffffffffff1614806106ef57506106ee816106e9610e75565b610c0d565b5b61072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612333565b60405180910390fd5b6107388383610e7d565b505050565b60006001600660149054906101000a900461ffff1661075c9190612353565b61ffff16905090565b610776610770610e75565b82610f36565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906123fb565b60405180910390fd5b6107c0838383610fcb565b505050565b6107e083838360405180602001604052806000815250610aa3565b505050565b6107ed610d24565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610833573d6000803e3d6000fd5b5050565b61083f610d24565b8181600791826108509291906125d2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f4906126ee565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612780565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c5610d24565b6109cf6000611231565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0a906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906121fe565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b610a9f610a98610e75565b83836112f7565b5050565b610ab4610aae610e75565b83610f36565b610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906123fb565b60405180910390fd5b610aff84848484611463565b50505050565b6060610b10826114bf565b610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b46906127ec565b60405180910390fd5b600060078054610b5e906121fe565b905011610b7a5760405180602001604052806000815250610c06565b60078054610b87906121fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb3906121fe565b8015610c005780601f10610bd557610100808354040283529160200191610c00565b820191906000526020600020905b815481529060010190602001808311610be357829003601f168201915b50505050505b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ca9610d24565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061287e565b60405180910390fd5b610d2181611231565b50565b610d2c610e75565b73ffffffffffffffffffffffffffffffffffffffff16610d4a6109d1565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d97906128ea565b60405180910390fd5b565b610dbc82826040518060200160405280600081525061152b565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e33816114bf565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e69906126ee565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ef083610855565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610f4283610855565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f845750610f838185610c0d565b5b80610fc257508373ffffffffffffffffffffffffffffffffffffffff16610faa846105e0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610feb82610855565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110389061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612a0e565b60405180910390fd5b6110bb838383611586565b6110c6600082610e7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111169190612a2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461116d9190612a62565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461122c83838361158b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612ae2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114569190611bc7565b60405180910390a3505050565b61146e848484610fcb565b61147a84848484611590565b6114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612b74565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6115358383611717565b6115426000848484611590565b611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612b74565b60405180910390fd5b505050565b505050565b505050565b60006115b18473ffffffffffffffffffffffffffffffffffffffff166118f0565b1561170a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115da610e75565b8786866040518563ffffffff1660e01b81526004016115fc9493929190612be9565b6020604051808303816000875af192505050801561163857506040513d601f19601f820116820180604052508101906116359190612c4a565b60015b6116ba573d8060008114611668576040519150601f19603f3d011682016040523d82523d6000602084013e61166d565b606091505b5060008151036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990612b74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061170f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612cc3565b60405180910390fd5b61178f816114bf565b156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690612d2f565b60405180910390fd5b6117db60008383611586565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182b9190612a62565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ec6000838361158b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119758261192c565b810181811067ffffffffffffffff821117156119945761199361193d565b5b80604052505050565b60006119a7611913565b90506119b3828261196c565b919050565b600067ffffffffffffffff8211156119d3576119d261193d565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a14826119e9565b9050919050565b611a2481611a09565b8114611a2f57600080fd5b50565b600081359050611a4181611a1b565b92915050565b6000611a5a611a55846119b8565b61199d565b90508083825260208201905060208402830185811115611a7d57611a7c6119e4565b5b835b81811015611aa65780611a928882611a32565b845260208401935050602081019050611a7f565b5050509392505050565b600082601f830112611ac557611ac4611927565b5b8135611ad5848260208601611a47565b91505092915050565b600060208284031215611af457611af361191d565b5b600082013567ffffffffffffffff811115611b1257611b11611922565b5b611b1e84828501611ab0565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b5c81611b27565b8114611b6757600080fd5b50565b600081359050611b7981611b53565b92915050565b600060208284031215611b9557611b9461191d565b5b6000611ba384828501611b6a565b91505092915050565b60008115159050919050565b611bc181611bac565b82525050565b6000602082019050611bdc6000830184611bb8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c1c578082015181840152602081019050611c01565b60008484015250505050565b6000611c3382611be2565b611c3d8185611bed565b9350611c4d818560208601611bfe565b611c568161192c565b840191505092915050565b60006020820190508181036000830152611c7b8184611c28565b905092915050565b6000819050919050565b611c9681611c83565b8114611ca157600080fd5b50565b600081359050611cb381611c8d565b92915050565b600060208284031215611ccf57611cce61191d565b5b6000611cdd84828501611ca4565b91505092915050565b611cef81611a09565b82525050565b6000602082019050611d0a6000830184611ce6565b92915050565b60008060408385031215611d2757611d2661191d565b5b6000611d3585828601611a32565b9250506020611d4685828601611ca4565b9150509250929050565b611d5981611c83565b82525050565b6000602082019050611d746000830184611d50565b92915050565b600080600060608486031215611d9357611d9261191d565b5b6000611da186828701611a32565b9350506020611db286828701611a32565b9250506040611dc386828701611ca4565b9150509250925092565b6000611dd8826119e9565b9050919050565b611de881611dcd565b8114611df357600080fd5b50565b600081359050611e0581611ddf565b92915050565b600060208284031215611e2157611e2061191d565b5b6000611e2f84828501611df6565b91505092915050565b600080fd5b60008083601f840112611e5357611e52611927565b5b8235905067ffffffffffffffff811115611e7057611e6f611e38565b5b602083019150836001820283011115611e8c57611e8b6119e4565b5b9250929050565b60008060208385031215611eaa57611ea961191d565b5b600083013567ffffffffffffffff811115611ec857611ec7611922565b5b611ed485828601611e3d565b92509250509250929050565b600060208284031215611ef657611ef561191d565b5b6000611f0484828501611a32565b91505092915050565b611f1681611bac565b8114611f2157600080fd5b50565b600081359050611f3381611f0d565b92915050565b60008060408385031215611f5057611f4f61191d565b5b6000611f5e85828601611a32565b9250506020611f6f85828601611f24565b9150509250929050565b600080fd5b600067ffffffffffffffff821115611f9957611f9861193d565b5b611fa28261192c565b9050602081019050919050565b82818337600083830152505050565b6000611fd1611fcc84611f7e565b61199d565b905082815260208101848484011115611fed57611fec611f79565b5b611ff8848285611faf565b509392505050565b600082601f83011261201557612014611927565b5b8135612025848260208601611fbe565b91505092915050565b600080600080608085870312156120485761204761191d565b5b600061205687828801611a32565b945050602061206787828801611a32565b935050604061207887828801611ca4565b925050606085013567ffffffffffffffff81111561209957612098611922565b5b6120a587828801612000565b91505092959194509250565b600080604083850312156120c8576120c761191d565b5b60006120d685828601611a32565b92505060206120e785828601611a32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff82169050919050565b60006121688261214f565b915061ffff820361217c5761217b612120565b5b600182019050919050565b600061219282611c83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036121c4576121c3612120565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221657607f821691505b602082108103612229576122286121cf565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061228b602183611bed565b91506122968261222f565b604082019050919050565b600060208201905081810360008301526122ba8161227e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061231d603e83611bed565b9150612328826122c1565b604082019050919050565b6000602082019050818103600083015261234c81612310565b9050919050565b600061235e8261214f565b91506123698361214f565b9250828203905061ffff81111561238357612382612120565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006123e5602e83611bed565b91506123f082612389565b604082019050919050565b60006020820190508181036000830152612414816123d8565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261244b565b612492868361244b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124cf6124ca6124c584611c83565b6124aa565b611c83565b9050919050565b6000819050919050565b6124e9836124b4565b6124fd6124f5826124d6565b848454612458565b825550505050565b600090565b612512612505565b61251d8184846124e0565b505050565b5b818110156125415761253660008261250a565b600181019050612523565b5050565b601f8211156125865761255781612426565b6125608461243b565b8101602085101561256f578190505b61258361257b8561243b565b830182612522565b50505b505050565b600082821c905092915050565b60006125a96000198460080261258b565b1980831691505092915050565b60006125c28383612598565b9150826002028217905092915050565b6125dc838361241b565b67ffffffffffffffff8111156125f5576125f461193d565b5b6125ff82546121fe565b61260a828285612545565b6000601f8311600181146126395760008415612627578287013590505b61263185826125b6565b865550612699565b601f19841661264786612426565b60005b8281101561266f5784890135825560018201915060208501945060208101905061264a565b8683101561268c5784890135612688601f891682612598565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006126d8601883611bed565b91506126e3826126a2565b602082019050919050565b60006020820190508181036000830152612707816126cb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061276a602983611bed565b91506127758261270e565b604082019050919050565b600060208201905081810360008301526127998161275d565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006127d6601183611bed565b91506127e1826127a0565b602082019050919050565b60006020820190508181036000830152612805816127c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612868602683611bed565b91506128738261280c565b604082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128d4602083611bed565b91506128df8261289e565b602082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612966602583611bed565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129f8602483611bed565b9150612a038261299c565b604082019050919050565b60006020820190508181036000830152612a27816129eb565b9050919050565b6000612a3982611c83565b9150612a4483611c83565b9250828203905081811115612a5c57612a5b612120565b5b92915050565b6000612a6d82611c83565b9150612a7883611c83565b9250828201905080821115612a9057612a8f612120565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612acc601983611bed565b9150612ad782612a96565b602082019050919050565b60006020820190508181036000830152612afb81612abf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b5e603283611bed565b9150612b6982612b02565b604082019050919050565b60006020820190508181036000830152612b8d81612b51565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612bbb82612b94565b612bc58185612b9f565b9350612bd5818560208601611bfe565b612bde8161192c565b840191505092915050565b6000608082019050612bfe6000830187611ce6565b612c0b6020830186611ce6565b612c186040830185611d50565b8181036060830152612c2a8184612bb0565b905095945050505050565b600081519050612c4481611b53565b92915050565b600060208284031215612c6057612c5f61191d565b5b6000612c6e84828501612c35565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612cad602083611bed565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612d19601c83611bed565b9150612d2482612ce3565b602082019050919050565b60006020820190508181036000830152612d4881612d0c565b905091905056fea264697066735822122071c0548b60ee17917d252d5eccf67df84e6bc42589abc371fe6f67c8e84cd3db64736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.