Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
17 RAMEN
Holders
16
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RAMENLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RamenDAO
Compiler Version
v0.8.13+commit.abaa5c0e
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.13; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract RamenDAO is ERC721 { uint256 public immutable maxSupply = 50; uint256 public totalSupply = 0; address private immutable owner; uint256 public immutable price = 0.05 ether; constructor() ERC721("RamenDAO @ MCON by Crypto Nomads Club", "RAMEN") { owner = msg.sender; } function tokenURI(uint256) public pure override returns (string memory) { return "ipfs://QmadyoQX175o3n9XquteNdkXyw9TMv3erdwmNCtesjGzd8/"; } function mint(uint256 amount) external payable { require(totalSupply + amount <= maxSupply, "No ramen left"); require( amount <= 3, "Leave some ramen for the others ser" ); require(price * amount <= msg.value, "Inflation ser. Add more ETH"); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, totalSupply + i); } totalSupply += amount; } function withdrawAll() external { payable(owner).transfer(address(this).balance); } }
// 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":"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":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"price","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":"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":"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":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526032608090815250600060065566b1a2bc2ec5000060c0908152503480156200002c57600080fd5b50604051806060016040528060258152602001620029c4602591396040518060400160405280600581526020017f52414d454e000000000000000000000000000000000000000000000000000000815250816000908051906020019062000095929190620000eb565b508060019080519060200190620000ae929190620000eb565b5050503373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620001ff565b828054620000f990620001ca565b90600052602060002090601f0160209004810192826200011d576000855562000169565b82601f106200013857805160ff191683800117855562000169565b8280016001018555821562000169579182015b82811115620001685782518255916020019190600101906200014b565b5b5090506200017891906200017c565b5090565b5b80821115620001975760008160009055506001016200017d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001e357607f821691505b602082108103620001f957620001f86200019b565b5b50919050565b60805160a05160c0516127876200023d60003960008181610a0f0152610ae901526000610914015260008181610a330152610c4101526127876000f3fe6080604052600436106101095760003560e01c8063853828b611610095578063a22cb46511610064578063a22cb4651461035c578063b88d4fde14610385578063c87b56dd146103ae578063d5abeb01146103eb578063e985e9c51461041657610109565b8063853828b6146102d357806395d89b41146102ea578063a035b1fe14610315578063a0712d681461034057610109565b806318160ddd116100dc57806318160ddd146101dc57806323b872dd1461020757806342842e0e146102305780636352211e1461025957806370a082311461029657610109565b806301ffc9a71461010e57806306fdde031461014b578063081812fc14610176578063095ea7b3146101b3575b600080fd5b34801561011a57600080fd5b506101356004803603810190610130919061180e565b610453565b6040516101429190611856565b60405180910390f35b34801561015757600080fd5b50610160610535565b60405161016d919061190a565b60405180910390f35b34801561018257600080fd5b5061019d60048036038101906101989190611962565b6105c7565b6040516101aa91906119d0565b60405180910390f35b3480156101bf57600080fd5b506101da60048036038101906101d59190611a17565b61060d565b005b3480156101e857600080fd5b506101f1610724565b6040516101fe9190611a66565b60405180910390f35b34801561021357600080fd5b5061022e60048036038101906102299190611a81565b61072a565b005b34801561023c57600080fd5b5061025760048036038101906102529190611a81565b61078a565b005b34801561026557600080fd5b50610280600480360381019061027b9190611962565b6107aa565b60405161028d91906119d0565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190611ad4565b61085b565b6040516102ca9190611a66565b60405180910390f35b3480156102df57600080fd5b506102e8610912565b005b3480156102f657600080fd5b506102ff61097b565b60405161030c919061190a565b60405180910390f35b34801561032157600080fd5b5061032a610a0d565b6040516103379190611a66565b60405180910390f35b61035a60048036038101906103559190611962565b610a31565b005b34801561036857600080fd5b50610383600480360381019061037e9190611b2d565b610ba5565b005b34801561039157600080fd5b506103ac60048036038101906103a79190611ca2565b610bbb565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190611962565b610c1d565b6040516103e2919061190a565b60405180910390f35b3480156103f757600080fd5b50610400610c3f565b60405161040d9190611a66565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190611d25565b610c63565b60405161044a9190611856565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061052e575061052d82610cf7565b5b9050919050565b60606000805461054490611d94565b80601f016020809104026020016040519081016040528092919081815260200182805461057090611d94565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b60006105d282610d61565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610618826107aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611e37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106a7610dac565b73ffffffffffffffffffffffffffffffffffffffff1614806106d657506106d5816106d0610dac565b610c63565b5b610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90611ec9565b60405180910390fd5b61071f8383610db4565b505050565b60065481565b61073b610735610dac565b82610e6d565b61077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190611f5b565b60405180910390fd5b610785838383610f02565b505050565b6107a583838360405180602001604052806000815250610bbb565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990611fc7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290612059565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610978573d6000803e3d6000fd5b50565b60606001805461098a90611d94565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690611d94565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081600654610a6091906120a8565b1115610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a989061214a565b60405180910390fd5b6003811115610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906121dc565b60405180910390fd5b34817f0000000000000000000000000000000000000000000000000000000000000000610b1291906121fc565b1115610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906122a2565b60405180910390fd5b60005b81811015610b8857610b753382600654610b7091906120a8565b611168565b8080610b80906122c2565b915050610b56565b508060066000828254610b9b91906120a8565b9250508190555050565b610bb7610bb0610dac565b8383611186565b5050565b610bcc610bc6610dac565b83610e6d565b610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611f5b565b60405180910390fd5b610c17848484846112f2565b50505050565b606060405180606001604052806036815260200161271c603691399050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d6a8161134e565b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611fc7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e27836107aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e79836107aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ebb5750610eba8185610c63565b5b80610ef957508373ffffffffffffffffffffffffffffffffffffffff16610ee1846105c7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f22826107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061237c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061240e565b60405180910390fd5b610ff28383836113ba565b610ffd600082610db4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104d919061242e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a491906120a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111638383836113bf565b505050565b6111828282604051806020016040528060008152506113c4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906124ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e59190611856565b60405180910390a3505050565b6112fd848484610f02565b6113098484848461141f565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612540565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6113ce83836115a6565b6113db600084848461141f565b61141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612540565b60405180910390fd5b505050565b60006114408473ffffffffffffffffffffffffffffffffffffffff1661177f565b15611599578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611469610dac565b8786866040518563ffffffff1660e01b815260040161148b94939291906125b5565b6020604051808303816000875af19250505080156114c757506040513d601f19601f820116820180604052508101906114c49190612616565b60015b611549573d80600081146114f7576040519150601f19603f3d011682016040523d82523d6000602084013e6114fc565b606091505b506000815103611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612540565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061159e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c9061268f565b60405180910390fd5b61161e8161134e565b1561165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906126fb565b60405180910390fd5b61166a600083836113ba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ba91906120a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177b600083836113bf565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117eb816117b6565b81146117f657600080fd5b50565b600081359050611808816117e2565b92915050565b600060208284031215611824576118236117ac565b5b6000611832848285016117f9565b91505092915050565b60008115159050919050565b6118508161183b565b82525050565b600060208201905061186b6000830184611847565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118ab578082015181840152602081019050611890565b838111156118ba576000848401525b50505050565b6000601f19601f8301169050919050565b60006118dc82611871565b6118e6818561187c565b93506118f681856020860161188d565b6118ff816118c0565b840191505092915050565b6000602082019050818103600083015261192481846118d1565b905092915050565b6000819050919050565b61193f8161192c565b811461194a57600080fd5b50565b60008135905061195c81611936565b92915050565b600060208284031215611978576119776117ac565b5b60006119868482850161194d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119ba8261198f565b9050919050565b6119ca816119af565b82525050565b60006020820190506119e560008301846119c1565b92915050565b6119f4816119af565b81146119ff57600080fd5b50565b600081359050611a11816119eb565b92915050565b60008060408385031215611a2e57611a2d6117ac565b5b6000611a3c85828601611a02565b9250506020611a4d8582860161194d565b9150509250929050565b611a608161192c565b82525050565b6000602082019050611a7b6000830184611a57565b92915050565b600080600060608486031215611a9a57611a996117ac565b5b6000611aa886828701611a02565b9350506020611ab986828701611a02565b9250506040611aca8682870161194d565b9150509250925092565b600060208284031215611aea57611ae96117ac565b5b6000611af884828501611a02565b91505092915050565b611b0a8161183b565b8114611b1557600080fd5b50565b600081359050611b2781611b01565b92915050565b60008060408385031215611b4457611b436117ac565b5b6000611b5285828601611a02565b9250506020611b6385828601611b18565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611baf826118c0565b810181811067ffffffffffffffff82111715611bce57611bcd611b77565b5b80604052505050565b6000611be16117a2565b9050611bed8282611ba6565b919050565b600067ffffffffffffffff821115611c0d57611c0c611b77565b5b611c16826118c0565b9050602081019050919050565b82818337600083830152505050565b6000611c45611c4084611bf2565b611bd7565b905082815260208101848484011115611c6157611c60611b72565b5b611c6c848285611c23565b509392505050565b600082601f830112611c8957611c88611b6d565b5b8135611c99848260208601611c32565b91505092915050565b60008060008060808587031215611cbc57611cbb6117ac565b5b6000611cca87828801611a02565b9450506020611cdb87828801611a02565b9350506040611cec8782880161194d565b925050606085013567ffffffffffffffff811115611d0d57611d0c6117b1565b5b611d1987828801611c74565b91505092959194509250565b60008060408385031215611d3c57611d3b6117ac565b5b6000611d4a85828601611a02565b9250506020611d5b85828601611a02565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dac57607f821691505b602082108103611dbf57611dbe611d65565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2160218361187c565b9150611e2c82611dc5565b604082019050919050565b60006020820190508181036000830152611e5081611e14565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000611eb3603e8361187c565b9150611ebe82611e57565b604082019050919050565b60006020820190508181036000830152611ee281611ea6565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000611f45602e8361187c565b9150611f5082611ee9565b604082019050919050565b60006020820190508181036000830152611f7481611f38565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611fb160188361187c565b9150611fbc82611f7b565b602082019050919050565b60006020820190508181036000830152611fe081611fa4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061204360298361187c565b915061204e82611fe7565b604082019050919050565b6000602082019050818103600083015261207281612036565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120b38261192c565b91506120be8361192c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120f3576120f2612079565b5b828201905092915050565b7f4e6f2072616d656e206c65667400000000000000000000000000000000000000600082015250565b6000612134600d8361187c565b915061213f826120fe565b602082019050919050565b6000602082019050818103600083015261216381612127565b9050919050565b7f4c6561766520736f6d652072616d656e20666f7220746865206f74686572732060008201527f7365720000000000000000000000000000000000000000000000000000000000602082015250565b60006121c660238361187c565b91506121d18261216a565b604082019050919050565b600060208201905081810360008301526121f5816121b9565b9050919050565b60006122078261192c565b91506122128361192c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561224b5761224a612079565b5b828202905092915050565b7f496e666c6174696f6e207365722e20416464206d6f7265204554480000000000600082015250565b600061228c601b8361187c565b915061229782612256565b602082019050919050565b600060208201905081810360008301526122bb8161227f565b9050919050565b60006122cd8261192c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ff576122fe612079565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061236660258361187c565b91506123718261230a565b604082019050919050565b6000602082019050818103600083015261239581612359565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123f860248361187c565b91506124038261239c565b604082019050919050565b60006020820190508181036000830152612427816123eb565b9050919050565b60006124398261192c565b91506124448361192c565b92508282101561245757612456612079565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061249860198361187c565b91506124a382612462565b602082019050919050565b600060208201905081810360008301526124c78161248b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061252a60328361187c565b9150612535826124ce565b604082019050919050565b600060208201905081810360008301526125598161251d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061258782612560565b612591818561256b565b93506125a181856020860161188d565b6125aa816118c0565b840191505092915050565b60006080820190506125ca60008301876119c1565b6125d760208301866119c1565b6125e46040830185611a57565b81810360608301526125f6818461257c565b905095945050505050565b600081519050612610816117e2565b92915050565b60006020828403121561262c5761262b6117ac565b5b600061263a84828501612601565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061267960208361187c565b915061268482612643565b602082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006126e5601c8361187c565b91506126f0826126af565b602082019050919050565b60006020820190508181036000830152612714816126d8565b905091905056fe697066733a2f2f516d6164796f51583137356f336e3958717574654e646b58797739544d7633657264776d4e437465736a477a64382fa2646970667358221220bc56632f764c03d56cf044be4f2cc90f51437100ef69c08c14ba4300eee9263364736f6c634300080d003352616d656e44414f2040204d434f4e2062792043727970746f204e6f6d61647320436c7562
Deployed Bytecode
0x6080604052600436106101095760003560e01c8063853828b611610095578063a22cb46511610064578063a22cb4651461035c578063b88d4fde14610385578063c87b56dd146103ae578063d5abeb01146103eb578063e985e9c51461041657610109565b8063853828b6146102d357806395d89b41146102ea578063a035b1fe14610315578063a0712d681461034057610109565b806318160ddd116100dc57806318160ddd146101dc57806323b872dd1461020757806342842e0e146102305780636352211e1461025957806370a082311461029657610109565b806301ffc9a71461010e57806306fdde031461014b578063081812fc14610176578063095ea7b3146101b3575b600080fd5b34801561011a57600080fd5b506101356004803603810190610130919061180e565b610453565b6040516101429190611856565b60405180910390f35b34801561015757600080fd5b50610160610535565b60405161016d919061190a565b60405180910390f35b34801561018257600080fd5b5061019d60048036038101906101989190611962565b6105c7565b6040516101aa91906119d0565b60405180910390f35b3480156101bf57600080fd5b506101da60048036038101906101d59190611a17565b61060d565b005b3480156101e857600080fd5b506101f1610724565b6040516101fe9190611a66565b60405180910390f35b34801561021357600080fd5b5061022e60048036038101906102299190611a81565b61072a565b005b34801561023c57600080fd5b5061025760048036038101906102529190611a81565b61078a565b005b34801561026557600080fd5b50610280600480360381019061027b9190611962565b6107aa565b60405161028d91906119d0565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190611ad4565b61085b565b6040516102ca9190611a66565b60405180910390f35b3480156102df57600080fd5b506102e8610912565b005b3480156102f657600080fd5b506102ff61097b565b60405161030c919061190a565b60405180910390f35b34801561032157600080fd5b5061032a610a0d565b6040516103379190611a66565b60405180910390f35b61035a60048036038101906103559190611962565b610a31565b005b34801561036857600080fd5b50610383600480360381019061037e9190611b2d565b610ba5565b005b34801561039157600080fd5b506103ac60048036038101906103a79190611ca2565b610bbb565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190611962565b610c1d565b6040516103e2919061190a565b60405180910390f35b3480156103f757600080fd5b50610400610c3f565b60405161040d9190611a66565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190611d25565b610c63565b60405161044a9190611856565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061052e575061052d82610cf7565b5b9050919050565b60606000805461054490611d94565b80601f016020809104026020016040519081016040528092919081815260200182805461057090611d94565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b60006105d282610d61565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610618826107aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611e37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106a7610dac565b73ffffffffffffffffffffffffffffffffffffffff1614806106d657506106d5816106d0610dac565b610c63565b5b610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90611ec9565b60405180910390fd5b61071f8383610db4565b505050565b60065481565b61073b610735610dac565b82610e6d565b61077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190611f5b565b60405180910390fd5b610785838383610f02565b505050565b6107a583838360405180602001604052806000815250610bbb565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990611fc7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290612059565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f0000000000000000000000004ecbac578acd7f9928a3d0f7e0b7ec0d54a7e3b573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610978573d6000803e3d6000fd5b50565b60606001805461098a90611d94565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690611d94565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b7f00000000000000000000000000000000000000000000000000b1a2bc2ec5000081565b7f000000000000000000000000000000000000000000000000000000000000003281600654610a6091906120a8565b1115610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a989061214a565b60405180910390fd5b6003811115610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906121dc565b60405180910390fd5b34817f00000000000000000000000000000000000000000000000000b1a2bc2ec50000610b1291906121fc565b1115610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a906122a2565b60405180910390fd5b60005b81811015610b8857610b753382600654610b7091906120a8565b611168565b8080610b80906122c2565b915050610b56565b508060066000828254610b9b91906120a8565b9250508190555050565b610bb7610bb0610dac565b8383611186565b5050565b610bcc610bc6610dac565b83610e6d565b610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611f5b565b60405180910390fd5b610c17848484846112f2565b50505050565b606060405180606001604052806036815260200161271c603691399050919050565b7f000000000000000000000000000000000000000000000000000000000000003281565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d6a8161134e565b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611fc7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e27836107aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e79836107aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ebb5750610eba8185610c63565b5b80610ef957508373ffffffffffffffffffffffffffffffffffffffff16610ee1846105c7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f22826107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061237c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061240e565b60405180910390fd5b610ff28383836113ba565b610ffd600082610db4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104d919061242e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a491906120a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111638383836113bf565b505050565b6111828282604051806020016040528060008152506113c4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906124ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e59190611856565b60405180910390a3505050565b6112fd848484610f02565b6113098484848461141f565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612540565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6113ce83836115a6565b6113db600084848461141f565b61141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612540565b60405180910390fd5b505050565b60006114408473ffffffffffffffffffffffffffffffffffffffff1661177f565b15611599578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611469610dac565b8786866040518563ffffffff1660e01b815260040161148b94939291906125b5565b6020604051808303816000875af19250505080156114c757506040513d601f19601f820116820180604052508101906114c49190612616565b60015b611549573d80600081146114f7576040519150601f19603f3d011682016040523d82523d6000602084013e6114fc565b606091505b506000815103611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612540565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061159e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c9061268f565b60405180910390fd5b61161e8161134e565b1561165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906126fb565b60405180910390fd5b61166a600083836113ba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ba91906120a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177b600083836113bf565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117eb816117b6565b81146117f657600080fd5b50565b600081359050611808816117e2565b92915050565b600060208284031215611824576118236117ac565b5b6000611832848285016117f9565b91505092915050565b60008115159050919050565b6118508161183b565b82525050565b600060208201905061186b6000830184611847565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118ab578082015181840152602081019050611890565b838111156118ba576000848401525b50505050565b6000601f19601f8301169050919050565b60006118dc82611871565b6118e6818561187c565b93506118f681856020860161188d565b6118ff816118c0565b840191505092915050565b6000602082019050818103600083015261192481846118d1565b905092915050565b6000819050919050565b61193f8161192c565b811461194a57600080fd5b50565b60008135905061195c81611936565b92915050565b600060208284031215611978576119776117ac565b5b60006119868482850161194d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119ba8261198f565b9050919050565b6119ca816119af565b82525050565b60006020820190506119e560008301846119c1565b92915050565b6119f4816119af565b81146119ff57600080fd5b50565b600081359050611a11816119eb565b92915050565b60008060408385031215611a2e57611a2d6117ac565b5b6000611a3c85828601611a02565b9250506020611a4d8582860161194d565b9150509250929050565b611a608161192c565b82525050565b6000602082019050611a7b6000830184611a57565b92915050565b600080600060608486031215611a9a57611a996117ac565b5b6000611aa886828701611a02565b9350506020611ab986828701611a02565b9250506040611aca8682870161194d565b9150509250925092565b600060208284031215611aea57611ae96117ac565b5b6000611af884828501611a02565b91505092915050565b611b0a8161183b565b8114611b1557600080fd5b50565b600081359050611b2781611b01565b92915050565b60008060408385031215611b4457611b436117ac565b5b6000611b5285828601611a02565b9250506020611b6385828601611b18565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611baf826118c0565b810181811067ffffffffffffffff82111715611bce57611bcd611b77565b5b80604052505050565b6000611be16117a2565b9050611bed8282611ba6565b919050565b600067ffffffffffffffff821115611c0d57611c0c611b77565b5b611c16826118c0565b9050602081019050919050565b82818337600083830152505050565b6000611c45611c4084611bf2565b611bd7565b905082815260208101848484011115611c6157611c60611b72565b5b611c6c848285611c23565b509392505050565b600082601f830112611c8957611c88611b6d565b5b8135611c99848260208601611c32565b91505092915050565b60008060008060808587031215611cbc57611cbb6117ac565b5b6000611cca87828801611a02565b9450506020611cdb87828801611a02565b9350506040611cec8782880161194d565b925050606085013567ffffffffffffffff811115611d0d57611d0c6117b1565b5b611d1987828801611c74565b91505092959194509250565b60008060408385031215611d3c57611d3b6117ac565b5b6000611d4a85828601611a02565b9250506020611d5b85828601611a02565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dac57607f821691505b602082108103611dbf57611dbe611d65565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2160218361187c565b9150611e2c82611dc5565b604082019050919050565b60006020820190508181036000830152611e5081611e14565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000611eb3603e8361187c565b9150611ebe82611e57565b604082019050919050565b60006020820190508181036000830152611ee281611ea6565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000611f45602e8361187c565b9150611f5082611ee9565b604082019050919050565b60006020820190508181036000830152611f7481611f38565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611fb160188361187c565b9150611fbc82611f7b565b602082019050919050565b60006020820190508181036000830152611fe081611fa4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061204360298361187c565b915061204e82611fe7565b604082019050919050565b6000602082019050818103600083015261207281612036565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120b38261192c565b91506120be8361192c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120f3576120f2612079565b5b828201905092915050565b7f4e6f2072616d656e206c65667400000000000000000000000000000000000000600082015250565b6000612134600d8361187c565b915061213f826120fe565b602082019050919050565b6000602082019050818103600083015261216381612127565b9050919050565b7f4c6561766520736f6d652072616d656e20666f7220746865206f74686572732060008201527f7365720000000000000000000000000000000000000000000000000000000000602082015250565b60006121c660238361187c565b91506121d18261216a565b604082019050919050565b600060208201905081810360008301526121f5816121b9565b9050919050565b60006122078261192c565b91506122128361192c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561224b5761224a612079565b5b828202905092915050565b7f496e666c6174696f6e207365722e20416464206d6f7265204554480000000000600082015250565b600061228c601b8361187c565b915061229782612256565b602082019050919050565b600060208201905081810360008301526122bb8161227f565b9050919050565b60006122cd8261192c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ff576122fe612079565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061236660258361187c565b91506123718261230a565b604082019050919050565b6000602082019050818103600083015261239581612359565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123f860248361187c565b91506124038261239c565b604082019050919050565b60006020820190508181036000830152612427816123eb565b9050919050565b60006124398261192c565b91506124448361192c565b92508282101561245757612456612079565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061249860198361187c565b91506124a382612462565b602082019050919050565b600060208201905081810360008301526124c78161248b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061252a60328361187c565b9150612535826124ce565b604082019050919050565b600060208201905081810360008301526125598161251d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061258782612560565b612591818561256b565b93506125a181856020860161188d565b6125aa816118c0565b840191505092915050565b60006080820190506125ca60008301876119c1565b6125d760208301866119c1565b6125e46040830185611a57565b81810360608301526125f6818461257c565b905095945050505050565b600081519050612610816117e2565b92915050565b60006020828403121561262c5761262b6117ac565b5b600061263a84828501612601565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061267960208361187c565b915061268482612643565b602082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006126e5601c8361187c565b91506126f0826126af565b602082019050919050565b60006020820190508181036000830152612714816126d8565b905091905056fe697066733a2f2f516d6164796f51583137356f336e3958717574654e646b58797739544d7633657264776d4e437465736a477a64382fa2646970667358221220bc56632f764c03d56cf044be4f2cc90f51437100ef69c08c14ba4300eee9263364736f6c634300080d0033
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.