Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MegaToadsV2
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
petersburg EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; /** * @title MegaToads contract * @dev Extends ERC721Enumerable Non-Fungible Token Standard basic implementation */ /** * SPDX-License-Identifier: UNLICENSED */ /* _____ ___________ .___ / \ ____ _________\__ ___/________ __| _/______ / \ / \_/ __ \ / ___\__ \ | | / _ \__ \ / __ |/ ___/ / Y \ ___// /_/ > __ \| |( <_> ) __ \_/ /_/ |\___ \ \____|__ /\___ >___ (____ /____| \____(____ /\____ /____ > \/ \/_____/ \/ \/ \/ \/ */ import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; interface IfrogV2 { function ownerOf(uint tokenId) external view returns (address); function anim(uint tokenId) external view returns (uint); function getTrait(uint frogTokenId, uint traitType) external view returns (uint8); function burnForToads(uint frogTokenId) external; } interface IVoltV2 { function balanceOf(address user) external returns(uint); function spend(address user, uint256 amount) external; function mint(address to, uint256 amount) external; } contract MegaToadsV2 is ERC721EnumerableUpgradeable, OwnableUpgradeable{ uint256 public constant MAX_TOADS = 1000; uint256 public constant NUM_TRAITS = 6; uint256 public constant MAX_SUPERS = 20; bool public saleIsActive; IfrogV2 public Frog; IVoltV2 public VOLTAGE; uint256 public numSupers; uint8[NUM_TRAITS][MAX_TOADS] internal toadTraits; string internal baseURI; /** * Frankenstein some thicc */ function mintToad(uint[] memory frogIds, uint[] memory frogIndicesToUseForTraits) public { require(frogIds.length == 3, "Requires 3 frogs"); require(frogIndicesToUseForTraits.length == 5, "Requires 5 frogs to use for traits."); require(saleIsActive, "Sale must be active to mint toad"); require(totalSupply() + 1 <= MAX_TOADS, "Purchase would exceed max supply of toads"); uint toadAnim = 0; for(uint i = 0; i < 5; i++){ toadTraits[totalSupply()][i] = Frog.getTrait(frogIds[frogIndicesToUseForTraits[i]], i); } for(uint i = 0; i < 3; i++){ uint frogAnim = Frog.anim(frogIds[i]); require(Frog.ownerOf(frogIds[i]) == msg.sender, "You do not own every frog"); require(frogAnim > 0, "Not every frog has Melvin's Blessing"); Frog.burnForToads(frogIds[i]); toadAnim += frogAnim - 1; } toadTraits[totalSupply()][5] = uint8(toadAnim); VOLTAGE.spend(msg.sender, (1000 + totalSupply() * 9) * (10 ** 18)); _safeMint(msg.sender, totalSupply()); } function getTraits(uint tokenId) public view returns (uint, uint, uint, uint, uint, uint) { require(_exists(tokenId), "ERC721Metadata: Trait query for nonexistent token"); return (toadTraits[tokenId][0], toadTraits[tokenId][1], toadTraits[tokenId][2], toadTraits[tokenId][3], toadTraits[tokenId][4], toadTraits[tokenId][5] ); } function _setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function startSale() external onlyOwner { require(saleIsActive == false, "Sale is already started"); saleIsActive = true; } function pauseSale() external onlyOwner { require(saleIsActive == true, "Sale is already paused"); saleIsActive = false; } function setFrog(address FrogAddy) external onlyOwner { Frog = IfrogV2(FrogAddy); } function setVoltage(address VOLTaddy) external onlyOwner { VOLTAGE = IVoltV2(VOLTaddy); } function mintSupers(uint numOfSupers) external onlyOwner { numSupers += numOfSupers; for(uint j = 0; j < numOfSupers; j++){ for(uint i = 0; i < 6; i++){ toadTraits[totalSupply()][i] = uint8(100 + j); } _safeMint(owner(), totalSupply()); } } function initialize() initializer public { __ERC721_init("MegaToads", "MT"); __ERC721Enumerable_init(); __Ownable_init(); saleIsActive = false; VOLTAGE = IVoltV2(0xfFbF315f70E458e49229654DeA4cE192d26f9b25); Frog = IfrogV2(0xd668A2E001f3385B8BBC5a8682AC3C0D83C19122); _setBaseURI("https://api.supducks.com/megatoads/metadata/"); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function updateToads(uint[] calldata tokenIds, uint[] calldata traitIds, uint8[] calldata traits) external onlyOwner { require(tokenIds.length == traitIds.length && tokenIds.length == traits.length, "invalid args"); for(uint i = 0; i < tokenIds.length; i++){ toadTraits[tokenIds[i]][traitIds[i]] = traits[i]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 IERC165Upgradeable { /** * @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.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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.0 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal initializer { } // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721Upgradeable.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721Upgradeable.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @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.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).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 = ERC721Upgradeable.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 = ERC721Upgradeable.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 = ERC721Upgradeable.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(ERC721Upgradeable.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(ERC721Upgradeable.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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.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 {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _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); } uint256[49] private __gap; }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "petersburg", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"Frog","outputs":[{"internalType":"contract IfrogV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOADS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_TRAITS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VOLTAGE","outputs":[{"internalType":"contract IVoltV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraits","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"numOfSupers","type":"uint256"}],"name":"mintSupers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"frogIds","type":"uint256[]"},{"internalType":"uint256[]","name":"frogIndicesToUseForTraits","type":"uint256[]"}],"name":"mintToad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numSupers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"FrogAddy","type":"address"}],"name":"setFrog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"VOLTaddy","type":"address"}],"name":"setVoltage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"traitIds","type":"uint256[]"},{"internalType":"uint8[]","name":"traits","type":"uint8[]"}],"name":"updateToads","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612fa1806100206000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063bcc7d94a116100ad578063e1dc07611161007c578063e1dc076114610440578063e4e5226314610480578063e985e9c514610493578063eb8d2444146104cf578063f2fde38b146104dc57600080fd5b8063bcc7d94a14610409578063be53c63e14610412578063c87b56dd14610425578063cf7d1dc01461043857600080fd5b806395d89b41116100f457806395d89b41146103ca578063a22cb465146103d2578063b66a0e5d146103e5578063b88d4fde146103ed578063b9e0b71f1461040057600080fd5b8063715018a6146103965780637ff22ec81461039e5780638129fc1c146103b15780638da5cb5b146103b957600080fd5b80633bdf252c116101a85780634cd035eb116101775780634cd035eb1461033d5780634f6ccce71461035557806355367ba9146103685780636352211e1461037057806370a082311461038357600080fd5b80633bdf252c146102fc578063418881da1461030f57806342842e0e14610322578063454836ad1461033557600080fd5b806316737b8d116101ef57806316737b8d1461029e57806318160ddd146102b157806323b872dd146102c35780632f745c59146102d657806331b5b907146102e957600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004612aae565b6104ef565b60405190151581526020015b60405180910390f35b61025161051a565b6040516102409190612c35565b61027161026c366004612b31565b6105ac565b6040516001600160a01b039091168152602001610240565b61029c610297366004612984565b610646565b005b61029c6102ac366004612a4a565b61075c565b6099545b604051908152602001610240565b61029c6102d1366004612890565b610dc5565b6102b56102e4366004612984565b610df6565b61029c6102f7366004612ae8565b610e8c565b61029c61030a366004612b31565b610ece565b61029c61031d36600461281d565b610fc3565b61029c610330366004612890565b611015565b6102b5600681565b60fb546102719061010090046001600160a01b031681565b6102b5610363366004612b31565b611030565b61029c6110c3565b61027161037e366004612b31565b611149565b6102b561039136600461281d565b6111c0565b61029c611247565b60fc54610271906001600160a01b031681565b61029c61127d565b60c9546001600160a01b0316610271565b6102516113af565b61029c6103e0366004612951565b6113be565b61029c6113c9565b61029c6103fb3660046128d1565b611455565b6102b56103e881565b6102b560fd5481565b61029c61042036600461281d565b61148d565b610251610433366004612b31565b6114d9565b6102b5601481565b61045361044e366004612b31565b6115b4565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610240565b61029c61048e3660046129b0565b61171d565b6102346104a1366004612857565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b60fb546102349060ff1681565b61029c6104ea36600461281d565b611854565b60006001600160e01b0319821663780e9d6360e01b14806105145750610514826118ec565b92915050565b60606065805461052990612e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461055590612e2d565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661062a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061065182611149565b9050806001600160a01b0316836001600160a01b031614156106bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610621565b336001600160a01b03821614806106db57506106db81336104a1565b61074d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610621565b610757838361193c565b505050565b81516003146107a05760405162461bcd60e51b815260206004820152601060248201526f526571756972657320332066726f677360801b6044820152606401610621565b80516005146107fd5760405162461bcd60e51b815260206004820152602360248201527f526571756972657320352066726f677320746f2075736520666f7220747261696044820152623a399760e91b6064820152608401610621565b60fb5460ff1661084f5760405162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f61646044820152606401610621565b6103e861085b60995490565b610866906001612d9f565b11156108c65760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f6620746f61647360b81b6064820152608401610621565b6000805b6005811015610a025760fb60019054906101000a90046001600160a01b03166001600160a01b031663bb08d1cd8585848151811061090a5761090a612ed9565b60200260200101518151811061092257610922612ed9565b6020026020010151836040518363ffffffff1660e01b8152600401610951929190918252602082015260400190565b60206040518083038186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612b80565b60fe6109ac60995490565b6103e881106109bd576109bd612ed9565b0182600681106109cf576109cf612ed9565b602091828204019190066101000a81548160ff021916908360ff16021790555080806109fa90612e68565b9150506108ca565b5060005b6003811015610cd257600060fb60019054906101000a90046001600160a01b03166001600160a01b031663ae2ab434868481518110610a4757610a47612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610a6d91815260200190565b60206040518083038186803b158015610a8557600080fd5b505afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612b4a565b60fb54865191925033916101009091046001600160a01b031690636352211e90889086908110610aef57610aef612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610b1591815260200190565b60206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b65919061283a565b6001600160a01b031614610bbb5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e2065766572792066726f67000000000000006044820152606401610621565b60008111610c175760405162461bcd60e51b8152602060048201526024808201527f4e6f742065766572792066726f6720686173204d656c76696e277320426c657360448201526373696e6760e01b6064820152608401610621565b60fb60019054906101000a90046001600160a01b03166001600160a01b031663acd2dd1e868481518110610c4d57610c4d612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610c7391815260200190565b600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b50505050600181610cb29190612dea565b610cbc9084612d9f565b9250508080610cca90612e68565b915050610a06565b508060fe610cdf60995490565b6103e88110610cf057610cf0612ed9565b01805460ff92909216650100000000000265ff00000000001990921691909117905560fc546099546001600160a01b039091169063af7d6ca3903390610d37906009612dcb565b610d43906103e8612d9f565b610d5590670de0b6b3a7640000612dcb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610d9b57600080fd5b505af1158015610daf573d6000803e3d6000fd5b5050505061075733610dc060995490565b6119aa565b610dcf33826119c4565b610deb5760405162461bcd60e51b815260040161062190612d1d565b610757838383611abb565b6000610e01836111c0565b8210610e635760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610621565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b60c9546001600160a01b03163314610eb65760405162461bcd60e51b815260040161062190612ce8565b8051610eca906104e690602084019061265a565b5050565b60c9546001600160a01b03163314610ef85760405162461bcd60e51b815260040161062190612ce8565b8060fd6000828254610f0a9190612d9f565b90915550600090505b81811015610eca5760005b6006811015610f9357610f32826064612d9f565b60fe610f3d60995490565b6103e88110610f4e57610f4e612ed9565b018260068110610f6057610f60612ed9565b602091828204019190066101000a81548160ff021916908360ff1602179055508080610f8b90612e68565b915050610f1e565b50610fb1610fa960c9546001600160a01b031690565b6099546119aa565b80610fbb81612e68565b915050610f13565b60c9546001600160a01b03163314610fed5760405162461bcd60e51b815260040161062190612ce8565b60fb80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61075783838360405180602001604052806000815250611455565b600061103b60995490565b821061109e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610621565b609982815481106110b1576110b1612ed9565b90600052602060002001549050919050565b60c9546001600160a01b031633146110ed5760405162461bcd60e51b815260040161062190612ce8565b60fb5460ff16151560011461113d5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc8185b1c9958591e481c185d5cd95960521b6044820152606401610621565b60fb805460ff19169055565b6000818152606760205260408120546001600160a01b0316806105145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610621565b60006001600160a01b03821661122b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610621565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b031633146112715760405162461bcd60e51b815260040161062190612ce8565b61127b6000611c66565b565b600054610100900460ff1680611296575060005460ff16155b6112b25760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff161580156112d4576000805461ffff19166101011790555b611319604051806040016040528060098152602001684d656761546f61647360b81b81525060405180604001604052806002815260200161135560f21b815250611cb8565b611321611d3f565b611329611dae565b60fb805460fc80546001600160a01b03191673ffbf315f70e458e49229654dea4ce192d26f9b2517905574d668a2e001f3385b8bbc5a8682ac3c0d83c19122006001600160a81b03199091161790556040805160608101909152602c80825261139a9190612f406020830139610e8c565b80156113ac576000805461ff00191690555b50565b60606066805461052990612e2d565b610eca338383611e15565b60c9546001600160a01b031633146113f35760405162461bcd60e51b815260040161062190612ce8565b60fb5460ff16156114465760405162461bcd60e51b815260206004820152601760248201527f53616c6520697320616c726561647920737461727465640000000000000000006044820152606401610621565b60fb805460ff19166001179055565b61145f33836119c4565b61147b5760405162461bcd60e51b815260040161062190612d1d565b61148784848484611ee4565b50505050565b60c9546001600160a01b031633146114b75760405162461bcd60e51b815260040161062190612ce8565b60fc80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152606760205260409020546060906001600160a01b03166115585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610621565b6000611562611f17565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84611f27565b60405160200161159d929190612bc9565b6040516020818303038152906040525b9392505050565b6000806000806000806115de876000908152606760205260409020546001600160a01b0316151590565b6116445760405162461bcd60e51b815260206004820152603160248201527f4552433732314d657461646174613a20547261697420717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610621565b60fe876103e8811061165857611658612ed9565b015460ff1660fe886103e8811061167157611671612ed9565b0154610100900460ff1660fe896103e8811061168f5761168f612ed9565b015462010000900460ff1660fe8a6103e881106116ae576116ae612ed9565b01546301000000900460ff1660fe8b6103e881106116ce576116ce612ed9565b0154640100000000900460ff1660fe8c6103e881106116ef576116ef612ed9565b015460ff9586169d9486169c509285169a509084169850831696506501000000000090049091169350915050565b60c9546001600160a01b031633146117475760405162461bcd60e51b815260040161062190612ce8565b848314801561175557508481145b6117905760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206172677360a01b6044820152606401610621565b60005b8581101561184b578282828181106117ad576117ad612ed9565b90506020020160208101906117c29190612b63565b60fe8888848181106117d6576117d6612ed9565b905060200201356103e881106117ee576117ee612ed9565b0186868481811061180157611801612ed9565b905060200201356006811061181857611818612ed9565b602091828204019190066101000a81548160ff021916908360ff160217905550808061184390612e68565b915050611793565b50505050505050565b60c9546001600160a01b0316331461187e5760405162461bcd60e51b815260040161062190612ce8565b6001600160a01b0381166118e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610621565b6113ac81611c66565b60006001600160e01b031982166380ac58cd60e01b148061191d57506001600160e01b03198216635b5e139f60e01b145b8061051457506301ffc9a760e01b6001600160e01b0319831614610514565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197182611149565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610eca828260405180602001604052806000815250612025565b6000818152606760205260408120546001600160a01b0316611a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610621565b6000611a4883611149565b9050806001600160a01b0316846001600160a01b03161480611a835750836001600160a01b0316611a78846105ac565b6001600160a01b0316145b80611ab357506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ace82611149565b6001600160a01b031614611b365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610621565b6001600160a01b038216611b985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610621565b611ba3838383612058565b611bae60008261193c565b6001600160a01b0383166000908152606860205260408120805460019290611bd7908490612dea565b90915550506001600160a01b0382166000908152606860205260408120805460019290611c05908490612d9f565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611cd1575060005460ff16155b611ced5760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611d0f576000805461ffff19166101011790555b611d17612110565b611d1f612110565b611d29838361217a565b8015610757576000805461ff0019169055505050565b600054610100900460ff1680611d58575060005460ff16155b611d745760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611d96576000805461ffff19166101011790555b611d9e612110565b611da6612110565b61139a612110565b600054610100900460ff1680611dc7575060005460ff16155b611de35760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611e05576000805461ffff19166101011790555b611e0d612110565b61139a61220f565b816001600160a01b0316836001600160a01b03161415611e775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610621565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611eef848484611abb565b611efb8484848461226f565b6114875760405162461bcd60e51b815260040161062190612c48565b60606104e6805461052990612e2d565b606081611f4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f755780611f5f81612e68565b9150611f6e9050600a83612db7565b9150611f4f565b60008167ffffffffffffffff811115611f9057611f90612eef565b6040519080825280601f01601f191660200182016040528015611fba576020820181803683370190505b5090505b8415611ab357611fcf600183612dea565b9150611fdc600a86612e83565b611fe7906030612d9f565b60f81b818381518110611ffc57611ffc612ed9565b60200101906001600160f81b031916908160001a90535061201e600a86612db7565b9450611fbe565b61202f838361237c565b61203c600084848461226f565b6107575760405162461bcd60e51b815260040161062190612c48565b6001600160a01b0383166120b3576120ae81609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b6120d6565b816001600160a01b0316836001600160a01b0316146120d6576120d683826124ca565b6001600160a01b0382166120ed5761075781612567565b826001600160a01b0316826001600160a01b031614610757576107578282612616565b600054610100900460ff1680612129575060005460ff16155b6121455760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff1615801561139a576000805461ffff191661010117905580156113ac576000805461ff001916905550565b600054610100900460ff1680612193575060005460ff16155b6121af5760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff161580156121d1576000805461ffff19166101011790555b82516121e490606590602086019061265a565b5081516121f890606690602085019061265a565b508015610757576000805461ff0019169055505050565b600054610100900460ff1680612228575060005460ff16155b6122445760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015612266576000805461ffff19166101011790555b61139a33611c66565b60006001600160a01b0384163b1561237157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b3903390899088908890600401612bf8565b602060405180830381600087803b1580156122cd57600080fd5b505af19250505080156122fd575060408051601f3d908101601f191682019092526122fa91810190612acb565b60015b612357573d80801561232b576040519150601f19603f3d011682016040523d82523d6000602084013e612330565b606091505b50805161234f5760405162461bcd60e51b815260040161062190612c48565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab3565b506001949350505050565b6001600160a01b0382166123d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610621565b6000818152606760205260409020546001600160a01b0316156124375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610621565b61244360008383612058565b6001600160a01b038216600090815260686020526040812080546001929061246c908490612d9f565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016124d7846111c0565b6124e19190612dea565b600083815260986020526040902054909150808214612534576001600160a01b03841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b5060009182526098602090815260408084208490556001600160a01b039094168352609781528383209183525290812055565b60995460009061257990600190612dea565b6000838152609a6020526040812054609980549394509092849081106125a1576125a1612ed9565b9060005260206000200154905080609983815481106125c2576125c2612ed9565b6000918252602080832090910192909255828152609a909152604080822084905585825281205560998054806125fa576125fa612ec3565b6001900381819060005260206000200160009055905550505050565b6000612621836111c0565b6001600160a01b039093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b82805461266690612e2d565b90600052602060002090601f01602090048101928261268857600085556126ce565b82601f106126a157805160ff19168380011785556126ce565b828001600101855582156126ce579182015b828111156126ce5782518255916020019190600101906126b3565b506126da9291506126de565b5090565b5b808211156126da57600081556001016126df565b600067ffffffffffffffff83111561270d5761270d612eef565b612720601f8401601f1916602001612d6e565b905082815283838301111561273457600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261275d57600080fd5b50813567ffffffffffffffff81111561277557600080fd5b6020830191508360208260051b850101111561279057600080fd5b9250929050565b600082601f8301126127a857600080fd5b8135602067ffffffffffffffff8211156127c4576127c4612eef565b8160051b6127d3828201612d6e565b8381528281019086840183880185018910156127ee57600080fd5b600093505b858410156128115780358352600193909301929184019184016127f3565b50979650505050505050565b60006020828403121561282f57600080fd5b81356115ad81612f05565b60006020828403121561284c57600080fd5b81516115ad81612f05565b6000806040838503121561286a57600080fd5b823561287581612f05565b9150602083013561288581612f05565b809150509250929050565b6000806000606084860312156128a557600080fd5b83356128b081612f05565b925060208401356128c081612f05565b929592945050506040919091013590565b600080600080608085870312156128e757600080fd5b84356128f281612f05565b9350602085013561290281612f05565b925060408501359150606085013567ffffffffffffffff81111561292557600080fd5b8501601f8101871361293657600080fd5b612945878235602084016126f3565b91505092959194509250565b6000806040838503121561296457600080fd5b823561296f81612f05565b91506020830135801515811461288557600080fd5b6000806040838503121561299757600080fd5b82356129a281612f05565b946020939093013593505050565b600080600080600080606087890312156129c957600080fd5b863567ffffffffffffffff808211156129e157600080fd5b6129ed8a838b0161274b565b90985096506020890135915080821115612a0657600080fd5b612a128a838b0161274b565b90965094506040890135915080821115612a2b57600080fd5b50612a3889828a0161274b565b979a9699509497509295939492505050565b60008060408385031215612a5d57600080fd5b823567ffffffffffffffff80821115612a7557600080fd5b612a8186838701612797565b93506020850135915080821115612a9757600080fd5b50612aa485828601612797565b9150509250929050565b600060208284031215612ac057600080fd5b81356115ad81612f1a565b600060208284031215612add57600080fd5b81516115ad81612f1a565b600060208284031215612afa57600080fd5b813567ffffffffffffffff811115612b1157600080fd5b8201601f81018413612b2257600080fd5b611ab3848235602084016126f3565b600060208284031215612b4357600080fd5b5035919050565b600060208284031215612b5c57600080fd5b5051919050565b600060208284031215612b7557600080fd5b81356115ad81612f30565b600060208284031215612b9257600080fd5b81516115ad81612f30565b60008151808452612bb5816020860160208601612e01565b601f01601f19169290920160200192915050565b60008351612bdb818460208801612e01565b835190830190612bef818360208801612e01565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c2b90830184612b9d565b9695505050505050565b6020815260006115ad6020830184612b9d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d9757612d97612eef565b604052919050565b60008219821115612db257612db2612e97565b500190565b600082612dc657612dc6612ead565b500490565b6000816000190483118215151615612de557612de5612e97565b500290565b600082821015612dfc57612dfc612e97565b500390565b60005b83811015612e1c578181015183820152602001612e04565b838111156114875750506000910152565b600181811c90821680612e4157607f821691505b60208210811415612e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7c57612e7c612e97565b5060010190565b600082612e9257612e92612ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146113ac57600080fd5b6001600160e01b0319811681146113ac57600080fd5b60ff811681146113ac57600080fdfe68747470733a2f2f6170692e7375706475636b732e636f6d2f6d656761746f6164732f6d657461646174612fa2646970667358221220553a8ff49b85314dc9536853d86dea8467d587d53d005029f1d9c020a0fa9eda64736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063bcc7d94a116100ad578063e1dc07611161007c578063e1dc076114610440578063e4e5226314610480578063e985e9c514610493578063eb8d2444146104cf578063f2fde38b146104dc57600080fd5b8063bcc7d94a14610409578063be53c63e14610412578063c87b56dd14610425578063cf7d1dc01461043857600080fd5b806395d89b41116100f457806395d89b41146103ca578063a22cb465146103d2578063b66a0e5d146103e5578063b88d4fde146103ed578063b9e0b71f1461040057600080fd5b8063715018a6146103965780637ff22ec81461039e5780638129fc1c146103b15780638da5cb5b146103b957600080fd5b80633bdf252c116101a85780634cd035eb116101775780634cd035eb1461033d5780634f6ccce71461035557806355367ba9146103685780636352211e1461037057806370a082311461038357600080fd5b80633bdf252c146102fc578063418881da1461030f57806342842e0e14610322578063454836ad1461033557600080fd5b806316737b8d116101ef57806316737b8d1461029e57806318160ddd146102b157806323b872dd146102c35780632f745c59146102d657806331b5b907146102e957600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004612aae565b6104ef565b60405190151581526020015b60405180910390f35b61025161051a565b6040516102409190612c35565b61027161026c366004612b31565b6105ac565b6040516001600160a01b039091168152602001610240565b61029c610297366004612984565b610646565b005b61029c6102ac366004612a4a565b61075c565b6099545b604051908152602001610240565b61029c6102d1366004612890565b610dc5565b6102b56102e4366004612984565b610df6565b61029c6102f7366004612ae8565b610e8c565b61029c61030a366004612b31565b610ece565b61029c61031d36600461281d565b610fc3565b61029c610330366004612890565b611015565b6102b5600681565b60fb546102719061010090046001600160a01b031681565b6102b5610363366004612b31565b611030565b61029c6110c3565b61027161037e366004612b31565b611149565b6102b561039136600461281d565b6111c0565b61029c611247565b60fc54610271906001600160a01b031681565b61029c61127d565b60c9546001600160a01b0316610271565b6102516113af565b61029c6103e0366004612951565b6113be565b61029c6113c9565b61029c6103fb3660046128d1565b611455565b6102b56103e881565b6102b560fd5481565b61029c61042036600461281d565b61148d565b610251610433366004612b31565b6114d9565b6102b5601481565b61045361044e366004612b31565b6115b4565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610240565b61029c61048e3660046129b0565b61171d565b6102346104a1366004612857565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b60fb546102349060ff1681565b61029c6104ea36600461281d565b611854565b60006001600160e01b0319821663780e9d6360e01b14806105145750610514826118ec565b92915050565b60606065805461052990612e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461055590612e2d565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661062a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061065182611149565b9050806001600160a01b0316836001600160a01b031614156106bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610621565b336001600160a01b03821614806106db57506106db81336104a1565b61074d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610621565b610757838361193c565b505050565b81516003146107a05760405162461bcd60e51b815260206004820152601060248201526f526571756972657320332066726f677360801b6044820152606401610621565b80516005146107fd5760405162461bcd60e51b815260206004820152602360248201527f526571756972657320352066726f677320746f2075736520666f7220747261696044820152623a399760e91b6064820152608401610621565b60fb5460ff1661084f5760405162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f61646044820152606401610621565b6103e861085b60995490565b610866906001612d9f565b11156108c65760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f6620746f61647360b81b6064820152608401610621565b6000805b6005811015610a025760fb60019054906101000a90046001600160a01b03166001600160a01b031663bb08d1cd8585848151811061090a5761090a612ed9565b60200260200101518151811061092257610922612ed9565b6020026020010151836040518363ffffffff1660e01b8152600401610951929190918252602082015260400190565b60206040518083038186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612b80565b60fe6109ac60995490565b6103e881106109bd576109bd612ed9565b0182600681106109cf576109cf612ed9565b602091828204019190066101000a81548160ff021916908360ff16021790555080806109fa90612e68565b9150506108ca565b5060005b6003811015610cd257600060fb60019054906101000a90046001600160a01b03166001600160a01b031663ae2ab434868481518110610a4757610a47612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610a6d91815260200190565b60206040518083038186803b158015610a8557600080fd5b505afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612b4a565b60fb54865191925033916101009091046001600160a01b031690636352211e90889086908110610aef57610aef612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610b1591815260200190565b60206040518083038186803b158015610b2d57600080fd5b505afa158015610b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b65919061283a565b6001600160a01b031614610bbb5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e2065766572792066726f67000000000000006044820152606401610621565b60008111610c175760405162461bcd60e51b8152602060048201526024808201527f4e6f742065766572792066726f6720686173204d656c76696e277320426c657360448201526373696e6760e01b6064820152608401610621565b60fb60019054906101000a90046001600160a01b03166001600160a01b031663acd2dd1e868481518110610c4d57610c4d612ed9565b60200260200101516040518263ffffffff1660e01b8152600401610c7391815260200190565b600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b50505050600181610cb29190612dea565b610cbc9084612d9f565b9250508080610cca90612e68565b915050610a06565b508060fe610cdf60995490565b6103e88110610cf057610cf0612ed9565b01805460ff92909216650100000000000265ff00000000001990921691909117905560fc546099546001600160a01b039091169063af7d6ca3903390610d37906009612dcb565b610d43906103e8612d9f565b610d5590670de0b6b3a7640000612dcb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610d9b57600080fd5b505af1158015610daf573d6000803e3d6000fd5b5050505061075733610dc060995490565b6119aa565b610dcf33826119c4565b610deb5760405162461bcd60e51b815260040161062190612d1d565b610757838383611abb565b6000610e01836111c0565b8210610e635760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610621565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b60c9546001600160a01b03163314610eb65760405162461bcd60e51b815260040161062190612ce8565b8051610eca906104e690602084019061265a565b5050565b60c9546001600160a01b03163314610ef85760405162461bcd60e51b815260040161062190612ce8565b8060fd6000828254610f0a9190612d9f565b90915550600090505b81811015610eca5760005b6006811015610f9357610f32826064612d9f565b60fe610f3d60995490565b6103e88110610f4e57610f4e612ed9565b018260068110610f6057610f60612ed9565b602091828204019190066101000a81548160ff021916908360ff1602179055508080610f8b90612e68565b915050610f1e565b50610fb1610fa960c9546001600160a01b031690565b6099546119aa565b80610fbb81612e68565b915050610f13565b60c9546001600160a01b03163314610fed5760405162461bcd60e51b815260040161062190612ce8565b60fb80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61075783838360405180602001604052806000815250611455565b600061103b60995490565b821061109e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610621565b609982815481106110b1576110b1612ed9565b90600052602060002001549050919050565b60c9546001600160a01b031633146110ed5760405162461bcd60e51b815260040161062190612ce8565b60fb5460ff16151560011461113d5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc8185b1c9958591e481c185d5cd95960521b6044820152606401610621565b60fb805460ff19169055565b6000818152606760205260408120546001600160a01b0316806105145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610621565b60006001600160a01b03821661122b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610621565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b031633146112715760405162461bcd60e51b815260040161062190612ce8565b61127b6000611c66565b565b600054610100900460ff1680611296575060005460ff16155b6112b25760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff161580156112d4576000805461ffff19166101011790555b611319604051806040016040528060098152602001684d656761546f61647360b81b81525060405180604001604052806002815260200161135560f21b815250611cb8565b611321611d3f565b611329611dae565b60fb805460fc80546001600160a01b03191673ffbf315f70e458e49229654dea4ce192d26f9b2517905574d668a2e001f3385b8bbc5a8682ac3c0d83c19122006001600160a81b03199091161790556040805160608101909152602c80825261139a9190612f406020830139610e8c565b80156113ac576000805461ff00191690555b50565b60606066805461052990612e2d565b610eca338383611e15565b60c9546001600160a01b031633146113f35760405162461bcd60e51b815260040161062190612ce8565b60fb5460ff16156114465760405162461bcd60e51b815260206004820152601760248201527f53616c6520697320616c726561647920737461727465640000000000000000006044820152606401610621565b60fb805460ff19166001179055565b61145f33836119c4565b61147b5760405162461bcd60e51b815260040161062190612d1d565b61148784848484611ee4565b50505050565b60c9546001600160a01b031633146114b75760405162461bcd60e51b815260040161062190612ce8565b60fc80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152606760205260409020546060906001600160a01b03166115585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610621565b6000611562611f17565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84611f27565b60405160200161159d929190612bc9565b6040516020818303038152906040525b9392505050565b6000806000806000806115de876000908152606760205260409020546001600160a01b0316151590565b6116445760405162461bcd60e51b815260206004820152603160248201527f4552433732314d657461646174613a20547261697420717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610621565b60fe876103e8811061165857611658612ed9565b015460ff1660fe886103e8811061167157611671612ed9565b0154610100900460ff1660fe896103e8811061168f5761168f612ed9565b015462010000900460ff1660fe8a6103e881106116ae576116ae612ed9565b01546301000000900460ff1660fe8b6103e881106116ce576116ce612ed9565b0154640100000000900460ff1660fe8c6103e881106116ef576116ef612ed9565b015460ff9586169d9486169c509285169a509084169850831696506501000000000090049091169350915050565b60c9546001600160a01b031633146117475760405162461bcd60e51b815260040161062190612ce8565b848314801561175557508481145b6117905760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206172677360a01b6044820152606401610621565b60005b8581101561184b578282828181106117ad576117ad612ed9565b90506020020160208101906117c29190612b63565b60fe8888848181106117d6576117d6612ed9565b905060200201356103e881106117ee576117ee612ed9565b0186868481811061180157611801612ed9565b905060200201356006811061181857611818612ed9565b602091828204019190066101000a81548160ff021916908360ff160217905550808061184390612e68565b915050611793565b50505050505050565b60c9546001600160a01b0316331461187e5760405162461bcd60e51b815260040161062190612ce8565b6001600160a01b0381166118e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610621565b6113ac81611c66565b60006001600160e01b031982166380ac58cd60e01b148061191d57506001600160e01b03198216635b5e139f60e01b145b8061051457506301ffc9a760e01b6001600160e01b0319831614610514565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197182611149565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610eca828260405180602001604052806000815250612025565b6000818152606760205260408120546001600160a01b0316611a3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610621565b6000611a4883611149565b9050806001600160a01b0316846001600160a01b03161480611a835750836001600160a01b0316611a78846105ac565b6001600160a01b0316145b80611ab357506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ace82611149565b6001600160a01b031614611b365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610621565b6001600160a01b038216611b985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610621565b611ba3838383612058565b611bae60008261193c565b6001600160a01b0383166000908152606860205260408120805460019290611bd7908490612dea565b90915550506001600160a01b0382166000908152606860205260408120805460019290611c05908490612d9f565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611cd1575060005460ff16155b611ced5760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611d0f576000805461ffff19166101011790555b611d17612110565b611d1f612110565b611d29838361217a565b8015610757576000805461ff0019169055505050565b600054610100900460ff1680611d58575060005460ff16155b611d745760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611d96576000805461ffff19166101011790555b611d9e612110565b611da6612110565b61139a612110565b600054610100900460ff1680611dc7575060005460ff16155b611de35760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015611e05576000805461ffff19166101011790555b611e0d612110565b61139a61220f565b816001600160a01b0316836001600160a01b03161415611e775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610621565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611eef848484611abb565b611efb8484848461226f565b6114875760405162461bcd60e51b815260040161062190612c48565b60606104e6805461052990612e2d565b606081611f4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f755780611f5f81612e68565b9150611f6e9050600a83612db7565b9150611f4f565b60008167ffffffffffffffff811115611f9057611f90612eef565b6040519080825280601f01601f191660200182016040528015611fba576020820181803683370190505b5090505b8415611ab357611fcf600183612dea565b9150611fdc600a86612e83565b611fe7906030612d9f565b60f81b818381518110611ffc57611ffc612ed9565b60200101906001600160f81b031916908160001a90535061201e600a86612db7565b9450611fbe565b61202f838361237c565b61203c600084848461226f565b6107575760405162461bcd60e51b815260040161062190612c48565b6001600160a01b0383166120b3576120ae81609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b6120d6565b816001600160a01b0316836001600160a01b0316146120d6576120d683826124ca565b6001600160a01b0382166120ed5761075781612567565b826001600160a01b0316826001600160a01b031614610757576107578282612616565b600054610100900460ff1680612129575060005460ff16155b6121455760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff1615801561139a576000805461ffff191661010117905580156113ac576000805461ff001916905550565b600054610100900460ff1680612193575060005460ff16155b6121af5760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff161580156121d1576000805461ffff19166101011790555b82516121e490606590602086019061265a565b5081516121f890606690602085019061265a565b508015610757576000805461ff0019169055505050565b600054610100900460ff1680612228575060005460ff16155b6122445760405162461bcd60e51b815260040161062190612c9a565b600054610100900460ff16158015612266576000805461ffff19166101011790555b61139a33611c66565b60006001600160a01b0384163b1561237157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b3903390899088908890600401612bf8565b602060405180830381600087803b1580156122cd57600080fd5b505af19250505080156122fd575060408051601f3d908101601f191682019092526122fa91810190612acb565b60015b612357573d80801561232b576040519150601f19603f3d011682016040523d82523d6000602084013e612330565b606091505b50805161234f5760405162461bcd60e51b815260040161062190612c48565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab3565b506001949350505050565b6001600160a01b0382166123d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610621565b6000818152606760205260409020546001600160a01b0316156124375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610621565b61244360008383612058565b6001600160a01b038216600090815260686020526040812080546001929061246c908490612d9f565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016124d7846111c0565b6124e19190612dea565b600083815260986020526040902054909150808214612534576001600160a01b03841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b5060009182526098602090815260408084208490556001600160a01b039094168352609781528383209183525290812055565b60995460009061257990600190612dea565b6000838152609a6020526040812054609980549394509092849081106125a1576125a1612ed9565b9060005260206000200154905080609983815481106125c2576125c2612ed9565b6000918252602080832090910192909255828152609a909152604080822084905585825281205560998054806125fa576125fa612ec3565b6001900381819060005260206000200160009055905550505050565b6000612621836111c0565b6001600160a01b039093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b82805461266690612e2d565b90600052602060002090601f01602090048101928261268857600085556126ce565b82601f106126a157805160ff19168380011785556126ce565b828001600101855582156126ce579182015b828111156126ce5782518255916020019190600101906126b3565b506126da9291506126de565b5090565b5b808211156126da57600081556001016126df565b600067ffffffffffffffff83111561270d5761270d612eef565b612720601f8401601f1916602001612d6e565b905082815283838301111561273457600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261275d57600080fd5b50813567ffffffffffffffff81111561277557600080fd5b6020830191508360208260051b850101111561279057600080fd5b9250929050565b600082601f8301126127a857600080fd5b8135602067ffffffffffffffff8211156127c4576127c4612eef565b8160051b6127d3828201612d6e565b8381528281019086840183880185018910156127ee57600080fd5b600093505b858410156128115780358352600193909301929184019184016127f3565b50979650505050505050565b60006020828403121561282f57600080fd5b81356115ad81612f05565b60006020828403121561284c57600080fd5b81516115ad81612f05565b6000806040838503121561286a57600080fd5b823561287581612f05565b9150602083013561288581612f05565b809150509250929050565b6000806000606084860312156128a557600080fd5b83356128b081612f05565b925060208401356128c081612f05565b929592945050506040919091013590565b600080600080608085870312156128e757600080fd5b84356128f281612f05565b9350602085013561290281612f05565b925060408501359150606085013567ffffffffffffffff81111561292557600080fd5b8501601f8101871361293657600080fd5b612945878235602084016126f3565b91505092959194509250565b6000806040838503121561296457600080fd5b823561296f81612f05565b91506020830135801515811461288557600080fd5b6000806040838503121561299757600080fd5b82356129a281612f05565b946020939093013593505050565b600080600080600080606087890312156129c957600080fd5b863567ffffffffffffffff808211156129e157600080fd5b6129ed8a838b0161274b565b90985096506020890135915080821115612a0657600080fd5b612a128a838b0161274b565b90965094506040890135915080821115612a2b57600080fd5b50612a3889828a0161274b565b979a9699509497509295939492505050565b60008060408385031215612a5d57600080fd5b823567ffffffffffffffff80821115612a7557600080fd5b612a8186838701612797565b93506020850135915080821115612a9757600080fd5b50612aa485828601612797565b9150509250929050565b600060208284031215612ac057600080fd5b81356115ad81612f1a565b600060208284031215612add57600080fd5b81516115ad81612f1a565b600060208284031215612afa57600080fd5b813567ffffffffffffffff811115612b1157600080fd5b8201601f81018413612b2257600080fd5b611ab3848235602084016126f3565b600060208284031215612b4357600080fd5b5035919050565b600060208284031215612b5c57600080fd5b5051919050565b600060208284031215612b7557600080fd5b81356115ad81612f30565b600060208284031215612b9257600080fd5b81516115ad81612f30565b60008151808452612bb5816020860160208601612e01565b601f01601f19169290920160200192915050565b60008351612bdb818460208801612e01565b835190830190612bef818360208801612e01565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c2b90830184612b9d565b9695505050505050565b6020815260006115ad6020830184612b9d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d9757612d97612eef565b604052919050565b60008219821115612db257612db2612e97565b500190565b600082612dc657612dc6612ead565b500490565b6000816000190483118215151615612de557612de5612e97565b500290565b600082821015612dfc57612dfc612e97565b500390565b60005b83811015612e1c578181015183820152602001612e04565b838111156114875750506000910152565b600181811c90821680612e4157607f821691505b60208210811415612e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7c57612e7c612e97565b5060010190565b600082612e9257612e92612ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146113ac57600080fd5b6001600160e01b0319811681146113ac57600080fd5b60ff811681146113ac57600080fdfe68747470733a2f2f6170692e7375706475636b732e636f6d2f6d656761746f6164732f6d657461646174612fa2646970667358221220553a8ff49b85314dc9536853d86dea8467d587d53d005029f1d9c020a0fa9eda64736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.