Overview
ETH Balance
0.54 ETH
Eth Value
$802.84 (@ $1,486.73/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 18970218 | 455 days ago | IN | 0 ETH | 0.0022785 | ||||
Mint | 16051549 | 864 days ago | IN | 0.09 ETH | 0.00105093 | ||||
Mint | 16041179 | 866 days ago | IN | 0.045 ETH | 0.00108926 | ||||
Transfer From | 15929667 | 881 days ago | IN | 0 ETH | 0.00129057 | ||||
Mint | 15929625 | 881 days ago | IN | 0.045 ETH | 0.00114066 | ||||
Mint | 15859222 | 891 days ago | IN | 0.045 ETH | 0.00066424 | ||||
Mint | 15858116 | 891 days ago | IN | 0.045 ETH | 0.00173878 | ||||
Mint | 15846582 | 893 days ago | IN | 0.09 ETH | 0.00170496 | ||||
Mint | 15843287 | 893 days ago | IN | 0.045 ETH | 0.00089921 | ||||
Mint | 15841531 | 893 days ago | IN | 0.045 ETH | 0.00186502 | ||||
Mint | 15841029 | 894 days ago | IN | 0.045 ETH | 0.0020603 | ||||
Mint | 15834870 | 894 days ago | IN | 0.045 ETH | 0.00169666 | ||||
Update Price | 15805244 | 899 days ago | IN | 0 ETH | 0.00051872 | ||||
Transfer From | 15799213 | 899 days ago | IN | 0 ETH | 0.00190686 | ||||
Transfer From | 15799117 | 899 days ago | IN | 0 ETH | 0.00164014 | ||||
Transfer From | 15799074 | 899 days ago | IN | 0 ETH | 0.00173169 | ||||
Transfer From | 15799071 | 899 days ago | IN | 0 ETH | 0.00169648 | ||||
Transfer From | 15799068 | 899 days ago | IN | 0 ETH | 0.0017844 | ||||
Transfer From | 15799065 | 899 days ago | IN | 0 ETH | 0.00136443 | ||||
Mint Steph | 15799041 | 899 days ago | IN | 0 ETH | 0.02972743 | ||||
Withdraw | 15766235 | 904 days ago | IN | 0 ETH | 0.00034707 | ||||
Mint | 15766228 | 904 days ago | IN | 0.076 ETH | 0.00070386 | ||||
Start Public Min... | 15766223 | 904 days ago | IN | 0 ETH | 0.00029417 | ||||
Allowlist Mint | 15762537 | 904 days ago | IN | 0.076 ETH | 0.01164196 | ||||
Allowlist Mint | 15759189 | 905 days ago | IN | 0.076 ETH | 0.0016515 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 15766235 | 904 days ago | 0.456 ETH |
Loading...
Loading
Contract Name:
SkeletonStephGenesis
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; contract SkeletonStephGenesis is ERC721URIStorage, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIds; uint256 public totalMint = 2100; uint256 public stephReserve = 37; uint256 public price = 0.076 ether; bool public isPresale = true; bool public canUpdateMetadata = true; string public IMGURL = "https://sekerfactory.mypinata.cloud/ipfs/QmbFbb6uPWwFVwCTBRkgK7M67q3tppWv2ymmPTtFTGfYZ4/"; address public FanboyPass = address(0x7d8d00dA54cB04cF725CD466a6813aF198cE41A1); mapping(uint256 => bool) public claimed; constructor() ERC721("Skeleton Steph Genesis", "Genesis") {} function allowlistMint(uint256 _amount, uint256[] memory _ids) public payable { require(isPresale, "presale has ended"); require(_amount == _ids.length, "mint amount and number of IDs mismatch"); for (uint256 i; i < _ids.length; i++) { require(IERC721(FanboyPass).ownerOf(_ids[i]) == msg.sender, "minter does not own an id"); require(claimed[_ids[i]] == false, "id has already been claimed"); claimed[_ids[i]] = true; } require(msg.value == price * _amount, "incorrect eth amount"); for (uint256 i; i < _ids.length; i++) { uint256 newNFT = _tokenIds.current(); _safeMint(msg.sender, newNFT); _tokenIds.increment(); } } function mint(uint256 _amount) public payable { require(!isPresale, "public mint has not begun"); require( (Counters.current(_tokenIds) + _amount) <= totalMint, "minting has reached its max" ); require(msg.value == price * _amount, "Incorrect eth amount"); for (uint256 i; i < _amount; i++) { uint256 newNFT = _tokenIds.current(); _safeMint(msg.sender, newNFT); _tokenIds.increment(); } } // Owner functions function mintSteph(uint256 _amount) public onlyOwner { require( (Counters.current(_tokenIds) + _amount) <= totalMint, "minting has reached its max" ); for (uint256 i; i < _amount; i++) { require(stephReserve > 0, "steph reserve fully minted"); uint256 newNFT = _tokenIds.current(); _safeMint(msg.sender, newNFT); _tokenIds.increment(); stephReserve--; } } function startPublicMint() public onlyOwner { isPresale = false; } function setFanboyPassAddress(address _newAddress) public onlyOwner { FanboyPass = _newAddress; } function updateTokenURI(string memory _newURI) public onlyOwner { require(canUpdateMetadata, "metadata updates have been burned"); IMGURL = _newURI; } function updateTotalMint(uint256 _newSupply) public onlyOwner { require(_newSupply > _tokenIds.current(), "new supply less than already minted"); totalMint = _newSupply; } function updatePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function burnMetadataUpdate() public onlyOwner { canUpdateMetadata = false; } // Utility functions function tokenURI(uint256 tokenId) public view override(ERC721URIStorage) returns (string memory) { require( _exists(tokenId), "Clearance Cards: URI query for nonexistent token" ); return string(abi.encodePacked(IMGURL, tokenId.toString(), ".json")); } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } // Withdraw function withdraw(address payable withdrawAddress) external payable onlyOwner { require( withdrawAddress == owner(), "can only withdraw to the owner" ); require(address(this).balance >= 0, "Not enough eth"); (bool sent, ) = withdrawAddress.call{value: address(this).balance}(""); require(sent, "Failed to send Ether"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FanboyPass","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IMGURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"burnMetadataUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUpdateMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintSteph","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setFanboyPassAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stephReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateTotalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526108346009556025600a5567010e0198eaee0000600b556001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506040518060800160405280605881526020016200463c60589139600d9080519060200190620000829291906200027a565b50737d8d00da54cb04cf725cd466a6813af198ce41a1600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e557600080fd5b506040518060400160405280601681526020017f536b656c65746f6e2053746570682047656e65736973000000000000000000008152506040518060400160405280600781526020017f47656e657369730000000000000000000000000000000000000000000000000081525081600090805190602001906200016a9291906200027a565b508060019080519060200190620001839291906200027a565b505050620001a66200019a620001ac60201b60201c565b620001b460201b60201c565b6200038f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000288906200032a565b90600052602060002090601f016020900481019282620002ac5760008555620002f8565b82601f10620002c757805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f7578251825591602001919060010190620002da565b5b5090506200030791906200030b565b5090565b5b80821115620003265760008160009055506001016200030c565b5090565b600060028204905060018216806200034357607f821691505b602082108114156200035a576200035962000360565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61429d806200039f6000396000f3fe6080604052600436106102035760003560e01c806376c64c6211610118578063a08746f5116100a0578063c87b56dd1161006f578063c87b56dd146106dd578063d99321281461071a578063dbe7e3bd14610745578063e985e9c514610782578063f2fde38b146107bf57610203565b8063a08746f514610637578063a22cb46514610660578063b88d4fde14610689578063bab82c22146106b257610203565b806395d89b41116100e757806395d89b4114610585578063989566c1146105b057806398cd6153146105c7578063a035b1fe146105f0578063a0712d681461061b57610203565b806376c64c62146104ef5780638d6cc56d146105065780638da5cb5b1461052f57806395364a841461055a57610203565b806323b872dd1161019b57806359a7715a1161016a57806359a7715a146104085780636352211e146104335780636e6051071461047057806370a082311461049b578063715018a6146104d857610203565b806323b872dd146103715780633d6969a71461039a57806342842e0e146103c357806351cff8d9146103ec57610203565b8063095ea7b3116101d7578063095ea7b3146102d65780630facaef3146102ff57806318160ddd1461032a578063234784bc1461035557610203565b8062fa56bd1461020857806301ffc9a71461023157806306fdde031461026e578063081812fc14610299575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190612940565b6107e8565b005b34801561023d57600080fd5b5061025860048036038101906102539190612b5d565b610834565b604051610265919061329d565b60405180910390f35b34801561027a57600080fd5b50610283610916565b60405161029091906132b8565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612c00565b6109a8565b6040516102cd9190613236565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612b1d565b6109ee565b005b34801561030b57600080fd5b50610314610b06565b604051610321919061329d565b60405180910390f35b34801561033657600080fd5b5061033f610b19565b60405161034c919061365a565b60405180910390f35b61036f600480360381019061036a9190612c2d565b610b2a565b005b34801561037d57600080fd5b5061039860048036038101906103939190612a07565b610e6b565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612c00565b610ecb565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612a07565b610f28565b005b6104066004803603810190610401919061299a565b610f48565b005b34801561041457600080fd5b5061041d6110b9565b60405161042a919061365a565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612c00565b6110bf565b6040516104679190613236565b60405180910390f35b34801561047c57600080fd5b50610485611171565b604051610492919061365a565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612940565b611177565b6040516104cf919061365a565b60405180910390f35b3480156104e457600080fd5b506104ed61122f565b005b3480156104fb57600080fd5b50610504611243565b005b34801561051257600080fd5b5061052d60048036038101906105289190612c00565b611268565b005b34801561053b57600080fd5b5061054461127a565b6040516105519190613236565b60405180910390f35b34801561056657600080fd5b5061056f6112a4565b60405161057c919061329d565b60405180910390f35b34801561059157600080fd5b5061059a6112b7565b6040516105a791906132b8565b60405180910390f35b3480156105bc57600080fd5b506105c5611349565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612bb7565b61136e565b005b3480156105fc57600080fd5b506106056113df565b604051610612919061365a565b60405180910390f35b61063560048036038101906106309190612c00565b6113e5565b005b34801561064357600080fd5b5061065e60048036038101906106599190612c00565b611522565b005b34801561066c57600080fd5b5061068760048036038101906106829190612add565b611625565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612a5a565b61163b565b005b3480156106be57600080fd5b506106c761169d565b6040516106d491906132b8565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612c00565b61172b565b60405161071191906132b8565b60405180910390f35b34801561072657600080fd5b5061072f6117a7565b60405161073c9190613236565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612c00565b6117cd565b604051610779919061329d565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a491906129c7565b6117ed565b6040516107b6919061329d565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190612940565b611881565b005b6107f0611905565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090f575061090e82611983565b5b9050919050565b60606000805461092590613992565b80601f016020809104026020016040519081016040528092919081815260200182805461095190613992565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119ed565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f9826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906135ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a89611a38565b73ffffffffffffffffffffffffffffffffffffffff161480610ab85750610ab781610ab2611a38565b6117ed565b5b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee9061349a565b60405180910390fd5b610b018383611a40565b505050565b600c60019054906101000a900460ff1681565b6000610b256008611af9565b905090565b600c60009054906101000a900460ff16610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906135fa565b60405180910390fd5b80518214610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb39061341a565b60405180910390fd5b60005b8151811015610dd4573373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110610c3057610c2f613afc565b5b60200260200101516040518263ffffffff1660e01b8152600401610c54919061365a565b60206040518083038186803b158015610c6c57600080fd5b505afa158015610c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca4919061296d565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061353a565b60405180910390fd5b60001515600f6000848481518110610d1557610d14613afc565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906134da565b60405180910390fd5b6001600f6000848481518110610d9457610d93613afc565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dcc906139f5565b915050610bbf565b5081600b54610de39190613812565b3414610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906134fa565b60405180910390fd5b60005b8151811015610e66576000610e3c6008611af9565b9050610e483382611b07565b610e526008611b25565b508080610e5e906139f5565b915050610e27565b505050565b610e7c610e76611a38565b82611b3b565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061361a565b60405180910390fd5b610ec6838383611bd0565b505050565b610ed3611905565b610edd6008611af9565b8111610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061357a565b60405180910390fd5b8060098190555050565b610f438383836040518060200160405280600081525061163b565b505050565b610f50611905565b610f5861127a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061355a565b60405180910390fd5b6000471015611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906133fa565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161102f90613221565b60006040518083038185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9061339a565b60405180910390fd5b5050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061359a565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df9061345a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611237611905565b6112416000611e37565b565b61124b611905565b6000600c60006101000a81548160ff021916908315150217905550565b611270611905565b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b6060600180546112c690613992565b80601f01602080910402602001604051908101604052809291908181526020018280546112f290613992565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b5050505050905090565b611351611905565b6000600c60016101000a81548160ff021916908315150217905550565b611376611905565b600c60019054906101000a900460ff166113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061343a565b60405180910390fd5b80600d90805190602001906113db92919061268c565b5050565b600b5481565b600c60009054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061363a565b60405180910390fd5b600954816114436008611af9565b61144d919061378b565b111561148e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611485906135da565b60405180910390fd5b80600b5461149c9190613812565b34146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d49061337a565b60405180910390fd5b60005b8181101561151e5760006114f46008611af9565b90506115003382611b07565b61150a6008611b25565b508080611516906139f5565b9150506114e0565b5050565b61152a611905565b600954816115386008611af9565b611542919061378b565b1115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906135da565b60405180910390fd5b60005b81811015611621576000600a54116115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca9061347a565b60405180910390fd5b60006115df6008611af9565b90506115eb3382611b07565b6115f56008611b25565b600a600081548092919061160890613968565b9190505550508080611619906139f5565b915050611586565b5050565b611637611630611a38565b8383611efd565b5050565b61164c611646611a38565b83611b3b565b61168b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116829061361a565b60405180910390fd5b6116978484848461206a565b50505050565b600d80546116aa90613992565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613992565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b6060611736826120c6565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c906132fa565b60405180910390fd5b600d61178083612132565b6040516020016117919291906131f2565b6040516020818303038152906040529050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611889611905565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061331a565b60405180910390fd5b61190281611e37565b50565b61190d611a38565b73ffffffffffffffffffffffffffffffffffffffff1661192b61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119789061351a565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119f6816120c6565b611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061359a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ab3836110bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611b21828260405180602001604052806000815250612293565b5050565b6001816000016000828254019250508190555050565b600080611b47836110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b895750611b8881856117ed565b5b80611bc757508373ffffffffffffffffffffffffffffffffffffffff16611baf846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf0826110bf565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d9061333a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906133ba565b60405180910390fd5b611cc18383836122ee565b611ccc600082611a40565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1c919061386c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d73919061378b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e328383836122f3565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906133da565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205d919061329d565b60405180910390a3505050565b612075848484611bd0565b612081848484846122f8565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b7906132da565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561217a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228e565b600082905060005b600082146121ac578080612195906139f5565b915050600a826121a591906137e1565b9150612182565b60008167ffffffffffffffff8111156121c8576121c7613b2b565b5b6040519080825280601f01601f1916602001820160405280156121fa5781602001600182028036833780820191505090505b5090505b6000851461228757600182612213919061386c565b9150600a856122229190613a3e565b603061222e919061378b565b60f81b81838151811061224457612243613afc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228091906137e1565b94506121fe565b8093505050505b919050565b61229d838361248f565b6122aa60008484846122f8565b6122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906132da565b60405180910390fd5b505050565b505050565b505050565b60006123198473ffffffffffffffffffffffffffffffffffffffff16612669565b15612482578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612342611a38565b8786866040518563ffffffff1660e01b81526004016123649493929190613251565b602060405180830381600087803b15801561237e57600080fd5b505af19250505080156123af57506040513d601f19601f820116820180604052508101906123ac9190612b8a565b60015b612432573d80600081146123df576040519150601f19603f3d011682016040523d82523d6000602084013e6123e4565b606091505b5060008151141561242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906132da565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612487565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f6906134ba565b60405180910390fd5b612508816120c6565b15612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f9061335a565b60405180910390fd5b612554600083836122ee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a4919061378b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612665600083836122f3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461269890613992565b90600052602060002090601f0160209004810192826126ba5760008555612701565b82601f106126d357805160ff1916838001178555612701565b82800160010185558215612701579182015b828111156127005782518255916020019190600101906126e5565b5b50905061270e9190612712565b5090565b5b8082111561272b576000816000905550600101612713565b5090565b600061274261273d8461369a565b613675565b9050808382526020820190508285602086028201111561276557612764613b5f565b5b60005b85811015612795578161277b888261292b565b845260208401935060208301925050600181019050612768565b5050509392505050565b60006127b26127ad846136c6565b613675565b9050828152602081018484840111156127ce576127cd613b64565b5b6127d9848285613926565b509392505050565b60006127f46127ef846136f7565b613675565b9050828152602081018484840111156128105761280f613b64565b5b61281b848285613926565b509392505050565b600081359050612832816141f4565b92915050565b600081519050612847816141f4565b92915050565b60008135905061285c8161420b565b92915050565b600082601f83011261287757612876613b5a565b5b813561288784826020860161272f565b91505092915050565b60008135905061289f81614222565b92915050565b6000813590506128b481614239565b92915050565b6000815190506128c981614239565b92915050565b600082601f8301126128e4576128e3613b5a565b5b81356128f484826020860161279f565b91505092915050565b600082601f83011261291257612911613b5a565b5b81356129228482602086016127e1565b91505092915050565b60008135905061293a81614250565b92915050565b60006020828403121561295657612955613b6e565b5b600061296484828501612823565b91505092915050565b60006020828403121561298357612982613b6e565b5b600061299184828501612838565b91505092915050565b6000602082840312156129b0576129af613b6e565b5b60006129be8482850161284d565b91505092915050565b600080604083850312156129de576129dd613b6e565b5b60006129ec85828601612823565b92505060206129fd85828601612823565b9150509250929050565b600080600060608486031215612a2057612a1f613b6e565b5b6000612a2e86828701612823565b9350506020612a3f86828701612823565b9250506040612a508682870161292b565b9150509250925092565b60008060008060808587031215612a7457612a73613b6e565b5b6000612a8287828801612823565b9450506020612a9387828801612823565b9350506040612aa48782880161292b565b925050606085013567ffffffffffffffff811115612ac557612ac4613b69565b5b612ad1878288016128cf565b91505092959194509250565b60008060408385031215612af457612af3613b6e565b5b6000612b0285828601612823565b9250506020612b1385828601612890565b9150509250929050565b60008060408385031215612b3457612b33613b6e565b5b6000612b4285828601612823565b9250506020612b538582860161292b565b9150509250929050565b600060208284031215612b7357612b72613b6e565b5b6000612b81848285016128a5565b91505092915050565b600060208284031215612ba057612b9f613b6e565b5b6000612bae848285016128ba565b91505092915050565b600060208284031215612bcd57612bcc613b6e565b5b600082013567ffffffffffffffff811115612beb57612bea613b69565b5b612bf7848285016128fd565b91505092915050565b600060208284031215612c1657612c15613b6e565b5b6000612c248482850161292b565b91505092915050565b60008060408385031215612c4457612c43613b6e565b5b6000612c528582860161292b565b925050602083013567ffffffffffffffff811115612c7357612c72613b69565b5b612c7f85828601612862565b9150509250929050565b612c92816138a0565b82525050565b612ca1816138c4565b82525050565b6000612cb28261373d565b612cbc8185613753565b9350612ccc818560208601613935565b612cd581613b73565b840191505092915050565b6000612ceb82613748565b612cf5818561376f565b9350612d05818560208601613935565b612d0e81613b73565b840191505092915050565b6000612d2482613748565b612d2e8185613780565b9350612d3e818560208601613935565b80840191505092915050565b60008154612d5781613992565b612d618186613780565b94506001821660008114612d7c5760018114612d8d57612dc0565b60ff19831686528186019350612dc0565b612d9685613728565b60005b83811015612db857815481890152600182019150602081019050612d99565b838801955050505b50505092915050565b6000612dd660328361376f565b9150612de182613b84565b604082019050919050565b6000612df960308361376f565b9150612e0482613bd3565b604082019050919050565b6000612e1c60268361376f565b9150612e2782613c22565b604082019050919050565b6000612e3f60258361376f565b9150612e4a82613c71565b604082019050919050565b6000612e62601c8361376f565b9150612e6d82613cc0565b602082019050919050565b6000612e8560148361376f565b9150612e9082613ce9565b602082019050919050565b6000612ea860148361376f565b9150612eb382613d12565b602082019050919050565b6000612ecb60248361376f565b9150612ed682613d3b565b604082019050919050565b6000612eee60198361376f565b9150612ef982613d8a565b602082019050919050565b6000612f11600e8361376f565b9150612f1c82613db3565b602082019050919050565b6000612f3460268361376f565b9150612f3f82613ddc565b604082019050919050565b6000612f5760218361376f565b9150612f6282613e2b565b604082019050919050565b6000612f7a60298361376f565b9150612f8582613e7a565b604082019050919050565b6000612f9d601a8361376f565b9150612fa882613ec9565b602082019050919050565b6000612fc0603e8361376f565b9150612fcb82613ef2565b604082019050919050565b6000612fe360208361376f565b9150612fee82613f41565b602082019050919050565b6000613006601b8361376f565b915061301182613f6a565b602082019050919050565b600061302960148361376f565b915061303482613f93565b602082019050919050565b600061304c600583613780565b915061305782613fbc565b600582019050919050565b600061306f60208361376f565b915061307a82613fe5565b602082019050919050565b600061309260198361376f565b915061309d8261400e565b602082019050919050565b60006130b5601e8361376f565b91506130c082614037565b602082019050919050565b60006130d860238361376f565b91506130e382614060565b604082019050919050565b60006130fb60188361376f565b9150613106826140af565b602082019050919050565b600061311e60218361376f565b9150613129826140d8565b604082019050919050565b6000613141600083613764565b915061314c82614127565b600082019050919050565b6000613164601b8361376f565b915061316f8261412a565b602082019050919050565b600061318760118361376f565b915061319282614153565b602082019050919050565b60006131aa602e8361376f565b91506131b58261417c565b604082019050919050565b60006131cd60198361376f565b91506131d8826141cb565b602082019050919050565b6131ec8161391c565b82525050565b60006131fe8285612d4a565b915061320a8284612d19565b91506132158261303f565b91508190509392505050565b600061322c82613134565b9150819050919050565b600060208201905061324b6000830184612c89565b92915050565b60006080820190506132666000830187612c89565b6132736020830186612c89565b61328060408301856131e3565b81810360608301526132928184612ca7565b905095945050505050565b60006020820190506132b26000830184612c98565b92915050565b600060208201905081810360008301526132d28184612ce0565b905092915050565b600060208201905081810360008301526132f381612dc9565b9050919050565b6000602082019050818103600083015261331381612dec565b9050919050565b6000602082019050818103600083015261333381612e0f565b9050919050565b6000602082019050818103600083015261335381612e32565b9050919050565b6000602082019050818103600083015261337381612e55565b9050919050565b6000602082019050818103600083015261339381612e78565b9050919050565b600060208201905081810360008301526133b381612e9b565b9050919050565b600060208201905081810360008301526133d381612ebe565b9050919050565b600060208201905081810360008301526133f381612ee1565b9050919050565b6000602082019050818103600083015261341381612f04565b9050919050565b6000602082019050818103600083015261343381612f27565b9050919050565b6000602082019050818103600083015261345381612f4a565b9050919050565b6000602082019050818103600083015261347381612f6d565b9050919050565b6000602082019050818103600083015261349381612f90565b9050919050565b600060208201905081810360008301526134b381612fb3565b9050919050565b600060208201905081810360008301526134d381612fd6565b9050919050565b600060208201905081810360008301526134f381612ff9565b9050919050565b600060208201905081810360008301526135138161301c565b9050919050565b6000602082019050818103600083015261353381613062565b9050919050565b6000602082019050818103600083015261355381613085565b9050919050565b60006020820190508181036000830152613573816130a8565b9050919050565b60006020820190508181036000830152613593816130cb565b9050919050565b600060208201905081810360008301526135b3816130ee565b9050919050565b600060208201905081810360008301526135d381613111565b9050919050565b600060208201905081810360008301526135f381613157565b9050919050565b600060208201905081810360008301526136138161317a565b9050919050565b600060208201905081810360008301526136338161319d565b9050919050565b60006020820190508181036000830152613653816131c0565b9050919050565b600060208201905061366f60008301846131e3565b92915050565b600061367f613690565b905061368b82826139c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156136b5576136b4613b2b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136e1576136e0613b2b565b5b6136ea82613b73565b9050602081019050919050565b600067ffffffffffffffff82111561371257613711613b2b565b5b61371b82613b73565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137968261391c565b91506137a18361391c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d6576137d5613a6f565b5b828201905092915050565b60006137ec8261391c565b91506137f78361391c565b92508261380757613806613a9e565b5b828204905092915050565b600061381d8261391c565b91506138288361391c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386157613860613a6f565b5b828202905092915050565b60006138778261391c565b91506138828361391c565b92508282101561389557613894613a6f565b5b828203905092915050565b60006138ab826138fc565b9050919050565b60006138bd826138fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613953578082015181840152602081019050613938565b83811115613962576000848401525b50505050565b60006139738261391c565b9150600082141561398757613986613a6f565b5b600182039050919050565b600060028204905060018216806139aa57607f821691505b602082108114156139be576139bd613acd565b5b50919050565b6139cd82613b73565b810181811067ffffffffffffffff821117156139ec576139eb613b2b565b5b80604052505050565b6000613a008261391c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3357613a32613a6f565b5b600182019050919050565b6000613a498261391c565b9150613a548361391c565b925082613a6457613a63613a9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f436c656172616e63652043617264733a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e636f72726563742065746820616d6f756e74000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f6d696e7420616d6f756e7420616e64206e756d626572206f6620494473206d6960008201527f736d617463680000000000000000000000000000000000000000000000000000602082015250565b7f6d6574616461746120757064617465732068617665206265656e206275726e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f737465706820726573657276652066756c6c79206d696e746564000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f69642068617320616c7265616479206265656e20636c61696d65640000000000600082015250565b7f696e636f72726563742065746820616d6f756e74000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d696e74657220646f6573206e6f74206f776e20616e20696400000000000000600082015250565b7f63616e206f6e6c7920776974686472617720746f20746865206f776e65720000600082015250565b7f6e657720737570706c79206c657373207468616e20616c7265616479206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6d696e74696e6720686173207265616368656420697473206d61780000000000600082015250565b7f70726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e7420686173206e6f7420626567756e00000000000000600082015250565b6141fd816138a0565b811461420857600080fd5b50565b614214816138b2565b811461421f57600080fd5b50565b61422b816138c4565b811461423657600080fd5b50565b614242816138d0565b811461424d57600080fd5b50565b6142598161391c565b811461426457600080fd5b5056fea2646970667358221220512bb612a85ca5eb9e95c2a7d6f06c9be015277aa8106bba6f494fefe286451f64736f6c6343000806003368747470733a2f2f73656b6572666163746f72792e6d7970696e6174612e636c6f75642f697066732f516d624662623675505777465677435442526b674b374d36377133747070577632796d6d50547446544766595a342f
Deployed Bytecode
0x6080604052600436106102035760003560e01c806376c64c6211610118578063a08746f5116100a0578063c87b56dd1161006f578063c87b56dd146106dd578063d99321281461071a578063dbe7e3bd14610745578063e985e9c514610782578063f2fde38b146107bf57610203565b8063a08746f514610637578063a22cb46514610660578063b88d4fde14610689578063bab82c22146106b257610203565b806395d89b41116100e757806395d89b4114610585578063989566c1146105b057806398cd6153146105c7578063a035b1fe146105f0578063a0712d681461061b57610203565b806376c64c62146104ef5780638d6cc56d146105065780638da5cb5b1461052f57806395364a841461055a57610203565b806323b872dd1161019b57806359a7715a1161016a57806359a7715a146104085780636352211e146104335780636e6051071461047057806370a082311461049b578063715018a6146104d857610203565b806323b872dd146103715780633d6969a71461039a57806342842e0e146103c357806351cff8d9146103ec57610203565b8063095ea7b3116101d7578063095ea7b3146102d65780630facaef3146102ff57806318160ddd1461032a578063234784bc1461035557610203565b8062fa56bd1461020857806301ffc9a71461023157806306fdde031461026e578063081812fc14610299575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190612940565b6107e8565b005b34801561023d57600080fd5b5061025860048036038101906102539190612b5d565b610834565b604051610265919061329d565b60405180910390f35b34801561027a57600080fd5b50610283610916565b60405161029091906132b8565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612c00565b6109a8565b6040516102cd9190613236565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612b1d565b6109ee565b005b34801561030b57600080fd5b50610314610b06565b604051610321919061329d565b60405180910390f35b34801561033657600080fd5b5061033f610b19565b60405161034c919061365a565b60405180910390f35b61036f600480360381019061036a9190612c2d565b610b2a565b005b34801561037d57600080fd5b5061039860048036038101906103939190612a07565b610e6b565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612c00565b610ecb565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612a07565b610f28565b005b6104066004803603810190610401919061299a565b610f48565b005b34801561041457600080fd5b5061041d6110b9565b60405161042a919061365a565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612c00565b6110bf565b6040516104679190613236565b60405180910390f35b34801561047c57600080fd5b50610485611171565b604051610492919061365a565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612940565b611177565b6040516104cf919061365a565b60405180910390f35b3480156104e457600080fd5b506104ed61122f565b005b3480156104fb57600080fd5b50610504611243565b005b34801561051257600080fd5b5061052d60048036038101906105289190612c00565b611268565b005b34801561053b57600080fd5b5061054461127a565b6040516105519190613236565b60405180910390f35b34801561056657600080fd5b5061056f6112a4565b60405161057c919061329d565b60405180910390f35b34801561059157600080fd5b5061059a6112b7565b6040516105a791906132b8565b60405180910390f35b3480156105bc57600080fd5b506105c5611349565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612bb7565b61136e565b005b3480156105fc57600080fd5b506106056113df565b604051610612919061365a565b60405180910390f35b61063560048036038101906106309190612c00565b6113e5565b005b34801561064357600080fd5b5061065e60048036038101906106599190612c00565b611522565b005b34801561066c57600080fd5b5061068760048036038101906106829190612add565b611625565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612a5a565b61163b565b005b3480156106be57600080fd5b506106c761169d565b6040516106d491906132b8565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612c00565b61172b565b60405161071191906132b8565b60405180910390f35b34801561072657600080fd5b5061072f6117a7565b60405161073c9190613236565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612c00565b6117cd565b604051610779919061329d565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a491906129c7565b6117ed565b6040516107b6919061329d565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190612940565b611881565b005b6107f0611905565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090f575061090e82611983565b5b9050919050565b60606000805461092590613992565b80601f016020809104026020016040519081016040528092919081815260200182805461095190613992565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119ed565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f9826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906135ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a89611a38565b73ffffffffffffffffffffffffffffffffffffffff161480610ab85750610ab781610ab2611a38565b6117ed565b5b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee9061349a565b60405180910390fd5b610b018383611a40565b505050565b600c60019054906101000a900460ff1681565b6000610b256008611af9565b905090565b600c60009054906101000a900460ff16610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906135fa565b60405180910390fd5b80518214610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb39061341a565b60405180910390fd5b60005b8151811015610dd4573373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110610c3057610c2f613afc565b5b60200260200101516040518263ffffffff1660e01b8152600401610c54919061365a565b60206040518083038186803b158015610c6c57600080fd5b505afa158015610c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca4919061296d565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061353a565b60405180910390fd5b60001515600f6000848481518110610d1557610d14613afc565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906134da565b60405180910390fd5b6001600f6000848481518110610d9457610d93613afc565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dcc906139f5565b915050610bbf565b5081600b54610de39190613812565b3414610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906134fa565b60405180910390fd5b60005b8151811015610e66576000610e3c6008611af9565b9050610e483382611b07565b610e526008611b25565b508080610e5e906139f5565b915050610e27565b505050565b610e7c610e76611a38565b82611b3b565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061361a565b60405180910390fd5b610ec6838383611bd0565b505050565b610ed3611905565b610edd6008611af9565b8111610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061357a565b60405180910390fd5b8060098190555050565b610f438383836040518060200160405280600081525061163b565b505050565b610f50611905565b610f5861127a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061355a565b60405180910390fd5b6000471015611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906133fa565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff164760405161102f90613221565b60006040518083038185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9061339a565b60405180910390fd5b5050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061359a565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df9061345a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611237611905565b6112416000611e37565b565b61124b611905565b6000600c60006101000a81548160ff021916908315150217905550565b611270611905565b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b6060600180546112c690613992565b80601f01602080910402602001604051908101604052809291908181526020018280546112f290613992565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b5050505050905090565b611351611905565b6000600c60016101000a81548160ff021916908315150217905550565b611376611905565b600c60019054906101000a900460ff166113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061343a565b60405180910390fd5b80600d90805190602001906113db92919061268c565b5050565b600b5481565b600c60009054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061363a565b60405180910390fd5b600954816114436008611af9565b61144d919061378b565b111561148e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611485906135da565b60405180910390fd5b80600b5461149c9190613812565b34146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d49061337a565b60405180910390fd5b60005b8181101561151e5760006114f46008611af9565b90506115003382611b07565b61150a6008611b25565b508080611516906139f5565b9150506114e0565b5050565b61152a611905565b600954816115386008611af9565b611542919061378b565b1115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906135da565b60405180910390fd5b60005b81811015611621576000600a54116115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca9061347a565b60405180910390fd5b60006115df6008611af9565b90506115eb3382611b07565b6115f56008611b25565b600a600081548092919061160890613968565b9190505550508080611619906139f5565b915050611586565b5050565b611637611630611a38565b8383611efd565b5050565b61164c611646611a38565b83611b3b565b61168b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116829061361a565b60405180910390fd5b6116978484848461206a565b50505050565b600d80546116aa90613992565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613992565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b6060611736826120c6565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c906132fa565b60405180910390fd5b600d61178083612132565b6040516020016117919291906131f2565b6040516020818303038152906040529050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611889611905565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061331a565b60405180910390fd5b61190281611e37565b50565b61190d611a38565b73ffffffffffffffffffffffffffffffffffffffff1661192b61127a565b73ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119789061351a565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119f6816120c6565b611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061359a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ab3836110bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611b21828260405180602001604052806000815250612293565b5050565b6001816000016000828254019250508190555050565b600080611b47836110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b895750611b8881856117ed565b5b80611bc757508373ffffffffffffffffffffffffffffffffffffffff16611baf846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf0826110bf565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d9061333a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906133ba565b60405180910390fd5b611cc18383836122ee565b611ccc600082611a40565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1c919061386c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d73919061378b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e328383836122f3565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906133da565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205d919061329d565b60405180910390a3505050565b612075848484611bd0565b612081848484846122f8565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b7906132da565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561217a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061228e565b600082905060005b600082146121ac578080612195906139f5565b915050600a826121a591906137e1565b9150612182565b60008167ffffffffffffffff8111156121c8576121c7613b2b565b5b6040519080825280601f01601f1916602001820160405280156121fa5781602001600182028036833780820191505090505b5090505b6000851461228757600182612213919061386c565b9150600a856122229190613a3e565b603061222e919061378b565b60f81b81838151811061224457612243613afc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228091906137e1565b94506121fe565b8093505050505b919050565b61229d838361248f565b6122aa60008484846122f8565b6122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906132da565b60405180910390fd5b505050565b505050565b505050565b60006123198473ffffffffffffffffffffffffffffffffffffffff16612669565b15612482578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612342611a38565b8786866040518563ffffffff1660e01b81526004016123649493929190613251565b602060405180830381600087803b15801561237e57600080fd5b505af19250505080156123af57506040513d601f19601f820116820180604052508101906123ac9190612b8a565b60015b612432573d80600081146123df576040519150601f19603f3d011682016040523d82523d6000602084013e6123e4565b606091505b5060008151141561242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906132da565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612487565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f6906134ba565b60405180910390fd5b612508816120c6565b15612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f9061335a565b60405180910390fd5b612554600083836122ee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a4919061378b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612665600083836122f3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461269890613992565b90600052602060002090601f0160209004810192826126ba5760008555612701565b82601f106126d357805160ff1916838001178555612701565b82800160010185558215612701579182015b828111156127005782518255916020019190600101906126e5565b5b50905061270e9190612712565b5090565b5b8082111561272b576000816000905550600101612713565b5090565b600061274261273d8461369a565b613675565b9050808382526020820190508285602086028201111561276557612764613b5f565b5b60005b85811015612795578161277b888261292b565b845260208401935060208301925050600181019050612768565b5050509392505050565b60006127b26127ad846136c6565b613675565b9050828152602081018484840111156127ce576127cd613b64565b5b6127d9848285613926565b509392505050565b60006127f46127ef846136f7565b613675565b9050828152602081018484840111156128105761280f613b64565b5b61281b848285613926565b509392505050565b600081359050612832816141f4565b92915050565b600081519050612847816141f4565b92915050565b60008135905061285c8161420b565b92915050565b600082601f83011261287757612876613b5a565b5b813561288784826020860161272f565b91505092915050565b60008135905061289f81614222565b92915050565b6000813590506128b481614239565b92915050565b6000815190506128c981614239565b92915050565b600082601f8301126128e4576128e3613b5a565b5b81356128f484826020860161279f565b91505092915050565b600082601f83011261291257612911613b5a565b5b81356129228482602086016127e1565b91505092915050565b60008135905061293a81614250565b92915050565b60006020828403121561295657612955613b6e565b5b600061296484828501612823565b91505092915050565b60006020828403121561298357612982613b6e565b5b600061299184828501612838565b91505092915050565b6000602082840312156129b0576129af613b6e565b5b60006129be8482850161284d565b91505092915050565b600080604083850312156129de576129dd613b6e565b5b60006129ec85828601612823565b92505060206129fd85828601612823565b9150509250929050565b600080600060608486031215612a2057612a1f613b6e565b5b6000612a2e86828701612823565b9350506020612a3f86828701612823565b9250506040612a508682870161292b565b9150509250925092565b60008060008060808587031215612a7457612a73613b6e565b5b6000612a8287828801612823565b9450506020612a9387828801612823565b9350506040612aa48782880161292b565b925050606085013567ffffffffffffffff811115612ac557612ac4613b69565b5b612ad1878288016128cf565b91505092959194509250565b60008060408385031215612af457612af3613b6e565b5b6000612b0285828601612823565b9250506020612b1385828601612890565b9150509250929050565b60008060408385031215612b3457612b33613b6e565b5b6000612b4285828601612823565b9250506020612b538582860161292b565b9150509250929050565b600060208284031215612b7357612b72613b6e565b5b6000612b81848285016128a5565b91505092915050565b600060208284031215612ba057612b9f613b6e565b5b6000612bae848285016128ba565b91505092915050565b600060208284031215612bcd57612bcc613b6e565b5b600082013567ffffffffffffffff811115612beb57612bea613b69565b5b612bf7848285016128fd565b91505092915050565b600060208284031215612c1657612c15613b6e565b5b6000612c248482850161292b565b91505092915050565b60008060408385031215612c4457612c43613b6e565b5b6000612c528582860161292b565b925050602083013567ffffffffffffffff811115612c7357612c72613b69565b5b612c7f85828601612862565b9150509250929050565b612c92816138a0565b82525050565b612ca1816138c4565b82525050565b6000612cb28261373d565b612cbc8185613753565b9350612ccc818560208601613935565b612cd581613b73565b840191505092915050565b6000612ceb82613748565b612cf5818561376f565b9350612d05818560208601613935565b612d0e81613b73565b840191505092915050565b6000612d2482613748565b612d2e8185613780565b9350612d3e818560208601613935565b80840191505092915050565b60008154612d5781613992565b612d618186613780565b94506001821660008114612d7c5760018114612d8d57612dc0565b60ff19831686528186019350612dc0565b612d9685613728565b60005b83811015612db857815481890152600182019150602081019050612d99565b838801955050505b50505092915050565b6000612dd660328361376f565b9150612de182613b84565b604082019050919050565b6000612df960308361376f565b9150612e0482613bd3565b604082019050919050565b6000612e1c60268361376f565b9150612e2782613c22565b604082019050919050565b6000612e3f60258361376f565b9150612e4a82613c71565b604082019050919050565b6000612e62601c8361376f565b9150612e6d82613cc0565b602082019050919050565b6000612e8560148361376f565b9150612e9082613ce9565b602082019050919050565b6000612ea860148361376f565b9150612eb382613d12565b602082019050919050565b6000612ecb60248361376f565b9150612ed682613d3b565b604082019050919050565b6000612eee60198361376f565b9150612ef982613d8a565b602082019050919050565b6000612f11600e8361376f565b9150612f1c82613db3565b602082019050919050565b6000612f3460268361376f565b9150612f3f82613ddc565b604082019050919050565b6000612f5760218361376f565b9150612f6282613e2b565b604082019050919050565b6000612f7a60298361376f565b9150612f8582613e7a565b604082019050919050565b6000612f9d601a8361376f565b9150612fa882613ec9565b602082019050919050565b6000612fc0603e8361376f565b9150612fcb82613ef2565b604082019050919050565b6000612fe360208361376f565b9150612fee82613f41565b602082019050919050565b6000613006601b8361376f565b915061301182613f6a565b602082019050919050565b600061302960148361376f565b915061303482613f93565b602082019050919050565b600061304c600583613780565b915061305782613fbc565b600582019050919050565b600061306f60208361376f565b915061307a82613fe5565b602082019050919050565b600061309260198361376f565b915061309d8261400e565b602082019050919050565b60006130b5601e8361376f565b91506130c082614037565b602082019050919050565b60006130d860238361376f565b91506130e382614060565b604082019050919050565b60006130fb60188361376f565b9150613106826140af565b602082019050919050565b600061311e60218361376f565b9150613129826140d8565b604082019050919050565b6000613141600083613764565b915061314c82614127565b600082019050919050565b6000613164601b8361376f565b915061316f8261412a565b602082019050919050565b600061318760118361376f565b915061319282614153565b602082019050919050565b60006131aa602e8361376f565b91506131b58261417c565b604082019050919050565b60006131cd60198361376f565b91506131d8826141cb565b602082019050919050565b6131ec8161391c565b82525050565b60006131fe8285612d4a565b915061320a8284612d19565b91506132158261303f565b91508190509392505050565b600061322c82613134565b9150819050919050565b600060208201905061324b6000830184612c89565b92915050565b60006080820190506132666000830187612c89565b6132736020830186612c89565b61328060408301856131e3565b81810360608301526132928184612ca7565b905095945050505050565b60006020820190506132b26000830184612c98565b92915050565b600060208201905081810360008301526132d28184612ce0565b905092915050565b600060208201905081810360008301526132f381612dc9565b9050919050565b6000602082019050818103600083015261331381612dec565b9050919050565b6000602082019050818103600083015261333381612e0f565b9050919050565b6000602082019050818103600083015261335381612e32565b9050919050565b6000602082019050818103600083015261337381612e55565b9050919050565b6000602082019050818103600083015261339381612e78565b9050919050565b600060208201905081810360008301526133b381612e9b565b9050919050565b600060208201905081810360008301526133d381612ebe565b9050919050565b600060208201905081810360008301526133f381612ee1565b9050919050565b6000602082019050818103600083015261341381612f04565b9050919050565b6000602082019050818103600083015261343381612f27565b9050919050565b6000602082019050818103600083015261345381612f4a565b9050919050565b6000602082019050818103600083015261347381612f6d565b9050919050565b6000602082019050818103600083015261349381612f90565b9050919050565b600060208201905081810360008301526134b381612fb3565b9050919050565b600060208201905081810360008301526134d381612fd6565b9050919050565b600060208201905081810360008301526134f381612ff9565b9050919050565b600060208201905081810360008301526135138161301c565b9050919050565b6000602082019050818103600083015261353381613062565b9050919050565b6000602082019050818103600083015261355381613085565b9050919050565b60006020820190508181036000830152613573816130a8565b9050919050565b60006020820190508181036000830152613593816130cb565b9050919050565b600060208201905081810360008301526135b3816130ee565b9050919050565b600060208201905081810360008301526135d381613111565b9050919050565b600060208201905081810360008301526135f381613157565b9050919050565b600060208201905081810360008301526136138161317a565b9050919050565b600060208201905081810360008301526136338161319d565b9050919050565b60006020820190508181036000830152613653816131c0565b9050919050565b600060208201905061366f60008301846131e3565b92915050565b600061367f613690565b905061368b82826139c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156136b5576136b4613b2b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136e1576136e0613b2b565b5b6136ea82613b73565b9050602081019050919050565b600067ffffffffffffffff82111561371257613711613b2b565b5b61371b82613b73565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137968261391c565b91506137a18361391c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d6576137d5613a6f565b5b828201905092915050565b60006137ec8261391c565b91506137f78361391c565b92508261380757613806613a9e565b5b828204905092915050565b600061381d8261391c565b91506138288361391c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386157613860613a6f565b5b828202905092915050565b60006138778261391c565b91506138828361391c565b92508282101561389557613894613a6f565b5b828203905092915050565b60006138ab826138fc565b9050919050565b60006138bd826138fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613953578082015181840152602081019050613938565b83811115613962576000848401525b50505050565b60006139738261391c565b9150600082141561398757613986613a6f565b5b600182039050919050565b600060028204905060018216806139aa57607f821691505b602082108114156139be576139bd613acd565b5b50919050565b6139cd82613b73565b810181811067ffffffffffffffff821117156139ec576139eb613b2b565b5b80604052505050565b6000613a008261391c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3357613a32613a6f565b5b600182019050919050565b6000613a498261391c565b9150613a548361391c565b925082613a6457613a63613a9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f436c656172616e63652043617264733a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e636f72726563742065746820616d6f756e74000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f6d696e7420616d6f756e7420616e64206e756d626572206f6620494473206d6960008201527f736d617463680000000000000000000000000000000000000000000000000000602082015250565b7f6d6574616461746120757064617465732068617665206265656e206275726e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f737465706820726573657276652066756c6c79206d696e746564000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f69642068617320616c7265616479206265656e20636c61696d65640000000000600082015250565b7f696e636f72726563742065746820616d6f756e74000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d696e74657220646f6573206e6f74206f776e20616e20696400000000000000600082015250565b7f63616e206f6e6c7920776974686472617720746f20746865206f776e65720000600082015250565b7f6e657720737570706c79206c657373207468616e20616c7265616479206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6d696e74696e6720686173207265616368656420697473206d61780000000000600082015250565b7f70726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e7420686173206e6f7420626567756e00000000000000600082015250565b6141fd816138a0565b811461420857600080fd5b50565b614214816138b2565b811461421f57600080fd5b50565b61422b816138c4565b811461423657600080fd5b50565b614242816138d0565b811461424d57600080fd5b50565b6142598161391c565b811461426457600080fd5b5056fea2646970667358221220512bb612a85ca5eb9e95c2a7d6f06c9be015277aa8106bba6f494fefe286451f64736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 33 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,483.04 | 0.54 | $800.84 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.