ERC-721
Overview
Max Total Supply
500 TNC
Holders
235
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TNCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheNobodiesClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./Ownable.sol"; import "./MerkleProof.sol"; import "./ReentrancyGuard.sol"; // ________ __ __ __ __ __ __ ______ __ __ // / |/ | / \ / | / | / |/ | / \ / | / | // $$$$$$$$/ $$ |____ ______ $$ \ $$ | ______ $$ |____ ______ ____$$ |$$/ ______ _______ /$$$$$$ |$$ | __ __ $$ |____ // $$ | $$ \ / \ $$$ \$$ | / \ $$ \ / \ / $$ |/ | / \ / | $$ | $$/ $$ |/ | / |$$ \ // $$ | $$$$$$$ |/$$$$$$ | $$$$ $$ |/$$$$$$ |$$$$$$$ |/$$$$$$ |/$$$$$$$ |$$ |/$$$$$$ |/$$$$$$$/ $$ | $$ |$$ | $$ |$$$$$$$ | // $$ | $$ | $$ |$$ $$ | $$ $$ $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ |$$ $$ |$$ \ $$ | __ $$ |$$ | $$ |$$ | $$ | // $$ | $$ | $$ |$$$$$$$$/ $$ |$$$$ |$$ \__$$ |$$ |__$$ |$$ \__$$ |$$ \__$$ |$$ |$$$$$$$$/ $$$$$$ | $$ \__/ |$$ |$$ \__$$ |$$ |__$$ | // $$ | $$ | $$ |$$ | $$ | $$$ |$$ $$/ $$ $$/ $$ $$/ $$ $$ |$$ |$$ |/ $$/ $$ $$/ $$ |$$ $$/ $$ $$/ // $$/ $$/ $$/ $$$$$$$/ $$/ $$/ $$$$$$/ $$$$$$$/ $$$$$$/ $$$$$$$/ $$/ $$$$$$$/ $$$$$$$/ $$$$$$/ $$/ $$$$$$/ $$$$$$$/ contract TheNobodiesClub is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string private baseURI; string private previewURI; string constant private baseExtension = ".json"; uint256 public reservedCounter; uint256 public maxSupply = 5500; uint256 public constant cost = 0.06 ether; uint256 public constant reservedLimit = 100; uint256 public constant transactionLimit = 2; uint256 public constant whitelistLimit = 2; bool private contractState = false; bool private revealed = false; bool private whitelistMintState = true; bytes32 private whitelistRootHash; //whitelist mint mapping(address => uint256) public whitelistMintCounter; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor(bytes32 _initWhitelistRootHash,string memory _initBaseURI, string memory _initPreviewURI) ERC721A("The Nobodies Club", "TNC"){ whitelistRootHash = _initWhitelistRootHash; baseURI = _initBaseURI; previewURI = _initPreviewURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function getTotalSupply() public view returns(uint256) { return totalSupply(); } function getContractState() public view returns(bool) { return contractState; } function getRevealedState() public view returns(bool){ return revealed; } function getWhitelistMintState() public view returns(bool) { return whitelistMintState; } //PUBLIC FUNCTIONS //Whitelist mint function whitelistMint (bytes32[] calldata _merkleProof, uint256 _mintAmount) external payable callerIsUser { require(contractState, "Contract is disabled"); require(whitelistMintState, "Whitelist minting period is already over"); require(_mintAmount <= transactionLimit, "Each transaction only allowed up to 2 mints."); require(totalSupply() + _mintAmount <= maxSupply, "Total Supply Exceeded"); //Perform checks to see if the whitelisted user has mint before (<2) [during presale] require(whitelistMintCounter[msg.sender] + _mintAmount <= whitelistLimit, "Each whitelist is only entitled to 2 mints."); //Verify if the user is whitelisted require(MerkleProof.verify(_merkleProof, whitelistRootHash, keccak256(abi.encodePacked(msg.sender))), "You are not eligible for pre-sale!"); require(msg.value >= cost * _mintAmount, "Insufficient fund in your wallet"); whitelistMintCounter[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } //Public mint function publicMint(uint256 _mintAmount) external payable callerIsUser { require(contractState, "Contract is disabled"); require(!whitelistMintState, "Whitelist minting period is NOT over yet"); require(_mintAmount <= transactionLimit, "Each transaction only allowed up to 2 mints"); require(totalSupply() + _mintAmount <= maxSupply, "Total Supply Exceeded"); require(msg.value >= cost * _mintAmount, "Insufficient fund in your wallet"); _safeMint(msg.sender, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns(string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed){ return previewURI; } string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //OWNER FUNCTIONS //Reserved mint function reservedMint(uint256 _mintAmount) external payable callerIsUser onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Total Supply Exceeded"); require(reservedCounter + _mintAmount <= reservedLimit, "Reserved Limit Exceeded"); reservedCounter += _mintAmount; _safeMint(msg.sender, _mintAmount); } //SET FUNCTIONS function setRootHash(bytes32 _newWhitelistRootHash) external onlyOwner{ whitelistRootHash = _newWhitelistRootHash; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setPreviewURI(string memory _newPreviewURI) external onlyOwner{ previewURI = _newPreviewURI; } function setMaxSupply(uint256 _newMaxSupply) external onlyOwner { maxSupply = _newMaxSupply; } function setWhitelistMint() external onlyOwner { whitelistMintState = true; } function setPublicMint() external onlyOwner { whitelistMintState = false; } //TOGGLE FUNCTION function toggleContract() external onlyOwner { contractState = !contractState; } //REVEAL FUNCTION function reveal() external onlyOwner { revealed = true; } function withdraw() external payable onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; // import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; // import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; // import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; // import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; // import '@openzeppelin/contracts/utils/Address.sol'; // import '@openzeppelin/contracts/utils/Context.sol'; // import '@openzeppelin/contracts/utils/Strings.sol'; // import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // 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) internal _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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). 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) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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); } /** * @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 TransferToNonERC721ReceiverImplementer(); } 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. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ 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) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { 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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"_initWhitelistRootHash","type":"bytes32"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initPreviewURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealedState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreviewURI","type":"string"}],"name":"setPreviewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newWhitelistRootHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistMint","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":[],"name":"toggleContract","outputs":[],"stateMutability":"nonpayable","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":[],"name":"transactionLimit","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":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405261157c600c55600d805462ffffff1916620100001790553480156200002857600080fd5b5060405162002a3a38038062002a3a8339810160408190526200004b91620002c4565b60408051808201825260118152702a3432902737b137b234b2b99021b63ab160791b602080830191825283518085019094526003845262544e4360e81b9084015281519192916200009f9160019162000167565b508051620000b590600290602084019062000167565b505050620000d2620000cc6200011160201b60201c565b62000115565b6001600855600e8390558151620000f190600990602085019062000167565b5080516200010790600a90602084019062000167565b505050506200038b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001759062000338565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b600082601f8301126200021f57600080fd5b81516001600160401b03808211156200023c576200023c62000375565b604051601f8301601f19908116603f0116810190828211818310171562000267576200026762000375565b816040528381526020925086838588010111156200028457600080fd5b600091505b83821015620002a8578582018301518183018401529082019062000289565b83821115620002ba5760008385830101525b9695505050505050565b600080600060608486031215620002da57600080fd5b835160208501519093506001600160401b0380821115620002fa57600080fd5b62000308878388016200020d565b935060408601519150808211156200031f57600080fd5b506200032e868287016200020d565b9150509250925092565b600181811c908216806200034d57607f821691505b602082108114156200036f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61269f806200039b6000396000f3fe6080604052600436106102515760003560e01c80636f8b44b011610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461065a578063d352d3d11461067a578063d5abeb0114610697578063e985e9c5146106ad578063f19605d614610414578063f2fde38b146106f657600080fd5b8063a22cb465146105db578063a475b5dd146105fb578063b88d4fde14610610578063c4e41b2214610630578063c77343f91461064557600080fd5b80638c74bf0e116100fd5780638c74bf0e146105605780638da5cb5b1461057357806390498f931461059157806395d89b41146105b15780639df90028146105c657600080fd5b80636f8b44b0146104de57806370a08231146104fe578063715018a61461051e57806372cb1643146105335780637f4e48491461054857600080fd5b80632a8ebc82116101d2578063367ebea611610196578063367ebea6146104295780633ccfd60b1461045657806342842e0e1461045e5780634f6ccce71461047e57806355f804b31461049e5780636352211e146104be57600080fd5b80632a8ebc82146103a35780632d7eae66146103c15780632db11544146103e15780632f745c59146103f4578063302150e51461041457600080fd5b8063095ea7b311610219578063095ea7b31461032057806313faede61461034057806318160ddd1461035b57806323b872dd146103705780632904e6d91461039057600080fd5b806301ffc9a71461025657806302456aa21461028b57806304285a0c146102a257806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561026257600080fd5b50610276610271366004612327565b610716565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610783565b005b3480156102ae57600080fd5b506102b8600b5481565b604051908152602001610282565b3480156102d257600080fd5b506102db6107c4565b6040516102829190612455565b3480156102f457600080fd5b5061030861030336600461230e565b610856565b6040516001600160a01b039091168152602001610282565b34801561032c57600080fd5b506102a061033b36600461226a565b61089a565b34801561034c57600080fd5b506102b866d529ae9e86000081565b34801561036757600080fd5b506102b8610928565b34801561037c57600080fd5b506102a061038b366004612177565b610947565b6102a061039e366004612294565b610952565b3480156103af57600080fd5b50600d5462010000900460ff16610276565b3480156103cd57600080fd5b506102a06103dc36600461230e565b610c98565b6102a06103ef36600461230e565b610cc7565b34801561040057600080fd5b506102b861040f36600461226a565b610e9f565b34801561042057600080fd5b506102b8600281565b34801561043557600080fd5b506102b8610444366004612129565b600f6020526000908152604090205481565b6102a0610f9b565b34801561046a57600080fd5b506102a0610479366004612177565b61104f565b34801561048a57600080fd5b506102b861049936600461230e565b61106a565b3480156104aa57600080fd5b506102a06104b9366004612361565b611114565b3480156104ca57600080fd5b506103086104d936600461230e565b611155565b3480156104ea57600080fd5b506102a06104f936600461230e565b611167565b34801561050a57600080fd5b506102b8610519366004612129565b611196565b34801561052a57600080fd5b506102a06111e4565b34801561053f57600080fd5b506102b8606481565b34801561055457600080fd5b50600d5460ff16610276565b6102a061056e36600461230e565b61121a565b34801561057f57600080fd5b506007546001600160a01b0316610308565b34801561059d57600080fd5b506102a06105ac366004612361565b611317565b3480156105bd57600080fd5b506102db611354565b3480156105d257600080fd5b506102a0611363565b3480156105e757600080fd5b506102a06105f636600461222e565b6113a1565b34801561060757600080fd5b506102a0611437565b34801561061c57600080fd5b506102a061062b3660046121b3565b611472565b34801561063c57600080fd5b506102b86114ac565b34801561065157600080fd5b506102a06114bb565b34801561066657600080fd5b506102db61067536600461230e565b6114f8565b34801561068657600080fd5b50600d54610100900460ff16610276565b3480156106a357600080fd5b506102b8600c5481565b3480156106b957600080fd5b506102766106c8366004612144565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070257600080fd5b506102a0610711366004612129565b611706565b60006001600160e01b031982166380ac58cd60e01b148061074757506001600160e01b03198216635b5e139f60e01b145b8061076257506001600160e01b0319821663780e9d6360e01b145b8061077d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107b65760405162461bcd60e51b81526004016107ad9061249f565b60405180910390fd5b600d805462ff000019169055565b6060600180546107d390612591565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90612591565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b60006108618261179e565b61087e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a582611155565b9050806001600160a01b0316836001600160a01b031614156108da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fa57506108f881336106c8565b155b15610918576040516367d9dca160e11b815260040160405180910390fd5b6109238383836117d2565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61092383838361182e565b3233146109715760405162461bcd60e51b81526004016107ad90612468565b600d5460ff166109ba5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081a5cc8191a5cd8589b195960621b60448201526064016107ad565b600d5462010000900460ff16610a235760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e6720706572696f6420697320616c726560448201526730b23c9037bb32b960c11b60648201526084016107ad565b6002811115610a895760405162461bcd60e51b815260206004820152602c60248201527f45616368207472616e73616374696f6e206f6e6c7920616c6c6f77656420757060448201526b103a3790191036b4b73a399760a11b60648201526084016107ad565b600c5481610a95610928565b610a9f9190612503565b1115610abd5760405162461bcd60e51b81526004016107ad906124d4565b336000908152600f6020526040902054600290610adb908390612503565b1115610b3d5760405162461bcd60e51b815260206004820152602b60248201527f456163682077686974656c697374206973206f6e6c7920656e7469746c65642060448201526a3a3790191036b4b73a399760a91b60648201526084016107ad565b610bb283838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611a4b565b610c095760405162461bcd60e51b815260206004820152602260248201527f596f7520617265206e6f7420656c696769626c6520666f72207072652d73616c604482015261652160f01b60648201526084016107ad565b610c1a8166d529ae9e86000061252f565b341015610c695760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742066756e6420696e20796f75722077616c6c657460448201526064016107ad565b336000908152600f602052604081208054839290610c88908490612503565b9091555061092390503382611a61565b6007546001600160a01b03163314610cc25760405162461bcd60e51b81526004016107ad9061249f565b600e55565b323314610ce65760405162461bcd60e51b81526004016107ad90612468565b600d5460ff16610d2f5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081a5cc8191a5cd8589b195960621b60448201526064016107ad565b600d5462010000900460ff1615610d995760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e6720706572696f64206973204e4f54206044820152671bdd995c881e595d60c21b60648201526084016107ad565b6002811115610dfe5760405162461bcd60e51b815260206004820152602b60248201527f45616368207472616e73616374696f6e206f6e6c7920616c6c6f77656420757060448201526a20746f2032206d696e747360a81b60648201526084016107ad565b600c5481610e0a610928565b610e149190612503565b1115610e325760405162461bcd60e51b81526004016107ad906124d4565b610e438166d529ae9e86000061252f565b341015610e925760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742066756e6420696e20796f75722077616c6c657460448201526064016107ad565b610e9c3382611a61565b50565b6000610eaa83611196565b8210610ec9576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610f9557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f415750610f8d565b80516001600160a01b031615610f5657805192505b876001600160a01b0316836001600160a01b03161415610f8b5786841415610f845750935061077d92505050565b6001909301925b505b600101610eda565b50600080fd5b6007546001600160a01b03163314610fc55760405162461bcd60e51b81526004016107ad9061249f565b604051600090339047908381818185875af1925050503d8060008114611007576040519150601f19603f3d011682016040523d82523d6000602084013e61100c565b606091505b5050905080610e9c5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107ad565b61092383838360405180602001604052806000815250611472565b600080546001600160801b031681805b828110156110fa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110f157858314156110ea5750949350505050565b6001909201915b5060010161107a565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b0316331461113e5760405162461bcd60e51b81526004016107ad9061249f565b8051611151906009906020840190611fff565b5050565b600061116082611a7b565b5192915050565b6007546001600160a01b031633146111915760405162461bcd60e51b81526004016107ad9061249f565b600c55565b60006001600160a01b0382166111bf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b0316331461120e5760405162461bcd60e51b81526004016107ad9061249f565b6112186000611b9d565b565b3233146112395760405162461bcd60e51b81526004016107ad90612468565b6007546001600160a01b031633146112635760405162461bcd60e51b81526004016107ad9061249f565b600c548161126f610928565b6112799190612503565b11156112975760405162461bcd60e51b81526004016107ad906124d4565b606481600b546112a79190612503565b11156112f55760405162461bcd60e51b815260206004820152601760248201527f5265736572766564204c696d697420457863656564656400000000000000000060448201526064016107ad565b80600b60008282546113079190612503565b90915550610e9c90503382611a61565b6007546001600160a01b031633146113415760405162461bcd60e51b81526004016107ad9061249f565b805161115190600a906020840190611fff565b6060600280546107d390612591565b6007546001600160a01b0316331461138d5760405162461bcd60e51b81526004016107ad9061249f565b600d805460ff19811660ff90911615179055565b6001600160a01b0382163314156113cb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114615760405162461bcd60e51b81526004016107ad9061249f565b600d805461ff001916610100179055565b61147d84848461182e565b61148984848484611bef565b6114a6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006114b6610928565b905090565b6007546001600160a01b031633146114e55760405162461bcd60e51b81526004016107ad9061249f565b600d805462ff0000191662010000179055565b60606115038261179e565b6115675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ad565b600d54610100900460ff1661160857600a805461158390612591565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90612591565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b50505050509050919050565b60006009805461161790612591565b80601f016020809104026020016040519081016040528092919081815260200182805461164390612591565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b5050505050905060008151116116b557604051806020016040528060008152506116ff565b806116bf84611cfe565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016116ef939291906123d5565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117305760405162461bcd60e51b81526004016107ad9061249f565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ad565b610e9c81611b9d565b600080546001600160801b03168210801561077d575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183982611a7b565b80519091506000906001600160a01b0316336001600160a01b031614806118675750815161186790336106c8565b8061188257503361187784610856565b6001600160a01b0316145b9050806118a257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118d75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166118fe57604051633a954ecd60e21b815260040160405180910390fd5b61190e60008484600001516117d2565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a01576000546001600160801b0316811015611a0157825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611a588584611dfb565b14949350505050565b611151828260405180602001604052806000815250611e6f565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611b8457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b825780516001600160a01b031615611b19579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b7d579392505050565b611b19565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cf257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c33903390899088908890600401612418565b602060405180830381600087803b158015611c4d57600080fd5b505af1925050508015611c7d575060408051601f3d908101601f19168201909252611c7a91810190612344565b60015b611cd8573d808015611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b508051611cd0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf6565b5060015b949350505050565b606081611d225750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d4c5780611d36816125cc565b9150611d459050600a8361251b565b9150611d26565b6000816001600160401b03811115611d6657611d6661263d565b6040519080825280601f01601f191660200182016040528015611d90576020820181803683370190505b5090505b8415611cf657611da560018361254e565b9150611db2600a866125e7565b611dbd906030612503565b60f81b818381518110611dd257611dd2612627565b60200101906001600160f81b031916908160001a905350611df4600a8661251b565b9450611d94565b600081815b8451811015611e67576000858281518110611e1d57611e1d612627565b60200260200101519050808311611e435760008381526020829052604090209250611e54565b600081815260208490526040902092505b5080611e5f816125cc565b915050611e00565b509392505050565b61092383838360016000546001600160801b03166001600160a01b038516611ea957604051622e076360e81b815260040160405180910390fd5b83611ec75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611fd95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611faf5750611fad6000888488611bef565b155b15611fcd576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f58565b50600080546001600160801b0319166001600160801b0392909216919091179055611a44565b82805461200b90612591565b90600052602060002090601f01602090048101928261202d5760008555612073565b82601f1061204657805160ff1916838001178555612073565b82800160010185558215612073579182015b82811115612073578251825591602001919060010190612058565b5061207f929150612083565b5090565b5b8082111561207f5760008155600101612084565b60006001600160401b03808411156120b2576120b261263d565b604051601f8501601f19908116603f011681019082821181831017156120da576120da61263d565b816040528093508581528686860111156120f357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461212457600080fd5b919050565b60006020828403121561213b57600080fd5b6116ff8261210d565b6000806040838503121561215757600080fd5b6121608361210d565b915061216e6020840161210d565b90509250929050565b60008060006060848603121561218c57600080fd5b6121958461210d565b92506121a36020850161210d565b9150604084013590509250925092565b600080600080608085870312156121c957600080fd5b6121d28561210d565b93506121e06020860161210d565b92506040850135915060608501356001600160401b0381111561220257600080fd5b8501601f8101871361221357600080fd5b61222287823560208401612098565b91505092959194509250565b6000806040838503121561224157600080fd5b61224a8361210d565b91506020830135801515811461225f57600080fd5b809150509250929050565b6000806040838503121561227d57600080fd5b6122868361210d565b946020939093013593505050565b6000806000604084860312156122a957600080fd5b83356001600160401b03808211156122c057600080fd5b818601915086601f8301126122d457600080fd5b8135818111156122e357600080fd5b8760208260051b85010111156122f857600080fd5b6020928301989097509590910135949350505050565b60006020828403121561232057600080fd5b5035919050565b60006020828403121561233957600080fd5b81356116ff81612653565b60006020828403121561235657600080fd5b81516116ff81612653565b60006020828403121561237357600080fd5b81356001600160401b0381111561238957600080fd5b8201601f8101841361239a57600080fd5b611cf684823560208401612098565b600081518084526123c1816020860160208601612565565b601f01601f19169290920160200192915050565b600084516123e7818460208901612565565b8451908301906123fb818360208901612565565b845191019061240e818360208801612565565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244b908301846123a9565b9695505050505050565b6020815260006116ff60208301846123a9565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260159082015274151bdd185b0814dd5c1c1b1e48115e18d959591959605a1b604082015260600190565b60008219821115612516576125166125fb565b500190565b60008261252a5761252a612611565b500490565b6000816000190483118215151615612549576125496125fb565b500290565b600082821015612560576125606125fb565b500390565b60005b83811015612580578181015183820152602001612568565b838111156114a65750506000910152565b600181811c908216806125a557607f821691505b602082108114156125c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125e0576125e06125fb565b5060010190565b6000826125f6576125f6612611565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9c57600080fdfea26469706673582212208f3fb2348c2588ef78d5db489ccbd7ea18f6efb6c771e13de4da8fb46aba775f64736f6c6343000807003385a2b8f296bbf2ef051beb5ea80218e31a71255642343834312721afbb70945d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54544278477a674131687733737054393143556732616e706a7a31515a6b417a77764d6875454b61677370482f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d6639384d4e454c594c713956745674324457324573754532485874797a3842577453353468523951783739432f707265766965772e6a736f6e000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636f8b44b011610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461065a578063d352d3d11461067a578063d5abeb0114610697578063e985e9c5146106ad578063f19605d614610414578063f2fde38b146106f657600080fd5b8063a22cb465146105db578063a475b5dd146105fb578063b88d4fde14610610578063c4e41b2214610630578063c77343f91461064557600080fd5b80638c74bf0e116100fd5780638c74bf0e146105605780638da5cb5b1461057357806390498f931461059157806395d89b41146105b15780639df90028146105c657600080fd5b80636f8b44b0146104de57806370a08231146104fe578063715018a61461051e57806372cb1643146105335780637f4e48491461054857600080fd5b80632a8ebc82116101d2578063367ebea611610196578063367ebea6146104295780633ccfd60b1461045657806342842e0e1461045e5780634f6ccce71461047e57806355f804b31461049e5780636352211e146104be57600080fd5b80632a8ebc82146103a35780632d7eae66146103c15780632db11544146103e15780632f745c59146103f4578063302150e51461041457600080fd5b8063095ea7b311610219578063095ea7b31461032057806313faede61461034057806318160ddd1461035b57806323b872dd146103705780632904e6d91461039057600080fd5b806301ffc9a71461025657806302456aa21461028b57806304285a0c146102a257806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561026257600080fd5b50610276610271366004612327565b610716565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610783565b005b3480156102ae57600080fd5b506102b8600b5481565b604051908152602001610282565b3480156102d257600080fd5b506102db6107c4565b6040516102829190612455565b3480156102f457600080fd5b5061030861030336600461230e565b610856565b6040516001600160a01b039091168152602001610282565b34801561032c57600080fd5b506102a061033b36600461226a565b61089a565b34801561034c57600080fd5b506102b866d529ae9e86000081565b34801561036757600080fd5b506102b8610928565b34801561037c57600080fd5b506102a061038b366004612177565b610947565b6102a061039e366004612294565b610952565b3480156103af57600080fd5b50600d5462010000900460ff16610276565b3480156103cd57600080fd5b506102a06103dc36600461230e565b610c98565b6102a06103ef36600461230e565b610cc7565b34801561040057600080fd5b506102b861040f36600461226a565b610e9f565b34801561042057600080fd5b506102b8600281565b34801561043557600080fd5b506102b8610444366004612129565b600f6020526000908152604090205481565b6102a0610f9b565b34801561046a57600080fd5b506102a0610479366004612177565b61104f565b34801561048a57600080fd5b506102b861049936600461230e565b61106a565b3480156104aa57600080fd5b506102a06104b9366004612361565b611114565b3480156104ca57600080fd5b506103086104d936600461230e565b611155565b3480156104ea57600080fd5b506102a06104f936600461230e565b611167565b34801561050a57600080fd5b506102b8610519366004612129565b611196565b34801561052a57600080fd5b506102a06111e4565b34801561053f57600080fd5b506102b8606481565b34801561055457600080fd5b50600d5460ff16610276565b6102a061056e36600461230e565b61121a565b34801561057f57600080fd5b506007546001600160a01b0316610308565b34801561059d57600080fd5b506102a06105ac366004612361565b611317565b3480156105bd57600080fd5b506102db611354565b3480156105d257600080fd5b506102a0611363565b3480156105e757600080fd5b506102a06105f636600461222e565b6113a1565b34801561060757600080fd5b506102a0611437565b34801561061c57600080fd5b506102a061062b3660046121b3565b611472565b34801561063c57600080fd5b506102b86114ac565b34801561065157600080fd5b506102a06114bb565b34801561066657600080fd5b506102db61067536600461230e565b6114f8565b34801561068657600080fd5b50600d54610100900460ff16610276565b3480156106a357600080fd5b506102b8600c5481565b3480156106b957600080fd5b506102766106c8366004612144565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070257600080fd5b506102a0610711366004612129565b611706565b60006001600160e01b031982166380ac58cd60e01b148061074757506001600160e01b03198216635b5e139f60e01b145b8061076257506001600160e01b0319821663780e9d6360e01b145b8061077d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107b65760405162461bcd60e51b81526004016107ad9061249f565b60405180910390fd5b600d805462ff000019169055565b6060600180546107d390612591565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90612591565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b60006108618261179e565b61087e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a582611155565b9050806001600160a01b0316836001600160a01b031614156108da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fa57506108f881336106c8565b155b15610918576040516367d9dca160e11b815260040160405180910390fd5b6109238383836117d2565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61092383838361182e565b3233146109715760405162461bcd60e51b81526004016107ad90612468565b600d5460ff166109ba5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081a5cc8191a5cd8589b195960621b60448201526064016107ad565b600d5462010000900460ff16610a235760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e6720706572696f6420697320616c726560448201526730b23c9037bb32b960c11b60648201526084016107ad565b6002811115610a895760405162461bcd60e51b815260206004820152602c60248201527f45616368207472616e73616374696f6e206f6e6c7920616c6c6f77656420757060448201526b103a3790191036b4b73a399760a11b60648201526084016107ad565b600c5481610a95610928565b610a9f9190612503565b1115610abd5760405162461bcd60e51b81526004016107ad906124d4565b336000908152600f6020526040902054600290610adb908390612503565b1115610b3d5760405162461bcd60e51b815260206004820152602b60248201527f456163682077686974656c697374206973206f6e6c7920656e7469746c65642060448201526a3a3790191036b4b73a399760a91b60648201526084016107ad565b610bb283838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611a4b565b610c095760405162461bcd60e51b815260206004820152602260248201527f596f7520617265206e6f7420656c696769626c6520666f72207072652d73616c604482015261652160f01b60648201526084016107ad565b610c1a8166d529ae9e86000061252f565b341015610c695760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742066756e6420696e20796f75722077616c6c657460448201526064016107ad565b336000908152600f602052604081208054839290610c88908490612503565b9091555061092390503382611a61565b6007546001600160a01b03163314610cc25760405162461bcd60e51b81526004016107ad9061249f565b600e55565b323314610ce65760405162461bcd60e51b81526004016107ad90612468565b600d5460ff16610d2f5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081a5cc8191a5cd8589b195960621b60448201526064016107ad565b600d5462010000900460ff1615610d995760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e6720706572696f64206973204e4f54206044820152671bdd995c881e595d60c21b60648201526084016107ad565b6002811115610dfe5760405162461bcd60e51b815260206004820152602b60248201527f45616368207472616e73616374696f6e206f6e6c7920616c6c6f77656420757060448201526a20746f2032206d696e747360a81b60648201526084016107ad565b600c5481610e0a610928565b610e149190612503565b1115610e325760405162461bcd60e51b81526004016107ad906124d4565b610e438166d529ae9e86000061252f565b341015610e925760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742066756e6420696e20796f75722077616c6c657460448201526064016107ad565b610e9c3382611a61565b50565b6000610eaa83611196565b8210610ec9576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610f9557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f415750610f8d565b80516001600160a01b031615610f5657805192505b876001600160a01b0316836001600160a01b03161415610f8b5786841415610f845750935061077d92505050565b6001909301925b505b600101610eda565b50600080fd5b6007546001600160a01b03163314610fc55760405162461bcd60e51b81526004016107ad9061249f565b604051600090339047908381818185875af1925050503d8060008114611007576040519150601f19603f3d011682016040523d82523d6000602084013e61100c565b606091505b5050905080610e9c5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107ad565b61092383838360405180602001604052806000815250611472565b600080546001600160801b031681805b828110156110fa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906110f157858314156110ea5750949350505050565b6001909201915b5060010161107a565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b0316331461113e5760405162461bcd60e51b81526004016107ad9061249f565b8051611151906009906020840190611fff565b5050565b600061116082611a7b565b5192915050565b6007546001600160a01b031633146111915760405162461bcd60e51b81526004016107ad9061249f565b600c55565b60006001600160a01b0382166111bf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b0316331461120e5760405162461bcd60e51b81526004016107ad9061249f565b6112186000611b9d565b565b3233146112395760405162461bcd60e51b81526004016107ad90612468565b6007546001600160a01b031633146112635760405162461bcd60e51b81526004016107ad9061249f565b600c548161126f610928565b6112799190612503565b11156112975760405162461bcd60e51b81526004016107ad906124d4565b606481600b546112a79190612503565b11156112f55760405162461bcd60e51b815260206004820152601760248201527f5265736572766564204c696d697420457863656564656400000000000000000060448201526064016107ad565b80600b60008282546113079190612503565b90915550610e9c90503382611a61565b6007546001600160a01b031633146113415760405162461bcd60e51b81526004016107ad9061249f565b805161115190600a906020840190611fff565b6060600280546107d390612591565b6007546001600160a01b0316331461138d5760405162461bcd60e51b81526004016107ad9061249f565b600d805460ff19811660ff90911615179055565b6001600160a01b0382163314156113cb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114615760405162461bcd60e51b81526004016107ad9061249f565b600d805461ff001916610100179055565b61147d84848461182e565b61148984848484611bef565b6114a6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006114b6610928565b905090565b6007546001600160a01b031633146114e55760405162461bcd60e51b81526004016107ad9061249f565b600d805462ff0000191662010000179055565b60606115038261179e565b6115675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ad565b600d54610100900460ff1661160857600a805461158390612591565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90612591565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b50505050509050919050565b60006009805461161790612591565b80601f016020809104026020016040519081016040528092919081815260200182805461164390612591565b80156116905780601f1061166557610100808354040283529160200191611690565b820191906000526020600020905b81548152906001019060200180831161167357829003601f168201915b5050505050905060008151116116b557604051806020016040528060008152506116ff565b806116bf84611cfe565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016116ef939291906123d5565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117305760405162461bcd60e51b81526004016107ad9061249f565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ad565b610e9c81611b9d565b600080546001600160801b03168210801561077d575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183982611a7b565b80519091506000906001600160a01b0316336001600160a01b031614806118675750815161186790336106c8565b8061188257503361187784610856565b6001600160a01b0316145b9050806118a257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118d75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166118fe57604051633a954ecd60e21b815260040160405180910390fd5b61190e60008484600001516117d2565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a01576000546001600160801b0316811015611a0157825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611a588584611dfb565b14949350505050565b611151828260405180602001604052806000815250611e6f565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611b8457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b825780516001600160a01b031615611b19579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b7d579392505050565b611b19565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cf257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c33903390899088908890600401612418565b602060405180830381600087803b158015611c4d57600080fd5b505af1925050508015611c7d575060408051601f3d908101601f19168201909252611c7a91810190612344565b60015b611cd8573d808015611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b508051611cd0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf6565b5060015b949350505050565b606081611d225750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d4c5780611d36816125cc565b9150611d459050600a8361251b565b9150611d26565b6000816001600160401b03811115611d6657611d6661263d565b6040519080825280601f01601f191660200182016040528015611d90576020820181803683370190505b5090505b8415611cf657611da560018361254e565b9150611db2600a866125e7565b611dbd906030612503565b60f81b818381518110611dd257611dd2612627565b60200101906001600160f81b031916908160001a905350611df4600a8661251b565b9450611d94565b600081815b8451811015611e67576000858281518110611e1d57611e1d612627565b60200260200101519050808311611e435760008381526020829052604090209250611e54565b600081815260208490526040902092505b5080611e5f816125cc565b915050611e00565b509392505050565b61092383838360016000546001600160801b03166001600160a01b038516611ea957604051622e076360e81b815260040160405180910390fd5b83611ec75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611fd95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611faf5750611fad6000888488611bef565b155b15611fcd576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f58565b50600080546001600160801b0319166001600160801b0392909216919091179055611a44565b82805461200b90612591565b90600052602060002090601f01602090048101928261202d5760008555612073565b82601f1061204657805160ff1916838001178555612073565b82800160010185558215612073579182015b82811115612073578251825591602001919060010190612058565b5061207f929150612083565b5090565b5b8082111561207f5760008155600101612084565b60006001600160401b03808411156120b2576120b261263d565b604051601f8501601f19908116603f011681019082821181831017156120da576120da61263d565b816040528093508581528686860111156120f357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461212457600080fd5b919050565b60006020828403121561213b57600080fd5b6116ff8261210d565b6000806040838503121561215757600080fd5b6121608361210d565b915061216e6020840161210d565b90509250929050565b60008060006060848603121561218c57600080fd5b6121958461210d565b92506121a36020850161210d565b9150604084013590509250925092565b600080600080608085870312156121c957600080fd5b6121d28561210d565b93506121e06020860161210d565b92506040850135915060608501356001600160401b0381111561220257600080fd5b8501601f8101871361221357600080fd5b61222287823560208401612098565b91505092959194509250565b6000806040838503121561224157600080fd5b61224a8361210d565b91506020830135801515811461225f57600080fd5b809150509250929050565b6000806040838503121561227d57600080fd5b6122868361210d565b946020939093013593505050565b6000806000604084860312156122a957600080fd5b83356001600160401b03808211156122c057600080fd5b818601915086601f8301126122d457600080fd5b8135818111156122e357600080fd5b8760208260051b85010111156122f857600080fd5b6020928301989097509590910135949350505050565b60006020828403121561232057600080fd5b5035919050565b60006020828403121561233957600080fd5b81356116ff81612653565b60006020828403121561235657600080fd5b81516116ff81612653565b60006020828403121561237357600080fd5b81356001600160401b0381111561238957600080fd5b8201601f8101841361239a57600080fd5b611cf684823560208401612098565b600081518084526123c1816020860160208601612565565b601f01601f19169290920160200192915050565b600084516123e7818460208901612565565b8451908301906123fb818360208901612565565b845191019061240e818360208801612565565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244b908301846123a9565b9695505050505050565b6020815260006116ff60208301846123a9565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260159082015274151bdd185b0814dd5c1c1b1e48115e18d959591959605a1b604082015260600190565b60008219821115612516576125166125fb565b500190565b60008261252a5761252a612611565b500490565b6000816000190483118215151615612549576125496125fb565b500290565b600082821015612560576125606125fb565b500390565b60005b83811015612580578181015183820152602001612568565b838111156114a65750506000910152565b600181811c908216806125a557607f821691505b602082108114156125c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125e0576125e06125fb565b5060010190565b6000826125f6576125f6612611565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9c57600080fdfea26469706673582212208f3fb2348c2588ef78d5db489ccbd7ea18f6efb6c771e13de4da8fb46aba775f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
85a2b8f296bbf2ef051beb5ea80218e31a71255642343834312721afbb70945d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54544278477a674131687733737054393143556732616e706a7a31515a6b417a77764d6875454b61677370482f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d6639384d4e454c594c713956745674324457324573754532485874797a3842577453353468523951783739432f707265766965772e6a736f6e000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initWhitelistRootHash (bytes32): 0x85a2b8f296bbf2ef051beb5ea80218e31a71255642343834312721afbb70945d
Arg [1] : _initBaseURI (string): ipfs://QmTTBxGzgA1hw3spT91CUg2anpjz1QZkAzwvMhuEKagspH/
Arg [2] : _initPreviewURI (string): ipfs://Qmf98MNELYLq9VtVt2DW2EsuE2HXtyz8BWtS54hR9Qx79C/preview.json
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 85a2b8f296bbf2ef051beb5ea80218e31a71255642343834312721afbb70945d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d54544278477a674131687733737054393143556732616e
Arg [5] : 706a7a31515a6b417a77764d6875454b61677370482f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [7] : 697066733a2f2f516d6639384d4e454c594c7139567456743244573245737545
Arg [8] : 32485874797a3842577453353468523951783739432f707265766965772e6a73
Arg [9] : 6f6e000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
2100:5226:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6585:366:4;;;;;;;;;;-1:-1:-1;6585:366:4;;;;;:::i;:::-;;:::i;:::-;;;7163:14:16;;7156:22;7138:41;;7126:2;7111:18;6585:366:4;;;;;;;;6832:87:15;;;;;;;;;;;;;:::i;:::-;;2321:30;;;;;;;;;;;;;;;;;;;13317:25:16;;;13305:2;13290:18;2321:30:15;13171:177:16;9128:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10584:200::-;;;;;;;;;;-1:-1:-1;10584:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6461:32:16;;;6443:51;;6431:2;6416:18;10584:200:4;6297:203:16;10161:362:4;;;;;;;;;;-1:-1:-1;10161:362:4;;;;;:::i;:::-;;:::i;2394:41:15:-;;;;;;;;;;;;2425:10;2394:41;;3893:274:4;;;;;;;;;;;;;:::i;11415:164::-;;;;;;;;;;-1:-1:-1;11415:164:4;;;;;:::i;:::-;;:::i;3791:1041:15:-;;;;;;:::i;:::-;;:::i;3637:101::-;;;;;;;;;;-1:-1:-1;3713:18:15;;;;;;;3637:101;;6260:128;;;;;;;;;;-1:-1:-1;6260:128:15;;;;;:::i;:::-;;:::i;4856:528::-;;;;;;:::i;:::-;;:::i;5441:1077:4:-;;;;;;;;;;-1:-1:-1;5441:1077:4;;;;;:::i;:::-;;:::i;2541:42:15:-;;;;;;;;;;;;2582:1;2541:42;;2774:55;;;;;;;;;;-1:-1:-1;2774:55:15;;;;;:::i;:::-;;;;;;;;;;;;;;7144:177;;;:::i;11645:179:4:-;;;;;;;;;;-1:-1:-1;11645:179:4;;;;;:::i;:::-;;:::i;4453:695::-;;;;;;;;;;-1:-1:-1;4453:695:4;;;;;:::i;:::-;;:::i;6394:104:15:-;;;;;;;;;;-1:-1:-1;6394:104:15;;;;;:::i;:::-;;:::i;8944:122:4:-;;;;;;;;;;-1:-1:-1;8944:122:4;;;;;:::i;:::-;;:::i;6625:106:15:-;;;;;;;;;;-1:-1:-1;6625:106:15;;;;;:::i;:::-;;:::i;7010:203:4:-;;;;;;;;;;-1:-1:-1;7010:203:4;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;2441:43:15:-;;;;;;;;;;;;2481:3;2441:43;;3449:91;;;;;;;;;;-1:-1:-1;3520:13:15;;;;3449:91;;5881:351;;;;;;:::i;:::-;;:::i;1029:85:12:-;;;;;;;;;;-1:-1:-1;1101:6:12;;-1:-1:-1;;;;;1101:6:12;1029:85;;6504:115:15;;;;;;;;;;-1:-1:-1;6504:115:15;;;;;:::i;:::-;;:::i;9290:102:4:-;;;;;;;;;;;;;:::i;6948:92:15:-;;;;;;;;;;;;;:::i;10851:274:4:-;;;;;;;;;;-1:-1:-1;10851:274:4;;;;;:::i;:::-;;:::i;7068:69:15:-;;;;;;;;;;;;;:::i;11890:332:4:-;;;;;;;;;;-1:-1:-1;11890:332:4;;;;;:::i;:::-;;:::i;3351:92:15:-;;;;;;;;;;;;;:::i;6737:89::-;;;;;;;;;;;;;:::i;5390:442::-;;;;;;;;;;-1:-1:-1;5390:442:15;;;;;:::i;:::-;;:::i;3546:85::-;;;;;;;;;;-1:-1:-1;3616:8:15;;;;;;;3546:85;;2357:31;;;;;;;;;;;;;;;;11191:162:4;;;;;;;;;;-1:-1:-1;11191:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;11311:25:4;;;11288:4;11311:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;11191:162;1911:198:12;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;6585:366:4:-;6687:4;-1:-1:-1;;;;;;6722:40:4;;-1:-1:-1;;;6722:40:4;;:104;;-1:-1:-1;;;;;;;6778:48:4;;-1:-1:-1;;;6778:48:4;6722:104;:170;;;-1:-1:-1;;;;;;;6842:50:4;;-1:-1:-1;;;6842:50:4;6722:170;:222;;;-1:-1:-1;;;;;;;;;;937:40:2;;;6908:36:4;6703:241;6585:366;-1:-1:-1;;6585:366:4:o;6832:87:15:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;;;;;;;;;6886:18:15::1;:26:::0;;-1:-1:-1;;6886:26:15::1;::::0;;6832:87::o;9128:98:4:-;9182:13;9214:5;9207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9128:98;:::o;10584:200::-;10652:7;10676:16;10684:7;10676;:16::i;:::-;10671:64;;10701:34;;-1:-1:-1;;;10701:34:4;;;;;;;;;;;10671:64;-1:-1:-1;10753:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;10753:24:4;;10584:200::o;10161:362::-;10233:13;10249:24;10265:7;10249:15;:24::i;:::-;10233:40;;10293:5;-1:-1:-1;;;;;10287:11:4;:2;-1:-1:-1;;;;;10287:11:4;;10283:48;;;10307:24;;-1:-1:-1;;;10307:24:4;;;;;;;;;;;10283:48;719:10:1;-1:-1:-1;;;;;10346:21:4;;;;;;:63;;-1:-1:-1;10372:37:4;10389:5;719:10:1;11191:162:4;:::i;10372:37::-;10371:38;10346:63;10342:136;;;10432:35;;-1:-1:-1;;;10432:35:4;;;;;;;;;;;10342:136;10488:28;10497:2;10501:7;10510:5;10488:8;:28::i;:::-;10223:300;10161:362;;:::o;3893:274::-;3946:7;4134:12;-1:-1:-1;;;;;;;;4134:12:4;;;;4118:13;;;:28;;;;4111:35;;3893:274::o;11415:164::-;11544:28;11554:4;11560:2;11564:7;11544:9;:28::i;3791:1041:15:-;2883:9;2896:10;2883:23;2875:66;;;;-1:-1:-1;;;2875:66:15;;;;;;;:::i;:::-;3917:13:::1;::::0;::::1;;3909:46;;;::::0;-1:-1:-1;;;3909:46:15;;12262:2:16;3909:46:15::1;::::0;::::1;12244:21:16::0;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:16;;;12313:50;12380:18;;3909:46:15::1;12060:344:16::0;3909:46:15::1;3973:18;::::0;;;::::1;;;3965:71;;;::::0;-1:-1:-1;;;3965:71:15;;11853:2:16;3965:71:15::1;::::0;::::1;11835:21:16::0;11892:2;11872:18;;;11865:30;11931:34;11911:18;;;11904:62;-1:-1:-1;;;11982:18:16;;;11975:38;12030:19;;3965:71:15::1;11651:404:16::0;3965:71:15::1;2534:1;4054:11;:31;;4046:88;;;::::0;-1:-1:-1;;;4046:88:15;;9952:2:16;4046:88:15::1;::::0;::::1;9934:21:16::0;9991:2;9971:18;;;9964:30;10030:34;10010:18;;;10003:62;-1:-1:-1;;;10081:18:16;;;10074:42;10133:19;;4046:88:15::1;9750:408:16::0;4046:88:15::1;4183:9;;4168:11;4152:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;4144:74;;;;-1:-1:-1::0;;;4144:74:15::1;;;;;;;:::i;:::-;4352:10;4331:32;::::0;;;:20:::1;:32;::::0;;;;;2582:1:::1;::::0;4331:46:::1;::::0;4366:11;;4331:46:::1;:::i;:::-;:64;;4323:120;;;::::0;-1:-1:-1;;;4323:120:15;;9179:2:16;4323:120:15::1;::::0;::::1;9161:21:16::0;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:16;;;9301:41;9359:19;;4323:120:15::1;8977:407:16::0;4323:120:15::1;4506:92;4525:12;;4506:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;4539:17:15::1;::::0;4568:28:::1;::::0;-1:-1:-1;;4585:10:15::1;5333:2:16::0;5329:15;5325:53;4568:28:15::1;::::0;::::1;5313:66:16::0;4539:17:15;;-1:-1:-1;5395:12:16;;;-1:-1:-1;4568:28:15::1;;;;;;;;;;;;4558:39;;;;;;4506:18;:92::i;:::-;4498:139;;;::::0;-1:-1:-1;;;4498:139:15;;7616:2:16;4498:139:15::1;::::0;::::1;7598:21:16::0;7655:2;7635:18;;;7628:30;7694:34;7674:18;;;7667:62;-1:-1:-1;;;7745:18:16;;;7738:32;7787:19;;4498:139:15::1;7414:398:16::0;4498:139:15::1;4669:18;4676:11:::0;2425:10:::1;4669:18;:::i;:::-;4656:9;:31;;4648:76;;;::::0;-1:-1:-1;;;4648:76:15;;9591:2:16;4648:76:15::1;::::0;::::1;9573:21:16::0;;;9610:18;;;9603:30;9669:34;9649:18;;;9642:62;9721:18;;4648:76:15::1;9389:356:16::0;4648:76:15::1;4755:10;4734:32;::::0;;;:20:::1;:32;::::0;;;;:47;;4770:11;;4734:32;:47:::1;::::0;4770:11;;4734:47:::1;:::i;:::-;::::0;;;-1:-1:-1;4791:34:15::1;::::0;-1:-1:-1;4801:10:15::1;4813:11:::0;4791:9:::1;:34::i;6260:128::-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6340:17:15::1;:41:::0;6260:128::o;4856:528::-;2883:9;2896:10;2883:23;2875:66;;;;-1:-1:-1;;;2875:66:15;;;;;;;:::i;:::-;4945:13:::1;::::0;::::1;;4937:46;;;::::0;-1:-1:-1;;;4937:46:15;;12262:2:16;4937:46:15::1;::::0;::::1;12244:21:16::0;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:16;;;12313:50;12380:18;;4937:46:15::1;12060:344:16::0;4937:46:15::1;5002:18;::::0;;;::::1;;;5001:19;4993:72;;;::::0;-1:-1:-1;;;4993:72:15;;8019:2:16;4993:72:15::1;::::0;::::1;8001:21:16::0;8058:2;8038:18;;;8031:30;8097:34;8077:18;;;8070:62;-1:-1:-1;;;8148:18:16;;;8141:38;8196:19;;4993:72:15::1;7817:404:16::0;4993:72:15::1;2534:1;5083:11;:31;;5075:87;;;::::0;-1:-1:-1;;;5075:87:15;;12961:2:16;5075:87:15::1;::::0;::::1;12943:21:16::0;13000:2;12980:18;;;12973:30;13039:34;13019:18;;;13012:62;-1:-1:-1;;;13090:18:16;;;13083:41;13141:19;;5075:87:15::1;12759:407:16::0;5075:87:15::1;5211:9;;5196:11;5180:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;5172:74;;;;-1:-1:-1::0;;;5172:74:15::1;;;;;;;:::i;:::-;5278:18;5285:11:::0;2425:10:::1;5278:18;:::i;:::-;5265:9;:31;;5257:76;;;::::0;-1:-1:-1;;;5257:76:15;;9591:2:16;5257:76:15::1;::::0;::::1;9573:21:16::0;;;9610:18;;;9603:30;9669:34;9649:18;;;9642:62;9721:18;;5257:76:15::1;9389:356:16::0;5257:76:15::1;5343:34;5353:10;5365:11;5343:9;:34::i;:::-;4856:528:::0;:::o;5441:1077:4:-;5530:7;5562:16;5572:5;5562:9;:16::i;:::-;5553:5;:25;5549:61;;5587:23;;-1:-1:-1;;;5587:23:4;;;;;;;;;;;5549:61;5620:22;5645:13;;-1:-1:-1;;;;;5645:13:4;;5620:22;;5888:543;5908:14;5904:1;:18;5888:543;;;5947:31;5981:14;;;:11;:14;;;;;;;;;5947:48;;;;;;;;;-1:-1:-1;;;;;5947:48:4;;;;-1:-1:-1;;;5947:48:4;;-1:-1:-1;;;;;5947:48:4;;;;;;;;-1:-1:-1;;;5947:48:4;;;;;;;;;;;;;;;;6013:71;;6057:8;;;6013:71;6105:14;;-1:-1:-1;;;;;6105:28:4;;6101:109;;6177:14;;;-1:-1:-1;6101:109:4;6252:5;-1:-1:-1;;;;;6231:26:4;:17;-1:-1:-1;;;;;6231:26:4;;6227:190;;;6300:5;6285:11;:20;6281:83;;;-1:-1:-1;6340:1:4;-1:-1:-1;6333:8:4;;-1:-1:-1;;;6333:8:4;6281:83;6385:13;;;;;6227:190;5929:502;5888:543;5924:3;;5888:543;;;;6503:8;;;7144:177:15;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7220:49:15::1;::::0;7202:12:::1;::::0;7220:10:::1;::::0;7243:21:::1;::::0;7202:12;7220:49;7202:12;7220:49;7243:21;7220:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7201:68;;;7287:7;7279:35;;;::::0;-1:-1:-1;;;7279:35:15;;8835:2:16;7279:35:15::1;::::0;::::1;8817:21:16::0;8874:2;8854:18;;;8847:30;-1:-1:-1;;;8893:18:16;;;8886:45;8948:18;;7279:35:15::1;8633:339:16::0;11645:179:4;11778:39;11795:4;11801:2;11805:7;11778:39;;;;;;;;;;;;:16;:39::i;4453:695::-;4520:7;4564:13;;-1:-1:-1;;;;;4564:13:4;4520:7;;4772:320;4792:14;4788:1;:18;4772:320;;;4831:31;4865:14;;;:11;:14;;;;;;;;;4831:48;;;;;;;;;-1:-1:-1;;;;;4831:48:4;;;;-1:-1:-1;;;4831:48:4;;-1:-1:-1;;;;;4831:48:4;;;;;;;;-1:-1:-1;;;4831:48:4;;;;;;;;;;;;;;4897:181;;4961:5;4946:11;:20;4942:83;;;-1:-1:-1;5001:1:4;4453:695;-1:-1:-1;;;;4453:695:4:o;4942:83::-;5046:13;;;;;4897:181;-1:-1:-1;4808:3:4;;4772:320;;;;5118:23;;-1:-1:-1;;;5118:23:4;;;;;;;;;;;6394:104:15;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6470:21:15;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;6394:104:::0;:::o;8944:122:4:-;9008:7;9034:20;9046:7;9034:11;:20::i;:::-;:25;;8944:122;-1:-1:-1;;8944:122:4:o;6625:106:15:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6699:9:15::1;:25:::0;6625:106::o;7010:203:4:-;7074:7;-1:-1:-1;;;;;7097:19:4;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:4;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7178:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;7178:27:4;;7010:203::o;1661:101:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;5881:351:15:-;2883:9;2896:10;2883:23;2875:66;;;;-1:-1:-1;;;2875:66:15;;;;;;;:::i;:::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12::1;1233:68;;;;-1:-1:-1::0;;;1233:68:12::1;;;;;;;:::i;:::-;6013:9:15::2;;5998:11;5982:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;5974:74;;;;-1:-1:-1::0;;;5974:74:15::2;;;;;;;:::i;:::-;2481:3;6084:11;6066:15;;:29;;;;:::i;:::-;:46;;6058:82;;;::::0;-1:-1:-1;;;6058:82:15;;11501:2:16;6058:82:15::2;::::0;::::2;11483:21:16::0;11540:2;11520:18;;;11513:30;11579:25;11559:18;;;11552:53;11622:18;;6058:82:15::2;11299:347:16::0;6058:82:15::2;6169:11;6150:15;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;6190:34:15::2;::::0;-1:-1:-1;6200:10:15::2;6212:11:::0;6190:9:::2;:34::i;6504:115::-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6585:27:15;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;9290:102:4:-:0;9346:13;9378:7;9371:14;;;;;:::i;6948:92:15:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7020:13:15::1;::::0;;-1:-1:-1;;7003:30:15;::::1;7020:13;::::0;;::::1;7019:14;7003:30;::::0;;6948:92::o;10851:274:4:-;-1:-1:-1;;;;;10941:24:4;;719:10:1;10941:24:4;10937:54;;;10974:17;;-1:-1:-1;;;10974:17:4;;;;;;;;;;;10937:54;719:10:1;11002:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;11002:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;11002:53:4;;;;;;;;;;11070:48;;7138:41:16;;;11002:42:4;;719:10:1;11070:48:4;;7111:18:16;11070:48:4;;;;;;;10851:274;;:::o;7068:69:15:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7115:8:15::1;:15:::0;;-1:-1:-1;;7115:15:15::1;;;::::0;;7068:69::o;11890:332:4:-;12051:28;12061:4;12067:2;12071:7;12051:9;:28::i;:::-;12094:48;12117:4;12123:2;12127:7;12136:5;12094:22;:48::i;:::-;12089:127;;12165:40;;-1:-1:-1;;;12165:40:4;;;;;;;;;;;12089:127;11890:332;;;;:::o;3351:92:15:-;3397:7;3423:13;:11;:13::i;:::-;3416:20;;3351:92;:::o;6737:89::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6794:18:15::1;:25:::0;;-1:-1:-1;;6794:25:15::1;::::0;::::1;::::0;;6737:89::o;5390:442::-;5462:13;5495:16;5503:7;5495;:16::i;:::-;5487:76;;;;-1:-1:-1;;;5487:76:15;;11085:2:16;5487:76:15;;;11067:21:16;11124:2;11104:18;;;11097:30;11163:34;11143:18;;;11136:62;-1:-1:-1;;;11214:18:16;;;11207:45;11269:19;;5487:76:15;10883:411:16;5487:76:15;5586:8;;;;;;;5582:55;;5616:10;5609:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5390:442;;;:::o;5582:55::-;5655:28;5686:7;5655:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5741:1;5716:14;5710:28;:32;:115;;;;;;;;;;;;;;;;;5769:14;5785:18;:7;:16;:18::i;:::-;5805:13;;;;;;;;;;;;;-1:-1:-1;;;5805:13:15;;;5752:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5710:115;5703:122;5390:442;-1:-1:-1;;;5390:442:15:o;1911:198:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;8428:2:16;1991:73:12::1;::::0;::::1;8410:21:16::0;8467:2;8447:18;;;8440:30;8506:34;8486:18;;;8479:62;-1:-1:-1;;;8557:18:16;;;8550:36;8603:19;;1991:73:12::1;8226:402:16::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;12468:142:4:-:0;12525:4;12558:13;;-1:-1:-1;;;;;12558:13:4;12548:23;;:55;;;;-1:-1:-1;;12576:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;12576:27:4;;;;12575:28;;12468:142::o;19497:189::-;19607:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19607:29:4;-1:-1:-1;;;;;19607:29:4;;;;;;;;;19651:28;;19607:24;;19651:28;;;;;;;19497:189;;;:::o;15102:2067::-;15212:35;15250:20;15262:7;15250:11;:20::i;:::-;15323:18;;15212:58;;-1:-1:-1;15281:22:4;;-1:-1:-1;;;;;15307:34:4;719:10:1;-1:-1:-1;;;;;15307:34:4;;:100;;;-1:-1:-1;15374:18:4;;15357:50;;719:10:1;11191:162:4;:::i;15357:50::-;15307:152;;;-1:-1:-1;719:10:1;15423:20:4;15435:7;15423:11;:20::i;:::-;-1:-1:-1;;;;;15423:36:4;;15307:152;15281:179;;15476:17;15471:66;;15502:35;;-1:-1:-1;;;15502:35:4;;;;;;;;;;;15471:66;15573:4;-1:-1:-1;;;;;15551:26:4;:13;:18;;;-1:-1:-1;;;;;15551:26:4;;15547:67;;15586:28;;-1:-1:-1;;;15586:28:4;;;;;;;;;;;15547:67;-1:-1:-1;;;;;15628:16:4;;15624:52;;15653:23;;-1:-1:-1;;;15653:23:4;;;;;;;;;;;15624:52;15792:49;15809:1;15813:7;15822:13;:18;;;15792:8;:49::i;:::-;-1:-1:-1;;;;;16131:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16131:31:4;;;-1:-1:-1;;;;;16131:31:4;;;-1:-1:-1;;16131:31:4;;;;;;;16176:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16176:29:4;;;;;;;;;;;16220:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16264:61:4;;;;-1:-1:-1;;;16309:15:4;16264:61;;;;;;;;;;;16595:11;;;16624:24;;;;;:29;16595:11;;16624:29;16620:438;;16846:13;;-1:-1:-1;;;;;16846:13:4;16832:27;;16828:216;;;16915:18;;;16883:24;;;:11;:24;;;;;;;;:50;;16997:28;;;;-1:-1:-1;;;;;16955:70:4;-1:-1:-1;;;16955:70:4;-1:-1:-1;;;;;;16955:70:4;;;-1:-1:-1;;;;;16883:50:4;;;16955:70;;;;;;;16828:216;16107:961;17102:7;17098:2;-1:-1:-1;;;;;17083:27:4;17092:4;-1:-1:-1;;;;;17083:27:4;;;;;;;;;;;17120:42;15202:1967;;15102:2067;;;:::o;862:184:11:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:11:o;12616:102:4:-;12684:27;12694:2;12698:8;12684:27;;;;;;;;;;;;:9;:27::i;7829:1058::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7991:13:4;;7938:7;;-1:-1:-1;;;;;7991:13:4;7984:20;;7980:843;;;8024:31;8058:17;;;:11;:17;;;;;;;;;8024:51;;;;;;;;;-1:-1:-1;;;;;8024:51:4;;;;-1:-1:-1;;;8024:51:4;;-1:-1:-1;;;;;8024:51:4;;;;;;;;-1:-1:-1;;;8024:51:4;;;;;;;;;;;;;;8093:716;;8142:14;;-1:-1:-1;;;;;8142:28:4;;8138:99;;8205:9;7829:1058;-1:-1:-1;;;7829:1058:4:o;8138:99::-;-1:-1:-1;;;8575:6:4;8619:17;;;;:11;:17;;;;;;;;;8607:29;;;;;;;;;-1:-1:-1;;;;;8607:29:4;;;;;-1:-1:-1;;;8607:29:4;;-1:-1:-1;;;;;8607:29:4;;;;;;;;-1:-1:-1;;;8607:29:4;;;;;;;;;;;;;8666:28;8662:107;;8733:9;7829:1058;-1:-1:-1;;;7829:1058:4:o;8662:107::-;8536:255;;;8006:817;7980:843;8849:31;;-1:-1:-1;;;8849:31:4;;;;;;;;;;;2263:187:12;2355:6;;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;20239:769:4:-;20389:4;-1:-1:-1;;;;;20409:13:4;;1087:20:0;1133:8;20405:597:4;;20444:72;;-1:-1:-1;;;20444:72:4;;-1:-1:-1;;;;;20444:36:4;;;;;:72;;719:10:1;;20495:4:4;;20501:7;;20510:5;;20444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20444:72:4;;;;;;;;-1:-1:-1;;20444:72:4;;;;;;;;;;;;:::i;:::-;;;20440:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20687:13:4;;20683:253;;20736:40;;-1:-1:-1;;;20736:40:4;;;;;;;;;;;20683:253;20888:6;20882:13;20873:6;20869:2;20865:15;20858:38;20440:510;-1:-1:-1;;;;;;20566:55:4;-1:-1:-1;;;20566:55:4;;-1:-1:-1;20559:62:4;;20405:597;-1:-1:-1;20987:4:4;20405:597;20239:769;;;;;;:::o;328:703:14:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:14;;;;;;;;;;;;-1:-1:-1;;;627:10:14;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:14;;-1:-1:-1;773:2:14;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:14;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:14;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:14;;;;;;;;-1:-1:-1;972:11:14;981:2;972:11;;:::i;:::-;;;844:150;;1398:662:11;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:11;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:11;1398:662;-1:-1:-1;;;1398:662:11:o;13069:157:4:-;13187:32;13193:2;13197:8;13207:5;13214:4;13606:20;13629:13;-1:-1:-1;;;;;13629:13:4;-1:-1:-1;;;;;13656:16:4;;13652:48;;13681:19;;-1:-1:-1;;;13681:19:4;;;;;;;;;;;13652:48;13714:13;13710:44;;13736:18;;-1:-1:-1;;;13736:18:4;;;;;;;;;;;13710:44;-1:-1:-1;;;;;14098:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14156:49:4;;-1:-1:-1;;;;;14098:44:4;;;;;;;14156:49;;;;-1:-1:-1;;14098:44:4;;;;;;14156:49;;;;;;;;;;;;;;;;14220:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14269:66:4;;;;-1:-1:-1;;;14319:15:4;14269:66;;;;;;;;;;;14220:25;;14400:322;14420:8;14416:1;:12;14400:322;;;14458:38;;14483:12;;-1:-1:-1;;;;;14458:38:4;;;14475:1;;14458:38;;14475:1;;14458:38;14518:4;:68;;;;;14527:59;14558:1;14562:2;14566:12;14580:5;14527:22;:59::i;:::-;14526:60;14518:68;14514:162;;;14617:40;;-1:-1:-1;;;14617:40:4;;;;;;;;;;;14514:162;14693:14;;;;;14430:3;14400:322;;;-1:-1:-1;14736:13:4;:37;;-1:-1:-1;;;;;;14736:37:4;-1:-1:-1;;;;;14736:37:4;;;;;;;;;;14793:60;11890:332;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;-1:-1:-1;;;;;149:2:16;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:16;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:16;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:16;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:16:o;2899:689::-;2994:6;3002;3010;3063:2;3051:9;3042:7;3038:23;3034:32;3031:52;;;3079:1;3076;3069:12;3031:52;3119:9;3106:23;-1:-1:-1;;;;;3189:2:16;3181:6;3178:14;3175:34;;;3205:1;3202;3195:12;3175:34;3243:6;3232:9;3228:22;3218:32;;3288:7;3281:4;3277:2;3273:13;3269:27;3259:55;;3310:1;3307;3300:12;3259:55;3350:2;3337:16;3376:2;3368:6;3365:14;3362:34;;;3392:1;3389;3382:12;3362:34;3447:7;3440:4;3430:6;3427:1;3423:14;3419:2;3415:23;3411:34;3408:47;3405:67;;;3468:1;3465;3458:12;3405:67;3499:4;3491:13;;;;3523:6;;-1:-1:-1;3561:20:16;;;;3548:34;;2899:689;-1:-1:-1;;;;2899:689:16:o;3593:180::-;3652:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;-1:-1:-1;3744:23:16;;3593:180;-1:-1:-1;3593:180:16:o;3778:245::-;3836:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:52;;;3905:1;3902;3895:12;3857:52;3944:9;3931:23;3963:30;3987:5;3963:30;:::i;4028:249::-;4097:6;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4198:9;4192:16;4217:30;4241:5;4217:30;:::i;4282:450::-;4351:6;4404:2;4392:9;4383:7;4379:23;4375:32;4372:52;;;4420:1;4417;4410:12;4372:52;4460:9;4447:23;-1:-1:-1;;;;;4485:6:16;4482:30;4479:50;;;4525:1;4522;4515:12;4479:50;4548:22;;4601:4;4593:13;;4589:27;-1:-1:-1;4579:55:16;;4630:1;4627;4620:12;4579:55;4653:73;4718:7;4713:2;4700:16;4695:2;4691;4687:11;4653:73;:::i;4922:257::-;4963:3;5001:5;4995:12;5028:6;5023:3;5016:19;5044:63;5100:6;5093:4;5088:3;5084:14;5077:4;5070:5;5066:16;5044:63;:::i;:::-;5161:2;5140:15;-1:-1:-1;;5136:29:16;5127:39;;;;5168:4;5123:50;;4922:257;-1:-1:-1;;4922:257:16:o;5418:664::-;5645:3;5683:6;5677:13;5699:53;5745:6;5740:3;5733:4;5725:6;5721:17;5699:53;:::i;:::-;5815:13;;5774:16;;;;5837:57;5815:13;5774:16;5871:4;5859:17;;5837:57;:::i;:::-;5961:13;;5916:20;;;5983:57;5961:13;5916:20;6017:4;6005:17;;5983:57;:::i;:::-;6056:20;;5418:664;-1:-1:-1;;;;;5418:664:16:o;6505:488::-;-1:-1:-1;;;;;6774:15:16;;;6756:34;;6826:15;;6821:2;6806:18;;6799:43;6873:2;6858:18;;6851:34;;;6921:3;6916:2;6901:18;;6894:31;;;6699:4;;6942:45;;6967:19;;6959:6;6942:45;:::i;:::-;6934:53;6505:488;-1:-1:-1;;;;;;6505:488:16:o;7190:219::-;7339:2;7328:9;7321:21;7302:4;7359:44;7399:2;7388:9;7384:18;7376:6;7359:44;:::i;10163:354::-;10365:2;10347:21;;;10404:2;10384:18;;;10377:30;10443:32;10438:2;10423:18;;10416:60;10508:2;10493:18;;10163:354::o;10522:356::-;10724:2;10706:21;;;10743:18;;;10736:30;10802:34;10797:2;10782:18;;10775:62;10869:2;10854:18;;10522:356::o;12409:345::-;12611:2;12593:21;;;12650:2;12630:18;;;12623:30;-1:-1:-1;;;12684:2:16;12669:18;;12662:51;12745:2;12730:18;;12409:345::o;13353:128::-;13393:3;13424:1;13420:6;13417:1;13414:13;13411:39;;;13430:18;;:::i;:::-;-1:-1:-1;13466:9:16;;13353:128::o;13486:120::-;13526:1;13552;13542:35;;13557:18;;:::i;:::-;-1:-1:-1;13591:9:16;;13486:120::o;13611:168::-;13651:7;13717:1;13713;13709:6;13705:14;13702:1;13699:21;13694:1;13687:9;13680:17;13676:45;13673:71;;;13724:18;;:::i;:::-;-1:-1:-1;13764:9:16;;13611:168::o;13784:125::-;13824:4;13852:1;13849;13846:8;13843:34;;;13857:18;;:::i;:::-;-1:-1:-1;13894:9:16;;13784:125::o;13914:258::-;13986:1;13996:113;14010:6;14007:1;14004:13;13996:113;;;14086:11;;;14080:18;14067:11;;;14060:39;14032:2;14025:10;13996:113;;;14127:6;14124:1;14121:13;14118:48;;;-1:-1:-1;;14162:1:16;14144:16;;14137:27;13914:258::o;14177:380::-;14256:1;14252:12;;;;14299;;;14320:61;;14374:4;14366:6;14362:17;14352:27;;14320:61;14427:2;14419:6;14416:14;14396:18;14393:38;14390:161;;;14473:10;14468:3;14464:20;14461:1;14454:31;14508:4;14505:1;14498:15;14536:4;14533:1;14526:15;14390:161;;14177:380;;;:::o;14562:135::-;14601:3;-1:-1:-1;;14622:17:16;;14619:43;;;14642:18;;:::i;:::-;-1:-1:-1;14689:1:16;14678:13;;14562:135::o;14702:112::-;14734:1;14760;14750:35;;14765:18;;:::i;:::-;-1:-1:-1;14799:9:16;;14702:112::o;14819:127::-;14880:10;14875:3;14871:20;14868:1;14861:31;14911:4;14908:1;14901:15;14935:4;14932:1;14925:15;14951:127;15012:10;15007:3;15003:20;15000:1;14993:31;15043:4;15040:1;15033:15;15067:4;15064:1;15057:15;15083:127;15144:10;15139:3;15135:20;15132:1;15125:31;15175:4;15172:1;15165:15;15199:4;15196:1;15189:15;15215:127;15276:10;15271:3;15267:20;15264:1;15257:31;15307:4;15304:1;15297:15;15331:4;15328:1;15321:15;15347:131;-1:-1:-1;;;;;;15421:32:16;;15411:43;;15401:71;;15468:1;15465;15458:12
Swarm Source
ipfs://8f3fb2348c2588ef78d5db489ccbd7ea18f6efb6c771e13de4da8fb46aba775f
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.