ERC-721
Overview
Max Total Supply
2,371 SMOL
Holders
189
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
13 SMOLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BICKS
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* o__ __o __o__ o__ __o o o/ o__ __o <| v\ | /v v\ <|> /v /v v\ / \ <\ / \ /> <\ / > /> /> <\ \o/ o/ \o/ o/ \o__ __o/ _\o____ |__ _<| | <| |__ __| \_\__o__ | \ < > \\ | \ \ <o> / | \ / <o> \o \ / | o o o o | v\ o o / \ __/> __|>_ <\__ __/> / \ <\ <\__ __/> */ pragma solidity ^0.6.6; import "ERC721A.sol"; import "Ownable.sol"; import "ReentrancyGuard.sol"; import "MerkleProof.sol"; contract BICKS is Ownable, ERC721A, ReentrancyGuard { uint256 public maxSupply = 6969; uint256 public maxMintPerTx = 20; uint256 public price = 0.0025 * 10**18; bytes32 public whitelistMerkleRoot = 0x7916d9e91afcd3513f4d54f056620061a4f26c143f0103a9ca97785b8d04157a; bool public publicPaused = true; bool public revealed = false; string public baseURI; string public hiddenMetadataUri = "ipfs://QmNtcc6AqEYd2Brgz8MK2xXzqT1RAMF2cgEME1SqKp4oiT"; constructor() public ERC721A("BICKS", "SMOL", 6969, 6969) {} function mint(uint256 amount) external payable { uint256 ts = totalSupply(); require(publicPaused == false, "Mint not open for public"); require(ts + amount <= maxSupply, "Purchase would exceed max tokens"); require( amount <= maxMintPerTx, "Amount should not exceed max mint number" ); require(msg.value >= price * amount, "Please send the exact amount."); _safeMint(msg.sender, amount); } function openPublicMint(bool paused) external onlyOwner { publicPaused = paused; } function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner { whitelistMerkleRoot = _merkleRoot; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function whitelistStop(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setMaxPerTx(uint256 _maxMintPerTx) external onlyOwner { maxMintPerTx = _maxMintPerTx; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setBaseURI(string calldata newBaseURI) external onlyOwner { baseURI = newBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString())) : ""; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "IERC721.sol"; import "IERC721Receiver.sol"; import "IERC721Metadata.sol"; import "IERC721Enumerable.sol"; import "Address.sol"; import "Context.sol"; import "Strings.sol"; import "ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) public { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 () internal { _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 make 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 pragma solidity >=0.6.0 <0.8.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "project.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"openPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"whitelistStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60006002819055600955611b39600b556014600c556608e1bc9bf04000600d557f7916d9e91afcd3513f4d54f056620061a4f26c143f0103a9ca97785b8d04157a600e55600f805461ff001960ff19909116600117169055610120604052603560c08181529062002eac60e039805162000082916011916020909101906200028e565b503480156200009057600080fd5b50604051806040016040528060058152602001644249434b5360d81b8152506040518060400160405280600481526020016314d353d360e21b815250611b39806000620000e26200020260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200013e6301ffc9a760e01b62000206565b600081116200017f5760405162461bcd60e51b815260040180806020018281038252602e81526020018062002e7e602e913960400191505060405180910390fd5b60008211620001c05760405162461bcd60e51b815260040180806020018281038252602781526020018062002e576027913960400191505060405180910390fd5b8351620001d59060039060208701906200028e565b508251620001eb9060049060208601906200028e565b5060a09190915260805250506001600a556200032a565b3390565b6001600160e01b0319808216141562000266576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d157805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000301578251825591602001919060010190620002e4565b506200030f92915062000313565b5090565b5b808211156200030f576000815560010162000314565b60805160a051612b046200035360003980611f035280611f2d52806123a5525050612b046000f3fe6080604052600436106102255760003560e01c806391b7f5ed11610123578063b8ca64e4116100ab578063d7224ba01161006f578063d7224ba01461092a578063de7fcb1d1461093f578063e0a8085314610954578063e985e9c514610980578063f2fde38b146109bb57610225565b8063b8ca64e41461086d578063bd32fb6614610897578063c6f6f216146108c1578063c87b56dd146108eb578063d5abeb011461091557610225565b8063a22cb465116100f2578063a22cb46514610709578063a45ba8e714610744578063aa98e0c614610759578063af947cec1461076e578063b88d4fde1461079a57610225565b806391b7f5ed1461069857806395d89b41146106c2578063a035b1fe146106d7578063a0712d68146106ec57610225565b806342842e0e116101b15780636352211e116101755780636352211e146105fc5780636c0360eb1461062657806370a082311461063b578063715018a61461066e5780638da5cb5b1461068357610225565b806342842e0e1461044a5780634f6ccce71461048d5780634fdd43cb146104b7578063518302271461056a57806355f804b31461057f57610225565b80630bb12bb8116101f85780630bb12bb81461037d57806318160ddd1461039257806323b872dd146103b95780632f745c59146103fc5780633ccfd60b1461043557610225565b806301ffc9a71461022a57806306fdde0314610272578063081812fc146102fc578063095ea7b314610342575b600080fd5b34801561023657600080fd5b5061025e6004803603602081101561024d57600080fd5b50356001600160e01b0319166109ee565b604080519115158252519081900360200190f35b34801561027e57600080fd5b50610287610a51565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c15781810151838201526020016102a9565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103266004803603602081101561031f57600080fd5b5035610ae7565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061037b6004803603604081101561036557600080fd5b506001600160a01b038135169060200135610b49565b005b34801561038957600080fd5b5061025e610c25565b34801561039e57600080fd5b506103a7610c2e565b60408051918252519081900360200190f35b3480156103c557600080fd5b5061037b600480360360608110156103dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610c34565b34801561040857600080fd5b506103a76004803603604081101561041f57600080fd5b506001600160a01b038135169060200135610c3f565b34801561044157600080fd5b5061037b610d71565b34801561045657600080fd5b5061037b6004803603606081101561046d57600080fd5b506001600160a01b03813581169160208101359091169060400135610ec8565b34801561049957600080fd5b506103a7600480360360208110156104b057600080fd5b5035610ee3565b3480156104c357600080fd5b5061037b600480360360208110156104da57600080fd5b8101906020810181356401000000008111156104f557600080fd5b82018360208201111561050757600080fd5b8035906020019184600183028401116401000000008311171561052957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f2e945050505050565b34801561057657600080fd5b5061025e610fa7565b34801561058b57600080fd5b5061037b600480360360208110156105a257600080fd5b8101906020810181356401000000008111156105bd57600080fd5b8201836020820111156105cf57600080fd5b803590602001918460018302840111640100000000831117156105f157600080fd5b509092509050610fb5565b34801561060857600080fd5b506103266004803603602081101561061f57600080fd5b5035611023565b34801561063257600080fd5b50610287611035565b34801561064757600080fd5b506103a76004803603602081101561065e57600080fd5b50356001600160a01b03166110c3565b34801561067a57600080fd5b5061037b61112f565b34801561068f57600080fd5b506103266111db565b3480156106a457600080fd5b5061037b600480360360208110156106bb57600080fd5b50356111ea565b3480156106ce57600080fd5b50610287611251565b3480156106e357600080fd5b506103a76112b2565b61037b6004803603602081101561070257600080fd5b50356112b8565b34801561071557600080fd5b5061037b6004803603604081101561072c57600080fd5b506001600160a01b038135169060200135151561141a565b34801561075057600080fd5b5061028761151f565b34801561076557600080fd5b506103a761157a565b34801561077a57600080fd5b5061037b6004803603602081101561079157600080fd5b50351515611580565b3480156107a657600080fd5b5061037b600480360360808110156107bd57600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156107f857600080fd5b82018360208201111561080a57600080fd5b8035906020019184600183028401116401000000008311171561082c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115f5945050505050565b34801561087957600080fd5b5061037b6004803603602081101561089057600080fd5b503561164d565b3480156108a357600080fd5b5061037b600480360360208110156108ba57600080fd5b50356116b4565b3480156108cd57600080fd5b5061037b600480360360208110156108e457600080fd5b503561171b565b3480156108f757600080fd5b506102876004803603602081101561090e57600080fd5b5035611782565b34801561092157600080fd5b506103a7611954565b34801561093657600080fd5b506103a761195a565b34801561094b57600080fd5b506103a7611960565b34801561096057600080fd5b5061037b6004803603602081101561097757600080fd5b50351515611966565b34801561098c57600080fd5b5061025e600480360360408110156109a357600080fd5b506001600160a01b03813581169160200135166119e2565b3480156109c757600080fd5b5061037b600480360360208110156109de57600080fd5b50356001600160a01b0316611a10565b60006001600160e01b031982166380ac58cd60e01b1480610a1f57506001600160e01b03198216635b5e139f60e01b145b80610a3a57506001600160e01b0319821663780e9d6360e01b145b80610a495750610a4982611b12565b90505b919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af282611b31565b610b2d5760405162461bcd60e51b815260040180806020018281038252602d815260200180612a80602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b5482611023565b9050806001600160a01b0316836001600160a01b03161415610ba75760405162461bcd60e51b81526004018080602001828103825260228152602001806129ad6022913960400191505060405180910390fd5b806001600160a01b0316610bb9611b38565b6001600160a01b03161480610bda5750610bda81610bd5611b38565b6119e2565b610c155760405162461bcd60e51b815260040180806020018281038252603981526020018061287a6039913960400191505060405180910390fd5b610c20838383611b3c565b505050565b600f5460ff1681565b60025490565b610c20838383611b98565b6000610c4a836110c3565b8210610c875760405162461bcd60e51b81526004018080602001828103825260228152602001806127c06022913960400191505060405180910390fd5b6000610c91610c2e565b905060008060005b83811015610d3357610ca96126ab565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cf557805192505b876001600160a01b0316836001600160a01b03161415610d2a5786841415610d2357509350610d6b92505050565b6001909301925b50600101610c99565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612a23602e913960400191505060405180910390fd5b92915050565b610d79611b38565b6001600160a01b0316610d8a6111db565b6001600160a01b031614610dd3576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b6002600a541415610e2b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604051600090339047908381818185875af1925050503d8060008114610e72576040519150601f19603f3d011682016040523d82523d6000602084013e610e77565b606091505b5050905080610ec0576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b506001600a55565b610c20838383604051806020016040528060008152506115f5565b6000610eed610c2e565b8210610f2a5760405162461bcd60e51b81526004018080602001828103825260238152602001806128326023913960400191505060405180910390fd5b5090565b610f36611b38565b6001600160a01b0316610f476111db565b6001600160a01b031614610f90576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b8051610fa39060119060208401906126c2565b5050565b600f54610100900460ff1681565b610fbd611b38565b6001600160a01b0316610fce6111db565b6001600160a01b031614611017576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b610c206010838361273c565b600061102e82611eb3565b5192915050565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b505050505081565b60006001600160a01b03821661110a5760405162461bcd60e51b815260040180806020018281038252602b8152602001806128db602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b611137611b38565b6001600160a01b03166111486111db565b6001600160a01b031614611191576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6111f2611b38565b6001600160a01b03166112036111db565b6001600160a01b03161461124c576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600d55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b600d5481565b60006112c2610c2e565b600f5490915060ff161561131d576040805162461bcd60e51b815260206004820152601860248201527f4d696e74206e6f74206f70656e20666f72207075626c69630000000000000000604482015290519081900360640190fd5b600b548282011115611376576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b600c548211156113b75760405162461bcd60e51b81526004018080602001828103825260288152602001806128b36028913960400191505060405180910390fd5b81600d5402341015611410576040805162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015290519081900360640190fd5b610fa33383611ff4565b611422611b38565b6001600160a01b0316826001600160a01b03161415611488576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060086000611495611b38565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114d9611b38565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110bb5780601f10611090576101008083540402835291602001916110bb565b600e5481565b611588611b38565b6001600160a01b03166115996111db565b6001600160a01b0316146115e2576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600f805460ff1916911515919091179055565b611600848484611b98565b61160c8484848461200e565b6116475760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b50505050565b611655611b38565b6001600160a01b03166116666111db565b6001600160a01b0316146116af576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600b55565b6116bc611b38565b6001600160a01b03166116cd6111db565b6001600160a01b031614611716576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600e55565b611723611b38565b6001600160a01b03166117346111db565b6001600160a01b03161461177d576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600c55565b606061178d82611b31565b6117c85760405162461bcd60e51b815260040180806020018281038252602f81526020018061294c602f913960400191505060405180910390fd5b600f54610100900460ff16611869576011805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561185d5780601f106118325761010080835404028352916020019161185d565b820191906000526020600020905b81548152906001019060200180831161184057829003601f168201915b50505050509050610a4c565b60606118736121c4565b90506000815111611893576040518060200160405280600081525061194d565b8061189d84612225565b6040516020018083805190602001908083835b602083106118cf5780518252601f1990920191602091820191016118b0565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106119175780518252601f1990920191602091820191016118f8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600b5481565b60095481565b600c5481565b61196e611b38565b6001600160a01b031661197f6111db565b6001600160a01b0316146119c8576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611a18611b38565b6001600160a01b0316611a296111db565b6001600160a01b031614611a72576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b6001600160a01b038116611ab75760405162461bcd60e51b81526004018080602001828103825260268152602001806127e26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b03191660009081526001602052604090205460ff1690565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611ba06126ab565b611ba982611eb3565b9050600081600001516001600160a01b0316611bc3611b38565b6001600160a01b03161480611bf85750611bdb611b38565b6001600160a01b0316611bed84610ae7565b6001600160a01b0316145b80611c0c57508151611c0c90610bd5611b38565b905080611c4a5760405162461bcd60e51b815260040180806020018281038252603281526020018061297b6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c9e5760405162461bcd60e51b81526004018080602001828103825260268152602001806129066026913960400191505060405180910390fd5b6001600160a01b038416611ce35760405162461bcd60e51b81526004018080602001828103825260258152602001806128556025913960400191505060405180910390fd5b611cf08585856001611647565b611d006000848460000151611b3c565b6001600160a01b03858116600090815260066020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b9590911694909402939093179055908601808352912054909116611e5d57611de081611b31565b15611e5d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eab8686866001611647565b505050505050565b611ebb6126ab565b611ec482611b31565b611eff5760405162461bcd60e51b815260040180806020018281038252602a815260200180612808602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f50575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b818110611fbc57611f616126ab565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fb2579250610a4c915050565b5060001901611f52565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612a51602f913960400191505060405180910390fd5b610fa3828260405180602001604052806000815250612300565b6000612022846001600160a01b03166126a5565b156121b857836001600160a01b031663150b7a0261203e611b38565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156120b1578181015183820152602001612099565b50505050905090810190601f1680156120de5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561210057600080fd5b505af192505050801561212557506040513d602081101561212057600080fd5b505160015b61219e573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b5080516121965760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121bc565b5060015b949350505050565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b60608161224a57506040805180820190915260018152600360fc1b6020820152610a4c565b8160005b811561226257600101600a8204915061224e565b60608167ffffffffffffffff8111801561227b57600080fd5b506040519080825280601f01601f1916602001820160405280156122a6576020820181803683370190505b50859350905060001982015b83156122f757600a840660300160f81b828280600190039350815181106122d557fe5b60200101906001600160f81b031916908160001a905350600a840493506122b2565b50949350505050565b6002546001600160a01b0384166123485760405162461bcd60e51b8152600401808060200182810382526021815260200180612a026021913960400191505060405180910390fd5b61235181611b31565b156123a3576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156124025760405162461bcd60e51b8152600401808060200182810382526022815260200180612aad6022913960400191505060405180910390fd5b61240f6000858386611647565b6124176126ab565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156126925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461264b600088848861200e565b6126865760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b600191820191016125fe565b506002819055611eab6000878588611647565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061270357805160ff1916838001178555612730565b82800160010185558215612730579182015b82811115612730578251825591602001919060010190612715565b50610f2a9291506127aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061277d5782800160ff19823516178555612730565b82800160010185558215612730579182015b8281111561273057823582559160200191906001019061278f565b5b80821115610f2a57600081556001016127ab56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e74206e756d626572455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a2646970667358221220f4a330ff3a249833a52d91d13c158e4cadb7040bbfa5c5d59471e05ca0bca72c64736f6c634300060c0033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79697066733a2f2f516d4e746363364171455964324272677a384d4b3278587a71543152414d46326367454d453153714b70346f6954
Deployed Bytecode
0x6080604052600436106102255760003560e01c806391b7f5ed11610123578063b8ca64e4116100ab578063d7224ba01161006f578063d7224ba01461092a578063de7fcb1d1461093f578063e0a8085314610954578063e985e9c514610980578063f2fde38b146109bb57610225565b8063b8ca64e41461086d578063bd32fb6614610897578063c6f6f216146108c1578063c87b56dd146108eb578063d5abeb011461091557610225565b8063a22cb465116100f2578063a22cb46514610709578063a45ba8e714610744578063aa98e0c614610759578063af947cec1461076e578063b88d4fde1461079a57610225565b806391b7f5ed1461069857806395d89b41146106c2578063a035b1fe146106d7578063a0712d68146106ec57610225565b806342842e0e116101b15780636352211e116101755780636352211e146105fc5780636c0360eb1461062657806370a082311461063b578063715018a61461066e5780638da5cb5b1461068357610225565b806342842e0e1461044a5780634f6ccce71461048d5780634fdd43cb146104b7578063518302271461056a57806355f804b31461057f57610225565b80630bb12bb8116101f85780630bb12bb81461037d57806318160ddd1461039257806323b872dd146103b95780632f745c59146103fc5780633ccfd60b1461043557610225565b806301ffc9a71461022a57806306fdde0314610272578063081812fc146102fc578063095ea7b314610342575b600080fd5b34801561023657600080fd5b5061025e6004803603602081101561024d57600080fd5b50356001600160e01b0319166109ee565b604080519115158252519081900360200190f35b34801561027e57600080fd5b50610287610a51565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c15781810151838201526020016102a9565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103266004803603602081101561031f57600080fd5b5035610ae7565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061037b6004803603604081101561036557600080fd5b506001600160a01b038135169060200135610b49565b005b34801561038957600080fd5b5061025e610c25565b34801561039e57600080fd5b506103a7610c2e565b60408051918252519081900360200190f35b3480156103c557600080fd5b5061037b600480360360608110156103dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610c34565b34801561040857600080fd5b506103a76004803603604081101561041f57600080fd5b506001600160a01b038135169060200135610c3f565b34801561044157600080fd5b5061037b610d71565b34801561045657600080fd5b5061037b6004803603606081101561046d57600080fd5b506001600160a01b03813581169160208101359091169060400135610ec8565b34801561049957600080fd5b506103a7600480360360208110156104b057600080fd5b5035610ee3565b3480156104c357600080fd5b5061037b600480360360208110156104da57600080fd5b8101906020810181356401000000008111156104f557600080fd5b82018360208201111561050757600080fd5b8035906020019184600183028401116401000000008311171561052957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f2e945050505050565b34801561057657600080fd5b5061025e610fa7565b34801561058b57600080fd5b5061037b600480360360208110156105a257600080fd5b8101906020810181356401000000008111156105bd57600080fd5b8201836020820111156105cf57600080fd5b803590602001918460018302840111640100000000831117156105f157600080fd5b509092509050610fb5565b34801561060857600080fd5b506103266004803603602081101561061f57600080fd5b5035611023565b34801561063257600080fd5b50610287611035565b34801561064757600080fd5b506103a76004803603602081101561065e57600080fd5b50356001600160a01b03166110c3565b34801561067a57600080fd5b5061037b61112f565b34801561068f57600080fd5b506103266111db565b3480156106a457600080fd5b5061037b600480360360208110156106bb57600080fd5b50356111ea565b3480156106ce57600080fd5b50610287611251565b3480156106e357600080fd5b506103a76112b2565b61037b6004803603602081101561070257600080fd5b50356112b8565b34801561071557600080fd5b5061037b6004803603604081101561072c57600080fd5b506001600160a01b038135169060200135151561141a565b34801561075057600080fd5b5061028761151f565b34801561076557600080fd5b506103a761157a565b34801561077a57600080fd5b5061037b6004803603602081101561079157600080fd5b50351515611580565b3480156107a657600080fd5b5061037b600480360360808110156107bd57600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156107f857600080fd5b82018360208201111561080a57600080fd5b8035906020019184600183028401116401000000008311171561082c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115f5945050505050565b34801561087957600080fd5b5061037b6004803603602081101561089057600080fd5b503561164d565b3480156108a357600080fd5b5061037b600480360360208110156108ba57600080fd5b50356116b4565b3480156108cd57600080fd5b5061037b600480360360208110156108e457600080fd5b503561171b565b3480156108f757600080fd5b506102876004803603602081101561090e57600080fd5b5035611782565b34801561092157600080fd5b506103a7611954565b34801561093657600080fd5b506103a761195a565b34801561094b57600080fd5b506103a7611960565b34801561096057600080fd5b5061037b6004803603602081101561097757600080fd5b50351515611966565b34801561098c57600080fd5b5061025e600480360360408110156109a357600080fd5b506001600160a01b03813581169160200135166119e2565b3480156109c757600080fd5b5061037b600480360360208110156109de57600080fd5b50356001600160a01b0316611a10565b60006001600160e01b031982166380ac58cd60e01b1480610a1f57506001600160e01b03198216635b5e139f60e01b145b80610a3a57506001600160e01b0319821663780e9d6360e01b145b80610a495750610a4982611b12565b90505b919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af282611b31565b610b2d5760405162461bcd60e51b815260040180806020018281038252602d815260200180612a80602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b5482611023565b9050806001600160a01b0316836001600160a01b03161415610ba75760405162461bcd60e51b81526004018080602001828103825260228152602001806129ad6022913960400191505060405180910390fd5b806001600160a01b0316610bb9611b38565b6001600160a01b03161480610bda5750610bda81610bd5611b38565b6119e2565b610c155760405162461bcd60e51b815260040180806020018281038252603981526020018061287a6039913960400191505060405180910390fd5b610c20838383611b3c565b505050565b600f5460ff1681565b60025490565b610c20838383611b98565b6000610c4a836110c3565b8210610c875760405162461bcd60e51b81526004018080602001828103825260228152602001806127c06022913960400191505060405180910390fd5b6000610c91610c2e565b905060008060005b83811015610d3357610ca96126ab565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cf557805192505b876001600160a01b0316836001600160a01b03161415610d2a5786841415610d2357509350610d6b92505050565b6001909301925b50600101610c99565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612a23602e913960400191505060405180910390fd5b92915050565b610d79611b38565b6001600160a01b0316610d8a6111db565b6001600160a01b031614610dd3576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b6002600a541415610e2b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604051600090339047908381818185875af1925050503d8060008114610e72576040519150601f19603f3d011682016040523d82523d6000602084013e610e77565b606091505b5050905080610ec0576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b506001600a55565b610c20838383604051806020016040528060008152506115f5565b6000610eed610c2e565b8210610f2a5760405162461bcd60e51b81526004018080602001828103825260238152602001806128326023913960400191505060405180910390fd5b5090565b610f36611b38565b6001600160a01b0316610f476111db565b6001600160a01b031614610f90576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b8051610fa39060119060208401906126c2565b5050565b600f54610100900460ff1681565b610fbd611b38565b6001600160a01b0316610fce6111db565b6001600160a01b031614611017576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b610c206010838361273c565b600061102e82611eb3565b5192915050565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b505050505081565b60006001600160a01b03821661110a5760405162461bcd60e51b815260040180806020018281038252602b8152602001806128db602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b611137611b38565b6001600160a01b03166111486111db565b6001600160a01b031614611191576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6111f2611b38565b6001600160a01b03166112036111db565b6001600160a01b03161461124c576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600d55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b600d5481565b60006112c2610c2e565b600f5490915060ff161561131d576040805162461bcd60e51b815260206004820152601860248201527f4d696e74206e6f74206f70656e20666f72207075626c69630000000000000000604482015290519081900360640190fd5b600b548282011115611376576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b600c548211156113b75760405162461bcd60e51b81526004018080602001828103825260288152602001806128b36028913960400191505060405180910390fd5b81600d5402341015611410576040805162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015290519081900360640190fd5b610fa33383611ff4565b611422611b38565b6001600160a01b0316826001600160a01b03161415611488576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060086000611495611b38565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114d9611b38565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110bb5780601f10611090576101008083540402835291602001916110bb565b600e5481565b611588611b38565b6001600160a01b03166115996111db565b6001600160a01b0316146115e2576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600f805460ff1916911515919091179055565b611600848484611b98565b61160c8484848461200e565b6116475760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b50505050565b611655611b38565b6001600160a01b03166116666111db565b6001600160a01b0316146116af576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600b55565b6116bc611b38565b6001600160a01b03166116cd6111db565b6001600160a01b031614611716576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600e55565b611723611b38565b6001600160a01b03166117346111db565b6001600160a01b03161461177d576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600c55565b606061178d82611b31565b6117c85760405162461bcd60e51b815260040180806020018281038252602f81526020018061294c602f913960400191505060405180910390fd5b600f54610100900460ff16611869576011805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561185d5780601f106118325761010080835404028352916020019161185d565b820191906000526020600020905b81548152906001019060200180831161184057829003601f168201915b50505050509050610a4c565b60606118736121c4565b90506000815111611893576040518060200160405280600081525061194d565b8061189d84612225565b6040516020018083805190602001908083835b602083106118cf5780518252601f1990920191602091820191016118b0565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106119175780518252601f1990920191602091820191016118f8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600b5481565b60095481565b600c5481565b61196e611b38565b6001600160a01b031661197f6111db565b6001600160a01b0316146119c8576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611a18611b38565b6001600160a01b0316611a296111db565b6001600160a01b031614611a72576040805162461bcd60e51b8152602060048201819052602482015260008051602061292c833981519152604482015290519081900360640190fd5b6001600160a01b038116611ab75760405162461bcd60e51b81526004018080602001828103825260268152602001806127e26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b03191660009081526001602052604090205460ff1690565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611ba06126ab565b611ba982611eb3565b9050600081600001516001600160a01b0316611bc3611b38565b6001600160a01b03161480611bf85750611bdb611b38565b6001600160a01b0316611bed84610ae7565b6001600160a01b0316145b80611c0c57508151611c0c90610bd5611b38565b905080611c4a5760405162461bcd60e51b815260040180806020018281038252603281526020018061297b6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c9e5760405162461bcd60e51b81526004018080602001828103825260268152602001806129066026913960400191505060405180910390fd5b6001600160a01b038416611ce35760405162461bcd60e51b81526004018080602001828103825260258152602001806128556025913960400191505060405180910390fd5b611cf08585856001611647565b611d006000848460000151611b3c565b6001600160a01b03858116600090815260066020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b9590911694909402939093179055908601808352912054909116611e5d57611de081611b31565b15611e5d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eab8686866001611647565b505050505050565b611ebb6126ab565b611ec482611b31565b611eff5760405162461bcd60e51b815260040180806020018281038252602a815260200180612808602a913960400191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000001b398310611f50575060017f0000000000000000000000000000000000000000000000000000000000001b398303015b825b818110611fbc57611f616126ab565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fb2579250610a4c915050565b5060001901611f52565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612a51602f913960400191505060405180910390fd5b610fa3828260405180602001604052806000815250612300565b6000612022846001600160a01b03166126a5565b156121b857836001600160a01b031663150b7a0261203e611b38565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156120b1578181015183820152602001612099565b50505050905090810190601f1680156120de5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561210057600080fd5b505af192505050801561212557506040513d602081101561212057600080fd5b505160015b61219e573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b5080516121965760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121bc565b5060015b949350505050565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610add5780601f10610ab257610100808354040283529160200191610add565b60608161224a57506040805180820190915260018152600360fc1b6020820152610a4c565b8160005b811561226257600101600a8204915061224e565b60608167ffffffffffffffff8111801561227b57600080fd5b506040519080825280601f01601f1916602001820160405280156122a6576020820181803683370190505b50859350905060001982015b83156122f757600a840660300160f81b828280600190039350815181106122d557fe5b60200101906001600160f81b031916908160001a905350600a840493506122b2565b50949350505050565b6002546001600160a01b0384166123485760405162461bcd60e51b8152600401808060200182810382526021815260200180612a026021913960400191505060405180910390fd5b61235181611b31565b156123a3576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f0000000000000000000000000000000000000000000000000000000000001b398311156124025760405162461bcd60e51b8152600401808060200182810382526022815260200180612aad6022913960400191505060405180910390fd5b61240f6000858386611647565b6124176126ab565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156126925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461264b600088848861200e565b6126865760405162461bcd60e51b81526004018080602001828103825260338152602001806129cf6033913960400191505060405180910390fd5b600191820191016125fe565b506002819055611eab6000878588611647565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061270357805160ff1916838001178555612730565b82800160010185558215612730579182015b82811115612730578251825591602001919060010190612715565b50610f2a9291506127aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061277d5782800160ff19823516178555612730565b82800160010185558215612730579182015b8281111561273057823582559160200191906001019061278f565b5b80821115610f2a57600081556001016127ab56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e74206e756d626572455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a2646970667358221220f4a330ff3a249833a52d91d13c158e4cadb7040bbfa5c5d59471e05ca0bca72c64736f6c634300060c0033
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.