Overview
ETH Balance
0.14000000000000002 ETH
Eth Value
$536.05 (@ $3,828.94/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
Aliens
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Burnable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./ERC721Pausable.sol"; contract Aliens is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public constant MAX_NFT = 10000; uint256 public constant PRICE = 7 * 10**16; uint256 public constant MAX_BY_MINT = 20; address public creatorAddress; string public baseTokenURI; event CreateAliens(uint256 indexed id); constructor(string memory baseURI, address payable creator) ERC721("Aliens", "ALIENS") { setBaseURI(baseURI); creatorAddress = creator; pause(true); } modifier saleIsOpen { require(_totalSupply() <= MAX_NFT, "Sale end"); if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); } _; } function _totalSupply() internal view returns (uint) { return _tokenIdTracker.current(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(total + _count <= MAX_NFT, "Max limit"); require(total <= MAX_NFT, "Sale end"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } } function _mintAnElement(address _to) private { uint id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateAliens(id); } function price(uint256 _count) public pure returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setCreatorAddress(address payable creator) public onlyOwner { creatorAddress = creator; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(creatorAddress, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract 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(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Pausable.sol"; import "./Ownable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Ownable, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (_msgSender() != owner()) { require(!paused(), "ERC721Pausable: token transfer while paused"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"creator","type":"address"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateAliens","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"creator","type":"address"}],"name":"setCreatorAddress","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":"totalMint","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002ea738038062002ea78339810160408190526200003491620003f5565b60405180604001604052806006815260200165416c69656e7360d01b81525060405180604001604052806006815260200165414c49454e5360d01b81525081600090805190602001906200008a92919062000332565b508051620000a090600190602084019062000332565b505050620000bd620000b76200010460201b60201c565b62000108565b600a805460ff60a01b19169055620000d5826200015a565b600c80546001600160a01b0319166001600160a01b038316179055620000fc6001620001c2565b5050620005d6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016462000104565b6001600160a01b03166200017762000231565b6001600160a01b031614620001a95760405162461bcd60e51b8152600401620001a0906200054e565b60405180910390fd5b8051620001be90600d90602084019062000332565b5050565b620001cc62000104565b6001600160a01b0316620001df62000231565b6001600160a01b031614620002085760405162461bcd60e51b8152600401620001a0906200054e565b6001811515141562000224576200021e62000240565b6200022e565b6200022e620002c1565b50565b600a546001600160a01b031690565b6200024a62000322565b156200026a5760405162461bcd60e51b8152600401620001a09062000524565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002a862000104565b604051620002b79190620004d9565b60405180910390a1565b620002cb62000322565b620002ea5760405162461bcd60e51b8152600401620001a090620004ed565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002a862000104565b600a54600160a01b900460ff1690565b828054620003409062000583565b90600052602060002090601f016020900481019282620003645760008555620003af565b82601f106200037f57805160ff1916838001178555620003af565b82800160010185558215620003af579182015b82811115620003af57825182559160200191906001019062000392565b50620003bd929150620003c1565b5090565b5b80821115620003bd5760008155600101620003c2565b80516001600160a01b0381168114620003f057600080fd5b919050565b6000806040838503121562000408578182fd5b82516001600160401b03808211156200041f578384fd5b818501915085601f83011262000433578384fd5b815181811115620004485762000448620005c0565b6040516020601f8301601f1916820181018481118382101715620004705762000470620005c0565b604052828252848301810189101562000487578687fd5b8693505b82841015620004aa57848401810151828501820152928301926200048b565b82841115620004bb57868184840101525b819650620004cb818901620003d8565b955050505050509250929050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200059857607f821691505b60208210811415620005ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128c180620005e66000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d5780639127cc69116100a0578063c87b56dd1161006f578063c87b56dd14610564578063d547cfb714610584578063e927fc5c14610599578063e985e9c5146105ae578063f2fde38b146105ce576101f9565b80639127cc69146104ef57806395d89b411461050f578063a22cb46514610524578063b88d4fde14610544576101f9565b8063853828b6116100dc578063853828b61461049b5780638ad5de28146104b05780638d859f3e146104c55780638da5cb5b146104da576101f9565b80636352211e146104315780636fdaddf11461045157806370a0823114610466578063715018a614610486576101f9565b80632f745c5911610190578063438b63001161015f578063438b63001461039a5780634f6ccce7146103c757806355f804b3146103e757806359a7715a146104075780635c975abb1461041c576101f9565b80632f745c591461032757806340c10f191461034757806342842e0e1461035a57806342966c681461037a576101f9565b8063095ea7b3116101cc578063095ea7b3146102a557806318160ddd146102c557806323b872dd146102e757806326a49e3714610307576101f9565b806301ffc9a7146101fe57806302329a291461023457806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611ec4565b6105ee565b60405161022b919061204d565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611eaa565b610601565b005b34801561026257600080fd5b5061026b61066c565b60405161022b9190612058565b34801561028457600080fd5b50610298610293366004611f42565b6106fe565b60405161022b9190611fb8565b3480156102b157600080fd5b506102546102c0366004611e7f565b610741565b3480156102d157600080fd5b506102da6107d9565b60405161022b919061271d565b3480156102f357600080fd5b50610254610302366004611d8e565b6107df565b34801561031357600080fd5b506102da610322366004611f42565b610817565b34801561033357600080fd5b506102da610342366004611e7f565b61082a565b610254610355366004611e7f565b61087c565b34801561036657600080fd5b50610254610375366004611d8e565b6109bf565b34801561038657600080fd5b50610254610395366004611f42565b6109da565b3480156103a657600080fd5b506103ba6103b5366004611d3a565b610a0a565b60405161022b9190612009565b3480156103d357600080fd5b506102da6103e2366004611f42565b610ac8565b3480156103f357600080fd5b50610254610402366004611efc565b610b23565b34801561041357600080fd5b506102da610b79565b34801561042857600080fd5b5061021e610b88565b34801561043d57600080fd5b5061029861044c366004611f42565b610b98565b34801561045d57600080fd5b506102da610bcd565b34801561047257600080fd5b506102da610481366004611d3a565b610bd3565b34801561049257600080fd5b50610254610c17565b3480156104a757600080fd5b50610254610c62565b3480156104bc57600080fd5b506102da610cc2565b3480156104d157600080fd5b506102da610cc7565b3480156104e657600080fd5b50610298610cd2565b3480156104fb57600080fd5b5061025461050a366004611d3a565b610ce1565b34801561051b57600080fd5b5061026b610d42565b34801561053057600080fd5b5061025461053f366004611e4b565b610d51565b34801561055057600080fd5b5061025461055f366004611dce565b610e1f565b34801561057057600080fd5b5061026b61057f366004611f42565b610e58565b34801561059057600080fd5b5061026b610edb565b3480156105a557600080fd5b50610298610f69565b3480156105ba57600080fd5b5061021e6105c9366004611d56565b610f78565b3480156105da57600080fd5b506102546105e9366004611d3a565b610fa6565b60006105f982611014565b90505b919050565b610609611039565b6001600160a01b031661061a610cd2565b6001600160a01b0316146106495760405162461bcd60e51b8152600401610640906124cd565b60405180910390fd5b600181151514156106615761065c61103d565b610669565b6106696110b5565b50565b60606000805461067b906127b4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906127b4565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b60006107098261110f565b6107255760405162461bcd60e51b815260040161064090612481565b506000908152600460205260409020546001600160a01b031690565b600061074c82610b98565b9050806001600160a01b0316836001600160a01b031614156107805760405162461bcd60e51b8152600401610640906125c5565b806001600160a01b0316610792611039565b6001600160a01b031614806107ae57506107ae816105c9611039565b6107ca5760405162461bcd60e51b81526004016106409061233a565b6107d4838361112c565b505050565b60085490565b6107f06107ea611039565b8261119a565b61080c5760405162461bcd60e51b815260040161064090612630565b6107d483838361121f565b60006105f966f8b0a10e4700008361134c565b600061083583610bd3565b82106108535760405162461bcd60e51b81526004016106409061210c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612710610887611358565b11156108a55760405162461bcd60e51b81526004016106409061245f565b6108ad610cd2565b6001600160a01b03166108be611039565b6001600160a01b0316146108f1576108d4610b88565b156108f15760405162461bcd60e51b815260040161064090612310565b60006108fb611358565b905061271061090a8383612726565b11156109285760405162461bcd60e51b8152600401610640906122a1565b61271081111561094a5760405162461bcd60e51b81526004016106409061245f565b601482111561096b5760405162461bcd60e51b8152600401610640906120e4565b61097482610817565b3410156109935760405162461bcd60e51b81526004016106409061259a565b60005b828110156109b9576109a784611364565b806109b1816127ef565b915050610996565b50505050565b6107d483838360405180602001604052806000815250610e1f565b6109e56107ea611039565b610a015760405162461bcd60e51b8152600401610640906126cd565b610669816113b3565b60606000610a1783610bd3565b905060008167ffffffffffffffff811115610a4257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a6b578160200160208202803683370190505b50905060005b82811015610ac057610a83858261082a565b828281518110610aa357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ab8816127ef565b915050610a71565b509392505050565b6000610ad26107d9565b8210610af05760405162461bcd60e51b815260040161064090612681565b60088281548110610b1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b2b611039565b6001600160a01b0316610b3c610cd2565b6001600160a01b031614610b625760405162461bcd60e51b8152600401610640906124cd565b8051610b7590600d906020840190611c21565b5050565b6000610b83611358565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b8152600401610640906123e1565b61271081565b60006001600160a01b038216610bfb5760405162461bcd60e51b815260040161064090612397565b506001600160a01b031660009081526003602052604090205490565b610c1f611039565b6001600160a01b0316610c30610cd2565b6001600160a01b031614610c565760405162461bcd60e51b8152600401610640906124cd565b610c60600061145a565b565b610c6a611039565b6001600160a01b0316610c7b610cd2565b6001600160a01b031614610ca15760405162461bcd60e51b8152600401610640906124cd565b4780610cac57600080fd5b600c54610669906001600160a01b0316476114ac565b601481565b66f8b0a10e47000081565b600a546001600160a01b031690565b610ce9611039565b6001600160a01b0316610cfa610cd2565b6001600160a01b031614610d205760405162461bcd60e51b8152600401610640906124cd565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461067b906127b4565b610d59611039565b6001600160a01b0316826001600160a01b03161415610d8a5760405162461bcd60e51b81526004016106409061226a565b8060056000610d97611039565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ddb611039565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e13919061204d565b60405180910390a35050565b610e30610e2a611039565b8361119a565b610e4c5760405162461bcd60e51b815260040161064090612630565b6109b984848484611528565b6060610e638261110f565b610e7f5760405162461bcd60e51b81526004016106409061254b565b6000610e8961155b565b90506000815111610ea95760405180602001604052806000815250610ed4565b80610eb38461156a565b604051602001610ec4929190611f86565b6040516020818303038152906040525b9392505050565b600d8054610ee8906127b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f14906127b4565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505081565b600c546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610fae611039565b6001600160a01b0316610fbf610cd2565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610640906124cd565b6001600160a01b03811661100b5760405162461bcd60e51b8152600401610640906121a9565b6106698161145a565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f982611685565b3390565b611045610b88565b156110625760405162461bcd60e51b815260040161064090612310565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861109e611039565b6040516110ab9190611fb8565b60405180910390a1565b6110bd610b88565b6110d95760405162461bcd60e51b8152600401610640906120b6565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61109e611039565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116182610b98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111a58261110f565b6111c15760405162461bcd60e51b8152600401610640906122c4565b60006111cc83610b98565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846106fe565b6001600160a01b0316145b8061121757506112178185610f78565b949350505050565b826001600160a01b031661123282610b98565b6001600160a01b0316146112585760405162461bcd60e51b815260040161064090612502565b6001600160a01b03821661127e5760405162461bcd60e51b815260040161064090612226565b6112898383836116c5565b61129460008261112c565b6001600160a01b03831660009081526003602052604081208054600192906112bd908490612771565b90915550506001600160a01b03821660009081526003602052604081208054600192906112eb908490612726565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610ed48284612752565b6000610b83600b6116d0565b600061136e611358565b905061137a600b6116d4565b61138482826116dd565b60405181907f9437aff5d22c5adc5e70bf2b4dd06ad27b2e6ef20a36caa9e568f485e2c1508b90600090a25050565b60006113be82610b98565b90506113cc816000846116c5565b6113d760008361112c565b6001600160a01b0381166000908152600360205260408120805460019290611400908490612771565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516114c590611fb5565b60006040518083038185875af1925050503d8060008114611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b50509050806107d45760405162461bcd60e51b815260040161064090612606565b61153384848461121f565b61153f848484846116f7565b6109b95760405162461bcd60e51b815260040161064090612157565b6060600d805461067b906127b4565b60608161158f57506040805180820190915260018152600360fc1b60208201526105fc565b8160005b81156115b957806115a3816127ef565b91506115b29050600a8361273e565b9150611593565b60008167ffffffffffffffff8111156115e257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561160c576020820181803683370190505b5090505b841561121757611621600183612771565b915061162e600a8661280a565b611639906030612726565b60f81b81838151811061165c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061167e600a8661273e565b9450611610565b60006001600160e01b031982166380ac58cd60e01b14806116b657506001600160e01b03198216635b5e139f60e01b145b806105f957506105f982611812565b6107d483838361182b565b5490565b80546001019055565b610b75828260405180602001604052806000815250611882565b600061170b846001600160a01b03166118b5565b1561180757836001600160a01b031663150b7a02611727611039565b8786866040518563ffffffff1660e01b81526004016117499493929190611fcc565b602060405180830381600087803b15801561176357600080fd5b505af1925050508015611793575060408051601f3d908101601f1916820190925261179091810190611ee0565b60015b6117ed573d8080156117c1576040519150601f19603f3d011682016040523d82523d6000602084013e6117c6565b606091505b5080516117e55760405162461bcd60e51b815260040161064090612157565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611217565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6118368383836118bb565b61183e610cd2565b6001600160a01b031661184f611039565b6001600160a01b0316146107d457611865610b88565b156107d45760405162461bcd60e51b81526004016106409061206b565b61188c8383611944565b61189960008484846116f7565b6107d45760405162461bcd60e51b815260040161064090612157565b3b151590565b6118c68383836107d4565b6001600160a01b0383166118e2576118dd81611a23565b611905565b816001600160a01b0316836001600160a01b031614611905576119058382611a67565b6001600160a01b0382166119215761191c81611b04565b6107d4565b826001600160a01b0316826001600160a01b0316146107d4576107d48282611bdd565b6001600160a01b03821661196a5760405162461bcd60e51b81526004016106409061242a565b6119738161110f565b156119905760405162461bcd60e51b8152600401610640906121ef565b61199c600083836116c5565b6001600160a01b03821660009081526003602052604081208054600192906119c5908490612726565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a7484610bd3565b611a7e9190612771565b600083815260076020526040902054909150808214611ad1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b1690600190612771565b60008381526009602052604081205460088054939450909284908110611b4c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b7b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bc157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611be883610bd3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c2d906127b4565b90600052602060002090601f016020900481019282611c4f5760008555611c95565b82601f10611c6857805160ff1916838001178555611c95565b82800160010185558215611c95579182015b82811115611c95578251825591602001919060010190611c7a565b50611ca1929150611ca5565b5090565b5b80821115611ca15760008155600101611ca6565b600067ffffffffffffffff80841115611cd557611cd561284a565b604051601f8501601f191681016020018281118282101715611cf957611cf961284a565b604052848152915081838501861015611d1157600080fd5b8484602083013760006020868301015250509392505050565b803580151581146105fc57600080fd5b600060208284031215611d4b578081fd5b8135610ed481612860565b60008060408385031215611d68578081fd5b8235611d7381612860565b91506020830135611d8381612860565b809150509250929050565b600080600060608486031215611da2578081fd5b8335611dad81612860565b92506020840135611dbd81612860565b929592945050506040919091013590565b60008060008060808587031215611de3578081fd5b8435611dee81612860565b93506020850135611dfe81612860565b925060408501359150606085013567ffffffffffffffff811115611e20578182fd5b8501601f81018713611e30578182fd5b611e3f87823560208401611cba565b91505092959194509250565b60008060408385031215611e5d578182fd5b8235611e6881612860565b9150611e7660208401611d2a565b90509250929050565b60008060408385031215611e91578182fd5b8235611e9c81612860565b946020939093013593505050565b600060208284031215611ebb578081fd5b610ed482611d2a565b600060208284031215611ed5578081fd5b8135610ed481612875565b600060208284031215611ef1578081fd5b8151610ed481612875565b600060208284031215611f0d578081fd5b813567ffffffffffffffff811115611f23578182fd5b8201601f81018413611f33578182fd5b61121784823560208401611cba565b600060208284031215611f53578081fd5b5035919050565b60008151808452611f72816020860160208601612788565b601f01601f19169290920160200192915050565b60008351611f98818460208801612788565b835190830190611fac818360208801612788565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fff90830184611f5a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204157835183529284019291840191600101612025565b50909695505050505050565b901515815260200190565b600060208252610ed46020830184611f5a565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156127395761273961281e565b500190565b60008261274d5761274d612834565b500490565b600081600019048311821515161561276c5761276c61281e565b500290565b6000828210156127835761278361281e565b500390565b60005b838110156127a357818101518382015260200161278b565b838111156109b95750506000910152565b6002810460018216806127c857607f821691505b602082108114156127e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128035761280361281e565b5060010190565b60008261281957612819612834565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461066957600080fd5b6001600160e01b03198116811461066957600080fdfea26469706673582212204b5faa30a897dc2529e5b772ce95c0e62e5be3922e285fff7989338bd1b7af9e64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000035fba6e705219c3ad686ba5198c33beb0cfe8a15000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e616c69656e776f726c64776172732e636f6d2f00
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636352211e1161010d5780639127cc69116100a0578063c87b56dd1161006f578063c87b56dd14610564578063d547cfb714610584578063e927fc5c14610599578063e985e9c5146105ae578063f2fde38b146105ce576101f9565b80639127cc69146104ef57806395d89b411461050f578063a22cb46514610524578063b88d4fde14610544576101f9565b8063853828b6116100dc578063853828b61461049b5780638ad5de28146104b05780638d859f3e146104c55780638da5cb5b146104da576101f9565b80636352211e146104315780636fdaddf11461045157806370a0823114610466578063715018a614610486576101f9565b80632f745c5911610190578063438b63001161015f578063438b63001461039a5780634f6ccce7146103c757806355f804b3146103e757806359a7715a146104075780635c975abb1461041c576101f9565b80632f745c591461032757806340c10f191461034757806342842e0e1461035a57806342966c681461037a576101f9565b8063095ea7b3116101cc578063095ea7b3146102a557806318160ddd146102c557806323b872dd146102e757806326a49e3714610307576101f9565b806301ffc9a7146101fe57806302329a291461023457806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611ec4565b6105ee565b60405161022b919061204d565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611eaa565b610601565b005b34801561026257600080fd5b5061026b61066c565b60405161022b9190612058565b34801561028457600080fd5b50610298610293366004611f42565b6106fe565b60405161022b9190611fb8565b3480156102b157600080fd5b506102546102c0366004611e7f565b610741565b3480156102d157600080fd5b506102da6107d9565b60405161022b919061271d565b3480156102f357600080fd5b50610254610302366004611d8e565b6107df565b34801561031357600080fd5b506102da610322366004611f42565b610817565b34801561033357600080fd5b506102da610342366004611e7f565b61082a565b610254610355366004611e7f565b61087c565b34801561036657600080fd5b50610254610375366004611d8e565b6109bf565b34801561038657600080fd5b50610254610395366004611f42565b6109da565b3480156103a657600080fd5b506103ba6103b5366004611d3a565b610a0a565b60405161022b9190612009565b3480156103d357600080fd5b506102da6103e2366004611f42565b610ac8565b3480156103f357600080fd5b50610254610402366004611efc565b610b23565b34801561041357600080fd5b506102da610b79565b34801561042857600080fd5b5061021e610b88565b34801561043d57600080fd5b5061029861044c366004611f42565b610b98565b34801561045d57600080fd5b506102da610bcd565b34801561047257600080fd5b506102da610481366004611d3a565b610bd3565b34801561049257600080fd5b50610254610c17565b3480156104a757600080fd5b50610254610c62565b3480156104bc57600080fd5b506102da610cc2565b3480156104d157600080fd5b506102da610cc7565b3480156104e657600080fd5b50610298610cd2565b3480156104fb57600080fd5b5061025461050a366004611d3a565b610ce1565b34801561051b57600080fd5b5061026b610d42565b34801561053057600080fd5b5061025461053f366004611e4b565b610d51565b34801561055057600080fd5b5061025461055f366004611dce565b610e1f565b34801561057057600080fd5b5061026b61057f366004611f42565b610e58565b34801561059057600080fd5b5061026b610edb565b3480156105a557600080fd5b50610298610f69565b3480156105ba57600080fd5b5061021e6105c9366004611d56565b610f78565b3480156105da57600080fd5b506102546105e9366004611d3a565b610fa6565b60006105f982611014565b90505b919050565b610609611039565b6001600160a01b031661061a610cd2565b6001600160a01b0316146106495760405162461bcd60e51b8152600401610640906124cd565b60405180910390fd5b600181151514156106615761065c61103d565b610669565b6106696110b5565b50565b60606000805461067b906127b4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906127b4565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b60006107098261110f565b6107255760405162461bcd60e51b815260040161064090612481565b506000908152600460205260409020546001600160a01b031690565b600061074c82610b98565b9050806001600160a01b0316836001600160a01b031614156107805760405162461bcd60e51b8152600401610640906125c5565b806001600160a01b0316610792611039565b6001600160a01b031614806107ae57506107ae816105c9611039565b6107ca5760405162461bcd60e51b81526004016106409061233a565b6107d4838361112c565b505050565b60085490565b6107f06107ea611039565b8261119a565b61080c5760405162461bcd60e51b815260040161064090612630565b6107d483838361121f565b60006105f966f8b0a10e4700008361134c565b600061083583610bd3565b82106108535760405162461bcd60e51b81526004016106409061210c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612710610887611358565b11156108a55760405162461bcd60e51b81526004016106409061245f565b6108ad610cd2565b6001600160a01b03166108be611039565b6001600160a01b0316146108f1576108d4610b88565b156108f15760405162461bcd60e51b815260040161064090612310565b60006108fb611358565b905061271061090a8383612726565b11156109285760405162461bcd60e51b8152600401610640906122a1565b61271081111561094a5760405162461bcd60e51b81526004016106409061245f565b601482111561096b5760405162461bcd60e51b8152600401610640906120e4565b61097482610817565b3410156109935760405162461bcd60e51b81526004016106409061259a565b60005b828110156109b9576109a784611364565b806109b1816127ef565b915050610996565b50505050565b6107d483838360405180602001604052806000815250610e1f565b6109e56107ea611039565b610a015760405162461bcd60e51b8152600401610640906126cd565b610669816113b3565b60606000610a1783610bd3565b905060008167ffffffffffffffff811115610a4257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a6b578160200160208202803683370190505b50905060005b82811015610ac057610a83858261082a565b828281518110610aa357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ab8816127ef565b915050610a71565b509392505050565b6000610ad26107d9565b8210610af05760405162461bcd60e51b815260040161064090612681565b60088281548110610b1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b2b611039565b6001600160a01b0316610b3c610cd2565b6001600160a01b031614610b625760405162461bcd60e51b8152600401610640906124cd565b8051610b7590600d906020840190611c21565b5050565b6000610b83611358565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b8152600401610640906123e1565b61271081565b60006001600160a01b038216610bfb5760405162461bcd60e51b815260040161064090612397565b506001600160a01b031660009081526003602052604090205490565b610c1f611039565b6001600160a01b0316610c30610cd2565b6001600160a01b031614610c565760405162461bcd60e51b8152600401610640906124cd565b610c60600061145a565b565b610c6a611039565b6001600160a01b0316610c7b610cd2565b6001600160a01b031614610ca15760405162461bcd60e51b8152600401610640906124cd565b4780610cac57600080fd5b600c54610669906001600160a01b0316476114ac565b601481565b66f8b0a10e47000081565b600a546001600160a01b031690565b610ce9611039565b6001600160a01b0316610cfa610cd2565b6001600160a01b031614610d205760405162461bcd60e51b8152600401610640906124cd565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461067b906127b4565b610d59611039565b6001600160a01b0316826001600160a01b03161415610d8a5760405162461bcd60e51b81526004016106409061226a565b8060056000610d97611039565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ddb611039565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e13919061204d565b60405180910390a35050565b610e30610e2a611039565b8361119a565b610e4c5760405162461bcd60e51b815260040161064090612630565b6109b984848484611528565b6060610e638261110f565b610e7f5760405162461bcd60e51b81526004016106409061254b565b6000610e8961155b565b90506000815111610ea95760405180602001604052806000815250610ed4565b80610eb38461156a565b604051602001610ec4929190611f86565b6040516020818303038152906040525b9392505050565b600d8054610ee8906127b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f14906127b4565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505081565b600c546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610fae611039565b6001600160a01b0316610fbf610cd2565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610640906124cd565b6001600160a01b03811661100b5760405162461bcd60e51b8152600401610640906121a9565b6106698161145a565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f982611685565b3390565b611045610b88565b156110625760405162461bcd60e51b815260040161064090612310565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861109e611039565b6040516110ab9190611fb8565b60405180910390a1565b6110bd610b88565b6110d95760405162461bcd60e51b8152600401610640906120b6565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61109e611039565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116182610b98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111a58261110f565b6111c15760405162461bcd60e51b8152600401610640906122c4565b60006111cc83610b98565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846106fe565b6001600160a01b0316145b8061121757506112178185610f78565b949350505050565b826001600160a01b031661123282610b98565b6001600160a01b0316146112585760405162461bcd60e51b815260040161064090612502565b6001600160a01b03821661127e5760405162461bcd60e51b815260040161064090612226565b6112898383836116c5565b61129460008261112c565b6001600160a01b03831660009081526003602052604081208054600192906112bd908490612771565b90915550506001600160a01b03821660009081526003602052604081208054600192906112eb908490612726565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610ed48284612752565b6000610b83600b6116d0565b600061136e611358565b905061137a600b6116d4565b61138482826116dd565b60405181907f9437aff5d22c5adc5e70bf2b4dd06ad27b2e6ef20a36caa9e568f485e2c1508b90600090a25050565b60006113be82610b98565b90506113cc816000846116c5565b6113d760008361112c565b6001600160a01b0381166000908152600360205260408120805460019290611400908490612771565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516114c590611fb5565b60006040518083038185875af1925050503d8060008114611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b50509050806107d45760405162461bcd60e51b815260040161064090612606565b61153384848461121f565b61153f848484846116f7565b6109b95760405162461bcd60e51b815260040161064090612157565b6060600d805461067b906127b4565b60608161158f57506040805180820190915260018152600360fc1b60208201526105fc565b8160005b81156115b957806115a3816127ef565b91506115b29050600a8361273e565b9150611593565b60008167ffffffffffffffff8111156115e257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561160c576020820181803683370190505b5090505b841561121757611621600183612771565b915061162e600a8661280a565b611639906030612726565b60f81b81838151811061165c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061167e600a8661273e565b9450611610565b60006001600160e01b031982166380ac58cd60e01b14806116b657506001600160e01b03198216635b5e139f60e01b145b806105f957506105f982611812565b6107d483838361182b565b5490565b80546001019055565b610b75828260405180602001604052806000815250611882565b600061170b846001600160a01b03166118b5565b1561180757836001600160a01b031663150b7a02611727611039565b8786866040518563ffffffff1660e01b81526004016117499493929190611fcc565b602060405180830381600087803b15801561176357600080fd5b505af1925050508015611793575060408051601f3d908101601f1916820190925261179091810190611ee0565b60015b6117ed573d8080156117c1576040519150601f19603f3d011682016040523d82523d6000602084013e6117c6565b606091505b5080516117e55760405162461bcd60e51b815260040161064090612157565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611217565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6118368383836118bb565b61183e610cd2565b6001600160a01b031661184f611039565b6001600160a01b0316146107d457611865610b88565b156107d45760405162461bcd60e51b81526004016106409061206b565b61188c8383611944565b61189960008484846116f7565b6107d45760405162461bcd60e51b815260040161064090612157565b3b151590565b6118c68383836107d4565b6001600160a01b0383166118e2576118dd81611a23565b611905565b816001600160a01b0316836001600160a01b031614611905576119058382611a67565b6001600160a01b0382166119215761191c81611b04565b6107d4565b826001600160a01b0316826001600160a01b0316146107d4576107d48282611bdd565b6001600160a01b03821661196a5760405162461bcd60e51b81526004016106409061242a565b6119738161110f565b156119905760405162461bcd60e51b8152600401610640906121ef565b61199c600083836116c5565b6001600160a01b03821660009081526003602052604081208054600192906119c5908490612726565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a7484610bd3565b611a7e9190612771565b600083815260076020526040902054909150808214611ad1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b1690600190612771565b60008381526009602052604081205460088054939450909284908110611b4c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b7b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bc157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611be883610bd3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c2d906127b4565b90600052602060002090601f016020900481019282611c4f5760008555611c95565b82601f10611c6857805160ff1916838001178555611c95565b82800160010185558215611c95579182015b82811115611c95578251825591602001919060010190611c7a565b50611ca1929150611ca5565b5090565b5b80821115611ca15760008155600101611ca6565b600067ffffffffffffffff80841115611cd557611cd561284a565b604051601f8501601f191681016020018281118282101715611cf957611cf961284a565b604052848152915081838501861015611d1157600080fd5b8484602083013760006020868301015250509392505050565b803580151581146105fc57600080fd5b600060208284031215611d4b578081fd5b8135610ed481612860565b60008060408385031215611d68578081fd5b8235611d7381612860565b91506020830135611d8381612860565b809150509250929050565b600080600060608486031215611da2578081fd5b8335611dad81612860565b92506020840135611dbd81612860565b929592945050506040919091013590565b60008060008060808587031215611de3578081fd5b8435611dee81612860565b93506020850135611dfe81612860565b925060408501359150606085013567ffffffffffffffff811115611e20578182fd5b8501601f81018713611e30578182fd5b611e3f87823560208401611cba565b91505092959194509250565b60008060408385031215611e5d578182fd5b8235611e6881612860565b9150611e7660208401611d2a565b90509250929050565b60008060408385031215611e91578182fd5b8235611e9c81612860565b946020939093013593505050565b600060208284031215611ebb578081fd5b610ed482611d2a565b600060208284031215611ed5578081fd5b8135610ed481612875565b600060208284031215611ef1578081fd5b8151610ed481612875565b600060208284031215611f0d578081fd5b813567ffffffffffffffff811115611f23578182fd5b8201601f81018413611f33578182fd5b61121784823560208401611cba565b600060208284031215611f53578081fd5b5035919050565b60008151808452611f72816020860160208601612788565b601f01601f19169290920160200192915050565b60008351611f98818460208801612788565b835190830190611fac818360208801612788565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fff90830184611f5a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204157835183529284019291840191600101612025565b50909695505050505050565b901515815260200190565b600060208252610ed46020830184611f5a565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156127395761273961281e565b500190565b60008261274d5761274d612834565b500490565b600081600019048311821515161561276c5761276c61281e565b500290565b6000828210156127835761278361281e565b500390565b60005b838110156127a357818101518382015260200161278b565b838111156109b95750506000910152565b6002810460018216806127c857607f821691505b602082108114156127e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128035761280361281e565b5060010190565b60008261281957612819612834565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461066957600080fd5b6001600160e01b03198116811461066957600080fdfea26469706673582212204b5faa30a897dc2529e5b772ce95c0e62e5be3922e285fff7989338bd1b7af9e64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000035fba6e705219c3ad686ba5198c33beb0cfe8a15000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e616c69656e776f726c64776172732e636f6d2f00
-----Decoded View---------------
Arg [0] : baseURI (string): https://api.alienworldwars.com/
Arg [1] : creator (address): 0x35fBA6E705219C3ad686Ba5198C33BeB0CfE8a15
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000035fba6e705219c3ad686ba5198c33beb0cfe8a15
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [3] : 68747470733a2f2f6170692e616c69656e776f726c64776172732e636f6d2f00
Deployed Bytecode Sourcemap
261:3529:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3602:179;;;;;;;;;;-1:-1:-1;3602:179:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2807:154;;;;;;;;;;-1:-1:-1;2807:154:1;;;;;:::i;:::-;;:::i;:::-;;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3508:411::-;;;;;;;;;;-1:-1:-1;3508:411:5;;;;;:::i;:::-;;:::i;1577:113:7:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4875:339:5:-;;;;;;;;;;-1:-1:-1;4875:339:5;;;;;:::i;:::-;;:::i;1990:104:1:-;;;;;;;;;;-1:-1:-1;1990:104:1;;;;;:::i;:::-;;:::i;1245:256:7:-;;;;;;;;;;-1:-1:-1;1245:256:7;;;;;:::i;:::-;;:::i;1342:443:1:-;;;;;;:::i;:::-;;:::i;5285:185:5:-;;;;;;;;;;-1:-1:-1;5285:185:5;;;;;:::i;:::-;;:::i;456:245:6:-;;;;;;;;;;-1:-1:-1;456:245:6;;;;;:::i;:::-;;:::i;2450:349:1:-;;;;;;;;;;-1:-1:-1;2450:349:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1767:233:7:-;;;;;;;;;;-1:-1:-1;1767:233:7;;;;;:::i;:::-;;:::i;2341:101:1:-;;;;;;;;;;-1:-1:-1;2341:101:1;;;;;:::i;:::-;;:::i;1242:91::-;;;;;;;;;;;;;:::i;1072:86:15:-;;;;;;;;;;;;;:::i;2120:239:5:-;;;;;;;;;;-1:-1:-1;2120:239:5;;;;;:::i;:::-;;:::i;469:39:1:-;;;;;;;;;;;;;:::i;1850:208:5:-;;;;;;;;;;-1:-1:-1;1850:208:5;;;;;:::i;:::-;;:::i;1650:94:14:-;;;;;;;;;;;;;:::i;2969:189:1:-;;;;;;;;;;;;;:::i;564:40::-;;;;;;;;;;;;;:::i;515:42::-;;;;;;;;;;;;;:::i;999:87:14:-;;;;;;;;;;;;;:::i;2223:112:1:-;;;;;;;;;;-1:-1:-1;2223:112:1;;;;;:::i;:::-;;:::i;2595:104:5:-;;;;;;;;;;;;;:::i;4278:295::-;;;;;;;;;;-1:-1:-1;4278:295:5;;;;;:::i;:::-;;:::i;5541:328::-;;;;;;;;;;-1:-1:-1;5541:328:5;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:5;;;;;:::i;:::-;;:::i;650:26:1:-;;;;;;;;;;;;;:::i;614:29::-;;;;;;;;;;;;;:::i;4644:164:5:-;;;;;;;;;;-1:-1:-1;4644:164:5;;;;;:::i;:::-;;:::i;1899:192:14:-;;;;;;;;;;-1:-1:-1;1899:192:14;;;;;:::i;:::-;;:::i;3602:179:1:-;3713:4;3737:36;3761:11;3737:23;:36::i;:::-;3730:43;;3602:179;;;;:::o;2807:154::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;;;;;;;;;2871:4:1::1;2864:11:::0;::::1;;;2860:73;;;2892:8;:6;:8::i;:::-;2915:7;;2860:73;2943:10;:8;:10::i;:::-;2807:154:::0;:::o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;-1:-1:-1;;;4081:73:5;;;;;;;:::i;:::-;-1:-1:-1;4174:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:5;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:5;:2;-1:-1:-1;;;;;3647:11:5;;;3639:57;;;;-1:-1:-1;;;3639:57:5;;;;;;;:::i;:::-;3747:5;-1:-1:-1;;;;;3731:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3731:21:5;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:5;;;;;;;:::i;:::-;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3508:411;;;:::o;1577:113:7:-;1665:10;:17;1577:113;:::o;4875:339:5:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:5;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;1990:104:1:-;2042:7;2069:17;547:10;2079:6;2069:9;:17::i;1245:256:7:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;1342:443:1:-;503:5;958:14;:12;:14::i;:::-;:25;;950:46;;;;-1:-1:-1;;;950:46:1;;;;;;;:::i;:::-;1027:7;:5;:7::i;:::-;-1:-1:-1;;;;;1011:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1011:23:1;;1007:94;;1060:8;:6;:8::i;:::-;1059:9;1051:38;;;;-1:-1:-1;;;1051:38:1;;;;;;;:::i;:::-;1422:13:::1;1438:14;:12;:14::i;:::-;1422:30:::0;-1:-1:-1;503:5:1::1;1471:14;1479:6:::0;1422:30;1471:14:::1;:::i;:::-;:25;;1463:47;;;;-1:-1:-1::0;;;1463:47:1::1;;;;;;;:::i;:::-;503:5;1529;:16;;1521:37;;;;-1:-1:-1::0;;;1521:37:1::1;;;;;;;:::i;:::-;602:2;1577:6;:21;;1569:48;;;;-1:-1:-1::0;;;1569:48:1::1;;;;;;;:::i;:::-;1649:13;1655:6;1649:5;:13::i;:::-;1636:9;:26;;1628:56;;;;-1:-1:-1::0;;;1628:56:1::1;;;;;;;:::i;:::-;1700:9;1695:83;1719:6;1715:1;:10;1695:83;;;1747:19;1762:3;1747:14;:19::i;:::-;1727:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1695:83;;;;1111:1;1342:443:::0;;:::o;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;456:245:6:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:6;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;2450:349:1:-;2512:16;2541:18;2562:17;2572:6;2562:9;:17::i;:::-;2541:38;;2590:25;2632:10;2618:25;;;;;;-1:-1:-1;;;2618:25:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2618:25:1;;2590:53;;2659:9;2654:112;2678:10;2674:1;:14;2654:112;;;2724:30;2744:6;2752:1;2724:19;:30::i;:::-;2710:8;2719:1;2710:11;;;;;;-1:-1:-1;;;2710:11:1;;;;;;;;;;;;;;;;;;:44;2690:3;;;;:::i;:::-;;;;2654:112;;;-1:-1:-1;2783:8:1;2450:349;-1:-1:-1;;;2450:349:1:o;1767:233:7:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:7;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:7;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;2341:101:1:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;2412:22:1;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2341:101:::0;:::o;1242:91::-;1284:7;1311:14;:12;:14::i;:::-;1304:21;;1242:91;:::o;1072:86:15:-;1143:7;;-1:-1:-1;;;1143:7:15;;;;;1072:86::o;2120:239:5:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:5;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:5;;;;;;;:::i;469:39:1:-;503:5;469:39;:::o;1850:208:5:-;1922:7;-1:-1:-1;;;;;1950:19:5;;1942:74;;;;-1:-1:-1;;;1942:74:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2034:16:5;;;;;:9;:16;;;;;;;1850:208::o;1650:94:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2969:189:1:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;3038:21:1::1;3078:11:::0;3070:20:::1;;;::::0;::::1;;3112:14;::::0;3101:49:::1;::::0;-1:-1:-1;;;;;3112:14:1::1;3128:21;3101:10;:49::i;564:40::-:0;602:2;564:40;:::o;515:42::-;547:10;515:42;:::o;999:87:14:-;1072:6;;-1:-1:-1;;;;;1072:6:14;999:87;:::o;2223:112:1:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;2303:14:1::1;:24:::0;;-1:-1:-1;;;;;;2303:24:1::1;-1:-1:-1::0;;;;;2303:24:1;;;::::1;::::0;;;::::1;::::0;;2223:112::o;2595:104:5:-;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4381:24:5;:8;-1:-1:-1;;;;;4381:24:5;;;4373:62;;;;-1:-1:-1;;;4373:62:5;;;;;;;:::i;:::-;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;-1:-1:-1;;;;;4448:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4448:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:5;;;;;;;;;;;4532:12;:10;:12::i;:::-;-1:-1:-1;;;;;4517:48:5;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;5541:328::-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:5;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;-1:-1:-1;;;2869:76:5;;;;;;;:::i;:::-;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:5:o;650:26:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;614:29::-;;;-1:-1:-1;;;;;614:29:1;;:::o;4644:164:5:-;-1:-1:-1;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164::o;1899:192:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:14;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:14::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;937:224:7:-:0;1039:4;-1:-1:-1;;;;;;1063:50:7;;-1:-1:-1;;;1063:50:7;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:2:-;681:10;601:98;:::o;1872:118:15:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:15;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:15::1;-1:-1:-1::0;;;1932:14:15::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:15;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:15::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7379:127:5:-:0;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;:30;;;7379:127::o;11361:174::-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:5;-1:-1:-1;;;;;11436:29:5;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:5;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;-1:-1:-1;;;7783:73:5;;;;;;;:::i;:::-;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:5;:7;-1:-1:-1;;;;;7925:16:5;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:5;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:5;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7917:96;7673:348;-1:-1:-1;;;;7673:348:5:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:5;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:5;;10789:85;;;;-1:-1:-1;;;10789:85:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;10893:16:5;;10885:65;;;;-1:-1:-1;;;10885:65:5;;;;;;;:::i;:::-;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:5;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:5;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:5;-1:-1:-1;;;;;11169:21:5;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;3501:98:16:-;3559:7;3586:5;3590:1;3586;:5;:::i;1129:104:1:-;1176:4;1200:25;:15;:23;:25::i;1794:187::-;1850:7;1860:14;:12;:14::i;:::-;1850:24;;1885:27;:15;:25;:27::i;:::-;1923:18;1933:3;1938:2;1923:9;:18::i;:::-;1957:16;;1970:2;;1957:16;;;;;1794:187;;:::o;9968:360:5:-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:5;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:5;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:5;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:5;;;;;10250:16;;10284:36;9968:360;;:::o;2099:173:14:-;2174:6;;;-1:-1:-1;;;;;2191:17:14;;;-1:-1:-1;;;;;;2191:17:14;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;3166:181:1:-;3241:12;3259:8;-1:-1:-1;;;;;3259:13:1;3280:7;3259:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3240:52;;;3311:7;3303:36;;;;-1:-1:-1;;;3303:36:1;;;;;;;:::i;6751:315:5:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:5;;;;;;;:::i;2102:113:1:-;2162:13;2195:12;2188:19;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;592:10:17;;;;;;;;;;;;-1:-1:-1;;;592:10:17;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:17;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:17;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:5;1583:4;-1:-1:-1;;;;;;1620:40:5;;-1:-1:-1;;;1620:40:5;;:105;;-1:-1:-1;;;;;;;1677:48:5;;-1:-1:-1;;;1677:48:5;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;3355:239:1:-;3541:45;3568:4;3574:2;3578:7;3541:26;:45::i;793:114:3:-;885:14;;793:114::o;915:127::-;1004:19;;1022:1;1004:19;;;915:127::o;8363:110:5:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:803::-;12255:4;12276:15;:2;-1:-1:-1;;;;;12276:13:5;;:15::i;:::-;12272:624;;;12328:2;-1:-1:-1;;;;;12312:36:5;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:5;;;;;;;;-1:-1:-1;;12312:72:5;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:5;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:5;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:5;-1:-1:-1;;;12435:55:5;;-1:-1:-1;12428:62:5;;12272:624;-1:-1:-1;12880:4:5;12100:803;;;;;;:::o;787:157:4:-;-1:-1:-1;;;;;;896:40:4;;-1:-1:-1;;;896:40:4;787:157;;;:::o;633:328:8:-;777:45;804:4;810:2;814:7;777:26;:45::i;:::-;853:7;:5;:7::i;:::-;-1:-1:-1;;;;;837:23:8;:12;:10;:12::i;:::-;-1:-1:-1;;;;;837:23:8;;833:121;;886:8;:6;:8::i;:::-;885:9;877:65;;;;-1:-1:-1;;;877:65:8;;;;;;;:::i;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:5;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:7:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:7;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:7;:4;-1:-1:-1;;;;;2916:10:7;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:7;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:7;:2;-1:-1:-1;;;;;3116:10:7;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9357:382:5:-;-1:-1:-1;;;;;9437:16:5;;9429:61;;;;-1:-1:-1;;;9429:61:5;;;;;;;:::i;:::-;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;-1:-1:-1;;;9501:58:5;;;;;;;:::i;:::-;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:5;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:5;-1:-1:-1;;;;;9659:21:5;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;3925:164:7:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:7;;;5194:328;;-1:-1:-1;;;;;5265:18:7;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:7;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:7;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:7;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:7;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:7;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:7;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:7:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:18;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:18;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:18;473:16;;;470:25;-1:-1:-1;467:2:18;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:162::-;693:20;;749:13;;742:21;732:32;;722:2;;778:1;775;768:12;793:259;;905:2;893:9;884:7;880:23;876:32;873:2;;;926:6;918;911:22;873:2;970:9;957:23;989:33;1016:5;989:33;:::i;1329:402::-;;;1458:2;1446:9;1437:7;1433:23;1429:32;1426:2;;;1479:6;1471;1464:22;1426:2;1523:9;1510:23;1542:33;1569:5;1542:33;:::i;:::-;1594:5;-1:-1:-1;1651:2:18;1636:18;;1623:32;1664:35;1623:32;1664:35;:::i;:::-;1718:7;1708:17;;;1416:315;;;;;:::o;1736:470::-;;;;1882:2;1870:9;1861:7;1857:23;1853:32;1850:2;;;1903:6;1895;1888:22;1850:2;1947:9;1934:23;1966:33;1993:5;1966:33;:::i;:::-;2018:5;-1:-1:-1;2075:2:18;2060:18;;2047:32;2088:35;2047:32;2088:35;:::i;:::-;1840:366;;2142:7;;-1:-1:-1;;;2196:2:18;2181:18;;;;2168:32;;1840:366::o;2211:830::-;;;;;2383:3;2371:9;2362:7;2358:23;2354:33;2351:2;;;2405:6;2397;2390:22;2351:2;2449:9;2436:23;2468:33;2495:5;2468:33;:::i;:::-;2520:5;-1:-1:-1;2577:2:18;2562:18;;2549:32;2590:35;2549:32;2590:35;:::i;:::-;2644:7;-1:-1:-1;2698:2:18;2683:18;;2670:32;;-1:-1:-1;2753:2:18;2738:18;;2725:32;2780:18;2769:30;;2766:2;;;2817:6;2809;2802:22;2766:2;2845:22;;2898:4;2890:13;;2886:27;-1:-1:-1;2876:2:18;;2932:6;2924;2917:22;2876:2;2960:75;3027:7;3022:2;3009:16;3004:2;3000;2996:11;2960:75;:::i;:::-;2950:85;;;2341:700;;;;;;;:::o;3046:329::-;;;3172:2;3160:9;3151:7;3147:23;3143:32;3140:2;;;3193:6;3185;3178:22;3140:2;3237:9;3224:23;3256:33;3283:5;3256:33;:::i;:::-;3308:5;-1:-1:-1;3332:37:18;3365:2;3350:18;;3332:37;:::i;:::-;3322:47;;3130:245;;;;;:::o;3380:327::-;;;3509:2;3497:9;3488:7;3484:23;3480:32;3477:2;;;3530:6;3522;3515:22;3477:2;3574:9;3561:23;3593:33;3620:5;3593:33;:::i;:::-;3645:5;3697:2;3682:18;;;;3669:32;;-1:-1:-1;;;3467:240:18:o;3712:192::-;;3821:2;3809:9;3800:7;3796:23;3792:32;3789:2;;;3842:6;3834;3827:22;3789:2;3870:28;3888:9;3870:28;:::i;3909:257::-;;4020:2;4008:9;3999:7;3995:23;3991:32;3988:2;;;4041:6;4033;4026:22;3988:2;4085:9;4072:23;4104:32;4130:5;4104:32;:::i;4171:261::-;;4293:2;4281:9;4272:7;4268:23;4264:32;4261:2;;;4314:6;4306;4299:22;4261:2;4351:9;4345:16;4370:32;4396:5;4370:32;:::i;4437:482::-;;4559:2;4547:9;4538:7;4534:23;4530:32;4527:2;;;4580:6;4572;4565:22;4527:2;4625:9;4612:23;4658:18;4650:6;4647:30;4644:2;;;4695:6;4687;4680:22;4644:2;4723:22;;4776:4;4768:13;;4764:27;-1:-1:-1;4754:2:18;;4810:6;4802;4795:22;4754:2;4838:75;4905:7;4900:2;4887:16;4882:2;4878;4874:11;4838:75;:::i;4924:190::-;;5036:2;5024:9;5015:7;5011:23;5007:32;5004:2;;;5057:6;5049;5042:22;5004:2;-1:-1:-1;5085:23:18;;4994:120;-1:-1:-1;4994:120:18:o;5119:259::-;;5200:5;5194:12;5227:6;5222:3;5215:19;5243:63;5299:6;5292:4;5287:3;5283:14;5276:4;5269:5;5265:16;5243:63;:::i;:::-;5360:2;5339:15;-1:-1:-1;;5335:29:18;5326:39;;;;5367:4;5322:50;;5170:208;-1:-1:-1;;5170:208:18:o;5383:470::-;;5600:6;5594:13;5616:53;5662:6;5657:3;5650:4;5642:6;5638:17;5616:53;:::i;:::-;5732:13;;5691:16;;;;5754:57;5732:13;5691:16;5788:4;5776:17;;5754:57;:::i;:::-;5827:20;;5570:283;-1:-1:-1;;;;5570:283:18:o;5858:205::-;6058:3;6049:14::o;6068:203::-;-1:-1:-1;;;;;6232:32:18;;;;6214:51;;6202:2;6187:18;;6169:102::o;6276:490::-;-1:-1:-1;;;;;6545:15:18;;;6527:34;;6597:15;;6592:2;6577:18;;6570:43;6644:2;6629:18;;6622:34;;;6692:3;6687:2;6672:18;;6665:31;;;6276:490;;6713:47;;6740:19;;6732:6;6713:47;:::i;:::-;6705:55;6479:287;-1:-1:-1;;;;;;6479:287:18:o;6771:635::-;6942:2;6994:21;;;7064:13;;6967:18;;;7086:22;;;6771:635;;6942:2;7165:15;;;;7139:2;7124:18;;;6771:635;7211:169;7225:6;7222:1;7219:13;7211:169;;;7286:13;;7274:26;;7355:15;;;;7320:12;;;;7247:1;7240:9;7211:169;;;-1:-1:-1;7397:3:18;;6922:484;-1:-1:-1;;;;;;6922:484:18:o;7411:187::-;7576:14;;7569:22;7551:41;;7539:2;7524:18;;7506:92::o;7603:221::-;;7752:2;7741:9;7734:21;7772:46;7814:2;7803:9;7799:18;7791:6;7772:46;:::i;7829:407::-;8031:2;8013:21;;;8070:2;8050:18;;;8043:30;8109:34;8104:2;8089:18;;8082:62;-1:-1:-1;;;8175:2:18;8160:18;;8153:41;8226:3;8211:19;;8003:233::o;8241:344::-;8443:2;8425:21;;;8482:2;8462:18;;;8455:30;-1:-1:-1;;;8516:2:18;8501:18;;8494:50;8576:2;8561:18;;8415:170::o;8590:338::-;8792:2;8774:21;;;8831:2;8811:18;;;8804:30;-1:-1:-1;;;8865:2:18;8850:18;;8843:44;8919:2;8904:18;;8764:164::o;8933:407::-;9135:2;9117:21;;;9174:2;9154:18;;;9147:30;9213:34;9208:2;9193:18;;9186:62;-1:-1:-1;;;9279:2:18;9264:18;;9257:41;9330:3;9315:19;;9107:233::o;9345:414::-;9547:2;9529:21;;;9586:2;9566:18;;;9559:30;9625:34;9620:2;9605:18;;9598:62;-1:-1:-1;;;9691:2:18;9676:18;;9669:48;9749:3;9734:19;;9519:240::o;9764:402::-;9966:2;9948:21;;;10005:2;9985:18;;;9978:30;10044:34;10039:2;10024:18;;10017:62;-1:-1:-1;;;10110:2:18;10095:18;;10088:36;10156:3;10141:19;;9938:228::o;10171:352::-;10373:2;10355:21;;;10412:2;10392:18;;;10385:30;10451;10446:2;10431:18;;10424:58;10514:2;10499:18;;10345:178::o;10528:400::-;10730:2;10712:21;;;10769:2;10749:18;;;10742:30;10808:34;10803:2;10788:18;;10781:62;-1:-1:-1;;;10874:2:18;10859:18;;10852:34;10918:3;10903:19;;10702:226::o;10933:349::-;11135:2;11117:21;;;11174:2;11154:18;;;11147:30;11213:27;11208:2;11193:18;;11186:55;11273:2;11258:18;;11107:175::o;11287:332::-;11489:2;11471:21;;;11528:1;11508:18;;;11501:29;-1:-1:-1;;;11561:2:18;11546:18;;11539:39;11610:2;11595:18;;11461:158::o;11624:408::-;11826:2;11808:21;;;11865:2;11845:18;;;11838:30;11904:34;11899:2;11884:18;;11877:62;-1:-1:-1;;;11970:2:18;11955:18;;11948:42;12022:3;12007:19;;11798:234::o;12037:340::-;12239:2;12221:21;;;12278:2;12258:18;;;12251:30;-1:-1:-1;;;12312:2:18;12297:18;;12290:46;12368:2;12353:18;;12211:166::o;12382:420::-;12584:2;12566:21;;;12623:2;12603:18;;;12596:30;12662:34;12657:2;12642:18;;12635:62;12733:26;12728:2;12713:18;;12706:54;12792:3;12777:19;;12556:246::o;12807:406::-;13009:2;12991:21;;;13048:2;13028:18;;;13021:30;13087:34;13082:2;13067:18;;13060:62;-1:-1:-1;;;13153:2:18;13138:18;;13131:40;13203:3;13188:19;;12981:232::o;13218:405::-;13420:2;13402:21;;;13459:2;13439:18;;;13432:30;13498:34;13493:2;13478:18;;13471:62;-1:-1:-1;;;13564:2:18;13549:18;;13542:39;13613:3;13598:19;;13392:231::o;13628:356::-;13830:2;13812:21;;;13849:18;;;13842:30;13908:34;13903:2;13888:18;;13881:62;13975:2;13960:18;;13802:182::o;13989:331::-;14191:2;14173:21;;;14230:1;14210:18;;;14203:29;-1:-1:-1;;;14263:2:18;14248:18;;14241:38;14311:2;14296:18;;14163:157::o;14325:408::-;14527:2;14509:21;;;14566:2;14546:18;;;14539:30;14605:34;14600:2;14585:18;;14578:62;-1:-1:-1;;;14671:2:18;14656:18;;14649:42;14723:3;14708:19;;14499:234::o;14738:356::-;14940:2;14922:21;;;14959:18;;;14952:30;15018:34;15013:2;14998:18;;14991:62;15085:2;15070:18;;14912:182::o;15099:405::-;15301:2;15283:21;;;15340:2;15320:18;;;15313:30;15379:34;15374:2;15359:18;;15352:62;-1:-1:-1;;;15445:2:18;15430:18;;15423:39;15494:3;15479:19;;15273:231::o;15509:411::-;15711:2;15693:21;;;15750:2;15730:18;;;15723:30;15789:34;15784:2;15769:18;;15762:62;-1:-1:-1;;;15855:2:18;15840:18;;15833:45;15910:3;15895:19;;15683:237::o;15925:341::-;16127:2;16109:21;;;16166:2;16146:18;;;16139:30;-1:-1:-1;;;16200:2:18;16185:18;;16178:47;16257:2;16242:18;;16099:167::o;16271:397::-;16473:2;16455:21;;;16512:2;16492:18;;;16485:30;16551:34;16546:2;16531:18;;16524:62;-1:-1:-1;;;16617:2:18;16602:18;;16595:31;16658:3;16643:19;;16445:223::o;16673:340::-;16875:2;16857:21;;;16914:2;16894:18;;;16887:30;-1:-1:-1;;;16948:2:18;16933:18;;16926:46;17004:2;16989:18;;16847:166::o;17018:413::-;17220:2;17202:21;;;17259:2;17239:18;;;17232:30;17298:34;17293:2;17278:18;;17271:62;-1:-1:-1;;;17364:2:18;17349:18;;17342:47;17421:3;17406:19;;17192:239::o;17436:408::-;17638:2;17620:21;;;17677:2;17657:18;;;17650:30;17716:34;17711:2;17696:18;;17689:62;-1:-1:-1;;;17782:2:18;17767:18;;17760:42;17834:3;17819:19;;17610:234::o;17849:412::-;18051:2;18033:21;;;18090:2;18070:18;;;18063:30;18129:34;18124:2;18109:18;;18102:62;-1:-1:-1;;;18195:2:18;18180:18;;18173:46;18251:3;18236:19;;18023:238::o;18266:177::-;18412:25;;;18400:2;18385:18;;18367:76::o;18448:128::-;;18519:1;18515:6;18512:1;18509:13;18506:2;;;18525:18;;:::i;:::-;-1:-1:-1;18561:9:18;;18496:80::o;18581:120::-;;18647:1;18637:2;;18652:18;;:::i;:::-;-1:-1:-1;18686:9:18;;18627:74::o;18706:168::-;;18812:1;18808;18804:6;18800:14;18797:1;18794:21;18789:1;18782:9;18775:17;18771:45;18768:2;;;18819:18;;:::i;:::-;-1:-1:-1;18859:9:18;;18758:116::o;18879:125::-;;18947:1;18944;18941:8;18938:2;;;18952:18;;:::i;:::-;-1:-1:-1;18989:9:18;;18928:76::o;19009:258::-;19081:1;19091:113;19105:6;19102:1;19099:13;19091:113;;;19181:11;;;19175:18;19162:11;;;19155:39;19127:2;19120:10;19091:113;;;19222:6;19219:1;19216:13;19213:2;;;-1:-1:-1;;19257:1:18;19239:16;;19232:27;19062:205::o;19272:380::-;19357:1;19347:12;;19404:1;19394:12;;;19415:2;;19469:4;19461:6;19457:17;19447:27;;19415:2;19522;19514:6;19511:14;19491:18;19488:38;19485:2;;;19568:10;19563:3;19559:20;19556:1;19549:31;19603:4;19600:1;19593:15;19631:4;19628:1;19621:15;19485:2;;19327:325;;;:::o;19657:135::-;;-1:-1:-1;;19717:17:18;;19714:2;;;19737:18;;:::i;:::-;-1:-1:-1;19784:1:18;19773:13;;19704:88::o;19797:112::-;;19855:1;19845:2;;19860:18;;:::i;:::-;-1:-1:-1;19894:9:18;;19835:74::o;19914:127::-;19975:10;19970:3;19966:20;19963:1;19956:31;20006:4;20003:1;19996:15;20030:4;20027:1;20020:15;20046:127;20107:10;20102:3;20098:20;20095:1;20088:31;20138:4;20135:1;20128:15;20162:4;20159:1;20152:15;20178:127;20239:10;20234:3;20230:20;20227:1;20220:31;20270:4;20267:1;20260:15;20294:4;20291:1;20284:15;20310:133;-1:-1:-1;;;;;20387:31:18;;20377:42;;20367:2;;20433:1;20430;20423:12;20448:133;-1:-1:-1;;;;;;20524:32:18;;20514:43;;20504:2;;20571:1;20568;20561:12
Swarm Source
ipfs://4b5faa30a897dc2529e5b772ce95c0e62e5be3922e285fff7989338bd1b7af9e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,828.94 | 0.14 | $536.05 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.