Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
163 NK
Holders
68
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Filtered by Token Holder
Sleeper Hits Collection Volume 1: DeployerBalance
14 NKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NightKicks
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract NightKicks is ERC721Enumerable, Ownable, ReentrancyGuard { IERC721Enumerable MembershipToken; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 public maxSupply; bool public sale; bool public publicSale; string public _tokenURI; uint256 membershipPrice = 0.06 ether; uint256 publicPrice = 0.08 ether; address[] artists = [ 0x759C4eBeBE5071DB56C78B6c7bae53c15CB2F6D8, 0x3146a2997E71155c144aE25FCE2d866092Bc91F3, 0xCDD99ee657A33b1DA6802F4117D7e5cB2FFA5d79, 0x91F95B32D4D07C80ea796A184745f63d92F743ef, 0x32BE83A8EAb1eFe1bFCE275e4FDef4a2a350eb96, 0x2205D45163F81139fc54a7694B7D809b294b38fF ]; mapping(uint256 => bool) public usedMembershipToken; event NftBought(address indexed, uint256 memberShipTokenId); constructor(address _tokenAddress) ERC721("NightKicks", "NK") { MembershipToken = IERC721Enumerable(_tokenAddress); maxSupply = 5555; _tokenURI = "https://ipfs.io/ipfs/QmXpXqbiEX52H4vmbxGNA9o71MHpFbHP4JvQobG7KwEUpt/"; sale = false; publicSale = false; } function buyWithMembershipToken(uint256 _count, uint256[] memory tokenId) public payable nonReentrant { require( totalSupply() + _count <= maxSupply, "ERROR: max limit reached" ); require( _count <= 10 && tokenId.length <= 10, "ERROR: max 10 mint per transaction" ); require(_count == tokenId.length, "ERROR: wrong token ID or count"); require(sale, "ERROR: not on sale"); require(msg.value >= _count * membershipPrice, "ERROR: wrong price"); require( _count <= MembershipToken.balanceOf(msg.sender), "ERROR: not enough MembershipToken" ); for (uint256 i = 0; i < tokenId.length; i++) { require( msg.sender == MembershipToken.ownerOf(tokenId[i]), "ERROR: u don't have this token ID" ); require( !usedMembershipToken[tokenId[i]], "ERROR: this Membership Token is already used" ); } for (uint256 j = 0; j < _count; j++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); usedMembershipToken[tokenId[j]] = true; _safeMint(_msgSender(), newItemId); emit NftBought(_msgSender(), tokenId[j]); } } function publicMint(uint256 _count) public payable nonReentrant { require( totalSupply() + _count <= maxSupply, "ERROR: max limit reached" ); require(_count <= 10, "ERROR: max 10 mint per transaction"); require(publicSale, "ERROR: not on sale"); require(msg.value >= _count * publicPrice, "ERROR: wrong price"); for (uint256 j = 0; j < _count; j++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); } } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory uri = _baseURI(); return bytes(uri).length > 0 ? string(abi.encodePacked(uri, _tokenId.toString(), ".json")) : ""; } function _baseURI() internal view virtual override returns (string memory) { return _tokenURI; } function changeTokenUri(string memory _newUri) public onlyOwner { _tokenURI = _newUri; } function unLockSale() public onlyOwner { sale = true; } function lockSale() public onlyOwner { sale = false; } function unLockPublicSale() public onlyOwner { publicSale = true; } function lockPublicSale() public onlyOwner { publicSale = false; } function changePublicPrice(uint256 _newPrice) public onlyOwner { publicPrice = _newPrice; } function withdrawMoney() external onlyOwner nonReentrant { uint256 _eth = address(this).balance; uint256 artShare = (_eth * 10) / 100; uint256 ownerShare = ((_eth * 41) / 2) / 100; // OWNER payable(0xdC463F26272D2FE8758D8072BA498B16A30AaaC2).transfer( ownerShare ); // ARTIIST payable(address(artists[0])).transfer(artShare); payable(address(artists[1])).transfer(artShare); payable(address(artists[2])).transfer(artShare); payable(address(artists[3])).transfer(artShare); payable(address(artists[4])).transfer(artShare); payable(address(artists[5])).transfer(artShare); // DEVELOPMENT payable(0x7cF196415CDD1eF08ca2358a8282D33Ba089B9f3).transfer(artShare); // Art desingners payable(0xef843F881F1693b9881403cAa064C4A907D4cBbf).transfer( (_eth * 5) / 100 ); payable(0xE6D6540E109F8FA08De6d1440Fe14849b17843b1).transfer( (_eth * 1) / 100 ); payable(0x9f4b5E8241FEcd432B3081f552737290888022B7).transfer( (_eth * 1) / 100 ); // DAO payable(0xa861a10A90AF9448EeFB5EBdf84Ad51727aaE2a6).transfer( ((_eth * 5) / 2) / 100 ); } function emergencyWithdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// 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 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (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/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 (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly 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); }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"memberShipTokenId","type":"uint256"}],"name":"NftBought","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":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"buyWithMembershipToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"changeTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"unLockPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unLockSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedMembershipToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66d529ae9e86000060115567011c37937e08000060125561014060405273759c4ebebe5071db56c78b6c7bae53c15cb2f6d86080908152733146a2997e71155c144ae25fce2d866092bc91f360a05273cdd99ee657a33b1da6802f4117d7e5cb2ffa5d7960c0527391f95b32d4d07c80ea796a184745f63d92f743ef60e0527332be83a8eab1efe1bfce275e4fdef4a2a350eb9661010052732205d45163f81139fc54a7694b7d809b294b38ff61012052620000c09060139060066200022e565b50348015620000ce57600080fd5b506040516200313238038062003132833981016040819052620000f1916200032c565b604080518082018252600a8152694e696768744b69636b7360b01b6020808301918252835180850190945260028452614e4b60f01b9084015281519192916200013d9160009162000298565b5080516200015390600190602084019062000298565b505050620001706200016a620001d860201b60201c565b620001dc565b6001600b55600c80546001600160a01b0319166001600160a01b0383161790556115b3600e5560408051608081019091526044808252620030ee60208301398051620001c59160109160209091019062000298565b5050600f805461ffff191690556200039b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000286579160200282015b828111156200028657825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200024f565b506200029492915062000315565b5090565b828054620002a6906200035e565b90600052602060002090601f016020900481019282620002ca576000855562000286565b82601f10620002e557805160ff191683800117855562000286565b8280016001018555821562000286579182015b8281111562000286578251825591602001919060010190620002f8565b5b8082111562000294576000815560010162000316565b6000602082840312156200033f57600080fd5b81516001600160a01b03811681146200035757600080fd5b9392505050565b600181811c908216806200037357607f821691505b602082108114156200039557634e487b7160e01b600052602260045260246000fd5b50919050565b612d4380620003ab6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a9119730116100a0578063c87b56dd1161006f578063c87b56dd14610563578063d5abeb0114610583578063db2e21bc14610599578063e985e9c5146105ae578063f2fde38b146105f757600080fd5b8063a911973014610504578063ac44600214610519578063b4ce37d21461052e578063b88d4fde1461054357600080fd5b806395d89b41116100dc57806395d89b411461048f5780639d7e8d5f146104a4578063a20e08ca146104c4578063a22cb465146104e457600080fd5b8063715018a614610434578063884e53ad1461044957806388fdcc941461045e5780638da5cb5b1461047157600080fd5b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461038a5780636352211e146103aa578063635a25c2146103ca5780636ad1fe02146103fa57806370a082311461041457600080fd5b80632f745c591461031657806333bc1c5c1461033657806342842e0e146103555780634d6ced261461037557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632db115441461030357600080fd5b806301ffc9a7146101fe57806306fdde031461023357806307c60dac14610255578063081812fc1461026c575b600080fd5b34801561020a57600080fd5b5061021e61021936600461262c565b610617565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610642565b60405161022a91906126a1565b34801561026157600080fd5b5061026a6106d4565b005b34801561027857600080fd5b5061028c6102873660046126b4565b610713565b6040516001600160a01b03909116815260200161022a565b3480156102b057600080fd5b5061026a6102bf3660046126e2565b6107a8565b3480156102d057600080fd5b506008545b60405190815260200161022a565b3480156102ef57600080fd5b5061026a6102fe36600461270e565b6108be565b61026a6103113660046126b4565b6108ef565b34801561032257600080fd5b506102d56103313660046126e2565b610a82565b34801561034257600080fd5b50600f5461021e90610100900460ff1681565b34801561036157600080fd5b5061026a61037036600461270e565b610b18565b34801561038157600080fd5b5061026a610b33565b34801561039657600080fd5b506102d56103a53660046126b4565b610b6a565b3480156103b657600080fd5b5061028c6103c53660046126b4565b610bfd565b3480156103d657600080fd5b5061021e6103e53660046126b4565b60146020526000908152604090205460ff1681565b34801561040657600080fd5b50600f5461021e9060ff1681565b34801561042057600080fd5b506102d561042f36600461274f565b610c74565b34801561044057600080fd5b5061026a610cfb565b34801561045557600080fd5b5061026a610d31565b61026a61046c3660046127b3565b610d6a565b34801561047d57600080fd5b50600a546001600160a01b031661028c565b34801561049b57600080fd5b5061024861126b565b3480156104b057600080fd5b5061026a6104bf3660046126b4565b61127a565b3480156104d057600080fd5b5061026a6104df3660046128bd565b6112a9565b3480156104f057600080fd5b5061026a6104ff366004612906565b6112ea565b34801561051057600080fd5b5061026a6112f5565b34801561052557600080fd5b5061026a611330565b34801561053a57600080fd5b506102486117be565b34801561054f57600080fd5b5061026a61055e366004612944565b61184c565b34801561056f57600080fd5b5061024861057e3660046126b4565b611884565b34801561058f57600080fd5b506102d5600e5481565b3480156105a557600080fd5b5061026a61195f565b3480156105ba57600080fd5b5061021e6105c93660046129c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b5061026a61061236600461274f565b611a44565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c82611adf565b92915050565b606060008054610651906129f2565b80601f016020809104026020016040519081016040528092919081815260200182805461067d906129f2565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b600a546001600160a01b031633146107075760405162461bcd60e51b81526004016106fe90612a2d565b60405180910390fd5b600f805460ff19169055565b6000818152600260205260408120546001600160a01b031661078c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fe565b506000908152600460205260409020546001600160a01b031690565b60006107b382610bfd565b9050806001600160a01b0316836001600160a01b031614156108215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fe565b336001600160a01b038216148061083d575061083d81336105c9565b6108af5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fe565b6108b98383611b2f565b505050565b6108c83382611b9d565b6108e45760405162461bcd60e51b81526004016106fe90612a62565b6108b9838383611c94565b6002600b5414156109125760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55600e548161092460085490565b61092e9190612b00565b11156109775760405162461bcd60e51b815260206004820152601860248201527711549493d48e881b585e081b1a5b5a5d081c995858da195960421b60448201526064016106fe565b600a8111156109985760405162461bcd60e51b81526004016106fe90612b18565b600f54610100900460ff166109e45760405162461bcd60e51b81526020600482015260126024820152714552524f523a206e6f74206f6e2073616c6560701b60448201526064016106fe565b6012546109f19082612b5a565b341015610a355760405162461bcd60e51b81526020600482015260126024820152714552524f523a2077726f6e6720707269636560701b60448201526064016106fe565b60005b81811015610a7957610a4e600d80546001019055565b6000610a59600d5490565b9050610a66335b82611e3b565b5080610a7181612b79565b915050610a38565b50506001600b55565b6000610a8d83610c74565b8210610aef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108b98383836040518060200160405280600081525061184c565b600a546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016106fe90612a2d565b600f805461ff0019169055565b6000610b7560085490565b8210610bd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fe565b60088281548110610beb57610beb612b94565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fe565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016106fe90612a2d565b610d2f6000611e55565b565b600a546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016106fe90612a2d565b600f805460ff19166001179055565b6002600b541415610d8d5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55600e5482610d9f60085490565b610da99190612b00565b1115610df25760405162461bcd60e51b815260206004820152601860248201527711549493d48e881b585e081b1a5b5a5d081c995858da195960421b60448201526064016106fe565b600a8211158015610e055750600a815111155b610e215760405162461bcd60e51b81526004016106fe90612b18565b80518214610e715760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000060448201526064016106fe565b600f5460ff16610eb85760405162461bcd60e51b81526020600482015260126024820152714552524f523a206e6f74206f6e2073616c6560701b60448201526064016106fe565b601154610ec59083612b5a565b341015610f095760405162461bcd60e51b81526020600482015260126024820152714552524f523a2077726f6e6720707269636560701b60448201526064016106fe565b600c546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f759190612baa565b821115610fce5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656044820152603760f91b60648201526084016106fe565b60005b815181101561117c57600c5482516001600160a01b0390911690636352211e9084908490811061100357611003612b94565b60200260200101516040518263ffffffff1660e01b815260040161102991815260200190565b602060405180830381865afa158015611046573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106a9190612bc3565b6001600160a01b0316336001600160a01b0316146110d45760405162461bcd60e51b815260206004820152602160248201527f4552524f523a207520646f6e27742068617665207468697320746f6b656e20496044820152601160fa1b60648201526084016106fe565b601460008383815181106110ea576110ea612b94565b60209081029190910181015182528101919091526040016000205460ff161561116a5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a2074686973204d656d6265727368697020546f6b656e2069732060448201526b185b1c9958591e481d5cd95960a21b60648201526084016106fe565b8061117481612b79565b915050610fd1565b5060005b8281101561126157611196600d80546001019055565b60006111a1600d5490565b90506001601460008585815181106111bb576111bb612b94565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111f2610a603390565b336001600160a01b03167fca423c4bd22d187877e007ac3422d5d67acd79f7f2865ae0c8c548d9885211da84848151811061122f5761122f612b94565b602002602001015160405161124691815260200190565b60405180910390a2508061125981612b79565b915050611180565b50506001600b5550565b606060018054610651906129f2565b600a546001600160a01b031633146112a45760405162461bcd60e51b81526004016106fe90612a2d565b601255565b600a546001600160a01b031633146112d35760405162461bcd60e51b81526004016106fe90612a2d565b80516112e690601090602084019061257d565b5050565b6112e6338383611ea7565b600a546001600160a01b0316331461131f5760405162461bcd60e51b81526004016106fe90612a2d565b600f805461ff001916610100179055565b600a546001600160a01b0316331461135a5760405162461bcd60e51b81526004016106fe90612a2d565b6002600b54141561137d5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55476000606461139283600a612b5a565b61139c9190612bf6565b90506000606460026113af856029612b5a565b6113b99190612bf6565b6113c39190612bf6565b60405190915073dc463f26272d2fe8758d8072ba498b16a30aaac29082156108fc029083906000818181858888f19350505050158015611407573d6000803e3d6000fd5b50601360008154811061141c5761141c612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f1935050505015801561145c573d6000803e3d6000fd5b50601360018154811061147157611471612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f193505050501580156114b1573d6000803e3d6000fd5b5060136002815481106114c6576114c6612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611506573d6000803e3d6000fd5b50601360038154811061151b5761151b612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f1935050505015801561155b573d6000803e3d6000fd5b50601360048154811061157057611570612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f193505050501580156115b0573d6000803e3d6000fd5b5060136005815481106115c5576115c5612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611605573d6000803e3d6000fd5b50604051737cf196415cdd1ef08ca2358a8282d33ba089b9f39083156108fc029084906000818181858888f19350505050158015611647573d6000803e3d6000fd5b5073ef843f881f1693b9881403caa064c4a907d4cbbf6108fc606461166d866005612b5a565b6116779190612bf6565b6040518115909202916000818181858888f1935050505015801561169f573d6000803e3d6000fd5b5073e6d6540e109f8fa08de6d1440fe14849b17843b16108fc60646116c5866001612b5a565b6116cf9190612bf6565b6040518115909202916000818181858888f193505050501580156116f7573d6000803e3d6000fd5b50739f4b5e8241fecd432b3081f552737290888022b76108fc606461171d866001612b5a565b6117279190612bf6565b6040518115909202916000818181858888f1935050505015801561174f573d6000803e3d6000fd5b5073a861a10a90af9448eefb5ebdf84ad51727aae2a66108fc60646002611777876005612b5a565b6117819190612bf6565b61178b9190612bf6565b6040518115909202916000818181858888f193505050501580156117b3573d6000803e3d6000fd5b50506001600b555050565b601080546117cb906129f2565b80601f01602080910402602001604051908101604052809291908181526020018280546117f7906129f2565b80156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6118563383611b9d565b6118725760405162461bcd60e51b81526004016106fe90612a62565b61187e84848484611f76565b50505050565b6000818152600260205260409020546060906001600160a01b03166119035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fe565b600061190d611fa9565b9050600081511161192d5760405180602001604052806000815250611958565b8061193784611fb8565b604051602001611948929190612c0a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119895760405162461bcd60e51b81526004016106fe90612a2d565b6002600b5414156119ac5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55604051600090339047908381818185875af1925050503d80600081146119f3576040519150601f19603f3d011682016040523d82523d6000602084013e6119f8565b606091505b5050905080611a3c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106fe565b506001600b55565b600a546001600160a01b03163314611a6e5760405162461bcd60e51b81526004016106fe90612a2d565b6001600160a01b038116611ad35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fe565b611adc81611e55565b50565b60006001600160e01b031982166380ac58cd60e01b1480611b1057506001600160e01b03198216635b5e139f60e01b145b8061063c57506301ffc9a760e01b6001600160e01b031983161461063c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6482610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fe565b6000611c2183610bfd565b9050806001600160a01b0316846001600160a01b03161480611c5c5750836001600160a01b0316611c5184610713565b6001600160a01b0316145b80611c8c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ca782610bfd565b6001600160a01b031614611d0b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106fe565b6001600160a01b038216611d6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fe565b611d788383836120b6565b611d83600082611b2f565b6001600160a01b0383166000908152600360205260408120805460019290611dac908490612c49565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dda908490612b00565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112e682826040518060200160405280600081525061216e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f81848484611c94565b611f8d848484846121a1565b61187e5760405162461bcd60e51b81526004016106fe90612c60565b606060108054610651906129f2565b606081611fdc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120065780611ff081612b79565b9150611fff9050600a83612bf6565b9150611fe0565b60008167ffffffffffffffff8111156120215761202161276c565b6040519080825280601f01601f19166020018201604052801561204b576020820181803683370190505b5090505b8415611c8c57612060600183612c49565b915061206d600a86612cb2565b612078906030612b00565b60f81b81838151811061208d5761208d612b94565b60200101906001600160f81b031916908160001a9053506120af600a86612bf6565b945061204f565b6001600160a01b0383166121115761210c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612134565b816001600160a01b0316836001600160a01b03161461213457612134838261229f565b6001600160a01b03821661214b576108b98161233c565b826001600160a01b0316826001600160a01b0316146108b9576108b982826123eb565b612178838361242f565b61218560008484846121a1565b6108b95760405162461bcd60e51b81526004016106fe90612c60565b60006001600160a01b0384163b1561229457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e5903390899088908890600401612cc6565b6020604051808303816000875af1925050508015612220575060408051601f3d908101601f1916820190925261221d91810190612d03565b60015b61227a573d80801561224e576040519150601f19603f3d011682016040523d82523d6000602084013e612253565b606091505b5080516122725760405162461bcd60e51b81526004016106fe90612c60565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8c565b506001949350505050565b600060016122ac84610c74565b6122b69190612c49565b600083815260076020526040902054909150808214612309576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061234e90600190612c49565b6000838152600960205260408120546008805493945090928490811061237657612376612b94565b90600052602060002001549050806008838154811061239757612397612b94565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123cf576123cf612d20565b6001900381819060005260206000200160009055905550505050565b60006123f683610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fe565b6000818152600260205260409020546001600160a01b0316156124ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fe565b6124f6600083836120b6565b6001600160a01b038216600090815260036020526040812080546001929061251f908490612b00565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612589906129f2565b90600052602060002090601f0160209004810192826125ab57600085556125f1565b82601f106125c457805160ff19168380011785556125f1565b828001600101855582156125f1579182015b828111156125f15782518255916020019190600101906125d6565b506125fd929150612601565b5090565b5b808211156125fd5760008155600101612602565b6001600160e01b031981168114611adc57600080fd5b60006020828403121561263e57600080fd5b813561195881612616565b60005b8381101561266457818101518382015260200161264c565b8381111561187e5750506000910152565b6000815180845261268d816020860160208601612649565b601f01601f19169290920160200192915050565b6020815260006119586020830184612675565b6000602082840312156126c657600080fd5b5035919050565b6001600160a01b0381168114611adc57600080fd5b600080604083850312156126f557600080fd5b8235612700816126cd565b946020939093013593505050565b60008060006060848603121561272357600080fd5b833561272e816126cd565b9250602084013561273e816126cd565b929592945050506040919091013590565b60006020828403121561276157600080fd5b8135611958816126cd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ab576127ab61276c565b604052919050565b600080604083850312156127c657600080fd5b8235915060208084013567ffffffffffffffff808211156127e657600080fd5b818601915086601f8301126127fa57600080fd5b81358181111561280c5761280c61276c565b8060051b915061281d848301612782565b818152918301840191848101908984111561283757600080fd5b938501935b838510156128555784358252938501939085019061283c565b8096505050505050509250929050565b600067ffffffffffffffff83111561287f5761287f61276c565b612892601f8401601f1916602001612782565b90508281528383830111156128a657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128cf57600080fd5b813567ffffffffffffffff8111156128e657600080fd5b8201601f810184136128f757600080fd5b611c8c84823560208401612865565b6000806040838503121561291957600080fd5b8235612924816126cd565b91506020830135801515811461293957600080fd5b809150509250929050565b6000806000806080858703121561295a57600080fd5b8435612965816126cd565b93506020850135612975816126cd565b925060408501359150606085013567ffffffffffffffff81111561299857600080fd5b8501601f810187136129a957600080fd5b6129b887823560208401612865565b91505092959194509250565b600080604083850312156129d757600080fd5b82356129e2816126cd565b91506020830135612939816126cd565b600181811c90821680612a0657607f821691505b60208210811415612a2757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b1357612b13612aea565b500190565b60208082526022908201527f4552524f523a206d6178203130206d696e7420706572207472616e736163746960408201526137b760f11b606082015260800190565b6000816000190483118215151615612b7457612b74612aea565b500290565b6000600019821415612b8d57612b8d612aea565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612bbc57600080fd5b5051919050565b600060208284031215612bd557600080fd5b8151611958816126cd565b634e487b7160e01b600052601260045260246000fd5b600082612c0557612c05612be0565b500490565b60008351612c1c818460208801612649565b835190830190612c30818360208801612649565b64173539b7b760d91b9101908152600501949350505050565b600082821015612c5b57612c5b612aea565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612cc157612cc1612be0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf990830184612675565b9695505050505050565b600060208284031215612d1557600080fd5b815161195881612616565b634e487b7160e01b600052603160045260246000fdfea164736f6c634300080b000a68747470733a2f2f697066732e696f2f697066732f516d587058716269455835324834766d6278474e41396f37314d487046624850344a76516f6247374b77455570742f00000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a9119730116100a0578063c87b56dd1161006f578063c87b56dd14610563578063d5abeb0114610583578063db2e21bc14610599578063e985e9c5146105ae578063f2fde38b146105f757600080fd5b8063a911973014610504578063ac44600214610519578063b4ce37d21461052e578063b88d4fde1461054357600080fd5b806395d89b41116100dc57806395d89b411461048f5780639d7e8d5f146104a4578063a20e08ca146104c4578063a22cb465146104e457600080fd5b8063715018a614610434578063884e53ad1461044957806388fdcc941461045e5780638da5cb5b1461047157600080fd5b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461038a5780636352211e146103aa578063635a25c2146103ca5780636ad1fe02146103fa57806370a082311461041457600080fd5b80632f745c591461031657806333bc1c5c1461033657806342842e0e146103555780634d6ced261461037557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632db115441461030357600080fd5b806301ffc9a7146101fe57806306fdde031461023357806307c60dac14610255578063081812fc1461026c575b600080fd5b34801561020a57600080fd5b5061021e61021936600461262c565b610617565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610642565b60405161022a91906126a1565b34801561026157600080fd5b5061026a6106d4565b005b34801561027857600080fd5b5061028c6102873660046126b4565b610713565b6040516001600160a01b03909116815260200161022a565b3480156102b057600080fd5b5061026a6102bf3660046126e2565b6107a8565b3480156102d057600080fd5b506008545b60405190815260200161022a565b3480156102ef57600080fd5b5061026a6102fe36600461270e565b6108be565b61026a6103113660046126b4565b6108ef565b34801561032257600080fd5b506102d56103313660046126e2565b610a82565b34801561034257600080fd5b50600f5461021e90610100900460ff1681565b34801561036157600080fd5b5061026a61037036600461270e565b610b18565b34801561038157600080fd5b5061026a610b33565b34801561039657600080fd5b506102d56103a53660046126b4565b610b6a565b3480156103b657600080fd5b5061028c6103c53660046126b4565b610bfd565b3480156103d657600080fd5b5061021e6103e53660046126b4565b60146020526000908152604090205460ff1681565b34801561040657600080fd5b50600f5461021e9060ff1681565b34801561042057600080fd5b506102d561042f36600461274f565b610c74565b34801561044057600080fd5b5061026a610cfb565b34801561045557600080fd5b5061026a610d31565b61026a61046c3660046127b3565b610d6a565b34801561047d57600080fd5b50600a546001600160a01b031661028c565b34801561049b57600080fd5b5061024861126b565b3480156104b057600080fd5b5061026a6104bf3660046126b4565b61127a565b3480156104d057600080fd5b5061026a6104df3660046128bd565b6112a9565b3480156104f057600080fd5b5061026a6104ff366004612906565b6112ea565b34801561051057600080fd5b5061026a6112f5565b34801561052557600080fd5b5061026a611330565b34801561053a57600080fd5b506102486117be565b34801561054f57600080fd5b5061026a61055e366004612944565b61184c565b34801561056f57600080fd5b5061024861057e3660046126b4565b611884565b34801561058f57600080fd5b506102d5600e5481565b3480156105a557600080fd5b5061026a61195f565b3480156105ba57600080fd5b5061021e6105c93660046129c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b5061026a61061236600461274f565b611a44565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c82611adf565b92915050565b606060008054610651906129f2565b80601f016020809104026020016040519081016040528092919081815260200182805461067d906129f2565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b600a546001600160a01b031633146107075760405162461bcd60e51b81526004016106fe90612a2d565b60405180910390fd5b600f805460ff19169055565b6000818152600260205260408120546001600160a01b031661078c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fe565b506000908152600460205260409020546001600160a01b031690565b60006107b382610bfd565b9050806001600160a01b0316836001600160a01b031614156108215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fe565b336001600160a01b038216148061083d575061083d81336105c9565b6108af5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fe565b6108b98383611b2f565b505050565b6108c83382611b9d565b6108e45760405162461bcd60e51b81526004016106fe90612a62565b6108b9838383611c94565b6002600b5414156109125760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55600e548161092460085490565b61092e9190612b00565b11156109775760405162461bcd60e51b815260206004820152601860248201527711549493d48e881b585e081b1a5b5a5d081c995858da195960421b60448201526064016106fe565b600a8111156109985760405162461bcd60e51b81526004016106fe90612b18565b600f54610100900460ff166109e45760405162461bcd60e51b81526020600482015260126024820152714552524f523a206e6f74206f6e2073616c6560701b60448201526064016106fe565b6012546109f19082612b5a565b341015610a355760405162461bcd60e51b81526020600482015260126024820152714552524f523a2077726f6e6720707269636560701b60448201526064016106fe565b60005b81811015610a7957610a4e600d80546001019055565b6000610a59600d5490565b9050610a66335b82611e3b565b5080610a7181612b79565b915050610a38565b50506001600b55565b6000610a8d83610c74565b8210610aef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108b98383836040518060200160405280600081525061184c565b600a546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016106fe90612a2d565b600f805461ff0019169055565b6000610b7560085490565b8210610bd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fe565b60088281548110610beb57610beb612b94565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fe565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016106fe90612a2d565b610d2f6000611e55565b565b600a546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016106fe90612a2d565b600f805460ff19166001179055565b6002600b541415610d8d5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55600e5482610d9f60085490565b610da99190612b00565b1115610df25760405162461bcd60e51b815260206004820152601860248201527711549493d48e881b585e081b1a5b5a5d081c995858da195960421b60448201526064016106fe565b600a8211158015610e055750600a815111155b610e215760405162461bcd60e51b81526004016106fe90612b18565b80518214610e715760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a2077726f6e6720746f6b656e204944206f7220636f756e74000060448201526064016106fe565b600f5460ff16610eb85760405162461bcd60e51b81526020600482015260126024820152714552524f523a206e6f74206f6e2073616c6560701b60448201526064016106fe565b601154610ec59083612b5a565b341015610f095760405162461bcd60e51b81526020600482015260126024820152714552524f523a2077726f6e6720707269636560701b60448201526064016106fe565b600c546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f759190612baa565b821115610fce5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a206e6f7420656e6f756768204d656d62657273686970546f6b656044820152603760f91b60648201526084016106fe565b60005b815181101561117c57600c5482516001600160a01b0390911690636352211e9084908490811061100357611003612b94565b60200260200101516040518263ffffffff1660e01b815260040161102991815260200190565b602060405180830381865afa158015611046573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106a9190612bc3565b6001600160a01b0316336001600160a01b0316146110d45760405162461bcd60e51b815260206004820152602160248201527f4552524f523a207520646f6e27742068617665207468697320746f6b656e20496044820152601160fa1b60648201526084016106fe565b601460008383815181106110ea576110ea612b94565b60209081029190910181015182528101919091526040016000205460ff161561116a5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a2074686973204d656d6265727368697020546f6b656e2069732060448201526b185b1c9958591e481d5cd95960a21b60648201526084016106fe565b8061117481612b79565b915050610fd1565b5060005b8281101561126157611196600d80546001019055565b60006111a1600d5490565b90506001601460008585815181106111bb576111bb612b94565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111f2610a603390565b336001600160a01b03167fca423c4bd22d187877e007ac3422d5d67acd79f7f2865ae0c8c548d9885211da84848151811061122f5761122f612b94565b602002602001015160405161124691815260200190565b60405180910390a2508061125981612b79565b915050611180565b50506001600b5550565b606060018054610651906129f2565b600a546001600160a01b031633146112a45760405162461bcd60e51b81526004016106fe90612a2d565b601255565b600a546001600160a01b031633146112d35760405162461bcd60e51b81526004016106fe90612a2d565b80516112e690601090602084019061257d565b5050565b6112e6338383611ea7565b600a546001600160a01b0316331461131f5760405162461bcd60e51b81526004016106fe90612a2d565b600f805461ff001916610100179055565b600a546001600160a01b0316331461135a5760405162461bcd60e51b81526004016106fe90612a2d565b6002600b54141561137d5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55476000606461139283600a612b5a565b61139c9190612bf6565b90506000606460026113af856029612b5a565b6113b99190612bf6565b6113c39190612bf6565b60405190915073dc463f26272d2fe8758d8072ba498b16a30aaac29082156108fc029083906000818181858888f19350505050158015611407573d6000803e3d6000fd5b50601360008154811061141c5761141c612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f1935050505015801561145c573d6000803e3d6000fd5b50601360018154811061147157611471612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f193505050501580156114b1573d6000803e3d6000fd5b5060136002815481106114c6576114c6612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611506573d6000803e3d6000fd5b50601360038154811061151b5761151b612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f1935050505015801561155b573d6000803e3d6000fd5b50601360048154811061157057611570612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f193505050501580156115b0573d6000803e3d6000fd5b5060136005815481106115c5576115c5612b94565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611605573d6000803e3d6000fd5b50604051737cf196415cdd1ef08ca2358a8282d33ba089b9f39083156108fc029084906000818181858888f19350505050158015611647573d6000803e3d6000fd5b5073ef843f881f1693b9881403caa064c4a907d4cbbf6108fc606461166d866005612b5a565b6116779190612bf6565b6040518115909202916000818181858888f1935050505015801561169f573d6000803e3d6000fd5b5073e6d6540e109f8fa08de6d1440fe14849b17843b16108fc60646116c5866001612b5a565b6116cf9190612bf6565b6040518115909202916000818181858888f193505050501580156116f7573d6000803e3d6000fd5b50739f4b5e8241fecd432b3081f552737290888022b76108fc606461171d866001612b5a565b6117279190612bf6565b6040518115909202916000818181858888f1935050505015801561174f573d6000803e3d6000fd5b5073a861a10a90af9448eefb5ebdf84ad51727aae2a66108fc60646002611777876005612b5a565b6117819190612bf6565b61178b9190612bf6565b6040518115909202916000818181858888f193505050501580156117b3573d6000803e3d6000fd5b50506001600b555050565b601080546117cb906129f2565b80601f01602080910402602001604051908101604052809291908181526020018280546117f7906129f2565b80156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6118563383611b9d565b6118725760405162461bcd60e51b81526004016106fe90612a62565b61187e84848484611f76565b50505050565b6000818152600260205260409020546060906001600160a01b03166119035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fe565b600061190d611fa9565b9050600081511161192d5760405180602001604052806000815250611958565b8061193784611fb8565b604051602001611948929190612c0a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119895760405162461bcd60e51b81526004016106fe90612a2d565b6002600b5414156119ac5760405162461bcd60e51b81526004016106fe90612ab3565b6002600b55604051600090339047908381818185875af1925050503d80600081146119f3576040519150601f19603f3d011682016040523d82523d6000602084013e6119f8565b606091505b5050905080611a3c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106fe565b506001600b55565b600a546001600160a01b03163314611a6e5760405162461bcd60e51b81526004016106fe90612a2d565b6001600160a01b038116611ad35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fe565b611adc81611e55565b50565b60006001600160e01b031982166380ac58cd60e01b1480611b1057506001600160e01b03198216635b5e139f60e01b145b8061063c57506301ffc9a760e01b6001600160e01b031983161461063c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6482610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fe565b6000611c2183610bfd565b9050806001600160a01b0316846001600160a01b03161480611c5c5750836001600160a01b0316611c5184610713565b6001600160a01b0316145b80611c8c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ca782610bfd565b6001600160a01b031614611d0b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106fe565b6001600160a01b038216611d6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fe565b611d788383836120b6565b611d83600082611b2f565b6001600160a01b0383166000908152600360205260408120805460019290611dac908490612c49565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dda908490612b00565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112e682826040518060200160405280600081525061216e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f81848484611c94565b611f8d848484846121a1565b61187e5760405162461bcd60e51b81526004016106fe90612c60565b606060108054610651906129f2565b606081611fdc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120065780611ff081612b79565b9150611fff9050600a83612bf6565b9150611fe0565b60008167ffffffffffffffff8111156120215761202161276c565b6040519080825280601f01601f19166020018201604052801561204b576020820181803683370190505b5090505b8415611c8c57612060600183612c49565b915061206d600a86612cb2565b612078906030612b00565b60f81b81838151811061208d5761208d612b94565b60200101906001600160f81b031916908160001a9053506120af600a86612bf6565b945061204f565b6001600160a01b0383166121115761210c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612134565b816001600160a01b0316836001600160a01b03161461213457612134838261229f565b6001600160a01b03821661214b576108b98161233c565b826001600160a01b0316826001600160a01b0316146108b9576108b982826123eb565b612178838361242f565b61218560008484846121a1565b6108b95760405162461bcd60e51b81526004016106fe90612c60565b60006001600160a01b0384163b1561229457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e5903390899088908890600401612cc6565b6020604051808303816000875af1925050508015612220575060408051601f3d908101601f1916820190925261221d91810190612d03565b60015b61227a573d80801561224e576040519150601f19603f3d011682016040523d82523d6000602084013e612253565b606091505b5080516122725760405162461bcd60e51b81526004016106fe90612c60565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8c565b506001949350505050565b600060016122ac84610c74565b6122b69190612c49565b600083815260076020526040902054909150808214612309576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061234e90600190612c49565b6000838152600960205260408120546008805493945090928490811061237657612376612b94565b90600052602060002001549050806008838154811061239757612397612b94565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123cf576123cf612d20565b6001900381819060005260206000200160009055905550505050565b60006123f683610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fe565b6000818152600260205260409020546001600160a01b0316156124ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fe565b6124f6600083836120b6565b6001600160a01b038216600090815260036020526040812080546001929061251f908490612b00565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612589906129f2565b90600052602060002090601f0160209004810192826125ab57600085556125f1565b82601f106125c457805160ff19168380011785556125f1565b828001600101855582156125f1579182015b828111156125f15782518255916020019190600101906125d6565b506125fd929150612601565b5090565b5b808211156125fd5760008155600101612602565b6001600160e01b031981168114611adc57600080fd5b60006020828403121561263e57600080fd5b813561195881612616565b60005b8381101561266457818101518382015260200161264c565b8381111561187e5750506000910152565b6000815180845261268d816020860160208601612649565b601f01601f19169290920160200192915050565b6020815260006119586020830184612675565b6000602082840312156126c657600080fd5b5035919050565b6001600160a01b0381168114611adc57600080fd5b600080604083850312156126f557600080fd5b8235612700816126cd565b946020939093013593505050565b60008060006060848603121561272357600080fd5b833561272e816126cd565b9250602084013561273e816126cd565b929592945050506040919091013590565b60006020828403121561276157600080fd5b8135611958816126cd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ab576127ab61276c565b604052919050565b600080604083850312156127c657600080fd5b8235915060208084013567ffffffffffffffff808211156127e657600080fd5b818601915086601f8301126127fa57600080fd5b81358181111561280c5761280c61276c565b8060051b915061281d848301612782565b818152918301840191848101908984111561283757600080fd5b938501935b838510156128555784358252938501939085019061283c565b8096505050505050509250929050565b600067ffffffffffffffff83111561287f5761287f61276c565b612892601f8401601f1916602001612782565b90508281528383830111156128a657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128cf57600080fd5b813567ffffffffffffffff8111156128e657600080fd5b8201601f810184136128f757600080fd5b611c8c84823560208401612865565b6000806040838503121561291957600080fd5b8235612924816126cd565b91506020830135801515811461293957600080fd5b809150509250929050565b6000806000806080858703121561295a57600080fd5b8435612965816126cd565b93506020850135612975816126cd565b925060408501359150606085013567ffffffffffffffff81111561299857600080fd5b8501601f810187136129a957600080fd5b6129b887823560208401612865565b91505092959194509250565b600080604083850312156129d757600080fd5b82356129e2816126cd565b91506020830135612939816126cd565b600181811c90821680612a0657607f821691505b60208210811415612a2757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b1357612b13612aea565b500190565b60208082526022908201527f4552524f523a206d6178203130206d696e7420706572207472616e736163746960408201526137b760f11b606082015260800190565b6000816000190483118215151615612b7457612b74612aea565b500290565b6000600019821415612b8d57612b8d612aea565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612bbc57600080fd5b5051919050565b600060208284031215612bd557600080fd5b8151611958816126cd565b634e487b7160e01b600052601260045260246000fd5b600082612c0557612c05612be0565b500490565b60008351612c1c818460208801612649565b835190830190612c30818360208801612649565b64173539b7b760d91b9101908152600501949350505050565b600082821015612c5b57612c5b612aea565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612cc157612cc1612be0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf990830184612675565b9695505050505050565b600060208284031215612d1557600080fd5b815161195881612616565b634e487b7160e01b600052603160045260246000fdfea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0x83b7261DB8c795701C6fc86D1fcd073ece940E10
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000083b7261db8c795701c6fc86d1fcd073ece940e10
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.