Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 5,091 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24016216 | 4 days ago | IN | 0 ETH | 0.00001329 | ||||
| Set Approval For... | 24016215 | 4 days ago | IN | 0 ETH | 0.00001337 | ||||
| Set Approval For... | 24016214 | 4 days ago | IN | 0 ETH | 0.00001339 | ||||
| Set Approval For... | 24016184 | 4 days ago | IN | 0 ETH | 0.00001344 | ||||
| Set Approval For... | 24016182 | 4 days ago | IN | 0 ETH | 0.00001335 | ||||
| Set Approval For... | 23780218 | 37 days ago | IN | 0 ETH | 0.00000487 | ||||
| Set Approval For... | 23766713 | 39 days ago | IN | 0 ETH | 0.00009742 | ||||
| Set Approval For... | 23760328 | 40 days ago | IN | 0 ETH | 0.00004386 | ||||
| Set Approval For... | 23718474 | 46 days ago | IN | 0 ETH | 0.00005645 | ||||
| Set Approval For... | 23718331 | 46 days ago | IN | 0 ETH | 0.00005185 | ||||
| Set Approval For... | 23689098 | 50 days ago | IN | 0 ETH | 0.00001715 | ||||
| Set Approval For... | 23689098 | 50 days ago | IN | 0 ETH | 0.00001715 | ||||
| Set Approval For... | 23630586 | 58 days ago | IN | 0 ETH | 0.00001472 | ||||
| Set Approval For... | 23461580 | 82 days ago | IN | 0 ETH | 0.00004975 | ||||
| Set Approval For... | 23425256 | 87 days ago | IN | 0 ETH | 0.00001746 | ||||
| Set Approval For... | 23382693 | 93 days ago | IN | 0 ETH | 0.00006448 | ||||
| Set Approval For... | 23312850 | 103 days ago | IN | 0 ETH | 0.00000884 | ||||
| Set Approval For... | 23261931 | 110 days ago | IN | 0 ETH | 0.00001856 | ||||
| Set Approval For... | 23208980 | 117 days ago | IN | 0 ETH | 0.00000621 | ||||
| Set Approval For... | 22956875 | 152 days ago | IN | 0 ETH | 0.00006235 | ||||
| Set Approval For... | 22642534 | 196 days ago | IN | 0 ETH | 0.00006082 | ||||
| Set Approval For... | 22631534 | 198 days ago | IN | 0 ETH | 0.00018496 | ||||
| Set Approval For... | 22585081 | 204 days ago | IN | 0 ETH | 0.00011603 | ||||
| Set Approval For... | 22585080 | 204 days ago | IN | 0 ETH | 0.0001206 | ||||
| Set Approval For... | 22439126 | 225 days ago | IN | 0 ETH | 0.00046056 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
NFT
Compiler Version
v0.8.0+commit.c7dfd78e
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.0;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
contract NFT is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
using ECDSA for bytes32;
string _baseTokenURI;
Counters.Counter _tokenIds;
mapping(address => bool) public hasMinted;
uint256 public MAX_SUPPLY = 2048;
address private _signer = 0x9d2f3C9AF13CAA9109498f4703881a6135c2aA51;
constructor(
) ERC721("RSS3 Whitepaper", "RWP") {
_baseTokenURI = "ipfs://QmTMD6sLA7M4iegKDhbdMPBZ4HLi5fjW27w2J16gqc5Cb7/";
}
function mint(uint256 salt, bytes memory sig) public {
require(_verify(_hash(msg.sender, salt), sig), "Invalid token");
require(!hasMinted[msg.sender], "Already minted");
uint256 tokenId = totalSupply() + 1;
require(tokenId <= MAX_SUPPLY, "Max supply exceeded");
_safeMint(msg.sender, tokenId);
_tokenIds.increment();
hasMinted[msg.sender] = true;
}
function _hash(address _address, uint256 salt) internal view returns (bytes32) {
return keccak256(abi.encodePacked(_address, salt, address(this)));
}
function _verify(bytes32 hash, bytes memory sig) internal view returns (bool) {
return (_recover(hash, sig) == _signer);
}
function _recover(bytes32 hash, bytes memory sig) internal pure returns (address) {
return hash.toEthSignedMessageHash().recover(sig);
}
function totalSupply() public view returns (uint256) {
return _tokenIds.current();
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(_exists(tokenId), "URI query for nonexistent token");
return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), ".json"));
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
_baseTokenURI = _newBaseURI;
}
function setSigner(address account) public onlyOwner {
_signer = account;
}
}// 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);
}// 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/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// 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 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 v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
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: owner query for nonexistent token");
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) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
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: transfer caller is not 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: transfer caller is not 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) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
}
/**
* @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);
}
/**
* @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 of token that is not own");
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);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {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 a {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 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 {
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 {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052610800600a55739d2f3c9af13caa9109498f4703881a6135c2aa51600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006c57600080fd5b506040518060400160405280600f81526020017f52535333205768697465706170657200000000000000000000000000000000008152506040518060400160405280600381526020017f52575000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f192919062000233565b5080600190805190602001906200010a92919062000233565b5050506200012d620001216200016560201b60201c565b6200016d60201b60201c565b60405180606001604052806036815260200162003e9960369139600790805190602001906200015e92919062000233565b5062000348565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024190620002e3565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b60006002820490506001821680620002fc57607f821691505b6020821081141562000313576200031262000319565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b4180620003586000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636c19e783116100b8578063a22cb4651161007c578063a22cb46514610363578063b88d4fde1461037f578063c87b56dd1461039b578063db7fd408146103cb578063e985e9c5146103e7578063f2fde38b1461041757610142565b80636c19e783146102d157806370a08231146102ed578063715018a61461031d5780638da5cb5b1461032757806395d89b411461034557610142565b806323b872dd1161010a57806323b872dd146101ff57806332cb6b0c1461021b57806338e21cce1461023957806342842e0e1461026957806355f804b3146102855780636352211e146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061271a565b610433565b60405161016e9190613303565b60405180910390f35b61017f610515565b60405161018c9190613363565b60405180910390f35b6101af60048036038101906101aa91906127ad565b6105a7565b6040516101bc919061329c565b60405180910390f35b6101df60048036038101906101da91906126de565b61062c565b005b6101e9610744565b6040516101f69190613665565b60405180910390f35b610219600480360381019061021491906125d8565b610755565b005b6102236107b5565b6040516102309190613665565b60405180910390f35b610253600480360381019061024e9190612573565b6107bb565b6040516102609190613303565b60405180910390f35b610283600480360381019061027e91906125d8565b6107db565b005b61029f600480360381019061029a919061276c565b6107fb565b005b6102bb60048036038101906102b691906127ad565b610891565b6040516102c8919061329c565b60405180910390f35b6102eb60048036038101906102e69190612573565b610943565b005b61030760048036038101906103029190612573565b610a03565b6040516103149190613665565b60405180910390f35b610325610abb565b005b61032f610b43565b60405161033c919061329c565b60405180910390f35b61034d610b6d565b60405161035a9190613363565b60405180910390f35b61037d600480360381019061037891906126a2565b610bff565b005b61039960048036038101906103949190612627565b610c15565b005b6103b560048036038101906103b091906127ad565b610c77565b6040516103c29190613363565b60405180910390f35b6103e560048036038101906103e091906127d6565b610cf3565b005b61040160048036038101906103fc919061259c565b610ea0565b60405161040e9190613303565b60405180910390f35b610431600480360381019061042c9190612573565b610f34565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d8261102c565b5b9050919050565b606060008054610524906138f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610550906138f1565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282611096565b6105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e8906135c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063782610891565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90613625565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c7611102565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506106f5816106f0611102565b610ea0565b5b610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90613525565b60405180910390fd5b61073f838361110a565b505050565b600061075060086111c3565b905090565b610766610760611102565b826111d1565b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90613645565b60405180910390fd5b6107b08383836112af565b505050565b600a5481565b60096020528060005260406000206000915054906101000a900460ff1681565b6107f683838360405180602001604052806000815250610c15565b505050565b610803611102565b73ffffffffffffffffffffffffffffffffffffffff16610821610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906135e5565b60405180910390fd5b806007908051906020019061088d929190612397565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613565565b60405180910390fd5b80915050919050565b61094b611102565b73ffffffffffffffffffffffffffffffffffffffff16610969610b43565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906135e5565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613545565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac3611102565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906135e5565b60405180910390fd5b610b41600061150b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b7c906138f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba8906138f1565b8015610bf55780601f10610bca57610100808354040283529160200191610bf5565b820191906000526020600020905b815481529060010190602001808311610bd857829003601f168201915b5050505050905090565b610c11610c0a611102565b83836115d1565b5050565b610c26610c20611102565b836111d1565b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613645565b60405180910390fd5b610c718484848461173e565b50505050565b6060610c8282611096565b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613405565b60405180910390fd5b6007610ccc8361179a565b604051602001610cdd929190613247565b6040516020818303038152906040529050919050565b610d06610d003384611947565b8261197c565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613505565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906133a5565b60405180910390fd5b60006001610dde610744565b610de89190613769565b9050600a54811115610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906133c5565b60405180910390fd5b610e3933826119e0565b610e4360086119fe565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f3c611102565b73ffffffffffffffffffffffffffffffffffffffff16610f5a610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906135e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613445565b60405180910390fd5b6110298161150b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661117d83610891565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006111dc82611096565b61121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906134e5565b60405180910390fd5b600061122683610891565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061129557508373ffffffffffffffffffffffffffffffffffffffff1661127d846105a7565b73ffffffffffffffffffffffffffffffffffffffff16145b806112a657506112a58185610ea0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112cf82610891565b73ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613605565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613485565b60405180910390fd5b6113a0838383611a14565b6113ab60008261110a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fb91906137f0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114529190613769565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906134a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117319190613303565b60405180910390a3505050565b6117498484846112af565b61175584848484611a19565b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90613425565b60405180910390fd5b50505050565b606060008214156117e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611942565b600082905060005b600082146118145780806117fd90613923565b915050600a8261180d91906137bf565b91506117ea565b60008167ffffffffffffffff811115611856577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118885781602001600182028036833780820191505090505b5090505b6000851461193b576001826118a191906137f0565b9150600a856118b091906139a4565b60306118bc9190613769565b60f81b8183815181106118f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561193491906137bf565b945061188c565b8093505050505b919050565b600082823060405160200161195e9392919061320a565b60405160208183030381529060405280519060200120905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119c18484611bb0565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6119fa828260405180602001604052806000815250611bd5565b5050565b6001816000016000828254019250508190555050565b505050565b6000611a3a8473ffffffffffffffffffffffffffffffffffffffff16611c30565b15611ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a63611102565b8786866040518563ffffffff1660e01b8152600401611a8594939291906132b7565b602060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611ad057506040513d601f19601f82011682018060405250810190611acd9190612743565b60015b611b53573d8060008114611b00576040519150601f19603f3d011682016040523d82523d6000602084013e611b05565b606091505b50600081511415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613425565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ba8565b600190505b949350505050565b6000611bcd82611bbf85611c43565b611c7390919063ffffffff16565b905092915050565b611bdf8383611c9a565b611bec6000848484611a19565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613425565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600081604051602001611c569190613276565b604051602081830303815290604052805190602001209050919050565b6000806000611c828585611e68565b91509150611c8f81611eeb565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906135a5565b60405180910390fd5b611d1381611096565b15611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613465565b60405180910390fd5b611d5f60008383611a14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611daf9190613769565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080604183511415611eaa5760008060006020860151925060408601519150606086015160001a9050611e9e8782858561223c565b94509450505050611ee4565b604083511415611edb576000806020850151915060408501519050611ed0868383612349565b935093505050611ee4565b60006002915091505b9250929050565b60006004811115611f25577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f6957612239565b60016004811115611fa3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611fdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613385565b60405180910390fd5b60026004811115612057577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612090577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c8906133e5565b60405180910390fd5b6003600481111561210b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612144577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906134c5565b60405180910390fd5b6004808111156121be577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90613585565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612277576000600391509150612340565b601b8560ff161415801561228f5750601c8560ff1614155b156122a1576000600491509150612340565b6000600187878787604051600081526020016040526040516122c6949392919061331e565b6020604051602081039080840390855afa1580156122e8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561233757600060019250925050612340565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506123898782888561223c565b935093505050935093915050565b8280546123a3906138f1565b90600052602060002090601f0160209004810192826123c5576000855561240c565b82601f106123de57805160ff191683800117855561240c565b8280016001018555821561240c579182015b8281111561240b5782518255916020019190600101906123f0565b5b509050612419919061241d565b5090565b5b8082111561243657600081600090555060010161241e565b5090565b600061244d612448846136b1565b613680565b90508281526020810184848401111561246557600080fd5b6124708482856138af565b509392505050565b600061248b612486846136e1565b613680565b9050828152602081018484840111156124a357600080fd5b6124ae8482856138af565b509392505050565b6000813590506124c581613aaf565b92915050565b6000813590506124da81613ac6565b92915050565b6000813590506124ef81613add565b92915050565b60008151905061250481613add565b92915050565b600082601f83011261251b57600080fd5b813561252b84826020860161243a565b91505092915050565b600082601f83011261254557600080fd5b8135612555848260208601612478565b91505092915050565b60008135905061256d81613af4565b92915050565b60006020828403121561258557600080fd5b6000612593848285016124b6565b91505092915050565b600080604083850312156125af57600080fd5b60006125bd858286016124b6565b92505060206125ce858286016124b6565b9150509250929050565b6000806000606084860312156125ed57600080fd5b60006125fb868287016124b6565b935050602061260c868287016124b6565b925050604061261d8682870161255e565b9150509250925092565b6000806000806080858703121561263d57600080fd5b600061264b878288016124b6565b945050602061265c878288016124b6565b935050604061266d8782880161255e565b925050606085013567ffffffffffffffff81111561268a57600080fd5b6126968782880161250a565b91505092959194509250565b600080604083850312156126b557600080fd5b60006126c3858286016124b6565b92505060206126d4858286016124cb565b9150509250929050565b600080604083850312156126f157600080fd5b60006126ff858286016124b6565b92505060206127108582860161255e565b9150509250929050565b60006020828403121561272c57600080fd5b600061273a848285016124e0565b91505092915050565b60006020828403121561275557600080fd5b6000612763848285016124f5565b91505092915050565b60006020828403121561277e57600080fd5b600082013567ffffffffffffffff81111561279857600080fd5b6127a484828501612534565b91505092915050565b6000602082840312156127bf57600080fd5b60006127cd8482850161255e565b91505092915050565b600080604083850312156127e957600080fd5b60006127f78582860161255e565b925050602083013567ffffffffffffffff81111561281457600080fd5b6128208582860161250a565b9150509250929050565b61283381613824565b82525050565b61284a61284582613824565b61396c565b82525050565b61285981613836565b82525050565b61286881613842565b82525050565b61287f61287a82613842565b61397e565b82525050565b600061289082613726565b61289a818561373c565b93506128aa8185602086016138be565b6128b381613a91565b840191505092915050565b60006128c982613731565b6128d3818561374d565b93506128e38185602086016138be565b6128ec81613a91565b840191505092915050565b600061290282613731565b61290c818561375e565b935061291c8185602086016138be565b80840191505092915050565b60008154612935816138f1565b61293f818661375e565b9450600182166000811461295a576001811461296b5761299e565b60ff1983168652818601935061299e565b61297485613711565b60005b8381101561299657815481890152600182019150602081019050612977565b838801955050505b50505092915050565b60006129b460188361374d565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006129f4600e8361374d565b91507f416c7265616479206d696e7465640000000000000000000000000000000000006000830152602082019050919050565b6000612a3460138361374d565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b6000612a74601f8361374d565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000612ab4601c8361375e565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000612af4601f8361374d565b91507f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006000830152602082019050919050565b6000612b3460328361374d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612b9a60268361374d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c00601c8361374d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612c4060248361374d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca660198361374d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ce660228361374d565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d4c602c8361374d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612db2600d8361374d565b91507f496e76616c696420746f6b656e000000000000000000000000000000000000006000830152602082019050919050565b6000612df260388361374d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612e58602a8361374d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ebe60298361374d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f2460228361374d565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a60208361374d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612fca602c8361374d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061303060058361375e565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061307060208361374d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006130b060298361374d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061311660218361374d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061317c60318361374d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6131de81613898565b82525050565b6131f56131f082613898565b61399a565b82525050565b613204816138a2565b82525050565b60006132168286612839565b60148201915061322682856131e4565b6020820191506132368284612839565b601482019150819050949350505050565b60006132538285612928565b915061325f82846128f7565b915061326a82613023565b91508190509392505050565b600061328182612aa7565b915061328d828461286e565b60208201915081905092915050565b60006020820190506132b1600083018461282a565b92915050565b60006080820190506132cc600083018761282a565b6132d9602083018661282a565b6132e660408301856131d5565b81810360608301526132f88184612885565b905095945050505050565b60006020820190506133186000830184612850565b92915050565b6000608082019050613333600083018761285f565b61334060208301866131fb565b61334d604083018561285f565b61335a606083018461285f565b95945050505050565b6000602082019050818103600083015261337d81846128be565b905092915050565b6000602082019050818103600083015261339e816129a7565b9050919050565b600060208201905081810360008301526133be816129e7565b9050919050565b600060208201905081810360008301526133de81612a27565b9050919050565b600060208201905081810360008301526133fe81612a67565b9050919050565b6000602082019050818103600083015261341e81612ae7565b9050919050565b6000602082019050818103600083015261343e81612b27565b9050919050565b6000602082019050818103600083015261345e81612b8d565b9050919050565b6000602082019050818103600083015261347e81612bf3565b9050919050565b6000602082019050818103600083015261349e81612c33565b9050919050565b600060208201905081810360008301526134be81612c99565b9050919050565b600060208201905081810360008301526134de81612cd9565b9050919050565b600060208201905081810360008301526134fe81612d3f565b9050919050565b6000602082019050818103600083015261351e81612da5565b9050919050565b6000602082019050818103600083015261353e81612de5565b9050919050565b6000602082019050818103600083015261355e81612e4b565b9050919050565b6000602082019050818103600083015261357e81612eb1565b9050919050565b6000602082019050818103600083015261359e81612f17565b9050919050565b600060208201905081810360008301526135be81612f7d565b9050919050565b600060208201905081810360008301526135de81612fbd565b9050919050565b600060208201905081810360008301526135fe81613063565b9050919050565b6000602082019050818103600083015261361e816130a3565b9050919050565b6000602082019050818103600083015261363e81613109565b9050919050565b6000602082019050818103600083015261365e8161316f565b9050919050565b600060208201905061367a60008301846131d5565b92915050565b6000604051905081810181811067ffffffffffffffff821117156136a7576136a6613a62565b5b8060405250919050565b600067ffffffffffffffff8211156136cc576136cb613a62565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156136fc576136fb613a62565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377482613898565b915061377f83613898565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b4576137b36139d5565b5b828201905092915050565b60006137ca82613898565b91506137d583613898565b9250826137e5576137e4613a04565b5b828204905092915050565b60006137fb82613898565b915061380683613898565b925082821015613819576138186139d5565b5b828203905092915050565b600061382f82613878565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138dc5780820151818401526020810190506138c1565b838111156138eb576000848401525b50505050565b6000600282049050600182168061390957607f821691505b6020821081141561391d5761391c613a33565b5b50919050565b600061392e82613898565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613961576139606139d5565b5b600182019050919050565b600061397782613988565b9050919050565b6000819050919050565b600061399382613aa2565b9050919050565b6000819050919050565b60006139af82613898565b91506139ba83613898565b9250826139ca576139c9613a04565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613ab881613824565b8114613ac357600080fd5b50565b613acf81613836565b8114613ada57600080fd5b50565b613ae68161384c565b8114613af157600080fd5b50565b613afd81613898565b8114613b0857600080fd5b5056fea26469706673582212209b9ec4c90eb5dfd9b3a57340aa38df2d47bbb13fc355822bd5dbefcc0ba40a4364736f6c63430008000033697066733a2f2f516d544d4436734c41374d346965674b446862644d50425a34484c6935666a57323777324a3136677163354362372f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636c19e783116100b8578063a22cb4651161007c578063a22cb46514610363578063b88d4fde1461037f578063c87b56dd1461039b578063db7fd408146103cb578063e985e9c5146103e7578063f2fde38b1461041757610142565b80636c19e783146102d157806370a08231146102ed578063715018a61461031d5780638da5cb5b1461032757806395d89b411461034557610142565b806323b872dd1161010a57806323b872dd146101ff57806332cb6b0c1461021b57806338e21cce1461023957806342842e0e1461026957806355f804b3146102855780636352211e146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061271a565b610433565b60405161016e9190613303565b60405180910390f35b61017f610515565b60405161018c9190613363565b60405180910390f35b6101af60048036038101906101aa91906127ad565b6105a7565b6040516101bc919061329c565b60405180910390f35b6101df60048036038101906101da91906126de565b61062c565b005b6101e9610744565b6040516101f69190613665565b60405180910390f35b610219600480360381019061021491906125d8565b610755565b005b6102236107b5565b6040516102309190613665565b60405180910390f35b610253600480360381019061024e9190612573565b6107bb565b6040516102609190613303565b60405180910390f35b610283600480360381019061027e91906125d8565b6107db565b005b61029f600480360381019061029a919061276c565b6107fb565b005b6102bb60048036038101906102b691906127ad565b610891565b6040516102c8919061329c565b60405180910390f35b6102eb60048036038101906102e69190612573565b610943565b005b61030760048036038101906103029190612573565b610a03565b6040516103149190613665565b60405180910390f35b610325610abb565b005b61032f610b43565b60405161033c919061329c565b60405180910390f35b61034d610b6d565b60405161035a9190613363565b60405180910390f35b61037d600480360381019061037891906126a2565b610bff565b005b61039960048036038101906103949190612627565b610c15565b005b6103b560048036038101906103b091906127ad565b610c77565b6040516103c29190613363565b60405180910390f35b6103e560048036038101906103e091906127d6565b610cf3565b005b61040160048036038101906103fc919061259c565b610ea0565b60405161040e9190613303565b60405180910390f35b610431600480360381019061042c9190612573565b610f34565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d8261102c565b5b9050919050565b606060008054610524906138f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610550906138f1565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282611096565b6105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e8906135c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063782610891565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90613625565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c7611102565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506106f5816106f0611102565b610ea0565b5b610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90613525565b60405180910390fd5b61073f838361110a565b505050565b600061075060086111c3565b905090565b610766610760611102565b826111d1565b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90613645565b60405180910390fd5b6107b08383836112af565b505050565b600a5481565b60096020528060005260406000206000915054906101000a900460ff1681565b6107f683838360405180602001604052806000815250610c15565b505050565b610803611102565b73ffffffffffffffffffffffffffffffffffffffff16610821610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906135e5565b60405180910390fd5b806007908051906020019061088d929190612397565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613565565b60405180910390fd5b80915050919050565b61094b611102565b73ffffffffffffffffffffffffffffffffffffffff16610969610b43565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906135e5565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613545565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac3611102565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906135e5565b60405180910390fd5b610b41600061150b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b7c906138f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba8906138f1565b8015610bf55780601f10610bca57610100808354040283529160200191610bf5565b820191906000526020600020905b815481529060010190602001808311610bd857829003601f168201915b5050505050905090565b610c11610c0a611102565b83836115d1565b5050565b610c26610c20611102565b836111d1565b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613645565b60405180910390fd5b610c718484848461173e565b50505050565b6060610c8282611096565b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613405565b60405180910390fd5b6007610ccc8361179a565b604051602001610cdd929190613247565b6040516020818303038152906040529050919050565b610d06610d003384611947565b8261197c565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613505565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906133a5565b60405180910390fd5b60006001610dde610744565b610de89190613769565b9050600a54811115610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906133c5565b60405180910390fd5b610e3933826119e0565b610e4360086119fe565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f3c611102565b73ffffffffffffffffffffffffffffffffffffffff16610f5a610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906135e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613445565b60405180910390fd5b6110298161150b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661117d83610891565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006111dc82611096565b61121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906134e5565b60405180910390fd5b600061122683610891565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061129557508373ffffffffffffffffffffffffffffffffffffffff1661127d846105a7565b73ffffffffffffffffffffffffffffffffffffffff16145b806112a657506112a58185610ea0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112cf82610891565b73ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613605565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613485565b60405180910390fd5b6113a0838383611a14565b6113ab60008261110a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fb91906137f0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114529190613769565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906134a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117319190613303565b60405180910390a3505050565b6117498484846112af565b61175584848484611a19565b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90613425565b60405180910390fd5b50505050565b606060008214156117e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611942565b600082905060005b600082146118145780806117fd90613923565b915050600a8261180d91906137bf565b91506117ea565b60008167ffffffffffffffff811115611856577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118885781602001600182028036833780820191505090505b5090505b6000851461193b576001826118a191906137f0565b9150600a856118b091906139a4565b60306118bc9190613769565b60f81b8183815181106118f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561193491906137bf565b945061188c565b8093505050505b919050565b600082823060405160200161195e9392919061320a565b60405160208183030381529060405280519060200120905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119c18484611bb0565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6119fa828260405180602001604052806000815250611bd5565b5050565b6001816000016000828254019250508190555050565b505050565b6000611a3a8473ffffffffffffffffffffffffffffffffffffffff16611c30565b15611ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a63611102565b8786866040518563ffffffff1660e01b8152600401611a8594939291906132b7565b602060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611ad057506040513d601f19601f82011682018060405250810190611acd9190612743565b60015b611b53573d8060008114611b00576040519150601f19603f3d011682016040523d82523d6000602084013e611b05565b606091505b50600081511415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613425565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ba8565b600190505b949350505050565b6000611bcd82611bbf85611c43565b611c7390919063ffffffff16565b905092915050565b611bdf8383611c9a565b611bec6000848484611a19565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613425565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600081604051602001611c569190613276565b604051602081830303815290604052805190602001209050919050565b6000806000611c828585611e68565b91509150611c8f81611eeb565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906135a5565b60405180910390fd5b611d1381611096565b15611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613465565b60405180910390fd5b611d5f60008383611a14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611daf9190613769565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080604183511415611eaa5760008060006020860151925060408601519150606086015160001a9050611e9e8782858561223c565b94509450505050611ee4565b604083511415611edb576000806020850151915060408501519050611ed0868383612349565b935093505050611ee4565b60006002915091505b9250929050565b60006004811115611f25577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f6957612239565b60016004811115611fa3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611fdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613385565b60405180910390fd5b60026004811115612057577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612090577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c8906133e5565b60405180910390fd5b6003600481111561210b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612144577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c906134c5565b60405180910390fd5b6004808111156121be577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90613585565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612277576000600391509150612340565b601b8560ff161415801561228f5750601c8560ff1614155b156122a1576000600491509150612340565b6000600187878787604051600081526020016040526040516122c6949392919061331e565b6020604051602081039080840390855afa1580156122e8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561233757600060019250925050612340565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506123898782888561223c565b935093505050935093915050565b8280546123a3906138f1565b90600052602060002090601f0160209004810192826123c5576000855561240c565b82601f106123de57805160ff191683800117855561240c565b8280016001018555821561240c579182015b8281111561240b5782518255916020019190600101906123f0565b5b509050612419919061241d565b5090565b5b8082111561243657600081600090555060010161241e565b5090565b600061244d612448846136b1565b613680565b90508281526020810184848401111561246557600080fd5b6124708482856138af565b509392505050565b600061248b612486846136e1565b613680565b9050828152602081018484840111156124a357600080fd5b6124ae8482856138af565b509392505050565b6000813590506124c581613aaf565b92915050565b6000813590506124da81613ac6565b92915050565b6000813590506124ef81613add565b92915050565b60008151905061250481613add565b92915050565b600082601f83011261251b57600080fd5b813561252b84826020860161243a565b91505092915050565b600082601f83011261254557600080fd5b8135612555848260208601612478565b91505092915050565b60008135905061256d81613af4565b92915050565b60006020828403121561258557600080fd5b6000612593848285016124b6565b91505092915050565b600080604083850312156125af57600080fd5b60006125bd858286016124b6565b92505060206125ce858286016124b6565b9150509250929050565b6000806000606084860312156125ed57600080fd5b60006125fb868287016124b6565b935050602061260c868287016124b6565b925050604061261d8682870161255e565b9150509250925092565b6000806000806080858703121561263d57600080fd5b600061264b878288016124b6565b945050602061265c878288016124b6565b935050604061266d8782880161255e565b925050606085013567ffffffffffffffff81111561268a57600080fd5b6126968782880161250a565b91505092959194509250565b600080604083850312156126b557600080fd5b60006126c3858286016124b6565b92505060206126d4858286016124cb565b9150509250929050565b600080604083850312156126f157600080fd5b60006126ff858286016124b6565b92505060206127108582860161255e565b9150509250929050565b60006020828403121561272c57600080fd5b600061273a848285016124e0565b91505092915050565b60006020828403121561275557600080fd5b6000612763848285016124f5565b91505092915050565b60006020828403121561277e57600080fd5b600082013567ffffffffffffffff81111561279857600080fd5b6127a484828501612534565b91505092915050565b6000602082840312156127bf57600080fd5b60006127cd8482850161255e565b91505092915050565b600080604083850312156127e957600080fd5b60006127f78582860161255e565b925050602083013567ffffffffffffffff81111561281457600080fd5b6128208582860161250a565b9150509250929050565b61283381613824565b82525050565b61284a61284582613824565b61396c565b82525050565b61285981613836565b82525050565b61286881613842565b82525050565b61287f61287a82613842565b61397e565b82525050565b600061289082613726565b61289a818561373c565b93506128aa8185602086016138be565b6128b381613a91565b840191505092915050565b60006128c982613731565b6128d3818561374d565b93506128e38185602086016138be565b6128ec81613a91565b840191505092915050565b600061290282613731565b61290c818561375e565b935061291c8185602086016138be565b80840191505092915050565b60008154612935816138f1565b61293f818661375e565b9450600182166000811461295a576001811461296b5761299e565b60ff1983168652818601935061299e565b61297485613711565b60005b8381101561299657815481890152600182019150602081019050612977565b838801955050505b50505092915050565b60006129b460188361374d565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006129f4600e8361374d565b91507f416c7265616479206d696e7465640000000000000000000000000000000000006000830152602082019050919050565b6000612a3460138361374d565b91507f4d617820737570706c79206578636565646564000000000000000000000000006000830152602082019050919050565b6000612a74601f8361374d565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000612ab4601c8361375e565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000612af4601f8361374d565b91507f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006000830152602082019050919050565b6000612b3460328361374d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612b9a60268361374d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c00601c8361374d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612c4060248361374d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca660198361374d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ce660228361374d565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d4c602c8361374d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612db2600d8361374d565b91507f496e76616c696420746f6b656e000000000000000000000000000000000000006000830152602082019050919050565b6000612df260388361374d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612e58602a8361374d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ebe60298361374d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f2460228361374d565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a60208361374d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612fca602c8361374d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061303060058361375e565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061307060208361374d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006130b060298361374d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061311660218361374d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061317c60318361374d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6131de81613898565b82525050565b6131f56131f082613898565b61399a565b82525050565b613204816138a2565b82525050565b60006132168286612839565b60148201915061322682856131e4565b6020820191506132368284612839565b601482019150819050949350505050565b60006132538285612928565b915061325f82846128f7565b915061326a82613023565b91508190509392505050565b600061328182612aa7565b915061328d828461286e565b60208201915081905092915050565b60006020820190506132b1600083018461282a565b92915050565b60006080820190506132cc600083018761282a565b6132d9602083018661282a565b6132e660408301856131d5565b81810360608301526132f88184612885565b905095945050505050565b60006020820190506133186000830184612850565b92915050565b6000608082019050613333600083018761285f565b61334060208301866131fb565b61334d604083018561285f565b61335a606083018461285f565b95945050505050565b6000602082019050818103600083015261337d81846128be565b905092915050565b6000602082019050818103600083015261339e816129a7565b9050919050565b600060208201905081810360008301526133be816129e7565b9050919050565b600060208201905081810360008301526133de81612a27565b9050919050565b600060208201905081810360008301526133fe81612a67565b9050919050565b6000602082019050818103600083015261341e81612ae7565b9050919050565b6000602082019050818103600083015261343e81612b27565b9050919050565b6000602082019050818103600083015261345e81612b8d565b9050919050565b6000602082019050818103600083015261347e81612bf3565b9050919050565b6000602082019050818103600083015261349e81612c33565b9050919050565b600060208201905081810360008301526134be81612c99565b9050919050565b600060208201905081810360008301526134de81612cd9565b9050919050565b600060208201905081810360008301526134fe81612d3f565b9050919050565b6000602082019050818103600083015261351e81612da5565b9050919050565b6000602082019050818103600083015261353e81612de5565b9050919050565b6000602082019050818103600083015261355e81612e4b565b9050919050565b6000602082019050818103600083015261357e81612eb1565b9050919050565b6000602082019050818103600083015261359e81612f17565b9050919050565b600060208201905081810360008301526135be81612f7d565b9050919050565b600060208201905081810360008301526135de81612fbd565b9050919050565b600060208201905081810360008301526135fe81613063565b9050919050565b6000602082019050818103600083015261361e816130a3565b9050919050565b6000602082019050818103600083015261363e81613109565b9050919050565b6000602082019050818103600083015261365e8161316f565b9050919050565b600060208201905061367a60008301846131d5565b92915050565b6000604051905081810181811067ffffffffffffffff821117156136a7576136a6613a62565b5b8060405250919050565b600067ffffffffffffffff8211156136cc576136cb613a62565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156136fc576136fb613a62565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377482613898565b915061377f83613898565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b4576137b36139d5565b5b828201905092915050565b60006137ca82613898565b91506137d583613898565b9250826137e5576137e4613a04565b5b828204905092915050565b60006137fb82613898565b915061380683613898565b925082821015613819576138186139d5565b5b828203905092915050565b600061382f82613878565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138dc5780820151818401526020810190506138c1565b838111156138eb576000848401525b50505050565b6000600282049050600182168061390957607f821691505b6020821081141561391d5761391c613a33565b5b50919050565b600061392e82613898565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613961576139606139d5565b5b600182019050919050565b600061397782613988565b9050919050565b6000819050919050565b600061399382613aa2565b9050919050565b6000819050919050565b60006139af82613898565b91506139ba83613898565b9250826139ca576139c9613a04565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613ab881613824565b8114613ac357600080fd5b50565b613acf81613836565b8114613ada57600080fd5b50565b613ae68161384c565b8114613af157600080fd5b50565b613afd81613898565b8114613b0857600080fd5b5056fea26469706673582212209b9ec4c90eb5dfd9b3a57340aa38df2d47bbb13fc355822bd5dbefcc0ba40a4364736f6c63430008000033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.