More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 239 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 47718207 | 440 days ago | IN | 10.1 POL | 0.00107775 | ||||
Set Approval For... | 47578464 | 443 days ago | IN | 0 POL | 0.00434055 | ||||
Withdraw | 45382401 | 499 days ago | IN | 4 POL | 0.0028954 | ||||
Set Approval For... | 26888937 | 969 days ago | IN | 0 POL | 0.00181664 | ||||
Mint | 24190640 | 1041 days ago | IN | 47.95 POL | 0.09421409 | ||||
Mint | 24006281 | 1045 days ago | IN | 20.55 POL | 0.03526303 | ||||
Mint | 23903125 | 1048 days ago | IN | 20.55 POL | 0.04375557 | ||||
Mint | 23759748 | 1051 days ago | IN | 82.2 POL | 0.05983905 | ||||
Set Approval For... | 23671442 | 1054 days ago | IN | 0 POL | 0.00158029 | ||||
Mint | 23665692 | 1054 days ago | IN | 27.4 POL | 0.02136938 | ||||
Transfer From | 23597529 | 1056 days ago | IN | 0 POL | 0.00223089 | ||||
Mint | 23597294 | 1056 days ago | IN | 34.25 POL | 0.02575815 | ||||
Transfer From | 23597222 | 1056 days ago | IN | 0 POL | 0.00223089 | ||||
Transfer From | 23596616 | 1056 days ago | IN | 0 POL | 0.00223053 | ||||
Transfer From | 23596591 | 1056 days ago | IN | 0 POL | 0.00223053 | ||||
Transfer From | 23596552 | 1056 days ago | IN | 0 POL | 0.00223053 | ||||
Safe Transfer Fr... | 23563829 | 1056 days ago | IN | 0 POL | 0.00242654 | ||||
Mint | 23521779 | 1058 days ago | IN | 47.95 POL | 0.03580197 | ||||
Transfer From | 23488524 | 1058 days ago | IN | 0 POL | 0.02818357 | ||||
Transfer From | 23488444 | 1058 days ago | IN | 0 POL | 0.06261364 | ||||
Transfer From | 23488334 | 1058 days ago | IN | 0 POL | 0.04097401 | ||||
Transfer From | 23488300 | 1058 days ago | IN | 0 POL | 0.04037246 | ||||
Mint | 23436241 | 1060 days ago | IN | 20.55 POL | 0.20052083 | ||||
Set Approval For... | 23403720 | 1061 days ago | IN | 0 POL | 0.0132215 | ||||
Set Approval For... | 23403720 | 1061 days ago | IN | 0 POL | 0.0231715 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
45382401 | 499 days ago | 5,846.45 POL |
Loading...
Loading
Contract Name:
ShibaChild
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-16 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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 IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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 IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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 ERC721Enumerable is ERC721, IERC721Enumerable { // 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(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.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 < ERC721Enumerable.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 = ERC721.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 = ERC721.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(); } } // File: ShibaChild.sol pragma solidity >=0.7.0 <0.9.0; contract ShibaChild is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 5.05 ether; uint256 public maxSupply = 8888; uint256 public maxMintAmount = 40; bool public paused = false; bool public onlyWhitelisted = false; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; mapping(uint256 => address) public addressMintedIds; uint256[] public mintedIds; uint256 public totalMinted = 0; mapping(uint256 => uint256) public collectionPrice; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setCollectionPrice(uint256[] memory _prices, uint256[] memory _milestone) internal { for(uint256 i = 0; i <= _milestone.length; i++) { collectionPrice[_milestone[i]] = _prices[i]; } } // public function mint(uint256 _mintAmount, uint256[] memory randIds) public payable { require(!paused, "The contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "Max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "User is not whitelisted"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; uint256 id = randIds[i - 1]; addressMintedIds[id] = msg.sender; mintedIds.push(id); totalMinted++; _safeMint(msg.sender, id); } } function checkifAlreadyMinted(uint256 id) public view returns (bool) { for(uint256 i = 0; i < mintedIds.length; i++) { if(mintedIds[i] == id) { return true; } } return false; } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressMintedIds","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"checkifAlreadyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256[]","name":"randIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ae565b50674615343e73b90000600d556122b8600e556028600f556010805461ffff1916905560006015553480156200005d57600080fd5b5060405162002e2938038062002e2983398101604081905262000080916200030b565b82518390839062000099906000906020850190620001ae565b508051620000af906001906020840190620001ae565b505050620000cc620000c6620000e060201b60201c565b620000e4565b620000d78162000136565b505050620003ef565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001aa90600b906020840190620001ae565b5050565b828054620001bc906200039c565b90600052602060002090601f016020900481019282620001e057600085556200022b565b82601f10620001fb57805160ff19168380011785556200022b565b828001600101855582156200022b579182015b828111156200022b5782518255916020019190600101906200020e565b50620002399291506200023d565b5090565b5b808211156200023957600081556001016200023e565b600082601f8301126200026657600080fd5b81516001600160401b0380821115620002835762000283620003d9565b604051601f8301601f19908116603f01168101908282118183101715620002ae57620002ae620003d9565b81604052838152602092508683858801011115620002cb57600080fd5b600091505b83821015620002ef5785820183015181830184015290820190620002d0565b83821115620003015760008385830101525b9695505050505050565b6000806000606084860312156200032157600080fd5b83516001600160401b03808211156200033957600080fd5b620003478783880162000254565b945060208601519150808211156200035e57600080fd5b6200036c8783880162000254565b935060408601519150808211156200038357600080fd5b50620003928682870162000254565b9150509250925092565b600181811c90821680620003b157607f821691505b60208210811415620003d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a2a80620003ff6000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063a2309ff8116100b6578063c87b56dd1161007a578063c87b56dd14610725578063d5abeb0114610745578063da3ef23f1461075b578063e985e9c51461077b578063edec5f27146107c4578063f2fde38b146107e457600080fd5b8063a2309ff81461068d578063b4f0ad8b146106a3578063b88d4fde146106d0578063ba4e5c49146106f0578063c66828621461071057600080fd5b80638421617c116101085780638421617c146105c55780638da5cb5b146105fb57806395d89b41146106195780639c70b5121461062e5780639d8e09061461064d578063a22cb4651461066d57600080fd5b80636c0360eb1461053b57806370a0823114610550578063715018a6146105705780637b60fa3f146105855780637f00c7a6146105a557600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461047457806344a0d68a146104a15780634f6ccce7146104c157806355f804b3146104e15780635c975abb146105015780636352211e1461051b57600080fd5b80632f745c59146103ec5780633af32abf1461040c5780633c9527641461042c5780633ccfd60b1461044c57806342842e0e1461045457600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806318cae26914610376578063239c70ae146103a357806323b872dd146103b95780632d69044f146103d957600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612496565b610804565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461247b565b61082f565b005b3480156102cf57600080fd5b506102d8610875565b604051610298919061275c565b3480156102f157600080fd5b50610305610300366004612519565b610907565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046123dc565b61099c565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b50600854610353565b34801561038257600080fd5b506103536103913660046122ac565b60126020526000908152604090205481565b3480156103af57600080fd5b50610353600f5481565b3480156103c557600080fd5b506102c16103d43660046122fa565b610ab2565b6102c16103e7366004612532565b610ae3565b3480156103f857600080fd5b506103536104073660046123dc565b610dec565b34801561041857600080fd5b5061028c6104273660046122ac565b610e82565b34801561043857600080fd5b506102c161044736600461247b565b610eec565b6102c1610f30565b34801561046057600080fd5b506102c161046f3660046122fa565b610fd5565b34801561048057600080fd5b5061049461048f3660046122ac565b610ff0565b6040516102989190612718565b3480156104ad57600080fd5b506102c16104bc366004612519565b611092565b3480156104cd57600080fd5b506103536104dc366004612519565b6110c1565b3480156104ed57600080fd5b506102c16104fc3660046124d0565b611154565b34801561050d57600080fd5b5060105461028c9060ff1681565b34801561052757600080fd5b50610305610536366004612519565b611195565b34801561054757600080fd5b506102d861120c565b34801561055c57600080fd5b5061035361056b3660046122ac565b61129a565b34801561057c57600080fd5b506102c1611321565b34801561059157600080fd5b506103536105a0366004612519565b611357565b3480156105b157600080fd5b506102c16105c0366004612519565b611378565b3480156105d157600080fd5b506103056105e0366004612519565b6013602052600090815260409020546001600160a01b031681565b34801561060757600080fd5b50600a546001600160a01b0316610305565b34801561062557600080fd5b506102d86113a7565b34801561063a57600080fd5b5060105461028c90610100900460ff1681565b34801561065957600080fd5b5061028c610668366004612519565b6113b6565b34801561067957600080fd5b506102c16106883660046123b2565b611404565b34801561069957600080fd5b5061035360155481565b3480156106af57600080fd5b506103536106be366004612519565b60166020526000908152604090205481565b3480156106dc57600080fd5b506102c16106eb366004612336565b61140f565b3480156106fc57600080fd5b5061030561070b366004612519565b611441565b34801561071c57600080fd5b506102d861146b565b34801561073157600080fd5b506102d8610740366004612519565b611478565b34801561075157600080fd5b50610353600e5481565b34801561076757600080fd5b506102c16107763660046124d0565b611556565b34801561078757600080fd5b5061028c6107963660046122c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d057600080fd5b506102c16107df366004612406565b611593565b3480156107f057600080fd5b506102c16107ff3660046122ac565b6115d5565b60006001600160e01b0319821663780e9d6360e01b148061082957506108298261166d565b92915050565b600a546001600160a01b031633146108625760405162461bcd60e51b8152600401610859906127c1565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461088490612906565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612906565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b506000908152600460205260409020546001600160a01b031690565b60006109a782611195565b9050806001600160a01b0316836001600160a01b03161415610a155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b336001600160a01b0382161480610a315750610a318133610796565b610aa35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b610aad83836116bd565b505050565b610abc338261172b565b610ad85760405162461bcd60e51b8152600401610859906127f6565b610aad838383611822565b60105460ff1615610b2f5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610859565b6000610b3a60085490565b905060008311610b8c5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610859565b600f54831115610bea5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610859565b600e54610bf78483612878565b1115610c3e5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610859565b600a546001600160a01b03163314610d0d5760105460ff61010090910416151560011415610cbb57610c6f33610e82565b610cbb5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610859565b82600d54610cc991906128a4565b341015610d0d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610859565b60015b838111610de657336000908152601260205260408120805491610d3283612941565b909155506000905083610d466001846128c3565b81518110610d5657610d566129b2565b602090810291909101810151600081815260139092526040822080546001600160a01b03191633179055601480546001810182559083527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec01819055601580549193509091610dc483612941565b9190505550610dd333826119cd565b5080610dde81612941565b915050610d10565b50505050565b6000610df78361129a565b8210610e595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610859565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601154811015610ee357826001600160a01b031660118281548110610ead57610ead6129b2565b6000918252602090912001546001600160a01b03161415610ed15750600192915050565b80610edb81612941565b915050610e86565b50600092915050565b600a546001600160a01b03163314610f165760405162461bcd60e51b8152600401610859906127c1565b601080549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610859906127c1565b60004711610f995760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610859565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fd2573d6000803e3d6000fd5b50565b610aad8383836040518060200160405280600081525061140f565b60606000610ffd8361129a565b905060008167ffffffffffffffff81111561101a5761101a6129c8565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8281101561108a5761105b8582610dec565b82828151811061106d5761106d6129b2565b60209081029190910101528061108281612941565b915050611049565b509392505050565b600a546001600160a01b031633146110bc5760405162461bcd60e51b8152600401610859906127c1565b600d55565b60006110cc60085490565b821061112f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610859565b60088281548110611142576111426129b2565b90600052602060002001549050919050565b600a546001600160a01b0316331461117e5760405162461bcd60e51b8152600401610859906127c1565b805161119190600b90602084019061211e565b5050565b6000818152600260205260408120546001600160a01b0316806108295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b600b805461121990612906565b80601f016020809104026020016040519081016040528092919081815260200182805461124590612906565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b505050505081565b60006001600160a01b0382166113055760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610859906127c1565b61135560006119e7565b565b6014818154811061136757600080fd5b600091825260209091200154905081565b600a546001600160a01b031633146113a25760405162461bcd60e51b8152600401610859906127c1565b600f55565b60606001805461088490612906565b6000805b601454811015610ee35782601482815481106113d8576113d86129b2565b906000526020600020015414156113f25750600192915050565b806113fc81612941565b9150506113ba565b611191338383611a39565b611419338361172b565b6114355760405162461bcd60e51b8152600401610859906127f6565b610de684848484611b08565b6011818154811061145157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461121990612906565b6000818152600260205260409020546060906001600160a01b03166114f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610859565b6000611501611b3b565b90506000815111611521576040518060200160405280600081525061154f565b8061152b84611b4a565b600c60405160200161153f93929190612617565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115805760405162461bcd60e51b8152600401610859906127c1565b805161119190600c90602084019061211e565b600a546001600160a01b031633146115bd5760405162461bcd60e51b8152600401610859906127c1565b6115c9601160006121a2565b610aad601183836121c0565b600a546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610859906127c1565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b610fd2816119e7565b60006001600160e01b031982166380ac58cd60e01b148061169e57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f282611195565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b60006117af83611195565b9050806001600160a01b0316846001600160a01b031614806117ea5750836001600160a01b03166117df84610907565b6001600160a01b0316145b8061181a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183582611195565b6001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b0382166118ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b61190a838383611c48565b6119156000826116bd565b6001600160a01b038316600090815260036020526040812080546001929061193e9084906128c3565b90915550506001600160a01b038216600090815260036020526040812080546001929061196c908490612878565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611191828260405180602001604052806000815250611d00565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b13848484611822565b611b1f84848484611d33565b610de65760405162461bcd60e51b81526004016108599061276f565b6060600b805461088490612906565b606081611b6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b985780611b8281612941565b9150611b919050600a83612890565b9150611b72565b60008167ffffffffffffffff811115611bb357611bb36129c8565b6040519080825280601f01601f191660200182016040528015611bdd576020820181803683370190505b5090505b841561181a57611bf26001836128c3565b9150611bff600a8661295c565b611c0a906030612878565b60f81b818381518110611c1f57611c1f6129b2565b60200101906001600160f81b031916908160001a905350611c41600a86612890565b9450611be1565b6001600160a01b038316611ca357611c9e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cc6565b816001600160a01b0316836001600160a01b031614611cc657611cc68382611e40565b6001600160a01b038216611cdd57610aad81611edd565b826001600160a01b0316826001600160a01b031614610aad57610aad8282611f8c565b611d0a8383611fd0565b611d176000848484611d33565b610aad5760405162461bcd60e51b81526004016108599061276f565b60006001600160a01b0384163b15611e3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d779033908990889088906004016126db565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe918101906124b3565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b81526004016108599061276f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181a565b506001949350505050565b60006001611e4d8461129a565b611e5791906128c3565b600083815260076020526040902054909150808214611eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eef906001906128c3565b60008381526009602052604081205460088054939450909284908110611f1757611f176129b2565b906000526020600020015490508060088381548110611f3857611f386129b2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7057611f7061299c565b6001900381819060005260206000200160009055905550505050565b6000611f978361129a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600260205260409020546001600160a01b03161561208b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b61209760008383611c48565b6001600160a01b03821660009081526003602052604081208054600192906120c0908490612878565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461212a90612906565b90600052602060002090601f01602090048101928261214c5760008555612192565b82601f1061216557805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612192578251825591602001919060010190612177565b5061219e929150612213565b5090565b5080546000825590600052602060002090810190610fd29190612213565b828054828255906000526020600020908101928215612192579160200282015b828111156121925781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e0565b5b8082111561219e5760008155600101612214565b600067ffffffffffffffff831115612242576122426129c8565b612255601f8401601f1916602001612847565b905082815283838301111561226957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461229757600080fd5b919050565b8035801515811461229757600080fd5b6000602082840312156122be57600080fd5b61154f82612280565b600080604083850312156122da57600080fd5b6122e383612280565b91506122f160208401612280565b90509250929050565b60008060006060848603121561230f57600080fd5b61231884612280565b925061232660208501612280565b9150604084013590509250925092565b6000806000806080858703121561234c57600080fd5b61235585612280565b935061236360208601612280565b925060408501359150606085013567ffffffffffffffff81111561238657600080fd5b8501601f8101871361239757600080fd5b6123a687823560208401612228565b91505092959194509250565b600080604083850312156123c557600080fd5b6123ce83612280565b91506122f16020840161229c565b600080604083850312156123ef57600080fd5b6123f883612280565b946020939093013593505050565b6000806020838503121561241957600080fd5b823567ffffffffffffffff8082111561243157600080fd5b818501915085601f83011261244557600080fd5b81358181111561245457600080fd5b8660208260051b850101111561246957600080fd5b60209290920196919550909350505050565b60006020828403121561248d57600080fd5b61154f8261229c565b6000602082840312156124a857600080fd5b813561154f816129de565b6000602082840312156124c557600080fd5b815161154f816129de565b6000602082840312156124e257600080fd5b813567ffffffffffffffff8111156124f957600080fd5b8201601f8101841361250a57600080fd5b61181a84823560208401612228565b60006020828403121561252b57600080fd5b5035919050565b6000806040838503121561254557600080fd5b8235915060208084013567ffffffffffffffff8082111561256557600080fd5b818601915086601f83011261257957600080fd5b81358181111561258b5761258b6129c8565b8060051b915061259c848301612847565b8181528481019084860184860187018b10156125b757600080fd5b600095505b838610156125da5780358352600195909501949186019186016125bc565b508096505050505050509250929050565b600081518084526126038160208601602086016128da565b601f01601f19169290920160200192915050565b60008451602061262a8285838a016128da565b85519184019161263d8184848a016128da565b8554920191600090600181811c908083168061265a57607f831692505b85831081141561267857634e487b7160e01b85526022600452602485fd5b80801561268c576001811461269d576126ca565b60ff198516885283880195506126ca565b60008b81526020902060005b858110156126c25781548a8201529084019088016126a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270e908301846125eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561275057835183529284019291840191600101612734565b50909695505050505050565b60208152600061154f60208301846125eb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612870576128706129c8565b604052919050565b6000821982111561288b5761288b612970565b500190565b60008261289f5761289f612986565b500490565b60008160001904831182151516156128be576128be612970565b500290565b6000828210156128d5576128d5612970565b500390565b60005b838110156128f55781810151838201526020016128dd565b83811115610de65750506000910152565b600181811c9082168061291a57607f821691505b6020821081141561293b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561295557612955612970565b5060010190565b60008261296b5761296b612986565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fd257600080fdfea26469706673582212207631b784b3ef29c2d3869504c2621b14fa2be3fc9fbcb382e3e72db6cd65c7b364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a53686962614368696c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a53484942414348494c4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d634a7256427565756645456f706e476d796f7a466863336136534e537565527a655577556259544e393439482f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c80636c0360eb11610144578063a2309ff8116100b6578063c87b56dd1161007a578063c87b56dd14610725578063d5abeb0114610745578063da3ef23f1461075b578063e985e9c51461077b578063edec5f27146107c4578063f2fde38b146107e457600080fd5b8063a2309ff81461068d578063b4f0ad8b146106a3578063b88d4fde146106d0578063ba4e5c49146106f0578063c66828621461071057600080fd5b80638421617c116101085780638421617c146105c55780638da5cb5b146105fb57806395d89b41146106195780639c70b5121461062e5780639d8e09061461064d578063a22cb4651461066d57600080fd5b80636c0360eb1461053b57806370a0823114610550578063715018a6146105705780637b60fa3f146105855780637f00c7a6146105a557600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461047457806344a0d68a146104a15780634f6ccce7146104c157806355f804b3146104e15780635c975abb146105015780636352211e1461051b57600080fd5b80632f745c59146103ec5780633af32abf1461040c5780633c9527641461042c5780633ccfd60b1461044c57806342842e0e1461045457600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806318cae26914610376578063239c70ae146103a357806323b872dd146103b95780632d69044f146103d957600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612496565b610804565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461247b565b61082f565b005b3480156102cf57600080fd5b506102d8610875565b604051610298919061275c565b3480156102f157600080fd5b50610305610300366004612519565b610907565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046123dc565b61099c565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b50600854610353565b34801561038257600080fd5b506103536103913660046122ac565b60126020526000908152604090205481565b3480156103af57600080fd5b50610353600f5481565b3480156103c557600080fd5b506102c16103d43660046122fa565b610ab2565b6102c16103e7366004612532565b610ae3565b3480156103f857600080fd5b506103536104073660046123dc565b610dec565b34801561041857600080fd5b5061028c6104273660046122ac565b610e82565b34801561043857600080fd5b506102c161044736600461247b565b610eec565b6102c1610f30565b34801561046057600080fd5b506102c161046f3660046122fa565b610fd5565b34801561048057600080fd5b5061049461048f3660046122ac565b610ff0565b6040516102989190612718565b3480156104ad57600080fd5b506102c16104bc366004612519565b611092565b3480156104cd57600080fd5b506103536104dc366004612519565b6110c1565b3480156104ed57600080fd5b506102c16104fc3660046124d0565b611154565b34801561050d57600080fd5b5060105461028c9060ff1681565b34801561052757600080fd5b50610305610536366004612519565b611195565b34801561054757600080fd5b506102d861120c565b34801561055c57600080fd5b5061035361056b3660046122ac565b61129a565b34801561057c57600080fd5b506102c1611321565b34801561059157600080fd5b506103536105a0366004612519565b611357565b3480156105b157600080fd5b506102c16105c0366004612519565b611378565b3480156105d157600080fd5b506103056105e0366004612519565b6013602052600090815260409020546001600160a01b031681565b34801561060757600080fd5b50600a546001600160a01b0316610305565b34801561062557600080fd5b506102d86113a7565b34801561063a57600080fd5b5060105461028c90610100900460ff1681565b34801561065957600080fd5b5061028c610668366004612519565b6113b6565b34801561067957600080fd5b506102c16106883660046123b2565b611404565b34801561069957600080fd5b5061035360155481565b3480156106af57600080fd5b506103536106be366004612519565b60166020526000908152604090205481565b3480156106dc57600080fd5b506102c16106eb366004612336565b61140f565b3480156106fc57600080fd5b5061030561070b366004612519565b611441565b34801561071c57600080fd5b506102d861146b565b34801561073157600080fd5b506102d8610740366004612519565b611478565b34801561075157600080fd5b50610353600e5481565b34801561076757600080fd5b506102c16107763660046124d0565b611556565b34801561078757600080fd5b5061028c6107963660046122c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d057600080fd5b506102c16107df366004612406565b611593565b3480156107f057600080fd5b506102c16107ff3660046122ac565b6115d5565b60006001600160e01b0319821663780e9d6360e01b148061082957506108298261166d565b92915050565b600a546001600160a01b031633146108625760405162461bcd60e51b8152600401610859906127c1565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461088490612906565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612906565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b506000908152600460205260409020546001600160a01b031690565b60006109a782611195565b9050806001600160a01b0316836001600160a01b03161415610a155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b336001600160a01b0382161480610a315750610a318133610796565b610aa35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b610aad83836116bd565b505050565b610abc338261172b565b610ad85760405162461bcd60e51b8152600401610859906127f6565b610aad838383611822565b60105460ff1615610b2f5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610859565b6000610b3a60085490565b905060008311610b8c5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610859565b600f54831115610bea5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610859565b600e54610bf78483612878565b1115610c3e5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610859565b600a546001600160a01b03163314610d0d5760105460ff61010090910416151560011415610cbb57610c6f33610e82565b610cbb5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610859565b82600d54610cc991906128a4565b341015610d0d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610859565b60015b838111610de657336000908152601260205260408120805491610d3283612941565b909155506000905083610d466001846128c3565b81518110610d5657610d566129b2565b602090810291909101810151600081815260139092526040822080546001600160a01b03191633179055601480546001810182559083527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec01819055601580549193509091610dc483612941565b9190505550610dd333826119cd565b5080610dde81612941565b915050610d10565b50505050565b6000610df78361129a565b8210610e595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610859565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601154811015610ee357826001600160a01b031660118281548110610ead57610ead6129b2565b6000918252602090912001546001600160a01b03161415610ed15750600192915050565b80610edb81612941565b915050610e86565b50600092915050565b600a546001600160a01b03163314610f165760405162461bcd60e51b8152600401610859906127c1565b601080549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610859906127c1565b60004711610f995760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610859565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fd2573d6000803e3d6000fd5b50565b610aad8383836040518060200160405280600081525061140f565b60606000610ffd8361129a565b905060008167ffffffffffffffff81111561101a5761101a6129c8565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8281101561108a5761105b8582610dec565b82828151811061106d5761106d6129b2565b60209081029190910101528061108281612941565b915050611049565b509392505050565b600a546001600160a01b031633146110bc5760405162461bcd60e51b8152600401610859906127c1565b600d55565b60006110cc60085490565b821061112f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610859565b60088281548110611142576111426129b2565b90600052602060002001549050919050565b600a546001600160a01b0316331461117e5760405162461bcd60e51b8152600401610859906127c1565b805161119190600b90602084019061211e565b5050565b6000818152600260205260408120546001600160a01b0316806108295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b600b805461121990612906565b80601f016020809104026020016040519081016040528092919081815260200182805461124590612906565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b505050505081565b60006001600160a01b0382166113055760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610859906127c1565b61135560006119e7565b565b6014818154811061136757600080fd5b600091825260209091200154905081565b600a546001600160a01b031633146113a25760405162461bcd60e51b8152600401610859906127c1565b600f55565b60606001805461088490612906565b6000805b601454811015610ee35782601482815481106113d8576113d86129b2565b906000526020600020015414156113f25750600192915050565b806113fc81612941565b9150506113ba565b611191338383611a39565b611419338361172b565b6114355760405162461bcd60e51b8152600401610859906127f6565b610de684848484611b08565b6011818154811061145157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461121990612906565b6000818152600260205260409020546060906001600160a01b03166114f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610859565b6000611501611b3b565b90506000815111611521576040518060200160405280600081525061154f565b8061152b84611b4a565b600c60405160200161153f93929190612617565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115805760405162461bcd60e51b8152600401610859906127c1565b805161119190600c90602084019061211e565b600a546001600160a01b031633146115bd5760405162461bcd60e51b8152600401610859906127c1565b6115c9601160006121a2565b610aad601183836121c0565b600a546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610859906127c1565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b610fd2816119e7565b60006001600160e01b031982166380ac58cd60e01b148061169e57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f282611195565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b60006117af83611195565b9050806001600160a01b0316846001600160a01b031614806117ea5750836001600160a01b03166117df84610907565b6001600160a01b0316145b8061181a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183582611195565b6001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b0382166118ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b61190a838383611c48565b6119156000826116bd565b6001600160a01b038316600090815260036020526040812080546001929061193e9084906128c3565b90915550506001600160a01b038216600090815260036020526040812080546001929061196c908490612878565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611191828260405180602001604052806000815250611d00565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b13848484611822565b611b1f84848484611d33565b610de65760405162461bcd60e51b81526004016108599061276f565b6060600b805461088490612906565b606081611b6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b985780611b8281612941565b9150611b919050600a83612890565b9150611b72565b60008167ffffffffffffffff811115611bb357611bb36129c8565b6040519080825280601f01601f191660200182016040528015611bdd576020820181803683370190505b5090505b841561181a57611bf26001836128c3565b9150611bff600a8661295c565b611c0a906030612878565b60f81b818381518110611c1f57611c1f6129b2565b60200101906001600160f81b031916908160001a905350611c41600a86612890565b9450611be1565b6001600160a01b038316611ca357611c9e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cc6565b816001600160a01b0316836001600160a01b031614611cc657611cc68382611e40565b6001600160a01b038216611cdd57610aad81611edd565b826001600160a01b0316826001600160a01b031614610aad57610aad8282611f8c565b611d0a8383611fd0565b611d176000848484611d33565b610aad5760405162461bcd60e51b81526004016108599061276f565b60006001600160a01b0384163b15611e3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d779033908990889088906004016126db565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe918101906124b3565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b81526004016108599061276f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181a565b506001949350505050565b60006001611e4d8461129a565b611e5791906128c3565b600083815260076020526040902054909150808214611eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eef906001906128c3565b60008381526009602052604081205460088054939450909284908110611f1757611f176129b2565b906000526020600020015490508060088381548110611f3857611f386129b2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7057611f7061299c565b6001900381819060005260206000200160009055905550505050565b6000611f978361129a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600260205260409020546001600160a01b03161561208b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b61209760008383611c48565b6001600160a01b03821660009081526003602052604081208054600192906120c0908490612878565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461212a90612906565b90600052602060002090601f01602090048101928261214c5760008555612192565b82601f1061216557805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612192578251825591602001919060010190612177565b5061219e929150612213565b5090565b5080546000825590600052602060002090810190610fd29190612213565b828054828255906000526020600020908101928215612192579160200282015b828111156121925781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e0565b5b8082111561219e5760008155600101612214565b600067ffffffffffffffff831115612242576122426129c8565b612255601f8401601f1916602001612847565b905082815283838301111561226957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461229757600080fd5b919050565b8035801515811461229757600080fd5b6000602082840312156122be57600080fd5b61154f82612280565b600080604083850312156122da57600080fd5b6122e383612280565b91506122f160208401612280565b90509250929050565b60008060006060848603121561230f57600080fd5b61231884612280565b925061232660208501612280565b9150604084013590509250925092565b6000806000806080858703121561234c57600080fd5b61235585612280565b935061236360208601612280565b925060408501359150606085013567ffffffffffffffff81111561238657600080fd5b8501601f8101871361239757600080fd5b6123a687823560208401612228565b91505092959194509250565b600080604083850312156123c557600080fd5b6123ce83612280565b91506122f16020840161229c565b600080604083850312156123ef57600080fd5b6123f883612280565b946020939093013593505050565b6000806020838503121561241957600080fd5b823567ffffffffffffffff8082111561243157600080fd5b818501915085601f83011261244557600080fd5b81358181111561245457600080fd5b8660208260051b850101111561246957600080fd5b60209290920196919550909350505050565b60006020828403121561248d57600080fd5b61154f8261229c565b6000602082840312156124a857600080fd5b813561154f816129de565b6000602082840312156124c557600080fd5b815161154f816129de565b6000602082840312156124e257600080fd5b813567ffffffffffffffff8111156124f957600080fd5b8201601f8101841361250a57600080fd5b61181a84823560208401612228565b60006020828403121561252b57600080fd5b5035919050565b6000806040838503121561254557600080fd5b8235915060208084013567ffffffffffffffff8082111561256557600080fd5b818601915086601f83011261257957600080fd5b81358181111561258b5761258b6129c8565b8060051b915061259c848301612847565b8181528481019084860184860187018b10156125b757600080fd5b600095505b838610156125da5780358352600195909501949186019186016125bc565b508096505050505050509250929050565b600081518084526126038160208601602086016128da565b601f01601f19169290920160200192915050565b60008451602061262a8285838a016128da565b85519184019161263d8184848a016128da565b8554920191600090600181811c908083168061265a57607f831692505b85831081141561267857634e487b7160e01b85526022600452602485fd5b80801561268c576001811461269d576126ca565b60ff198516885283880195506126ca565b60008b81526020902060005b858110156126c25781548a8201529084019088016126a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270e908301846125eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561275057835183529284019291840191600101612734565b50909695505050505050565b60208152600061154f60208301846125eb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612870576128706129c8565b604052919050565b6000821982111561288b5761288b612970565b500190565b60008261289f5761289f612986565b500490565b60008160001904831182151516156128be576128be612970565b500290565b6000828210156128d5576128d5612970565b500390565b60005b838110156128f55781810151838201526020016128dd565b83811115610de65750506000910152565b600181811c9082168061291a57607f821691505b6020821081141561293b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561295557612955612970565b5060010190565b60008261296b5761296b612986565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fd257600080fdfea26469706673582212207631b784b3ef29c2d3869504c2621b14fa2be3fc9fbcb382e3e72db6cd65c7b364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a53686962614368696c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a53484942414348494c4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d634a7256427565756645456f706e476d796f7a466863336136534e537565527a655577556259544e393439482f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ShibaChild
Arg [1] : _symbol (string): SHIBACHILD
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmcJrVBueufEEopnGmyozFhc3a6SNSueRzeUwUbYTN949H/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 53686962614368696c6400000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 53484942414348494c4400000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d634a72564275657566
Arg [9] : 45456f706e476d796f7a466863336136534e537565527a655577556259544e39
Arg [10] : 3439482f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44521:4278:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38303:224;;;;;;;;;;-1:-1:-1;38303:224:0;;;;;:::i;:::-;;:::i;:::-;;;9022:14:1;;9015:22;8997:41;;8985:2;8970:18;38303:224:0;;;;;;;;48298:73;;;;;;;;;;-1:-1:-1;48298:73:0;;;;;:::i;:::-;;:::i;:::-;;25797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27356:221::-;;;;;;;;;;-1:-1:-1;27356:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7683:32:1;;;7665:51;;7653:2;7638:18;27356:221:0;7519:203:1;26879:411:0;;;;;;;;;;-1:-1:-1;26879:411:0;;;;;:::i;:::-;;:::i;44675:32::-;;;;;;;;;;;;;;;;;;;19129:25:1;;;19117:2;19102:18;44675:32:0;18983:177:1;38943:113:0;;;;;;;;;;-1:-1:-1;39031:10:0;:17;38943:113;;44899:55;;;;;;;;;;-1:-1:-1;44899:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44748:33;;;;;;;;;;;;;;;;28106:339;;;;;;;;;;-1:-1:-1;28106:339:0;;;;;:::i;:::-;;:::i;45672:910::-;;;;;;:::i;:::-;;:::i;38611:256::-;;;;;;;;;;-1:-1:-1;38611:256:0;;;;;:::i;:::-;;:::i;46824:239::-;;;;;;;;;;-1:-1:-1;46824:239:0;;;;;:::i;:::-;;:::i;48379:95::-;;;;;;;;;;-1:-1:-1;48379:95:0;;;;;:::i;:::-;;:::i;48633:163::-;;;:::i;28516:185::-;;;;;;;;;;-1:-1:-1;28516:185:0;;;;;:::i;:::-;;:::i;47069:348::-;;;;;;;;;;-1:-1:-1;47069:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47854:80::-;;;;;;;;;;-1:-1:-1;47854:80:0;;;;;:::i;:::-;;:::i;39133:233::-;;;;;;;;;;-1:-1:-1;39133:233:0;;;;;:::i;:::-;;:::i;48062:98::-;;;;;;;;;;-1:-1:-1;48062:98:0;;;;;:::i;:::-;;:::i;44786:26::-;;;;;;;;;;-1:-1:-1;44786:26:0;;;;;;;;25491:239;;;;;;;;;;-1:-1:-1;25491:239:0;;;;;:::i;:::-;;:::i;44607:21::-;;;;;;;;;;;;;:::i;25221:208::-;;;;;;;;;;-1:-1:-1;25221:208:0;;;;;:::i;:::-;;:::i;4767:103::-;;;;;;;;;;;;;:::i;45015:26::-;;;;;;;;;;-1:-1:-1;45015:26:0;;;;;:::i;:::-;;:::i;47940:116::-;;;;;;;;;;-1:-1:-1;47940:116:0;;;;;:::i;:::-;;:::i;44959:51::-;;;;;;;;;;-1:-1:-1;44959:51:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;44959:51:0;;;4116:87;;;;;;;;;;-1:-1:-1;4189:6:0;;-1:-1:-1;;;;;4189:6:0;4116:87;;25966:104;;;;;;;;;;;;;:::i;44817:35::-;;;;;;;;;;-1:-1:-1;44817:35:0;;;;;;;;;;;46588:228;;;;;;;;;;-1:-1:-1;46588:228:0;;;;;:::i;:::-;;:::i;27649:155::-;;;;;;;;;;-1:-1:-1;27649:155:0;;;;;:::i;:::-;;:::i;45046:30::-;;;;;;;;;;;;;;;;45081:50;;;;;;;;;;-1:-1:-1;45081:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;28772:328;;;;;;;;;;-1:-1:-1;28772:328:0;;;;;:::i;:::-;;:::i;44857:37::-;;;;;;;;;;-1:-1:-1;44857:37:0;;;;;:::i;:::-;;:::i;44633:::-;;;;;;;;;;;;;:::i;47423:423::-;;;;;;;;;;-1:-1:-1;47423:423:0;;;;;:::i;:::-;;:::i;44712:31::-;;;;;;;;;;;;;;;;48166:122;;;;;;;;;;-1:-1:-1;48166:122:0;;;;;:::i;:::-;;:::i;27875:164::-;;;;;;;;;;-1:-1:-1;27875:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27996:25:0;;;27972:4;27996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27875:164;48482:144;;;;;;;;;;-1:-1:-1;48482:144:0;;;;;:::i;:::-;;:::i;5025:201::-;;;;;;;;;;-1:-1:-1;5025:201:0;;;;;:::i;:::-;;:::i;38303:224::-;38405:4;-1:-1:-1;;;;;;38429:50:0;;-1:-1:-1;;;38429:50:0;;:90;;;38483:36;38507:11;38483:23;:36::i;:::-;38422:97;38303:224;-1:-1:-1;;38303:224:0:o;48298:73::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;;;;;;;;;48350:6:::1;:15:::0;;-1:-1:-1;;48350:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48298:73::o;25797:100::-;25851:13;25884:5;25877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25797:100;:::o;27356:221::-;27432:7;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;27452:73;;;;-1:-1:-1;;;27452:73:0;;15649:2:1;27452:73:0;;;15631:21:1;15688:2;15668:18;;;15661:30;15727:34;15707:18;;;15700:62;-1:-1:-1;;;15778:18:1;;;15771:42;15830:19;;27452:73:0;15447:408:1;27452:73:0;-1:-1:-1;27545:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27545:24:0;;27356:221::o;26879:411::-;26960:13;26976:23;26991:7;26976:14;:23::i;:::-;26960:39;;27024:5;-1:-1:-1;;;;;27018:11:0;:2;-1:-1:-1;;;;;27018:11:0;;;27010:57;;;;-1:-1:-1;;;27010:57:0;;17249:2:1;27010:57:0;;;17231:21:1;17288:2;17268:18;;;17261:30;17327:34;17307:18;;;17300:62;-1:-1:-1;;;17378:18:1;;;17371:31;17419:19;;27010:57:0;17047:397:1;27010:57:0;2920:10;-1:-1:-1;;;;;27102:21:0;;;;:62;;-1:-1:-1;27127:37:0;27144:5;2920:10;27875:164;:::i;27127:37::-;27080:168;;;;-1:-1:-1;;;27080:168:0;;13350:2:1;27080:168:0;;;13332:21:1;13389:2;13369:18;;;13362:30;13428:34;13408:18;;;13401:62;13499:26;13479:18;;;13472:54;13543:19;;27080:168:0;13148:420:1;27080:168:0;27261:21;27270:2;27274:7;27261:8;:21::i;:::-;26949:341;26879:411;;:::o;28106:339::-;28301:41;2920:10;28334:7;28301:18;:41::i;:::-;28293:103;;;;-1:-1:-1;;;28293:103:0;;;;;;;:::i;:::-;28409:28;28419:4;28425:2;28429:7;28409:9;:28::i;45672:910::-;45764:6;;;;45763:7;45755:42;;;;-1:-1:-1;;;45755:42:0;;10306:2:1;45755:42:0;;;10288:21:1;10345:2;10325:18;;;10318:30;-1:-1:-1;;;10364:18:1;;;10357:52;10426:18;;45755:42:0;10104:346:1;45755:42:0;45804:14;45821:13;39031:10;:17;;38943:113;45821:13;45804:30;;45863:1;45849:11;:15;45841:55;;;;-1:-1:-1;;;45841:55:0;;18829:2:1;45841:55:0;;;18811:21:1;18868:2;18848:18;;;18841:30;18907:29;18887:18;;;18880:57;18954:18;;45841:55:0;18627:351:1;45841:55:0;45926:13;;45911:11;:28;;45903:77;;;;-1:-1:-1;;;45903:77:0;;12593:2:1;45903:77:0;;;12575:21:1;12632:2;12612:18;;;12605:30;12671:34;12651:18;;;12644:62;-1:-1:-1;;;12722:18:1;;;12715:34;12766:19;;45903:77:0;12391:400:1;45903:77:0;46019:9;;45995:20;46004:11;45995:6;:20;:::i;:::-;:33;;45987:68;;;;-1:-1:-1;;;45987:68:0;;14596:2:1;45987:68:0;;;14578:21:1;14635:2;14615:18;;;14608:30;-1:-1:-1;;;14654:18:1;;;14647:52;14716:18;;45987:68:0;14394:346:1;45987:68:0;4189:6;;-1:-1:-1;;;;;4189:6:0;46068:10;:21;46064:234;;46105:15;;;;;;;;:23;;:15;:23;46102:116;;;46153:25;46167:10;46153:13;:25::i;:::-;46145:61;;;;-1:-1:-1;;;46145:61:0;;12998:2:1;46145:61:0;;;12980:21:1;13037:2;13017:18;;;13010:30;13076:25;13056:18;;;13049:53;13119:18;;46145:61:0;12796:347:1;46145:61:0;46256:11;46249:4;;:18;;;;:::i;:::-;46236:9;:31;;46228:62;;;;-1:-1:-1;;;46228:62:0;;17651:2:1;46228:62:0;;;17633:21:1;17690:2;17670:18;;;17663:30;-1:-1:-1;;;17709:18:1;;;17702:48;17767:18;;46228:62:0;17449:342:1;46228:62:0;46327:1;46310:267;46335:11;46330:1;:16;46310:267;;46385:10;46364:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;46409:10:0;;-1:-1:-1;46422:7:0;46430:5;46434:1;46430;:5;:::i;:::-;46422:14;;;;;;;;:::i;:::-;;;;;;;;;;;;46447:20;;;;:16;:20;;;;;;:33;;-1:-1:-1;;;;;;46447:33:0;46470:10;46447:33;;;46491:9;:18;;46447:33;46491:18;;;;;;;;;;;;46520:11;:13;;46422:14;;-1:-1:-1;46520:13:0;;;;;:::i;:::-;;;;;;46544:25;46554:10;46566:2;46544:9;:25::i;:::-;-1:-1:-1;46348:3:0;;;;:::i;:::-;;;;46310:267;;;;45748:834;45672:910;;:::o;38611:256::-;38708:7;38744:23;38761:5;38744:16;:23::i;:::-;38736:5;:31;38728:87;;;;-1:-1:-1;;;38728:87:0;;9475:2:1;38728:87:0;;;9457:21:1;9514:2;9494:18;;;9487:30;9553:34;9533:18;;;9526:62;-1:-1:-1;;;9604:18:1;;;9597:41;9655:19;;38728:87:0;9273:407:1;38728:87:0;-1:-1:-1;;;;;;38833:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38611:256::o;46824:239::-;46883:4;;46896:143;46917:20;:27;46913:31;;46896:143;;;46991:5;-1:-1:-1;;;;;46964:32:0;:20;46985:1;46964:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46964:23:0;:32;46960:72;;;-1:-1:-1;47018:4:0;;46824:239;-1:-1:-1;;46824:239:0:o;46960:72::-;46946:3;;;;:::i;:::-;;;;46896:143;;;-1:-1:-1;47052:5:0;;46824:239;-1:-1:-1;;46824:239:0:o;48379:95::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48444:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;48444:24:0;;::::1;::::0;;;::::1;::::0;;48379:95::o;48633:163::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48717:1:::1;48693:21;:25;48685:50;;;::::0;-1:-1:-1;;;48685:50:0;;15308:2:1;48685:50:0::1;::::0;::::1;15290:21:1::0;15347:2;15327:18;;;15320:30;-1:-1:-1;;;15366:18:1;;;15359:42;15418:18;;48685:50:0::1;15106:336:1::0;48685:50:0::1;4189:6:::0;;48742:48:::1;::::0;-1:-1:-1;;;;;4189:6:0;;;;48768:21:::1;48742:48:::0;::::1;;;::::0;::::1;::::0;;;48768:21;4189:6;48742:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48633:163::o:0;28516:185::-;28654:39;28671:4;28677:2;28681:7;28654:39;;;;;;;;;;;;:16;:39::i;47069:348::-;47144:16;47172:23;47198:17;47208:6;47198:9;:17::i;:::-;47172:43;;47222:25;47264:15;47250:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47250:30:0;;47222:58;;47292:9;47287:103;47307:15;47303:1;:19;47287:103;;;47352:30;47372:6;47380:1;47352:19;:30::i;:::-;47338:8;47347:1;47338:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47324:3;;;;:::i;:::-;;;;47287:103;;;-1:-1:-1;47403:8:0;47069:348;-1:-1:-1;;;47069:348:0:o;47854:80::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47913:4:::1;:15:::0;47854:80::o;39133:233::-;39208:7;39244:30;39031:10;:17;;38943:113;39244:30;39236:5;:38;39228:95;;;;-1:-1:-1;;;39228:95:0;;18416:2:1;39228:95:0;;;18398:21:1;18455:2;18435:18;;;18428:30;18494:34;18474:18;;;18467:62;-1:-1:-1;;;18545:18:1;;;18538:42;18597:19;;39228:95:0;18214:408:1;39228:95:0;39341:10;39352:5;39341:17;;;;;;;;:::i;:::-;;;;;;;;;39334:24;;39133:233;;;:::o;48062:98::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48133:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48062:98:::0;:::o;25491:239::-;25563:7;25599:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25599:16:0;25634:19;25626:73;;;;-1:-1:-1;;;25626:73:0;;14186:2:1;25626:73:0;;;14168:21:1;14225:2;14205:18;;;14198:30;14264:34;14244:18;;;14237:62;-1:-1:-1;;;14315:18:1;;;14308:39;14364:19;;25626:73:0;13984:405:1;44607:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25221:208::-;25293:7;-1:-1:-1;;;;;25321:19:0;;25313:74;;;;-1:-1:-1;;;25313:74:0;;13775:2:1;25313:74:0;;;13757:21:1;13814:2;13794:18;;;13787:30;13853:34;13833:18;;;13826:62;-1:-1:-1;;;13904:18:1;;;13897:40;13954:19;;25313:74:0;13573:406:1;25313:74:0;-1:-1:-1;;;;;;25405:16:0;;;;;:9;:16;;;;;;;25221:208::o;4767:103::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;4832:30:::1;4859:1;4832:18;:30::i;:::-;4767:103::o:0;45015:26::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45015:26:0;:::o;47940:116::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48017:13:::1;:33:::0;47940:116::o;25966:104::-;26022:13;26055:7;26048:14;;;;;:::i;46588:228::-;46651:4;;46664:126;46687:9;:16;46683:20;;46664:126;;;46740:2;46724:9;46734:1;46724:12;;;;;;;;:::i;:::-;;;;;;;;;:18;46721:61;;;-1:-1:-1;46766:4:0;;46588:228;-1:-1:-1;;46588:228:0:o;46721:61::-;46705:3;;;;:::i;:::-;;;;46664:126;;27649:155;27744:52;2920:10;27777:8;27787;27744:18;:52::i;28772:328::-;28947:41;2920:10;28980:7;28947:18;:41::i;:::-;28939:103;;;;-1:-1:-1;;;28939:103:0;;;;;;;:::i;:::-;29053:39;29067:4;29073:2;29077:7;29086:5;29053:13;:39::i;44857:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44857:37:0;;-1:-1:-1;44857:37:0;:::o;44633:::-;;;;;;;:::i;47423:423::-;30675:4;30699:16;;;:7;:16;;;;;;47521:13;;-1:-1:-1;;;;;30699:16:0;47546:97;;;;-1:-1:-1;;;47546:97:0;;16833:2:1;47546:97:0;;;16815:21:1;16872:2;16852:18;;;16845:30;16911:34;16891:18;;;16884:62;-1:-1:-1;;;16962:18:1;;;16955:45;17017:19;;47546:97:0;16631:411:1;47546:97:0;47652:28;47683:10;:8;:10::i;:::-;47652:41;;47738:1;47713:14;47707:28;:32;:133;;;;;;;;;;;;;;;;;47775:14;47791:18;:7;:16;:18::i;:::-;47811:13;47758:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47707:133;47700:140;47423:423;-1:-1:-1;;;47423:423:0:o;48166:122::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48249:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48482:144::-:0;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48557:27:::1;48564:20;;48557:27;:::i;:::-;48591:29;:20;48614:6:::0;;48591:29:::1;:::i;5025:201::-:0;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5114:22:0;::::1;5106:73;;;::::0;-1:-1:-1;;;5106:73:0;;10657:2:1;5106:73:0::1;::::0;::::1;10639:21:1::0;10696:2;10676:18;;;10669:30;10735:34;10715:18;;;10708:62;-1:-1:-1;;;10786:18:1;;;10779:36;10832:19;;5106:73:0::1;10455:402:1::0;5106:73:0::1;5190:28;5209:8;5190:18;:28::i;24852:305::-:0;24954:4;-1:-1:-1;;;;;;24991:40:0;;-1:-1:-1;;;24991:40:0;;:105;;-1:-1:-1;;;;;;;25048:48:0;;-1:-1:-1;;;25048:48:0;24991:105;:158;;;-1:-1:-1;;;;;;;;;;16657:40:0;;;25113:36;16548:157;34592:174;34667:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34667:29:0;-1:-1:-1;;;;;34667:29:0;;;;;;;;:24;;34721:23;34667:24;34721:14;:23::i;:::-;-1:-1:-1;;;;;34712:46:0;;;;;;;;;;;34592:174;;:::o;30904:348::-;30997:4;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;31014:73;;;;-1:-1:-1;;;31014:73:0;;12180:2:1;31014:73:0;;;12162:21:1;12219:2;12199:18;;;12192:30;12258:34;12238:18;;;12231:62;-1:-1:-1;;;12309:18:1;;;12302:42;12361:19;;31014:73:0;11978:408:1;31014:73:0;31098:13;31114:23;31129:7;31114:14;:23::i;:::-;31098:39;;31167:5;-1:-1:-1;;;;;31156:16:0;:7;-1:-1:-1;;;;;31156:16:0;;:51;;;;31200:7;-1:-1:-1;;;;;31176:31:0;:20;31188:7;31176:11;:20::i;:::-;-1:-1:-1;;;;;31176:31:0;;31156:51;:87;;;-1:-1:-1;;;;;;27996:25:0;;;27972:4;27996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31211:32;31148:96;30904:348;-1:-1:-1;;;;30904:348:0:o;33896:578::-;34055:4;-1:-1:-1;;;;;34028:31:0;:23;34043:7;34028:14;:23::i;:::-;-1:-1:-1;;;;;34028:31:0;;34020:85;;;;-1:-1:-1;;;34020:85:0;;16423:2:1;34020:85:0;;;16405:21:1;16462:2;16442:18;;;16435:30;16501:34;16481:18;;;16474:62;-1:-1:-1;;;16552:18:1;;;16545:39;16601:19;;34020:85:0;16221:405:1;34020:85:0;-1:-1:-1;;;;;34124:16:0;;34116:65;;;;-1:-1:-1;;;34116:65:0;;11421:2:1;34116:65:0;;;11403:21:1;11460:2;11440:18;;;11433:30;11499:34;11479:18;;;11472:62;-1:-1:-1;;;11550:18:1;;;11543:34;11594:19;;34116:65:0;11219:400:1;34116:65:0;34194:39;34215:4;34221:2;34225:7;34194:20;:39::i;:::-;34298:29;34315:1;34319:7;34298:8;:29::i;:::-;-1:-1:-1;;;;;34340:15:0;;;;;;:9;:15;;;;;:20;;34359:1;;34340:15;:20;;34359:1;;34340:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34371:13:0;;;;;;:9;:13;;;;;:18;;34388:1;;34371:13;:18;;34388:1;;34371:18;:::i;:::-;;;;-1:-1:-1;;34400:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34400:21:0;-1:-1:-1;;;;;34400:21:0;;;;;;;;;34439:27;;34400:16;;34439:27;;;;;;;33896:578;;;:::o;31594:110::-;31670:26;31680:2;31684:7;31670:26;;;;;;;;;;;;:9;:26::i;5386:191::-;5479:6;;;-1:-1:-1;;;;;5496:17:0;;;-1:-1:-1;;;;;;5496:17:0;;;;;;;5529:40;;5479:6;;;5496:17;5479:6;;5529:40;;5460:16;;5529:40;5449:128;5386:191;:::o;34908:315::-;35063:8;-1:-1:-1;;;;;35054:17:0;:5;-1:-1:-1;;;;;35054:17:0;;;35046:55;;;;-1:-1:-1;;;35046:55:0;;11826:2:1;35046:55:0;;;11808:21:1;11865:2;11845:18;;;11838:30;11904:27;11884:18;;;11877:55;11949:18;;35046:55:0;11624:349:1;35046:55:0;-1:-1:-1;;;;;35112:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35112:46:0;;;;;;;;;;35174:41;;8997::1;;;35174::0;;8970:18:1;35174:41:0;;;;;;;34908:315;;;:::o;29982:::-;30139:28;30149:4;30155:2;30159:7;30139:9;:28::i;:::-;30186:48;30209:4;30215:2;30219:7;30228:5;30186:22;:48::i;:::-;30178:111;;;;-1:-1:-1;;;30178:111:0;;;;;;;:::i;45325:102::-;45385:13;45414:7;45407:14;;;;;:::i;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;39979:589;-1:-1:-1;;;;;40185:18:0;;40181:187;;40220:40;40252:7;41395:10;:17;;41368:24;;;;:15;:24;;;;;:44;;;41423:24;;;;;;;;;;;;41291:164;40220:40;40181:187;;;40290:2;-1:-1:-1;;;;;40282:10:0;:4;-1:-1:-1;;;;;40282:10:0;;40278:90;;40309:47;40342:4;40348:7;40309:32;:47::i;:::-;-1:-1:-1;;;;;40382:16:0;;40378:183;;40415:45;40452:7;40415:36;:45::i;40378:183::-;40488:4;-1:-1:-1;;;;;40482:10:0;:2;-1:-1:-1;;;;;40482:10:0;;40478:83;;40509:40;40537:2;40541:7;40509:27;:40::i;31931:321::-;32061:18;32067:2;32071:7;32061:5;:18::i;:::-;32112:54;32143:1;32147:2;32151:7;32160:5;32112:22;:54::i;:::-;32090:154;;;;-1:-1:-1;;;32090:154:0;;;;;;;:::i;35788:799::-;35943:4;-1:-1:-1;;;;;35964:13:0;;6727:20;6775:8;35960:620;;36000:72;;-1:-1:-1;;;36000:72:0;;-1:-1:-1;;;;;36000:36:0;;;;;:72;;2920:10;;36051:4;;36057:7;;36066:5;;36000:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36000:72:0;;;;;;;;-1:-1:-1;;36000:72:0;;;;;;;;;;;;:::i;:::-;;;35996:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36242:13:0;;36238:272;;36285:60;;-1:-1:-1;;;36285:60:0;;;;;;;:::i;36238:272::-;36460:6;36454:13;36445:6;36441:2;36437:15;36430:38;35996:529;-1:-1:-1;;;;;;36123:51:0;-1:-1:-1;;;36123:51:0;;-1:-1:-1;36116:58:0;;35960:620;-1:-1:-1;36564:4:0;35788:799;;;;;;:::o;42082:988::-;42348:22;42398:1;42373:22;42390:4;42373:16;:22::i;:::-;:26;;;;:::i;:::-;42410:18;42431:26;;;:17;:26;;;;;;42348:51;;-1:-1:-1;42564:28:0;;;42560:328;;-1:-1:-1;;;;;42631:18:0;;42609:19;42631:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42682:30;;;;;;:44;;;42799:30;;:17;:30;;;;;:43;;;42560:328;-1:-1:-1;42984:26:0;;;;:17;:26;;;;;;;;42977:33;;;-1:-1:-1;;;;;43028:18:0;;;;;:12;:18;;;;;:34;;;;;;;43021:41;42082:988::o;43365:1079::-;43643:10;:17;43618:22;;43643:21;;43663:1;;43643:21;:::i;:::-;43675:18;43696:24;;;:15;:24;;;;;;44069:10;:26;;43618:46;;-1:-1:-1;43696:24:0;;43618:46;;44069:26;;;;;;:::i;:::-;;;;;;;;;44047:48;;44133:11;44108:10;44119;44108:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44213:28;;;:15;:28;;;;;;;:41;;;44385:24;;;;;44378:31;44420:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43436:1008;;;43365:1079;:::o;40869:221::-;40954:14;40971:20;40988:2;40971:16;:20::i;:::-;-1:-1:-1;;;;;41002:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41047:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40869:221:0:o;32588:382::-;-1:-1:-1;;;;;32668:16:0;;32660:61;;;;-1:-1:-1;;;32660:61:0;;14947:2:1;32660:61:0;;;14929:21:1;;;14966:18;;;14959:30;15025:34;15005:18;;;14998:62;15077:18;;32660:61:0;14745:356:1;32660:61:0;30675:4;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;:30;32732:58;;;;-1:-1:-1;;;32732:58:0;;11064:2:1;32732:58:0;;;11046:21:1;11103:2;11083:18;;;11076:30;11142;11122:18;;;11115:58;11190:18;;32732:58:0;10862:352:1;32732:58:0;32803:45;32832:1;32836:2;32840:7;32803:20;:45::i;:::-;-1:-1:-1;;;;;32861:13:0;;;;;;:9;:13;;;;;:18;;32878:1;;32861:13;:18;;32878:1;;32861:18;:::i;:::-;;;;-1:-1:-1;;32890:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32890:21:0;-1:-1:-1;;;;;32890:21:0;;;;;;;;32929:33;;32890:16;;;32929:33;;32890:16;;32929:33;32588:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:615::-;2832:6;2840;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2949:9;2936:23;2978:18;3019:2;3011:6;3008:14;3005:34;;;3035:1;3032;3025:12;3005:34;3073:6;3062:9;3058:22;3048:32;;3118:7;3111:4;3107:2;3103:13;3099:27;3089:55;;3140:1;3137;3130:12;3089:55;3180:2;3167:16;3206:2;3198:6;3195:14;3192:34;;;3222:1;3219;3212:12;3192:34;3275:7;3270:2;3260:6;3257:1;3253:14;3249:2;3245:23;3241:32;3238:45;3235:65;;;3296:1;3293;3286:12;3235:65;3327:2;3319:11;;;;;3349:6;;-1:-1:-1;2746:615:1;;-1:-1:-1;;;;2746:615:1:o;3366:180::-;3422:6;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3514:26;3530:9;3514:26;:::i;3551:245::-;3609:6;3662:2;3650:9;3641:7;3637:23;3633:32;3630:52;;;3678:1;3675;3668:12;3630:52;3717:9;3704:23;3736:30;3760:5;3736:30;:::i;3801:249::-;3870:6;3923:2;3911:9;3902:7;3898:23;3894:32;3891:52;;;3939:1;3936;3929:12;3891:52;3971:9;3965:16;3990:30;4014:5;3990:30;:::i;4055:450::-;4124:6;4177:2;4165:9;4156:7;4152:23;4148:32;4145:52;;;4193:1;4190;4183:12;4145:52;4233:9;4220:23;4266:18;4258:6;4255:30;4252:50;;;4298:1;4295;4288:12;4252:50;4321:22;;4374:4;4366:13;;4362:27;-1:-1:-1;4352:55:1;;4403:1;4400;4393:12;4352:55;4426:73;4491:7;4486:2;4473:16;4468:2;4464;4460:11;4426:73;:::i;4510:180::-;4569:6;4622:2;4610:9;4601:7;4597:23;4593:32;4590:52;;;4638:1;4635;4628:12;4590:52;-1:-1:-1;4661:23:1;;4510:180;-1:-1:-1;4510:180:1:o;4695:1025::-;4788:6;4796;4849:2;4837:9;4828:7;4824:23;4820:32;4817:52;;;4865:1;4862;4855:12;4817:52;4901:9;4888:23;4878:33;;4930:2;4983;4972:9;4968:18;4955:32;5006:18;5047:2;5039:6;5036:14;5033:34;;;5063:1;5060;5053:12;5033:34;5101:6;5090:9;5086:22;5076:32;;5146:7;5139:4;5135:2;5131:13;5127:27;5117:55;;5168:1;5165;5158:12;5117:55;5204:2;5191:16;5226:2;5222;5219:10;5216:36;;;5232:18;;:::i;:::-;5278:2;5275:1;5271:10;5261:20;;5301:28;5325:2;5321;5317:11;5301:28;:::i;:::-;5363:15;;;5394:12;;;;5426:11;;;5456;;;5452:20;;5449:33;-1:-1:-1;5446:53:1;;;5495:1;5492;5485:12;5446:53;5517:1;5508:10;;5527:163;5541:2;5538:1;5535:9;5527:163;;;5598:17;;5586:30;;5559:1;5552:9;;;;;5636:12;;;;5668;;5527:163;;;5531:3;5709:5;5699:15;;;;;;;;4695:1025;;;;;:::o;5725:257::-;5766:3;5804:5;5798:12;5831:6;5826:3;5819:19;5847:63;5903:6;5896:4;5891:3;5887:14;5880:4;5873:5;5869:16;5847:63;:::i;:::-;5964:2;5943:15;-1:-1:-1;;5939:29:1;5930:39;;;;5971:4;5926:50;;5725:257;-1:-1:-1;;5725:257:1:o;5987:1527::-;6211:3;6249:6;6243:13;6275:4;6288:51;6332:6;6327:3;6322:2;6314:6;6310:15;6288:51;:::i;:::-;6402:13;;6361:16;;;;6424:55;6402:13;6361:16;6446:15;;;6424:55;:::i;:::-;6568:13;;6501:20;;;6541:1;;6628;6650:18;;;;6703;;;;6730:93;;6808:4;6798:8;6794:19;6782:31;;6730:93;6871:2;6861:8;6858:16;6838:18;6835:40;6832:167;;;-1:-1:-1;;;6898:33:1;;6954:4;6951:1;6944:15;6984:4;6905:3;6972:17;6832:167;7015:18;7042:110;;;;7166:1;7161:328;;;;7008:481;;7042:110;-1:-1:-1;;7077:24:1;;7063:39;;7122:20;;;;-1:-1:-1;7042:110:1;;7161:328;19518:1;19511:14;;;19555:4;19542:18;;7256:1;7270:169;7284:8;7281:1;7278:15;7270:169;;;7366:14;;7351:13;;;7344:37;7409:16;;;;7301:10;;7270:169;;;7274:3;;7470:8;7463:5;7459:20;7452:27;;7008:481;-1:-1:-1;7505:3:1;;5987:1527;-1:-1:-1;;;;;;;;;;;5987:1527:1:o;7727:488::-;-1:-1:-1;;;;;7996:15:1;;;7978:34;;8048:15;;8043:2;8028:18;;8021:43;8095:2;8080:18;;8073:34;;;8143:3;8138:2;8123:18;;8116:31;;;7921:4;;8164:45;;8189:19;;8181:6;8164:45;:::i;:::-;8156:53;7727:488;-1:-1:-1;;;;;;7727:488:1:o;8220:632::-;8391:2;8443:21;;;8513:13;;8416:18;;;8535:22;;;8362:4;;8391:2;8614:15;;;;8588:2;8573:18;;;8362:4;8657:169;8671:6;8668:1;8665:13;8657:169;;;8732:13;;8720:26;;8801:15;;;;8766:12;;;;8693:1;8686:9;8657:169;;;-1:-1:-1;8843:3:1;;8220:632;-1:-1:-1;;;;;;8220:632:1:o;9049:219::-;9198:2;9187:9;9180:21;9161:4;9218:44;9258:2;9247:9;9243:18;9235:6;9218:44;:::i;9685:414::-;9887:2;9869:21;;;9926:2;9906:18;;;9899:30;9965:34;9960:2;9945:18;;9938:62;-1:-1:-1;;;10031:2:1;10016:18;;10009:48;10089:3;10074:19;;9685:414::o;15860:356::-;16062:2;16044:21;;;16081:18;;;16074:30;16140:34;16135:2;16120:18;;16113:62;16207:2;16192:18;;15860:356::o;17796:413::-;17998:2;17980:21;;;18037:2;18017:18;;;18010:30;18076:34;18071:2;18056:18;;18049:62;-1:-1:-1;;;18142:2:1;18127:18;;18120:47;18199:3;18184:19;;17796:413::o;19165:275::-;19236:2;19230:9;19301:2;19282:13;;-1:-1:-1;;19278:27:1;19266:40;;19336:18;19321:34;;19357:22;;;19318:62;19315:88;;;19383:18;;:::i;:::-;19419:2;19412:22;19165:275;;-1:-1:-1;19165:275:1:o;19571:128::-;19611:3;19642:1;19638:6;19635:1;19632:13;19629:39;;;19648:18;;:::i;:::-;-1:-1:-1;19684:9:1;;19571:128::o;19704:120::-;19744:1;19770;19760:35;;19775:18;;:::i;:::-;-1:-1:-1;19809:9:1;;19704:120::o;19829:168::-;19869:7;19935:1;19931;19927:6;19923:14;19920:1;19917:21;19912:1;19905:9;19898:17;19894:45;19891:71;;;19942:18;;:::i;:::-;-1:-1:-1;19982:9:1;;19829:168::o;20002:125::-;20042:4;20070:1;20067;20064:8;20061:34;;;20075:18;;:::i;:::-;-1:-1:-1;20112:9:1;;20002:125::o;20132:258::-;20204:1;20214:113;20228:6;20225:1;20222:13;20214:113;;;20304:11;;;20298:18;20285:11;;;20278:39;20250:2;20243:10;20214:113;;;20345:6;20342:1;20339:13;20336:48;;;-1:-1:-1;;20380:1:1;20362:16;;20355:27;20132:258::o;20395:380::-;20474:1;20470:12;;;;20517;;;20538:61;;20592:4;20584:6;20580:17;20570:27;;20538:61;20645:2;20637:6;20634:14;20614:18;20611:38;20608:161;;;20691:10;20686:3;20682:20;20679:1;20672:31;20726:4;20723:1;20716:15;20754:4;20751:1;20744:15;20608:161;;20395:380;;;:::o;20780:135::-;20819:3;-1:-1:-1;;20840:17:1;;20837:43;;;20860:18;;:::i;:::-;-1:-1:-1;20907:1:1;20896:13;;20780:135::o;20920:112::-;20952:1;20978;20968:35;;20983:18;;:::i;:::-;-1:-1:-1;21017:9:1;;20920:112::o;21037:127::-;21098:10;21093:3;21089:20;21086:1;21079:31;21129:4;21126:1;21119:15;21153:4;21150:1;21143:15;21169:127;21230:10;21225:3;21221:20;21218:1;21211:31;21261:4;21258:1;21251:15;21285:4;21282:1;21275:15;21301:127;21362:10;21357:3;21353:20;21350:1;21343:31;21393:4;21390:1;21383:15;21417:4;21414:1;21407:15;21433:127;21494:10;21489:3;21485:20;21482:1;21475:31;21525:4;21522:1;21515:15;21549:4;21546:1;21539:15;21565:127;21626:10;21621:3;21617:20;21614:1;21607:31;21657:4;21654:1;21647:15;21681:4;21678:1;21671:15;21697:131;-1:-1:-1;;;;;;21771:32:1;;21761:43;;21751:71;;21818:1;21815;21808:12
Swarm Source
ipfs://7631b784b3ef29c2d3869504c2621b14fa2be3fc9fbcb382e3e72db6cd65c7b3
Loading...
Loading
OVERVIEW
ShibaChild is an NFT project created by NFT Vegas Collections.Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.