Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 273 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19288969 | 294 days ago | IN | 0 ETH | 0.00310129 | ||||
Set Approval For... | 18579641 | 394 days ago | IN | 0 ETH | 0.00274191 | ||||
Set Approval For... | 17010749 | 614 days ago | IN | 0 ETH | 0.00052083 | ||||
Set Approval For... | 16695112 | 658 days ago | IN | 0 ETH | 0.00130677 | ||||
Safe Transfer Fr... | 16534018 | 681 days ago | IN | 0 ETH | 0.00141494 | ||||
Safe Transfer Fr... | 16534018 | 681 days ago | IN | 0 ETH | 0.00153284 | ||||
Set Approval For... | 16450044 | 693 days ago | IN | 0 ETH | 0.00102338 | ||||
Set Approval For... | 15521219 | 823 days ago | IN | 0 ETH | 0.00078137 | ||||
Transfer From | 15516333 | 824 days ago | IN | 0 ETH | 0.00114209 | ||||
Transfer From | 15516330 | 824 days ago | IN | 0 ETH | 0.0011526 | ||||
Transfer From | 15516329 | 824 days ago | IN | 0 ETH | 0.00135001 | ||||
Transfer From | 15516329 | 824 days ago | IN | 0 ETH | 0.00103723 | ||||
Transfer From | 15516328 | 824 days ago | IN | 0 ETH | 0.00108694 | ||||
Set Approval For... | 15379743 | 846 days ago | IN | 0 ETH | 0.00063091 | ||||
Set Approval For... | 15072377 | 893 days ago | IN | 0 ETH | 0.00119072 | ||||
Set Approval For... | 14972362 | 911 days ago | IN | 0 ETH | 0.00102749 | ||||
Set Approval For... | 14972344 | 911 days ago | IN | 0 ETH | 0.0017908 | ||||
Set Approval For... | 14972279 | 911 days ago | IN | 0 ETH | 0.0009319 | ||||
Set Approval For... | 14949451 | 915 days ago | IN | 0 ETH | 0.00118951 | ||||
Set Approval For... | 14820481 | 936 days ago | IN | 0 ETH | 0.00115816 | ||||
Set Approval For... | 14543672 | 980 days ago | IN | 0 ETH | 0.00115232 | ||||
Set Approval For... | 14543671 | 980 days ago | IN | 0 ETH | 0.00179862 | ||||
Set Approval For... | 14537213 | 981 days ago | IN | 0 ETH | 0.00228658 | ||||
Set Approval For... | 14531088 | 982 days ago | IN | 0 ETH | 0.00188251 | ||||
Set Revealed | 14527417 | 983 days ago | IN | 0 ETH | 0.00273257 |
Loading...
Loading
Contract Name:
ImperialWhaleClub
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ImperialWhaleClub is ERC721Enumerable, Ownable { //Constants uint256 public constant MAX_SUPPLY = 8999; uint256 public MINT_PRICE = 0.12 ether; address public constant WITHDRAWALL_ADDRESS = address(0x1f8655E56E00124C1376Ed456AE6F121d65E32B8); //Mappings mapping(address => bool) WHITELIST; //Members string private BASEURI; string private BLINDBASEURI; bool private WHITELISTACTIVE = true; bool private ISACTIVE; bool private ISREVEALED; constructor() ERC721("IMPERIALWHALECLUB", "IWC") {} //*********************Minting*********************/ function mintNft(uint256 quantity) external payable { //check is revealed require(ISACTIVE, "Not active yet"); //check whitelist require(!WHITELISTACTIVE || WHITELIST[msg.sender], "You're not whitelisted"); /// block transactions that would exceed the maxSupply require(totalSupply() + quantity <= MAX_SUPPLY, "Supply is exhausted"); // block transactions that don't provide enough ether require( msg.value >= MINT_PRICE * quantity, "Insufficient ether sent for mint" ); /// mint the requested quantity for (uint256 i = 0; i < quantity; i++) { uint256 tokenId = totalSupply() + 1; _safeMint(msg.sender, tokenId); } } function mintOwner(address to, uint256 quantity) external onlyOwner { /// block transactions that would exceed the maxSupply require(totalSupply() + quantity <= MAX_SUPPLY, "Supply is exhausted"); /// mint the requested quantity for (uint256 i = 0; i < quantity; i++) { uint256 tokenId = totalSupply() + 1; _safeMint(to, tokenId); } } //*********************BaseUri*********************/ function setURIs(string memory blindURI, string memory baseUri) external onlyOwner { BLINDBASEURI = blindURI; BASEURI = baseUri; } //*********************Whitelist*********************/ function setWhitelistInactive() external onlyOwner { WHITELISTACTIVE = false; } //*********************Withdraw*********************/ function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Balance should be more then zero"); payable(WITHDRAWALL_ADDRESS).transfer(balance); } //*********************Whistlisting*********************/ function addAdressesToWhitelist(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { WHITELIST[addresses[i]] = true; } } function addAddressToWhitelist(address _address) external onlyOwner { WHITELIST[_address] = true; } function removeAddresFromWhitelist(address _address) external onlyOwner { WHITELIST[_address] = false; } function isWhitelisted(address _address) external view returns (bool) { return WHITELIST[_address]; } //*********************REVEALING*********************/ function setActive() external onlyOwner { ISACTIVE = true; } function setRevealed() external onlyOwner { ISREVEALED = true; } function setPrice(uint256 percentage ) external onlyOwner { MINT_PRICE = 1 ether * percentage / 100; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!ISREVEALED) { return string(abi.encodePacked(BLINDBASEURI)); } else { return string(abi.encodePacked(BASEURI, Strings.toString(_tokenId), ".json")); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWALL_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAddressToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addAdressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintOwner","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAddresFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActive","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":"uint256","name":"percentage","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"blindURI","type":"string"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistInactive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526701aa535d3d0c0000600b556001600f60006101000a81548160ff0219169083151502179055503480156200003857600080fd5b506040518060400160405280601181526020017f494d50455249414c5748414c45434c55420000000000000000000000000000008152506040518060400160405280600381526020017f49574300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bd929190620001cd565b508060019080519060200190620000d6929190620001cd565b505050620000f9620000ed620000ff60201b60201c565b6200010760201b60201c565b620002e2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001db90620002ac565b90600052602060002090601f016020900481019282620001ff57600085556200024b565b82601f106200021a57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024a5782518255916020019190600101906200022d565b5b5090506200025a91906200025e565b5090565b5b80821115620002795760008160009055506001016200025f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c557607f821691505b60208210811415620002dc57620002db6200027d565b5b50919050565b6146c280620002f26000396000f3fe6080604052600436106101f95760003560e01c80636f8b4e9b1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d6578063d42fdcec14610713578063e82541741461073c578063e985e9c514610765578063f2fde38b146107a2576101f9565b8063a22cb46514610630578063b88d4fde14610659578063bfbd7ec014610682578063c002d23d146106ab576101f9565b80637b9417c8116100dc5780637b9417c8146105885780638da5cb5b146105b157806391b7f5ed146105dc57806395d89b4114610605576101f9565b80636f8b4e9b1461050657806370a082311461051d578063715018a61461055a578063760a8c2a14610571576101f9565b806332cb6b0c116101905780633ccfd60b1161015f5780633ccfd60b14610423578063408cbf941461043a57806342842e0e146104635780634f6ccce71461048c5780636352211e146104c9576101f9565b806332cb6b0c14610379578063339cfa68146103a45780633af32abf146103cf5780633bd649681461040c576101f9565b80630d730acc116101cc5780630d730acc146102cc57806318160ddd146102e857806323b872dd146103135780632f745c591461033c576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612eb6565b6107cb565b6040516102329190612efe565b60405180910390f35b34801561024757600080fd5b50610250610845565b60405161025d9190612fb2565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061300a565b6108d7565b60405161029a9190613078565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906130bf565b61095c565b005b6102e660048036038101906102e1919061300a565b610a74565b005b3480156102f457600080fd5b506102fd610c53565b60405161030a919061310e565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613129565b610c60565b005b34801561034857600080fd5b50610363600480360381019061035e91906130bf565b610cc0565b604051610370919061310e565b60405180910390f35b34801561038557600080fd5b5061038e610d65565b60405161039b919061310e565b60405180910390f35b3480156103b057600080fd5b506103b9610d6b565b6040516103c69190613078565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061317c565b610d83565b6040516104039190612efe565b60405180910390f35b34801561041857600080fd5b50610421610dd9565b005b34801561042f57600080fd5b50610438610e72565b005b34801561044657600080fd5b50610461600480360381019061045c91906130bf565b610f94565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613129565b6110ad565b005b34801561049857600080fd5b506104b360048036038101906104ae919061300a565b6110cd565b6040516104c0919061310e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061300a565b61113e565b6040516104fd9190613078565b60405180910390f35b34801561051257600080fd5b5061051b6111f0565b005b34801561052957600080fd5b50610544600480360381019061053f919061317c565b611289565b604051610551919061310e565b60405180910390f35b34801561056657600080fd5b5061056f611341565b005b34801561057d57600080fd5b506105866113c9565b005b34801561059457600080fd5b506105af60048036038101906105aa919061317c565b611462565b005b3480156105bd57600080fd5b506105c6611539565b6040516105d39190613078565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061300a565b611563565b005b34801561061157600080fd5b5061061a611608565b6040516106279190612fb2565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906131d5565b61169a565b005b34801561066557600080fd5b50610680600480360381019061067b919061334a565b6116b0565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061317c565b611712565b005b3480156106b757600080fd5b506106c06117e9565b6040516106cd919061310e565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061300a565b6117ef565b60405161070a9190612fb2565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061342d565b6118a8565b005b34801561074857600080fd5b50610763600480360381019061075e919061351b565b6119c9565b005b34801561077157600080fd5b5061078c60048036038101906107879190613593565b611a77565b6040516107999190612efe565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c4919061317c565b611b0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e575061083d82611c03565b5b9050919050565b60606000805461085490613602565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613602565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282611ce5565b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906136a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109678261113e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613738565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f7611d51565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a20611d51565b611a77565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906137ca565b60405180910390fd5b610a6f8383611d59565b505050565b600f60019054906101000a900460ff16610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613836565b60405180910390fd5b600f60009054906101000a900460ff161580610b285750600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906138a2565b60405180910390fd5b61232781610b73610c53565b610b7d91906138f1565b1115610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613993565b60405180910390fd5b80600b54610bcc91906139b3565b341015610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613a59565b60405180910390fd5b60005b81811015610c4f5760006001610c25610c53565b610c2f91906138f1565b9050610c3b3382611e12565b508080610c4790613a79565b915050610c11565b5050565b6000600880549050905090565b610c71610c6b611d51565b82611e30565b610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613b34565b60405180910390fd5b610cbb838383611f0e565b505050565b6000610ccb83611289565b8210610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613bc6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61232781565b731f8655e56e00124c1376ed456ae6f121d65e32b881565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610de1611d51565b73ffffffffffffffffffffffffffffffffffffffff16610dff611539565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613c32565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b610e7a611d51565b73ffffffffffffffffffffffffffffffffffffffff16610e98611539565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613c32565b60405180910390fd5b600047905060008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613c9e565b60405180910390fd5b731f8655e56e00124c1376ed456ae6f121d65e32b873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f90573d6000803e3d6000fd5b5050565b610f9c611d51565b73ffffffffffffffffffffffffffffffffffffffff16610fba611539565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613c32565b60405180910390fd5b6123278161101c610c53565b61102691906138f1565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613993565b60405180910390fd5b60005b818110156110a8576000600161107e610c53565b61108891906138f1565b90506110948482611e12565b5080806110a090613a79565b91505061106a565b505050565b6110c8838383604051806020016040528060008152506116b0565b505050565b60006110d7610c53565b8210611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613d30565b60405180910390fd5b6008828154811061112c5761112b613d50565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90613df1565b60405180910390fd5b80915050919050565b6111f8611d51565b73ffffffffffffffffffffffffffffffffffffffff16611216611539565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613c32565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190613e83565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611349611d51565b73ffffffffffffffffffffffffffffffffffffffff16611367611539565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490613c32565b60405180910390fd5b6113c7600061216a565b565b6113d1611d51565b73ffffffffffffffffffffffffffffffffffffffff166113ef611539565b73ffffffffffffffffffffffffffffffffffffffff1614611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90613c32565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b61146a611d51565b73ffffffffffffffffffffffffffffffffffffffff16611488611539565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613c32565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61156b611d51565b73ffffffffffffffffffffffffffffffffffffffff16611589611539565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c32565b60405180910390fd5b606481670de0b6b3a76400006115f591906139b3565b6115ff9190613ed2565b600b8190555050565b60606001805461161790613602565b80601f016020809104026020016040519081016040528092919081815260200182805461164390613602565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b5050505050905090565b6116ac6116a5611d51565b8383612230565b5050565b6116c16116bb611d51565b83611e30565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613b34565b60405180910390fd5b61170c8484848461239d565b50505050565b61171a611d51565b73ffffffffffffffffffffffffffffffffffffffff16611738611539565b73ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613c32565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b60606117fa82611ce5565b611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613f75565b60405180910390fd5b600f60029054906101000a900460ff1661187557600e60405160200161185f9190614034565b60405160208183030381529060405290506118a3565b600d611880836123f9565b6040516020016118919291906140c8565b60405160208183030381529060405290505b919050565b6118b0611d51565b73ffffffffffffffffffffffffffffffffffffffff166118ce611539565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90613c32565b60405180910390fd5b60005b828290508110156119c4576001600c600085858581811061194b5761194a613d50565b5b9050602002016020810190611960919061317c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119bc90613a79565b915050611927565b505050565b6119d1611d51565b73ffffffffffffffffffffffffffffffffffffffff166119ef611539565b73ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c90613c32565b60405180910390fd5b81600e9080519060200190611a5b929190612da7565b5080600d9080519060200190611a72929190612da7565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b13611d51565b73ffffffffffffffffffffffffffffffffffffffff16611b31611539565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90614169565b60405180910390fd5b611c008161216a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cde5750611cdd8261255a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dcc8361113e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2c8282604051806020016040528060008152506125c4565b5050565b6000611e3b82611ce5565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906141fb565b60405180910390fd5b6000611e858361113e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ef457508373ffffffffffffffffffffffffffffffffffffffff16611edc846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f055750611f048185611a77565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2e8261113e565b73ffffffffffffffffffffffffffffffffffffffff1614611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b9061428d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb9061431f565b60405180910390fd5b611fff83838361261f565b61200a600082611d59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205a919061433f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b191906138f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612296906143bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123909190612efe565b60405180910390a3505050565b6123a8848484611f0e565b6123b484848484612733565b6123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90614451565b60405180910390fd5b50505050565b60606000821415612441576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612555565b600082905060005b6000821461247357808061245c90613a79565b915050600a8261246c9190613ed2565b9150612449565b60008167ffffffffffffffff81111561248f5761248e61321f565b5b6040519080825280601f01601f1916602001820160405280156124c15781602001600182028036833780820191505090505b5090505b6000851461254e576001826124da919061433f565b9150600a856124e99190614471565b60306124f591906138f1565b60f81b81838151811061250b5761250a613d50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125479190613ed2565b94506124c5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125ce83836128bb565b6125db6000848484612733565b61261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190614451565b60405180910390fd5b505050565b61262a838383612a89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266d5761266881612a8e565b6126ac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126ab576126aa8382612ad7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ef576126ea81612c44565b61272e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461272d5761272c8282612d15565b5b5b505050565b60006127548473ffffffffffffffffffffffffffffffffffffffff16612d94565b156128ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277d611d51565b8786866040518563ffffffff1660e01b815260040161279f94939291906144f7565b6020604051808303816000875af19250505080156127db57506040513d601f19601f820116820180604052508101906127d89190614558565b60015b61285e573d806000811461280b576040519150601f19603f3d011682016040523d82523d6000602084013e612810565b606091505b50600081511415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614451565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612922906145d1565b60405180910390fd5b61293481611ce5565b15612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b9061463d565b60405180910390fd5b6129806000838361261f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d091906138f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae484611289565b612aee919061433f565b9050600060076000848152602001908152602001600020549050818114612bd3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c58919061433f565b9050600060096000848152602001908152602001600020549050600060088381548110612c8857612c87613d50565b5b906000526020600020015490508060088381548110612caa57612ca9613d50565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cf957612cf861465d565b5b6001900381819060005260206000200160009055905550505050565b6000612d2083611289565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612db390613602565b90600052602060002090601f016020900481019282612dd55760008555612e1c565b82601f10612dee57805160ff1916838001178555612e1c565b82800160010185558215612e1c579182015b82811115612e1b578251825591602001919060010190612e00565b5b509050612e299190612e2d565b5090565b5b80821115612e46576000816000905550600101612e2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e9381612e5e565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612e54565b5b6000612eda84828501612ea1565b91505092915050565b60008115159050919050565b612ef881612ee3565b82525050565b6000602082019050612f136000830184612eef565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f53578082015181840152602081019050612f38565b83811115612f62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f8482612f19565b612f8e8185612f24565b9350612f9e818560208601612f35565b612fa781612f68565b840191505092915050565b60006020820190508181036000830152612fcc8184612f79565b905092915050565b6000819050919050565b612fe781612fd4565b8114612ff257600080fd5b50565b60008135905061300481612fde565b92915050565b6000602082840312156130205761301f612e54565b5b600061302e84828501612ff5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061306282613037565b9050919050565b61307281613057565b82525050565b600060208201905061308d6000830184613069565b92915050565b61309c81613057565b81146130a757600080fd5b50565b6000813590506130b981613093565b92915050565b600080604083850312156130d6576130d5612e54565b5b60006130e4858286016130aa565b92505060206130f585828601612ff5565b9150509250929050565b61310881612fd4565b82525050565b600060208201905061312360008301846130ff565b92915050565b60008060006060848603121561314257613141612e54565b5b6000613150868287016130aa565b9350506020613161868287016130aa565b925050604061317286828701612ff5565b9150509250925092565b60006020828403121561319257613191612e54565b5b60006131a0848285016130aa565b91505092915050565b6131b281612ee3565b81146131bd57600080fd5b50565b6000813590506131cf816131a9565b92915050565b600080604083850312156131ec576131eb612e54565b5b60006131fa858286016130aa565b925050602061320b858286016131c0565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325782612f68565b810181811067ffffffffffffffff821117156132765761327561321f565b5b80604052505050565b6000613289612e4a565b9050613295828261324e565b919050565b600067ffffffffffffffff8211156132b5576132b461321f565b5b6132be82612f68565b9050602081019050919050565b82818337600083830152505050565b60006132ed6132e88461329a565b61327f565b9050828152602081018484840111156133095761330861321a565b5b6133148482856132cb565b509392505050565b600082601f83011261333157613330613215565b5b81356133418482602086016132da565b91505092915050565b6000806000806080858703121561336457613363612e54565b5b6000613372878288016130aa565b9450506020613383878288016130aa565b935050604061339487828801612ff5565b925050606085013567ffffffffffffffff8111156133b5576133b4612e59565b5b6133c18782880161331c565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126133ed576133ec613215565b5b8235905067ffffffffffffffff81111561340a576134096133cd565b5b602083019150836020820283011115613426576134256133d2565b5b9250929050565b6000806020838503121561344457613443612e54565b5b600083013567ffffffffffffffff81111561346257613461612e59565b5b61346e858286016133d7565b92509250509250929050565b600067ffffffffffffffff8211156134955761349461321f565b5b61349e82612f68565b9050602081019050919050565b60006134be6134b98461347a565b61327f565b9050828152602081018484840111156134da576134d961321a565b5b6134e58482856132cb565b509392505050565b600082601f83011261350257613501613215565b5b81356135128482602086016134ab565b91505092915050565b6000806040838503121561353257613531612e54565b5b600083013567ffffffffffffffff8111156135505761354f612e59565b5b61355c858286016134ed565b925050602083013567ffffffffffffffff81111561357d5761357c612e59565b5b613589858286016134ed565b9150509250929050565b600080604083850312156135aa576135a9612e54565b5b60006135b8858286016130aa565b92505060206135c9858286016130aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061361a57607f821691505b6020821081141561362e5761362d6135d3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613690602c83612f24565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613722602183612f24565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137b4603883612f24565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f4e6f742061637469766520796574000000000000000000000000000000000000600082015250565b6000613820600e83612f24565b915061382b826137ea565b602082019050919050565b6000602082019050818103600083015261384f81613813565b9050919050565b7f596f75277265206e6f742077686974656c697374656400000000000000000000600082015250565b600061388c601683612f24565b915061389782613856565b602082019050919050565b600060208201905081810360008301526138bb8161387f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138fc82612fd4565b915061390783612fd4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393c5761393b6138c2565b5b828201905092915050565b7f537570706c792069732065786861757374656400000000000000000000000000600082015250565b600061397d601383612f24565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b60006139be82612fd4565b91506139c983612fd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0257613a016138c2565b5b828202905092915050565b7f496e73756666696369656e742065746865722073656e7420666f72206d696e74600082015250565b6000613a43602083612f24565b9150613a4e82613a0d565b602082019050919050565b60006020820190508181036000830152613a7281613a36565b9050919050565b6000613a8482612fd4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab757613ab66138c2565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b1e603183612f24565b9150613b2982613ac2565b604082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613bb0602b83612f24565b9150613bbb82613b54565b604082019050919050565b60006020820190508181036000830152613bdf81613ba3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c1c602083612f24565b9150613c2782613be6565b602082019050919050565b60006020820190508181036000830152613c4b81613c0f565b9050919050565b7f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f600082015250565b6000613c88602083612f24565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d1a602c83612f24565b9150613d2582613cbe565b604082019050919050565b60006020820190508181036000830152613d4981613d0d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ddb602983612f24565b9150613de682613d7f565b604082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e6d602a83612f24565b9150613e7882613e11565b604082019050919050565b60006020820190508181036000830152613e9c81613e60565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613edd82612fd4565b9150613ee883612fd4565b925082613ef857613ef7613ea3565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f5f602f83612f24565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fc281613602565b613fcc8186613f95565b94506001821660008114613fe75760018114613ff85761402b565b60ff1983168652818601935061402b565b61400185613fa0565b60005b8381101561402357815481890152600182019150602081019050614004565b838801955050505b50505092915050565b60006140408284613fb5565b915081905092915050565b600061405682612f19565b6140608185613f95565b9350614070818560208601612f35565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006140b2600583613f95565b91506140bd8261407c565b600582019050919050565b60006140d48285613fb5565b91506140e0828461404b565b91506140eb826140a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614153602683612f24565b915061415e826140f7565b604082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141e5602c83612f24565b91506141f082614189565b604082019050919050565b60006020820190508181036000830152614214816141d8565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614277602983612f24565b91506142828261421b565b604082019050919050565b600060208201905081810360008301526142a68161426a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614309602483612f24565b9150614314826142ad565b604082019050919050565b60006020820190508181036000830152614338816142fc565b9050919050565b600061434a82612fd4565b915061435583612fd4565b925082821015614368576143676138c2565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006143a9601983612f24565b91506143b482614373565b602082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061443b603283612f24565b9150614446826143df565b604082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b600061447c82612fd4565b915061448783612fd4565b92508261449757614496613ea3565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144c9826144a2565b6144d381856144ad565b93506144e3818560208601612f35565b6144ec81612f68565b840191505092915050565b600060808201905061450c6000830187613069565b6145196020830186613069565b61452660408301856130ff565b818103606083015261453881846144be565b905095945050505050565b60008151905061455281612e8a565b92915050565b60006020828403121561456e5761456d612e54565b5b600061457c84828501614543565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145bb602083612f24565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614627601c83612f24565b9150614632826145f1565b602082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220b9959ea28a52cd090a6bf11af579c23c07b9c41f001117648b00d4b5b2dfd43464736f6c634300080b0033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636f8b4e9b1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d6578063d42fdcec14610713578063e82541741461073c578063e985e9c514610765578063f2fde38b146107a2576101f9565b8063a22cb46514610630578063b88d4fde14610659578063bfbd7ec014610682578063c002d23d146106ab576101f9565b80637b9417c8116100dc5780637b9417c8146105885780638da5cb5b146105b157806391b7f5ed146105dc57806395d89b4114610605576101f9565b80636f8b4e9b1461050657806370a082311461051d578063715018a61461055a578063760a8c2a14610571576101f9565b806332cb6b0c116101905780633ccfd60b1161015f5780633ccfd60b14610423578063408cbf941461043a57806342842e0e146104635780634f6ccce71461048c5780636352211e146104c9576101f9565b806332cb6b0c14610379578063339cfa68146103a45780633af32abf146103cf5780633bd649681461040c576101f9565b80630d730acc116101cc5780630d730acc146102cc57806318160ddd146102e857806323b872dd146103135780632f745c591461033c576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612eb6565b6107cb565b6040516102329190612efe565b60405180910390f35b34801561024757600080fd5b50610250610845565b60405161025d9190612fb2565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061300a565b6108d7565b60405161029a9190613078565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906130bf565b61095c565b005b6102e660048036038101906102e1919061300a565b610a74565b005b3480156102f457600080fd5b506102fd610c53565b60405161030a919061310e565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613129565b610c60565b005b34801561034857600080fd5b50610363600480360381019061035e91906130bf565b610cc0565b604051610370919061310e565b60405180910390f35b34801561038557600080fd5b5061038e610d65565b60405161039b919061310e565b60405180910390f35b3480156103b057600080fd5b506103b9610d6b565b6040516103c69190613078565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061317c565b610d83565b6040516104039190612efe565b60405180910390f35b34801561041857600080fd5b50610421610dd9565b005b34801561042f57600080fd5b50610438610e72565b005b34801561044657600080fd5b50610461600480360381019061045c91906130bf565b610f94565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613129565b6110ad565b005b34801561049857600080fd5b506104b360048036038101906104ae919061300a565b6110cd565b6040516104c0919061310e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061300a565b61113e565b6040516104fd9190613078565b60405180910390f35b34801561051257600080fd5b5061051b6111f0565b005b34801561052957600080fd5b50610544600480360381019061053f919061317c565b611289565b604051610551919061310e565b60405180910390f35b34801561056657600080fd5b5061056f611341565b005b34801561057d57600080fd5b506105866113c9565b005b34801561059457600080fd5b506105af60048036038101906105aa919061317c565b611462565b005b3480156105bd57600080fd5b506105c6611539565b6040516105d39190613078565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061300a565b611563565b005b34801561061157600080fd5b5061061a611608565b6040516106279190612fb2565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906131d5565b61169a565b005b34801561066557600080fd5b50610680600480360381019061067b919061334a565b6116b0565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061317c565b611712565b005b3480156106b757600080fd5b506106c06117e9565b6040516106cd919061310e565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061300a565b6117ef565b60405161070a9190612fb2565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061342d565b6118a8565b005b34801561074857600080fd5b50610763600480360381019061075e919061351b565b6119c9565b005b34801561077157600080fd5b5061078c60048036038101906107879190613593565b611a77565b6040516107999190612efe565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c4919061317c565b611b0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e575061083d82611c03565b5b9050919050565b60606000805461085490613602565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613602565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282611ce5565b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906136a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109678261113e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613738565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f7611d51565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a20611d51565b611a77565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906137ca565b60405180910390fd5b610a6f8383611d59565b505050565b600f60019054906101000a900460ff16610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613836565b60405180910390fd5b600f60009054906101000a900460ff161580610b285750600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906138a2565b60405180910390fd5b61232781610b73610c53565b610b7d91906138f1565b1115610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613993565b60405180910390fd5b80600b54610bcc91906139b3565b341015610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613a59565b60405180910390fd5b60005b81811015610c4f5760006001610c25610c53565b610c2f91906138f1565b9050610c3b3382611e12565b508080610c4790613a79565b915050610c11565b5050565b6000600880549050905090565b610c71610c6b611d51565b82611e30565b610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613b34565b60405180910390fd5b610cbb838383611f0e565b505050565b6000610ccb83611289565b8210610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613bc6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61232781565b731f8655e56e00124c1376ed456ae6f121d65e32b881565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610de1611d51565b73ffffffffffffffffffffffffffffffffffffffff16610dff611539565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613c32565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b610e7a611d51565b73ffffffffffffffffffffffffffffffffffffffff16610e98611539565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613c32565b60405180910390fd5b600047905060008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613c9e565b60405180910390fd5b731f8655e56e00124c1376ed456ae6f121d65e32b873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f90573d6000803e3d6000fd5b5050565b610f9c611d51565b73ffffffffffffffffffffffffffffffffffffffff16610fba611539565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613c32565b60405180910390fd5b6123278161101c610c53565b61102691906138f1565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613993565b60405180910390fd5b60005b818110156110a8576000600161107e610c53565b61108891906138f1565b90506110948482611e12565b5080806110a090613a79565b91505061106a565b505050565b6110c8838383604051806020016040528060008152506116b0565b505050565b60006110d7610c53565b8210611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613d30565b60405180910390fd5b6008828154811061112c5761112b613d50565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90613df1565b60405180910390fd5b80915050919050565b6111f8611d51565b73ffffffffffffffffffffffffffffffffffffffff16611216611539565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613c32565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190613e83565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611349611d51565b73ffffffffffffffffffffffffffffffffffffffff16611367611539565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490613c32565b60405180910390fd5b6113c7600061216a565b565b6113d1611d51565b73ffffffffffffffffffffffffffffffffffffffff166113ef611539565b73ffffffffffffffffffffffffffffffffffffffff1614611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90613c32565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b61146a611d51565b73ffffffffffffffffffffffffffffffffffffffff16611488611539565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613c32565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61156b611d51565b73ffffffffffffffffffffffffffffffffffffffff16611589611539565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c32565b60405180910390fd5b606481670de0b6b3a76400006115f591906139b3565b6115ff9190613ed2565b600b8190555050565b60606001805461161790613602565b80601f016020809104026020016040519081016040528092919081815260200182805461164390613602565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b5050505050905090565b6116ac6116a5611d51565b8383612230565b5050565b6116c16116bb611d51565b83611e30565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613b34565b60405180910390fd5b61170c8484848461239d565b50505050565b61171a611d51565b73ffffffffffffffffffffffffffffffffffffffff16611738611539565b73ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613c32565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b60606117fa82611ce5565b611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613f75565b60405180910390fd5b600f60029054906101000a900460ff1661187557600e60405160200161185f9190614034565b60405160208183030381529060405290506118a3565b600d611880836123f9565b6040516020016118919291906140c8565b60405160208183030381529060405290505b919050565b6118b0611d51565b73ffffffffffffffffffffffffffffffffffffffff166118ce611539565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90613c32565b60405180910390fd5b60005b828290508110156119c4576001600c600085858581811061194b5761194a613d50565b5b9050602002016020810190611960919061317c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119bc90613a79565b915050611927565b505050565b6119d1611d51565b73ffffffffffffffffffffffffffffffffffffffff166119ef611539565b73ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c90613c32565b60405180910390fd5b81600e9080519060200190611a5b929190612da7565b5080600d9080519060200190611a72929190612da7565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b13611d51565b73ffffffffffffffffffffffffffffffffffffffff16611b31611539565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90614169565b60405180910390fd5b611c008161216a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cde5750611cdd8261255a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dcc8361113e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2c8282604051806020016040528060008152506125c4565b5050565b6000611e3b82611ce5565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906141fb565b60405180910390fd5b6000611e858361113e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ef457508373ffffffffffffffffffffffffffffffffffffffff16611edc846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f055750611f048185611a77565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2e8261113e565b73ffffffffffffffffffffffffffffffffffffffff1614611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b9061428d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb9061431f565b60405180910390fd5b611fff83838361261f565b61200a600082611d59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205a919061433f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b191906138f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612296906143bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123909190612efe565b60405180910390a3505050565b6123a8848484611f0e565b6123b484848484612733565b6123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90614451565b60405180910390fd5b50505050565b60606000821415612441576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612555565b600082905060005b6000821461247357808061245c90613a79565b915050600a8261246c9190613ed2565b9150612449565b60008167ffffffffffffffff81111561248f5761248e61321f565b5b6040519080825280601f01601f1916602001820160405280156124c15781602001600182028036833780820191505090505b5090505b6000851461254e576001826124da919061433f565b9150600a856124e99190614471565b60306124f591906138f1565b60f81b81838151811061250b5761250a613d50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125479190613ed2565b94506124c5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125ce83836128bb565b6125db6000848484612733565b61261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190614451565b60405180910390fd5b505050565b61262a838383612a89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266d5761266881612a8e565b6126ac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126ab576126aa8382612ad7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ef576126ea81612c44565b61272e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461272d5761272c8282612d15565b5b5b505050565b60006127548473ffffffffffffffffffffffffffffffffffffffff16612d94565b156128ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277d611d51565b8786866040518563ffffffff1660e01b815260040161279f94939291906144f7565b6020604051808303816000875af19250505080156127db57506040513d601f19601f820116820180604052508101906127d89190614558565b60015b61285e573d806000811461280b576040519150601f19603f3d011682016040523d82523d6000602084013e612810565b606091505b50600081511415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614451565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612922906145d1565b60405180910390fd5b61293481611ce5565b15612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b9061463d565b60405180910390fd5b6129806000838361261f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d091906138f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae484611289565b612aee919061433f565b9050600060076000848152602001908152602001600020549050818114612bd3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c58919061433f565b9050600060096000848152602001908152602001600020549050600060088381548110612c8857612c87613d50565b5b906000526020600020015490508060088381548110612caa57612ca9613d50565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cf957612cf861465d565b5b6001900381819060005260206000200160009055905550505050565b6000612d2083611289565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612db390613602565b90600052602060002090601f016020900481019282612dd55760008555612e1c565b82601f10612dee57805160ff1916838001178555612e1c565b82800160010185558215612e1c579182015b82811115612e1b578251825591602001919060010190612e00565b5b509050612e299190612e2d565b5090565b5b80821115612e46576000816000905550600101612e2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e9381612e5e565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612e54565b5b6000612eda84828501612ea1565b91505092915050565b60008115159050919050565b612ef881612ee3565b82525050565b6000602082019050612f136000830184612eef565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f53578082015181840152602081019050612f38565b83811115612f62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f8482612f19565b612f8e8185612f24565b9350612f9e818560208601612f35565b612fa781612f68565b840191505092915050565b60006020820190508181036000830152612fcc8184612f79565b905092915050565b6000819050919050565b612fe781612fd4565b8114612ff257600080fd5b50565b60008135905061300481612fde565b92915050565b6000602082840312156130205761301f612e54565b5b600061302e84828501612ff5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061306282613037565b9050919050565b61307281613057565b82525050565b600060208201905061308d6000830184613069565b92915050565b61309c81613057565b81146130a757600080fd5b50565b6000813590506130b981613093565b92915050565b600080604083850312156130d6576130d5612e54565b5b60006130e4858286016130aa565b92505060206130f585828601612ff5565b9150509250929050565b61310881612fd4565b82525050565b600060208201905061312360008301846130ff565b92915050565b60008060006060848603121561314257613141612e54565b5b6000613150868287016130aa565b9350506020613161868287016130aa565b925050604061317286828701612ff5565b9150509250925092565b60006020828403121561319257613191612e54565b5b60006131a0848285016130aa565b91505092915050565b6131b281612ee3565b81146131bd57600080fd5b50565b6000813590506131cf816131a9565b92915050565b600080604083850312156131ec576131eb612e54565b5b60006131fa858286016130aa565b925050602061320b858286016131c0565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325782612f68565b810181811067ffffffffffffffff821117156132765761327561321f565b5b80604052505050565b6000613289612e4a565b9050613295828261324e565b919050565b600067ffffffffffffffff8211156132b5576132b461321f565b5b6132be82612f68565b9050602081019050919050565b82818337600083830152505050565b60006132ed6132e88461329a565b61327f565b9050828152602081018484840111156133095761330861321a565b5b6133148482856132cb565b509392505050565b600082601f83011261333157613330613215565b5b81356133418482602086016132da565b91505092915050565b6000806000806080858703121561336457613363612e54565b5b6000613372878288016130aa565b9450506020613383878288016130aa565b935050604061339487828801612ff5565b925050606085013567ffffffffffffffff8111156133b5576133b4612e59565b5b6133c18782880161331c565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126133ed576133ec613215565b5b8235905067ffffffffffffffff81111561340a576134096133cd565b5b602083019150836020820283011115613426576134256133d2565b5b9250929050565b6000806020838503121561344457613443612e54565b5b600083013567ffffffffffffffff81111561346257613461612e59565b5b61346e858286016133d7565b92509250509250929050565b600067ffffffffffffffff8211156134955761349461321f565b5b61349e82612f68565b9050602081019050919050565b60006134be6134b98461347a565b61327f565b9050828152602081018484840111156134da576134d961321a565b5b6134e58482856132cb565b509392505050565b600082601f83011261350257613501613215565b5b81356135128482602086016134ab565b91505092915050565b6000806040838503121561353257613531612e54565b5b600083013567ffffffffffffffff8111156135505761354f612e59565b5b61355c858286016134ed565b925050602083013567ffffffffffffffff81111561357d5761357c612e59565b5b613589858286016134ed565b9150509250929050565b600080604083850312156135aa576135a9612e54565b5b60006135b8858286016130aa565b92505060206135c9858286016130aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061361a57607f821691505b6020821081141561362e5761362d6135d3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613690602c83612f24565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613722602183612f24565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137b4603883612f24565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f4e6f742061637469766520796574000000000000000000000000000000000000600082015250565b6000613820600e83612f24565b915061382b826137ea565b602082019050919050565b6000602082019050818103600083015261384f81613813565b9050919050565b7f596f75277265206e6f742077686974656c697374656400000000000000000000600082015250565b600061388c601683612f24565b915061389782613856565b602082019050919050565b600060208201905081810360008301526138bb8161387f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138fc82612fd4565b915061390783612fd4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393c5761393b6138c2565b5b828201905092915050565b7f537570706c792069732065786861757374656400000000000000000000000000600082015250565b600061397d601383612f24565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b60006139be82612fd4565b91506139c983612fd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0257613a016138c2565b5b828202905092915050565b7f496e73756666696369656e742065746865722073656e7420666f72206d696e74600082015250565b6000613a43602083612f24565b9150613a4e82613a0d565b602082019050919050565b60006020820190508181036000830152613a7281613a36565b9050919050565b6000613a8482612fd4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab757613ab66138c2565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b1e603183612f24565b9150613b2982613ac2565b604082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613bb0602b83612f24565b9150613bbb82613b54565b604082019050919050565b60006020820190508181036000830152613bdf81613ba3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c1c602083612f24565b9150613c2782613be6565b602082019050919050565b60006020820190508181036000830152613c4b81613c0f565b9050919050565b7f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f600082015250565b6000613c88602083612f24565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d1a602c83612f24565b9150613d2582613cbe565b604082019050919050565b60006020820190508181036000830152613d4981613d0d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ddb602983612f24565b9150613de682613d7f565b604082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e6d602a83612f24565b9150613e7882613e11565b604082019050919050565b60006020820190508181036000830152613e9c81613e60565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613edd82612fd4565b9150613ee883612fd4565b925082613ef857613ef7613ea3565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f5f602f83612f24565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fc281613602565b613fcc8186613f95565b94506001821660008114613fe75760018114613ff85761402b565b60ff1983168652818601935061402b565b61400185613fa0565b60005b8381101561402357815481890152600182019150602081019050614004565b838801955050505b50505092915050565b60006140408284613fb5565b915081905092915050565b600061405682612f19565b6140608185613f95565b9350614070818560208601612f35565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006140b2600583613f95565b91506140bd8261407c565b600582019050919050565b60006140d48285613fb5565b91506140e0828461404b565b91506140eb826140a5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614153602683612f24565b915061415e826140f7565b604082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141e5602c83612f24565b91506141f082614189565b604082019050919050565b60006020820190508181036000830152614214816141d8565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614277602983612f24565b91506142828261421b565b604082019050919050565b600060208201905081810360008301526142a68161426a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614309602483612f24565b9150614314826142ad565b604082019050919050565b60006020820190508181036000830152614338816142fc565b9050919050565b600061434a82612fd4565b915061435583612fd4565b925082821015614368576143676138c2565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006143a9601983612f24565b91506143b482614373565b602082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061443b603283612f24565b9150614446826143df565b604082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b600061447c82612fd4565b915061448783612fd4565b92508261449757614496613ea3565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144c9826144a2565b6144d381856144ad565b93506144e3818560208601612f35565b6144ec81612f68565b840191505092915050565b600060808201905061450c6000830187613069565b6145196020830186613069565b61452660408301856130ff565b818103606083015261453881846144be565b905095945050505050565b60008151905061455281612e8a565b92915050565b60006020828403121561456e5761456d612e54565b5b600061457c84828501614543565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145bb602083612f24565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614627601c83612f24565b9150614632826145f1565b602082019050919050565b600060208201905081810360008301526146568161461a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220b9959ea28a52cd090a6bf11af579c23c07b9c41f001117648b00d4b5b2dfd43464736f6c634300080b0033
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.