Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint NFT | 15967842 | 819 days ago | IN | 1 ETH | 0.00182473 | ||||
Mint NFT | 15818614 | 840 days ago | IN | 1 ETH | 0.00457024 | ||||
Set Approval For... | 15793177 | 843 days ago | IN | 0 ETH | 0.00045238 | ||||
Set Approval For... | 15793177 | 843 days ago | IN | 0 ETH | 0.00078912 | ||||
Mint NFT | 15737611 | 851 days ago | IN | 1 ETH | 0.00198088 | ||||
Mint NFT | 15737604 | 851 days ago | IN | 1 ETH | 0.00169338 | ||||
Mint NFT | 15735602 | 851 days ago | IN | 1 ETH | 0.00293647 | ||||
Mint NFT | 15682478 | 859 days ago | IN | 1 ETH | 0.00477048 | ||||
Mint NFT | 15550160 | 877 days ago | IN | 1 ETH | 0.00106536 | ||||
Mint NFT | 15549649 | 877 days ago | IN | 1 ETH | 0.00107166 | ||||
Safe Transfer Fr... | 15500780 | 885 days ago | IN | 0 ETH | 0.00255335 | ||||
Mint NFT | 15445187 | 894 days ago | IN | 1 ETH | 0.00163274 | ||||
Mint NFT | 15445187 | 894 days ago | IN | 1 ETH | 0.00163274 | ||||
Mint NFT | 15443624 | 894 days ago | IN | 1 ETH | 0.0016399 | ||||
Mint NFT | 15443615 | 894 days ago | IN | 1 ETH | 0.00171633 | ||||
Mint NFT | 15433703 | 896 days ago | IN | 1 ETH | 0.00290705 | ||||
Mint NFT | 15433703 | 896 days ago | IN | 1 ETH | 0.00290705 | ||||
Mint NFT | 15433703 | 896 days ago | IN | 1 ETH | 0.00290705 | ||||
Mint NFT | 15433432 | 896 days ago | IN | 1 ETH | 0.00723794 | ||||
Mint NFT | 15433432 | 896 days ago | IN | 1 ETH | 0.00723794 | ||||
Mint NFT | 15420010 | 898 days ago | IN | 1 ETH | 0.00091952 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15967842 | 819 days ago | 1 ETH | ||||
15818614 | 840 days ago | 1 ETH | ||||
15737611 | 851 days ago | 1 ETH | ||||
15737604 | 851 days ago | 1 ETH | ||||
15735602 | 851 days ago | 1 ETH | ||||
15682478 | 859 days ago | 1 ETH | ||||
15550160 | 877 days ago | 1 ETH | ||||
15549649 | 877 days ago | 1 ETH | ||||
15445187 | 894 days ago | 1 ETH | ||||
15445187 | 894 days ago | 1 ETH | ||||
15443624 | 894 days ago | 1 ETH | ||||
15443615 | 894 days ago | 1 ETH | ||||
15433703 | 896 days ago | 1 ETH | ||||
15433703 | 896 days ago | 1 ETH | ||||
15433703 | 896 days ago | 1 ETH | ||||
15433432 | 896 days ago | 1 ETH | ||||
15433432 | 896 days ago | 1 ETH | ||||
15420010 | 898 days ago | 1 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
QueenOfBokNFT
Compiler Version
v0.8.9+commit.e5eed63a
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.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract QueenOfBokNFT is ERC721, ERC721URIStorage { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public constant maxSupply = 101; uint256 public constant mintPrice = 1 ether; event NewNFTMinted(address sender, uint256 tokenId); constructor() ERC721("QueenOfBokNFT", "QOB") {} function _baseURI() internal pure override returns (string memory) { return "https://storage.googleapis.com/queen-of-bok/round1/metadata.json"; } function mintNFT() public payable { address devFund = address(0x16d2E836DFd8b362B7791C38238c9256CA9154E0); require(msg.value == mintPrice, "WRONG_PRICE"); (bool sent, ) = payable(devFund).call{value: msg.value}(""); require(sent, "Failed to send Ether"); safeMint(msg.sender, _baseURI()); } function safeMint(address to, string memory uri) internal { uint256 tokenId = _tokenIdCounter.current(); require (_tokenIdCounter.current() < maxSupply); _tokenIdCounter.increment(); _safeMint(to, tokenId); _setTokenURI(tokenId, uri); emit NewNFTMinted(msg.sender, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } }
// 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 (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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 (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 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.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 (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/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/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 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" ] } }, "libraries": {} }
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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewNFTMinted","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":[],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f517565656e4f66426f6b4e4654000000000000000000000000000000000000008152506040518060400160405280600381526020017f514f420000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000197565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001b057607f821691505b60208210811415620001c757620001c662000168565b5b50919050565b612c2580620001dd6000396000f3fe6080604052600436106100f35760003560e01c80636817c76c1161008a578063b88d4fde11610059578063b88d4fde1461031b578063c87b56dd14610344578063d5abeb0114610381578063e985e9c5146103ac576100f3565b80636817c76c1461025f57806370a082311461028a57806395d89b41146102c7578063a22cb465146102f2576100f3565b806314f710fe116100c657806314f710fe146101c657806323b872dd146101d057806342842e0e146101f95780636352211e14610222576100f3565b806301ffc9a7146100f857806306fdde0314610135578063081812fc14610160578063095ea7b31461019d575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a9190611b6b565b6103e9565b60405161012c9190611bb3565b60405180910390f35b34801561014157600080fd5b5061014a6104cb565b6040516101579190611c67565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190611cbf565b61055d565b6040516101949190611d2d565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190611d74565b6105a3565b005b6101ce6106bb565b005b3480156101dc57600080fd5b506101f760048036038101906101f29190611db4565b6107df565b005b34801561020557600080fd5b50610220600480360381019061021b9190611db4565b61083f565b005b34801561022e57600080fd5b5061024960048036038101906102449190611cbf565b61085f565b6040516102569190611d2d565b60405180910390f35b34801561026b57600080fd5b50610274610911565b6040516102819190611e16565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190611e31565b61091d565b6040516102be9190611e16565b60405180910390f35b3480156102d357600080fd5b506102dc6109d5565b6040516102e99190611c67565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190611e8a565b610a67565b005b34801561032757600080fd5b50610342600480360381019061033d9190611fff565b610a7d565b005b34801561035057600080fd5b5061036b60048036038101906103669190611cbf565b610adf565b6040516103789190611c67565b60405180910390f35b34801561038d57600080fd5b50610396610af1565b6040516103a39190611e16565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612082565b610af6565b6040516103e09190611bb3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c457506104c382610b8a565b5b9050919050565b6060600080546104da906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610506906120f1565b80156105535780601f1061052857610100808354040283529160200191610553565b820191906000526020600020905b81548152906001019060200180831161053657829003601f168201915b5050505050905090565b600061056882610bf4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ae8261085f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690612195565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063e610c3f565b73ffffffffffffffffffffffffffffffffffffffff16148061066d575061066c81610667610c3f565b610af6565b5b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390612227565b60405180910390fd5b6106b68383610c47565b505050565b60007316d2e836dfd8b362b7791c38238c9256ca9154e09050670de0b6b3a7640000341461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590612293565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1634604051610744906122e4565b60006040518083038185875af1925050503d8060008114610781576040519150601f19603f3d011682016040523d82523d6000602084013e610786565b606091505b50509050806107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612345565b60405180910390fd5b6107db336107d6610d00565b610d20565b5050565b6107f06107ea610c3f565b82610da0565b61082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610826906123d7565b60405180910390fd5b61083a838383610e35565b505050565b61085a83838360405180602001604052806000815250610a7d565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612443565b60405180910390fd5b80915050919050565b670de0b6b3a764000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906124d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546109e4906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a10906120f1565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b610a79610a72610c3f565b838361109c565b5050565b610a8e610a88610c3f565b83610da0565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac4906123d7565b60405180910390fd5b610ad984848484611209565b50505050565b6060610aea82611265565b9050919050565b606581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bfd81611378565b610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390612443565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cba8361085f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060604051806060016040528060408152602001612bb060409139905090565b6000610d2c60076113e4565b90506065610d3a60076113e4565b10610d4457600080fd5b610d4e60076113f2565b610d588382611408565b610d628183611426565b7f1c05098ed1ff38e6238d2b1b04b2c7977d4c94ce651bda6473f9dba8dbf01da03382604051610d939291906124f5565b60405180910390a1505050565b600080610dac8361085f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dee5750610ded8185610af6565b5b80610e2c57508373ffffffffffffffffffffffffffffffffffffffff16610e148461055d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e558261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290612622565b60405180910390fd5b610f2683838361149a565b610f31600082610c47565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f819190612671565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd891906126a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109783838361149f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612747565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111fc9190611bb3565b60405180910390a3505050565b611214848484610e35565b611220848484846114a4565b61125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906127d9565b60405180910390fd5b50505050565b606061127082610bf4565b6000600660008481526020019081526020016000208054611290906120f1565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc906120f1565b80156113095780601f106112de57610100808354040283529160200191611309565b820191906000526020600020905b8154815290600101906020018083116112ec57829003601f168201915b50505050509050600061131a610d00565b9050600081511415611330578192505050611373565b60008251111561136557808260405160200161134d929190612835565b60405160208183030381529060405292505050611373565b61136e8461163b565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6114228282604051806020016040528060008152506116a3565b5050565b61142f82611378565b61146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906128cb565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611495929190611a5c565b505050565b505050565b505050565b60006114c58473ffffffffffffffffffffffffffffffffffffffff166116fe565b1561162e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026114ee610c3f565b8786866040518563ffffffff1660e01b81526004016115109493929190612940565b602060405180830381600087803b15801561152a57600080fd5b505af192505050801561155b57506040513d601f19601f8201168201806040525081019061155891906129a1565b60015b6115de573d806000811461158b576040519150601f19603f3d011682016040523d82523d6000602084013e611590565b606091505b506000815114156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906127d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611633565b600190505b949350505050565b606061164682610bf4565b6000611650610d00565b90506000815111611670576040518060200160405280600081525061169b565b8061167a84611721565b60405160200161168b929190612835565b6040516020818303038152906040525b915050919050565b6116ad8383611882565b6116ba60008484846114a4565b6116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906127d9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061187d565b600082905060005b6000821461179b578080611784906129ce565b915050600a826117949190612a46565b9150611771565b60008167ffffffffffffffff8111156117b7576117b6611ed4565b5b6040519080825280601f01601f1916602001820160405280156117e95781602001600182028036833780820191505090505b5090505b60008514611876576001826118029190612671565b9150600a856118119190612a77565b603061181d91906126a5565b60f81b81838151811061183357611832612aa8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561186f9190612a46565b94506117ed565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990612b23565b60405180910390fd5b6118fb81611378565b1561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290612b8f565b60405180910390fd5b6119476000838361149a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199791906126a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a586000838361149f565b5050565b828054611a68906120f1565b90600052602060002090601f016020900481019282611a8a5760008555611ad1565b82601f10611aa357805160ff1916838001178555611ad1565b82800160010185558215611ad1579182015b82811115611ad0578251825591602001919060010190611ab5565b5b509050611ade9190611ae2565b5090565b5b80821115611afb576000816000905550600101611ae3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b4881611b13565b8114611b5357600080fd5b50565b600081359050611b6581611b3f565b92915050565b600060208284031215611b8157611b80611b09565b5b6000611b8f84828501611b56565b91505092915050565b60008115159050919050565b611bad81611b98565b82525050565b6000602082019050611bc86000830184611ba4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c08578082015181840152602081019050611bed565b83811115611c17576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c3982611bce565b611c438185611bd9565b9350611c53818560208601611bea565b611c5c81611c1d565b840191505092915050565b60006020820190508181036000830152611c818184611c2e565b905092915050565b6000819050919050565b611c9c81611c89565b8114611ca757600080fd5b50565b600081359050611cb981611c93565b92915050565b600060208284031215611cd557611cd4611b09565b5b6000611ce384828501611caa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d1782611cec565b9050919050565b611d2781611d0c565b82525050565b6000602082019050611d426000830184611d1e565b92915050565b611d5181611d0c565b8114611d5c57600080fd5b50565b600081359050611d6e81611d48565b92915050565b60008060408385031215611d8b57611d8a611b09565b5b6000611d9985828601611d5f565b9250506020611daa85828601611caa565b9150509250929050565b600080600060608486031215611dcd57611dcc611b09565b5b6000611ddb86828701611d5f565b9350506020611dec86828701611d5f565b9250506040611dfd86828701611caa565b9150509250925092565b611e1081611c89565b82525050565b6000602082019050611e2b6000830184611e07565b92915050565b600060208284031215611e4757611e46611b09565b5b6000611e5584828501611d5f565b91505092915050565b611e6781611b98565b8114611e7257600080fd5b50565b600081359050611e8481611e5e565b92915050565b60008060408385031215611ea157611ea0611b09565b5b6000611eaf85828601611d5f565b9250506020611ec085828601611e75565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611f0c82611c1d565b810181811067ffffffffffffffff82111715611f2b57611f2a611ed4565b5b80604052505050565b6000611f3e611aff565b9050611f4a8282611f03565b919050565b600067ffffffffffffffff821115611f6a57611f69611ed4565b5b611f7382611c1d565b9050602081019050919050565b82818337600083830152505050565b6000611fa2611f9d84611f4f565b611f34565b905082815260208101848484011115611fbe57611fbd611ecf565b5b611fc9848285611f80565b509392505050565b600082601f830112611fe657611fe5611eca565b5b8135611ff6848260208601611f8f565b91505092915050565b6000806000806080858703121561201957612018611b09565b5b600061202787828801611d5f565b945050602061203887828801611d5f565b935050604061204987828801611caa565b925050606085013567ffffffffffffffff81111561206a57612069611b0e565b5b61207687828801611fd1565b91505092959194509250565b6000806040838503121561209957612098611b09565b5b60006120a785828601611d5f565b92505060206120b885828601611d5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061210957607f821691505b6020821081141561211d5761211c6120c2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061217f602183611bd9565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612211603e83611bd9565b915061221c826121b5565b604082019050919050565b6000602082019050818103600083015261224081612204565b9050919050565b7f57524f4e475f5052494345000000000000000000000000000000000000000000600082015250565b600061227d600b83611bd9565b915061228882612247565b602082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b600081905092915050565b50565b60006122ce6000836122b3565b91506122d9826122be565b600082019050919050565b60006122ef826122c1565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061232f601483611bd9565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006123c1602e83611bd9565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061242d601883611bd9565b9150612438826123f7565b602082019050919050565b6000602082019050818103600083015261245c81612420565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006124bf602983611bd9565b91506124ca82612463565b604082019050919050565b600060208201905081810360008301526124ee816124b2565b9050919050565b600060408201905061250a6000830185611d1e565b6125176020830184611e07565b9392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061257a602583611bd9565b91506125858261251e565b604082019050919050565b600060208201905081810360008301526125a98161256d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061260c602483611bd9565b9150612617826125b0565b604082019050919050565b6000602082019050818103600083015261263b816125ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061267c82611c89565b915061268783611c89565b92508282101561269a57612699612642565b5b828203905092915050565b60006126b082611c89565b91506126bb83611c89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126f0576126ef612642565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612731601983611bd9565b915061273c826126fb565b602082019050919050565b6000602082019050818103600083015261276081612724565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006127c3603283611bd9565b91506127ce82612767565b604082019050919050565b600060208201905081810360008301526127f2816127b6565b9050919050565b600081905092915050565b600061280f82611bce565b61281981856127f9565b9350612829818560208601611bea565b80840191505092915050565b60006128418285612804565b915061284d8284612804565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006128b5602e83611bd9565b91506128c082612859565b604082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612912826128eb565b61291c81856128f6565b935061292c818560208601611bea565b61293581611c1d565b840191505092915050565b60006080820190506129556000830187611d1e565b6129626020830186611d1e565b61296f6040830185611e07565b81810360608301526129818184612907565b905095945050505050565b60008151905061299b81611b3f565b92915050565b6000602082840312156129b7576129b6611b09565b5b60006129c58482850161298c565b91505092915050565b60006129d982611c89565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a0c57612a0b612642565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5182611c89565b9150612a5c83611c89565b925082612a6c57612a6b612a17565b5b828204905092915050565b6000612a8282611c89565b9150612a8d83611c89565b925082612a9d57612a9c612a17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612b0d602083611bd9565b9150612b1882612ad7565b602082019050919050565b60006020820190508181036000830152612b3c81612b00565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612b79601c83611bd9565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b905091905056fe68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f717565656e2d6f662d626f6b2f726f756e64312f6d657461646174612e6a736f6ea26469706673582212201839ad9a03ff14fe9d3356a96bfde015383c61ec053bb755be5c9ad45d50403064736f6c63430008090033
Deployed Bytecode
0x6080604052600436106100f35760003560e01c80636817c76c1161008a578063b88d4fde11610059578063b88d4fde1461031b578063c87b56dd14610344578063d5abeb0114610381578063e985e9c5146103ac576100f3565b80636817c76c1461025f57806370a082311461028a57806395d89b41146102c7578063a22cb465146102f2576100f3565b806314f710fe116100c657806314f710fe146101c657806323b872dd146101d057806342842e0e146101f95780636352211e14610222576100f3565b806301ffc9a7146100f857806306fdde0314610135578063081812fc14610160578063095ea7b31461019d575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a9190611b6b565b6103e9565b60405161012c9190611bb3565b60405180910390f35b34801561014157600080fd5b5061014a6104cb565b6040516101579190611c67565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190611cbf565b61055d565b6040516101949190611d2d565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190611d74565b6105a3565b005b6101ce6106bb565b005b3480156101dc57600080fd5b506101f760048036038101906101f29190611db4565b6107df565b005b34801561020557600080fd5b50610220600480360381019061021b9190611db4565b61083f565b005b34801561022e57600080fd5b5061024960048036038101906102449190611cbf565b61085f565b6040516102569190611d2d565b60405180910390f35b34801561026b57600080fd5b50610274610911565b6040516102819190611e16565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190611e31565b61091d565b6040516102be9190611e16565b60405180910390f35b3480156102d357600080fd5b506102dc6109d5565b6040516102e99190611c67565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190611e8a565b610a67565b005b34801561032757600080fd5b50610342600480360381019061033d9190611fff565b610a7d565b005b34801561035057600080fd5b5061036b60048036038101906103669190611cbf565b610adf565b6040516103789190611c67565b60405180910390f35b34801561038d57600080fd5b50610396610af1565b6040516103a39190611e16565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612082565b610af6565b6040516103e09190611bb3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c457506104c382610b8a565b5b9050919050565b6060600080546104da906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610506906120f1565b80156105535780601f1061052857610100808354040283529160200191610553565b820191906000526020600020905b81548152906001019060200180831161053657829003601f168201915b5050505050905090565b600061056882610bf4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ae8261085f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690612195565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063e610c3f565b73ffffffffffffffffffffffffffffffffffffffff16148061066d575061066c81610667610c3f565b610af6565b5b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390612227565b60405180910390fd5b6106b68383610c47565b505050565b60007316d2e836dfd8b362b7791c38238c9256ca9154e09050670de0b6b3a7640000341461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590612293565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1634604051610744906122e4565b60006040518083038185875af1925050503d8060008114610781576040519150601f19603f3d011682016040523d82523d6000602084013e610786565b606091505b50509050806107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612345565b60405180910390fd5b6107db336107d6610d00565b610d20565b5050565b6107f06107ea610c3f565b82610da0565b61082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610826906123d7565b60405180910390fd5b61083a838383610e35565b505050565b61085a83838360405180602001604052806000815250610a7d565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612443565b60405180910390fd5b80915050919050565b670de0b6b3a764000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906124d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546109e4906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a10906120f1565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b610a79610a72610c3f565b838361109c565b5050565b610a8e610a88610c3f565b83610da0565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac4906123d7565b60405180910390fd5b610ad984848484611209565b50505050565b6060610aea82611265565b9050919050565b606581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bfd81611378565b610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390612443565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cba8361085f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060604051806060016040528060408152602001612bb060409139905090565b6000610d2c60076113e4565b90506065610d3a60076113e4565b10610d4457600080fd5b610d4e60076113f2565b610d588382611408565b610d628183611426565b7f1c05098ed1ff38e6238d2b1b04b2c7977d4c94ce651bda6473f9dba8dbf01da03382604051610d939291906124f5565b60405180910390a1505050565b600080610dac8361085f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dee5750610ded8185610af6565b5b80610e2c57508373ffffffffffffffffffffffffffffffffffffffff16610e148461055d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e558261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290612622565b60405180910390fd5b610f2683838361149a565b610f31600082610c47565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f819190612671565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd891906126a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109783838361149f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612747565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111fc9190611bb3565b60405180910390a3505050565b611214848484610e35565b611220848484846114a4565b61125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906127d9565b60405180910390fd5b50505050565b606061127082610bf4565b6000600660008481526020019081526020016000208054611290906120f1565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc906120f1565b80156113095780601f106112de57610100808354040283529160200191611309565b820191906000526020600020905b8154815290600101906020018083116112ec57829003601f168201915b50505050509050600061131a610d00565b9050600081511415611330578192505050611373565b60008251111561136557808260405160200161134d929190612835565b60405160208183030381529060405292505050611373565b61136e8461163b565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6114228282604051806020016040528060008152506116a3565b5050565b61142f82611378565b61146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906128cb565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611495929190611a5c565b505050565b505050565b505050565b60006114c58473ffffffffffffffffffffffffffffffffffffffff166116fe565b1561162e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026114ee610c3f565b8786866040518563ffffffff1660e01b81526004016115109493929190612940565b602060405180830381600087803b15801561152a57600080fd5b505af192505050801561155b57506040513d601f19601f8201168201806040525081019061155891906129a1565b60015b6115de573d806000811461158b576040519150601f19603f3d011682016040523d82523d6000602084013e611590565b606091505b506000815114156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906127d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611633565b600190505b949350505050565b606061164682610bf4565b6000611650610d00565b90506000815111611670576040518060200160405280600081525061169b565b8061167a84611721565b60405160200161168b929190612835565b6040516020818303038152906040525b915050919050565b6116ad8383611882565b6116ba60008484846114a4565b6116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906127d9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061187d565b600082905060005b6000821461179b578080611784906129ce565b915050600a826117949190612a46565b9150611771565b60008167ffffffffffffffff8111156117b7576117b6611ed4565b5b6040519080825280601f01601f1916602001820160405280156117e95781602001600182028036833780820191505090505b5090505b60008514611876576001826118029190612671565b9150600a856118119190612a77565b603061181d91906126a5565b60f81b81838151811061183357611832612aa8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561186f9190612a46565b94506117ed565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990612b23565b60405180910390fd5b6118fb81611378565b1561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290612b8f565b60405180910390fd5b6119476000838361149a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199791906126a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a586000838361149f565b5050565b828054611a68906120f1565b90600052602060002090601f016020900481019282611a8a5760008555611ad1565b82601f10611aa357805160ff1916838001178555611ad1565b82800160010185558215611ad1579182015b82811115611ad0578251825591602001919060010190611ab5565b5b509050611ade9190611ae2565b5090565b5b80821115611afb576000816000905550600101611ae3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b4881611b13565b8114611b5357600080fd5b50565b600081359050611b6581611b3f565b92915050565b600060208284031215611b8157611b80611b09565b5b6000611b8f84828501611b56565b91505092915050565b60008115159050919050565b611bad81611b98565b82525050565b6000602082019050611bc86000830184611ba4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c08578082015181840152602081019050611bed565b83811115611c17576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c3982611bce565b611c438185611bd9565b9350611c53818560208601611bea565b611c5c81611c1d565b840191505092915050565b60006020820190508181036000830152611c818184611c2e565b905092915050565b6000819050919050565b611c9c81611c89565b8114611ca757600080fd5b50565b600081359050611cb981611c93565b92915050565b600060208284031215611cd557611cd4611b09565b5b6000611ce384828501611caa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d1782611cec565b9050919050565b611d2781611d0c565b82525050565b6000602082019050611d426000830184611d1e565b92915050565b611d5181611d0c565b8114611d5c57600080fd5b50565b600081359050611d6e81611d48565b92915050565b60008060408385031215611d8b57611d8a611b09565b5b6000611d9985828601611d5f565b9250506020611daa85828601611caa565b9150509250929050565b600080600060608486031215611dcd57611dcc611b09565b5b6000611ddb86828701611d5f565b9350506020611dec86828701611d5f565b9250506040611dfd86828701611caa565b9150509250925092565b611e1081611c89565b82525050565b6000602082019050611e2b6000830184611e07565b92915050565b600060208284031215611e4757611e46611b09565b5b6000611e5584828501611d5f565b91505092915050565b611e6781611b98565b8114611e7257600080fd5b50565b600081359050611e8481611e5e565b92915050565b60008060408385031215611ea157611ea0611b09565b5b6000611eaf85828601611d5f565b9250506020611ec085828601611e75565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611f0c82611c1d565b810181811067ffffffffffffffff82111715611f2b57611f2a611ed4565b5b80604052505050565b6000611f3e611aff565b9050611f4a8282611f03565b919050565b600067ffffffffffffffff821115611f6a57611f69611ed4565b5b611f7382611c1d565b9050602081019050919050565b82818337600083830152505050565b6000611fa2611f9d84611f4f565b611f34565b905082815260208101848484011115611fbe57611fbd611ecf565b5b611fc9848285611f80565b509392505050565b600082601f830112611fe657611fe5611eca565b5b8135611ff6848260208601611f8f565b91505092915050565b6000806000806080858703121561201957612018611b09565b5b600061202787828801611d5f565b945050602061203887828801611d5f565b935050604061204987828801611caa565b925050606085013567ffffffffffffffff81111561206a57612069611b0e565b5b61207687828801611fd1565b91505092959194509250565b6000806040838503121561209957612098611b09565b5b60006120a785828601611d5f565b92505060206120b885828601611d5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061210957607f821691505b6020821081141561211d5761211c6120c2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061217f602183611bd9565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612211603e83611bd9565b915061221c826121b5565b604082019050919050565b6000602082019050818103600083015261224081612204565b9050919050565b7f57524f4e475f5052494345000000000000000000000000000000000000000000600082015250565b600061227d600b83611bd9565b915061228882612247565b602082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b600081905092915050565b50565b60006122ce6000836122b3565b91506122d9826122be565b600082019050919050565b60006122ef826122c1565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061232f601483611bd9565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006123c1602e83611bd9565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061242d601883611bd9565b9150612438826123f7565b602082019050919050565b6000602082019050818103600083015261245c81612420565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006124bf602983611bd9565b91506124ca82612463565b604082019050919050565b600060208201905081810360008301526124ee816124b2565b9050919050565b600060408201905061250a6000830185611d1e565b6125176020830184611e07565b9392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061257a602583611bd9565b91506125858261251e565b604082019050919050565b600060208201905081810360008301526125a98161256d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061260c602483611bd9565b9150612617826125b0565b604082019050919050565b6000602082019050818103600083015261263b816125ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061267c82611c89565b915061268783611c89565b92508282101561269a57612699612642565b5b828203905092915050565b60006126b082611c89565b91506126bb83611c89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126f0576126ef612642565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612731601983611bd9565b915061273c826126fb565b602082019050919050565b6000602082019050818103600083015261276081612724565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006127c3603283611bd9565b91506127ce82612767565b604082019050919050565b600060208201905081810360008301526127f2816127b6565b9050919050565b600081905092915050565b600061280f82611bce565b61281981856127f9565b9350612829818560208601611bea565b80840191505092915050565b60006128418285612804565b915061284d8284612804565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006128b5602e83611bd9565b91506128c082612859565b604082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612912826128eb565b61291c81856128f6565b935061292c818560208601611bea565b61293581611c1d565b840191505092915050565b60006080820190506129556000830187611d1e565b6129626020830186611d1e565b61296f6040830185611e07565b81810360608301526129818184612907565b905095945050505050565b60008151905061299b81611b3f565b92915050565b6000602082840312156129b7576129b6611b09565b5b60006129c58482850161298c565b91505092915050565b60006129d982611c89565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a0c57612a0b612642565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5182611c89565b9150612a5c83611c89565b925082612a6c57612a6b612a17565b5b828204905092915050565b6000612a8282611c89565b9150612a8d83611c89565b925082612a9d57612a9c612a17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612b0d602083611bd9565b9150612b1882612ad7565b602082019050919050565b60006020820190508181036000830152612b3c81612b00565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612b79601c83611bd9565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b905091905056fe68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f717565656e2d6f662d626f6b2f726f756e64312f6d657461646174612e6a736f6ea26469706673582212201839ad9a03ff14fe9d3356a96bfde015383c61ec053bb755be5c9ad45d50403064736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.