Contract Overview
[ Download CSV Export ]
Contract Name:
ThortlesNFTClubSE
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-03-12 */ /* ████████╗██╗░░██╗░█████╗░██████╗░████████╗██╗░░░░░███████╗░██████╗ ███╗░░██╗███████╗████████╗ ╚══██╔══╝██║░░██║██╔══██╗██╔══██╗╚══██╔══╝██║░░░░░██╔════╝██╔════╝ ████╗░██║██╔════╝╚══██╔══╝ ░░░██║░░░███████║██║░░██║██████╔╝░░░██║░░░██║░░░░░█████╗░░╚█████╗░ ██╔██╗██║█████╗░░░░░██║░░░ ░░░██║░░░██╔══██║██║░░██║██╔══██╗░░░██║░░░██║░░░░░██╔══╝░░░╚═══██╗ ██║╚████║██╔══╝░░░░░██║░░░ ░░░██║░░░██║░░██║╚█████╔╝██║░░██║░░░██║░░░███████╗███████╗██████╔╝ ██║░╚███║██║░░░░░░░░██║░░░ ░░░╚═╝░░░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚══════╝╚══════╝╚═════╝░ ╚═╝░░╚══╝╚═╝░░░░░░░░╚═╝░░░ ░█████╗░██╗░░░░░██╗░░░██╗██████╗░ ░░░░░░ ░██████╗███████╗ ██╔══██╗██║░░░░░██║░░░██║██╔══██╗ ░░░░░░ ██╔════╝██╔════╝ ██║░░╚═╝██║░░░░░██║░░░██║██████╦╝ █████╗ ╚█████╗░█████╗░░ ██║░░██╗██║░░░░░██║░░░██║██╔══██╗ ╚════╝ ░╚═══██╗██╔══╝░░ ╚█████╔╝███████╗╚██████╔╝██████╦╝ ░░░░░░ ██████╔╝███████╗ ░╚════╝░╚══════╝░╚═════╝░╚═════╝░ ░░░░░░ ╚═════╝░╚══════╝ */ // SPDX-License-Identifier: GPL-3.0 // File: contracts/ThortlesNFTClubSE.sol // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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(); } } // File: contracts/ThortlesNFTClubSE.sol pragma solidity >=0.7.0 <0.9.0; contract ThortlesNFTClubSE is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 390; uint256 public maxMintAmount = 1; uint256 public maxMintAmountForThortlesNFTClubMember = 1; uint256 public thortlesNFTMemberAddedCount = 0; bool public paused = true; bool public onlyThortlesNFTClubMembers = true; bool public withdrawPaused = true; mapping(address => bool) public thortlesNFTClubMembersAddresses; mapping(address => uint256) private addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /* @function mint(_mintAmount) @description - Mints _mintAmount of Thortles NFTs SE for sender address. @param <uint256> _mintAmount - The number of Thortles NFTs SE to mint. */ function mint(uint256 _mintAmount) public payable { require(!paused, "The contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "You need to mint at least 1 Thortle NFT"); require(_mintAmount <= maxMintAmount, "Max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "Max Thortles NFT limit exceeded"); if (msg.sender != owner()) { if(onlyThortlesNFTClubMembers == true) { require(isThortlesNFTClubMember(msg.sender), "Sorry, this address is not an OG Thortles NFT Club member"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= maxMintAmountForThortlesNFTClubMember, "Max Thortles NFT per address exceeded"); } } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } /* @function isThortlesNFTClubMember(_user) @description - Returns a True/False if owner address is a member */ function isThortlesNFTClubMember(address _user) public view returns (bool) { if (thortlesNFTClubMembersAddresses[_user]) { return true; } return false; } /* @function walletOfOwner(_owner) @description - Returns tokenIds per wallet address of owner */ function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } /* @function tokenURI(tokenId) @description - Gets the tokenId's URI */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } /* @function setMaxMintAmount(newmaxMintAmount) @description - Sets max mint amount */ function setMaxMintAmount(uint256 newmaxMintAmount) public onlyOwner { maxMintAmount = newmaxMintAmount; } /* @function setMaxMintAmountForThortlesMember(limit) @description - Sets the number of NFTs a Thortles member can mint */ function setMaxMintAmountForThortlesMember(uint256 limit) public onlyOwner { maxMintAmountForThortlesNFTClubMember = limit; } /* @function setBaseURI(newBaseURI) @description - Sets base URI (string) */ function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } /* @function setBaseExtension(newBaseExtension) @description - Sets base extension (string) */ function setBaseExtension(string memory newBaseExtension) public onlyOwner { baseExtension = newBaseExtension; } /* @function pause(state) @description - Pauses the contract (True/False) */ function pause(bool state) public onlyOwner { paused = state; } /* @function pauseWithdrawals(state) @description - Pauses withdrawal (True/False) */ function pauseWithdrawals(bool state) public onlyOwner { withdrawPaused = state; } /* @function setOnlyThortlesNFTClubMembers(state) @description - Setting minting state to True/False to enable Thortles NFT Club members to minting */ function setOnlyThortlesNFTClubMembers(bool state) public onlyOwner { onlyThortlesNFTClubMembers = state; } /* @function addOGThortlesClubMembers(addresses) @description - Add Thortles NFT Club members to mint list */ function addOGThortlesClubNFTMembers(address[] memory addresses) public onlyOwner { for (uint256 account = 0; account < addresses.length; account++) { addToTCMembersList(addresses[account]); thortlesNFTMemberAddedCount++; } } function addToTCMembersList(address addr) private onlyOwner { thortlesNFTClubMembersAddresses[addr] = true; } /* @function withDraw() @description - Withdraw function implemented, just incase funds are accidentally sent to smart contract. */ function withDraw() public payable onlyOwner { require(!paused, "ERROR: Contract paused!"); require(!withdrawPaused, "ERROR: Withdrawals currently paused!"); (bool success, ) = payable(owner()).call{value: address(this).balance}(""); require(success); } }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addOGThortlesClubNFTMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isThortlesNFTClubMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountForThortlesNFTClubMember","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyThortlesNFTClubMembers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pauseWithdrawals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxMintAmountForThortlesMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setOnlyThortlesNFTClubMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"thortlesNFTClubMembersAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thortlesNFTMemberAddedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withDraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ad565b50610186600d556001600e819055600f5560006010556011805462ffffff1916620101011790553480156200005c57600080fd5b5060405162002d0938038062002d098339810160408190526200007f916200030a565b82518390839062000098906000906020850190620001ad565b508051620000ae906001906020840190620001ad565b505050620000cb620000c5620000df60201b60201c565b620000e3565b620000d68162000135565b505050620003ee565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a990600b906020840190620001ad565b5050565b828054620001bb906200039b565b90600052602060002090601f016020900481019282620001df57600085556200022a565b82601f10620001fa57805160ff19168380011785556200022a565b828001600101855582156200022a579182015b828111156200022a5782518255916020019190600101906200020d565b50620002389291506200023c565b5090565b5b808211156200023857600081556001016200023d565b600082601f8301126200026557600080fd5b81516001600160401b0380821115620002825762000282620003d8565b604051601f8301601f19908116603f01168101908282118183101715620002ad57620002ad620003d8565b81604052838152602092508683858801011115620002ca57600080fd5b600091505b83821015620002ee5785820183015181830184015290820190620002cf565b83821115620003005760008385830101525b9695505050505050565b6000806000606084860312156200032057600080fd5b83516001600160401b03808211156200033857600080fd5b620003468783880162000253565b945060208601519150808211156200035d57600080fd5b6200036b8783880162000253565b935060408601519150808211156200038257600080fd5b50620003918682870162000253565b9150509250925092565b600181811c90821680620003b057607f821691505b60208210811415620003d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61290b80620003fe6000396000f3fe6080604052600436106102465760003560e01c80636b4fe47211610139578063bba26f41116100b6578063d563fa551161007a578063d563fa5514610680578063d5abeb01146106a0578063da3ef23f146106b6578063e985e9c5146106d6578063f2fde38b1461071f578063f4cc87ba1461073f57600080fd5b8063bba26f41146105db578063bc5294261461060b578063c47296221461062b578063c66828621461064b578063c87b56dd1461066057600080fd5b806392ac1fa0116100fd57806392ac1fa01461055d57806395d89b4114610573578063a0712d6814610588578063a22cb4651461059b578063b88d4fde146105bb57600080fd5b80636b4fe472146104d65780636c0360eb146104f557806370a082311461050a578063715018a61461052a5780638da5cb5b1461053f57600080fd5b806323b872dd116101c757806349a729161161018b57806349a72916146104465780634f6ccce71461045c57806355f804b31461047c5780635c975abb1461049c5780636352211e146104b657600080fd5b806323b872dd146103995780632f3ffb9f146103b95780632f745c59146103d957806342842e0e146103f9578063438b63001461041957600080fd5b8063095ea7b31161020e578063095ea7b31461031c5780630fb247641461033c5780630fdb1c101461035c57806318160ddd14610364578063239c70ae1461038357600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063088a4ed0146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461244f565b61075f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612434565b61078a565b005b3480156102ae57600080fd5b506102b76107d0565b604051610277919061265c565b3480156102d057600080fd5b506102e46102df3660046124d2565b610862565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046124d2565b6108f7565b34801561032857600080fd5b506102a0610337366004612356565b610926565b34801561034857600080fd5b506102a06103573660046124d2565b610a3c565b6102a0610a6b565b34801561037057600080fd5b506008545b604051908152602001610277565b34801561038f57600080fd5b50610375600e5481565b3480156103a557600080fd5b506102a06103b4366004612274565b610bc3565b3480156103c557600080fd5b5060115461026b9062010000900460ff1681565b3480156103e557600080fd5b506103756103f4366004612356565b610bf4565b34801561040557600080fd5b506102a0610414366004612274565b610c8a565b34801561042557600080fd5b50610439610434366004612226565b610ca5565b6040516102779190612618565b34801561045257600080fd5b50610375600f5481565b34801561046857600080fd5b506103756104773660046124d2565b610d47565b34801561048857600080fd5b506102a0610497366004612489565b610dda565b3480156104a857600080fd5b5060115461026b9060ff1681565b3480156104c257600080fd5b506102e46104d13660046124d2565b610e1b565b3480156104e257600080fd5b5060115461026b90610100900460ff1681565b34801561050157600080fd5b506102b7610e92565b34801561051657600080fd5b50610375610525366004612226565b610f20565b34801561053657600080fd5b506102a0610fa7565b34801561054b57600080fd5b50600a546001600160a01b03166102e4565b34801561056957600080fd5b5061037560105481565b34801561057f57600080fd5b506102b7610fdd565b6102a06105963660046124d2565b610fec565b3480156105a757600080fd5b506102a06105b636600461232c565b6112cc565b3480156105c757600080fd5b506102a06105d63660046122b0565b6112d7565b3480156105e757600080fd5b5061026b6105f6366004612226565b60126020526000908152604090205460ff1681565b34801561061757600080fd5b506102a0610626366004612434565b61130f565b34801561063757600080fd5b5061026b610646366004612226565b611353565b34801561065757600080fd5b506102b7611384565b34801561066c57600080fd5b506102b761067b3660046124d2565b611391565b34801561068c57600080fd5b506102a061069b366004612380565b61146f565b3480156106ac57600080fd5b50610375600d5481565b3480156106c257600080fd5b506102a06106d1366004612489565b6114ef565b3480156106e257600080fd5b5061026b6106f1366004612241565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072b57600080fd5b506102a061073a366004612226565b61152c565b34801561074b57600080fd5b506102a061075a366004612434565b6115c4565b60006001600160e01b0319821663780e9d6360e01b148061078457506107848261160a565b92915050565b600a546001600160a01b031633146107bd5760405162461bcd60e51b81526004016107b4906126c1565b60405180910390fd5b6011805460ff1916911515919091179055565b6060600080546107df906127e7565b80601f016020809104026020016040519081016040528092919081815260200182805461080b906127e7565b80156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b4565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109215760405162461bcd60e51b81526004016107b4906126c1565b600e55565b600061093182610e1b565b9050806001600160a01b0316836001600160a01b0316141561099f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b4565b336001600160a01b03821614806109bb57506109bb81336106f1565b610a2d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b4565b610a37838361165a565b505050565b600a546001600160a01b03163314610a665760405162461bcd60e51b81526004016107b4906126c1565b600f55565b600a546001600160a01b03163314610a955760405162461bcd60e51b81526004016107b4906126c1565b60115460ff1615610ae85760405162461bcd60e51b815260206004820152601760248201527f4552524f523a20436f6e7472616374207061757365642100000000000000000060448201526064016107b4565b60115462010000900460ff1615610b4f5760405162461bcd60e51b815260206004820152602560248201527f4552524f523a20205769746864726177616c732063757272656e746c79207061604482015264757365642160d81b60648201526084016107b4565b6000610b63600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bad576040519150601f19603f3d011682016040523d82523d6000602084013e610bb2565b606091505b5050905080610bc057600080fd5b50565b610bcd33826116c8565b610be95760405162461bcd60e51b81526004016107b4906126f6565b610a378383836117bf565b6000610bff83610f20565b8210610c615760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107b4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a37838383604051806020016040528060008152506112d7565b60606000610cb283610f20565b905060008167ffffffffffffffff811115610ccf57610ccf6128a9565b604051908082528060200260200182016040528015610cf8578160200160208202803683370190505b50905060005b82811015610d3f57610d108582610bf4565b828281518110610d2257610d22612893565b602090810291909101015280610d3781612822565b915050610cfe565b509392505050565b6000610d5260085490565b8210610db55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107b4565b60088281548110610dc857610dc8612893565b90600052602060002001549050919050565b600a546001600160a01b03163314610e045760405162461bcd60e51b81526004016107b4906126c1565b8051610e1790600b906020840190612109565b5050565b6000818152600260205260408120546001600160a01b0316806107845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b4565b600b8054610e9f906127e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb906127e7565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b505050505081565b60006001600160a01b038216610f8b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fd15760405162461bcd60e51b81526004016107b4906126c1565b610fdb600061196a565b565b6060600180546107df906127e7565b60115460ff16156110385760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107b4565b600061104360085490565b9050600082116110a55760405162461bcd60e51b815260206004820152602760248201527f596f75206e65656420746f206d696e74206174206c6561737420312054686f726044820152661d1b194813919560ca1b60648201526084016107b4565b600e548211156111035760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107b4565b600d546111108383612778565b111561115e5760405162461bcd60e51b815260206004820152601f60248201527f4d61782054686f72746c6573204e4654206c696d69742065786365656465640060448201526064016107b4565b600a546001600160a01b0316331461127c5760115460ff6101009091041615156001141561127c5761118f33611353565b6112015760405162461bcd60e51b815260206004820152603960248201527f536f7272792c20746869732061646472657373206973206e6f7420616e204f4760448201527f2054686f72746c6573204e465420436c7562206d656d6265720000000000000060648201526084016107b4565b33600090815260136020526040902054600f5461121e8483612778565b111561127a5760405162461bcd60e51b815260206004820152602560248201527f4d61782054686f72746c6573204e465420706572206164647265737320657863604482015264195959195960da1b60648201526084016107b4565b505b60015b828111610a37573360009081526013602052604081208054916112a183612822565b909155506112ba9050336112b58385612778565b6119bc565b806112c481612822565b91505061127f565b610e173383836119d6565b6112e133836116c8565b6112fd5760405162461bcd60e51b81526004016107b4906126f6565b61130984848484611aa5565b50505050565b600a546001600160a01b031633146113395760405162461bcd60e51b81526004016107b4906126c1565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03811660009081526012602052604081205460ff161561137c57506001919050565b506000919050565b600c8054610e9f906127e7565b6000818152600260205260409020546060906001600160a01b03166114105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b4565b600061141a611ad8565b9050600081511161143a5760405180602001604052806000815250611468565b8061144484611ae7565b600c60405160200161145893929190612517565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114995760405162461bcd60e51b81526004016107b4906126c1565b60005b8151811015610e17576114c78282815181106114ba576114ba612893565b6020026020010151611be5565b601080549060006114d783612822565b919050555080806114e790612822565b91505061149c565b600a546001600160a01b031633146115195760405162461bcd60e51b81526004016107b4906126c1565b8051610e1790600c906020840190612109565b600a546001600160a01b031633146115565760405162461bcd60e51b81526004016107b4906126c1565b6001600160a01b0381166115bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b4565b610bc08161196a565b600a546001600160a01b031633146115ee5760405162461bcd60e51b81526004016107b4906126c1565b60118054911515620100000262ff000019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061163b57506001600160e01b03198216635b5e139f60e01b145b8061078457506301ffc9a760e01b6001600160e01b0319831614610784565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168f82610e1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b4565b600061174c83610e1b565b9050806001600160a01b0316846001600160a01b031614806117875750836001600160a01b031661177c84610862565b6001600160a01b0316145b806117b757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117d282610e1b565b6001600160a01b03161461183a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b4565b6001600160a01b03821661189c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b4565b6118a7838383611c33565b6118b260008261165a565b6001600160a01b03831660009081526003602052604081208054600192906118db9084906127a4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611909908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e17828260405180602001604052806000815250611ceb565b816001600160a01b0316836001600160a01b03161415611a385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ab08484846117bf565b611abc84848484611d1e565b6113095760405162461bcd60e51b81526004016107b49061266f565b6060600b80546107df906127e7565b606081611b0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b355780611b1f81612822565b9150611b2e9050600a83612790565b9150611b0f565b60008167ffffffffffffffff811115611b5057611b506128a9565b6040519080825280601f01601f191660200182016040528015611b7a576020820181803683370190505b5090505b84156117b757611b8f6001836127a4565b9150611b9c600a8661283d565b611ba7906030612778565b60f81b818381518110611bbc57611bbc612893565b60200101906001600160f81b031916908160001a905350611bde600a86612790565b9450611b7e565b600a546001600160a01b03163314611c0f5760405162461bcd60e51b81526004016107b4906126c1565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6001600160a01b038316611c8e57611c8981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cb1565b816001600160a01b0316836001600160a01b031614611cb157611cb18382611e2b565b6001600160a01b038216611cc857610a3781611ec8565b826001600160a01b0316826001600160a01b031614610a3757610a378282611f77565b611cf58383611fbb565b611d026000848484611d1e565b610a375760405162461bcd60e51b81526004016107b49061266f565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d629033908990889088906004016125db565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da99181019061246c565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b81526004016107b49061266f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b7565b506001949350505050565b60006001611e3884610f20565b611e4291906127a4565b600083815260076020526040902054909150808214611e95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eda906001906127a4565b60008381526009602052604081205460088054939450909284908110611f0257611f02612893565b906000526020600020015490508060088381548110611f2357611f23612893565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5b57611f5b61287d565b6001900381819060005260206000200160009055905550505050565b6000611f8283610f20565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b4565b6000818152600260205260409020546001600160a01b0316156120765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b4565b61208260008383611c33565b6001600160a01b03821660009081526003602052604081208054600192906120ab908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612115906127e7565b90600052602060002090601f016020900481019282612137576000855561217d565b82601f1061215057805160ff191683800117855561217d565b8280016001018555821561217d579182015b8281111561217d578251825591602001919060010190612162565b5061218992915061218d565b5090565b5b80821115612189576000815560010161218e565b600067ffffffffffffffff8311156121bc576121bc6128a9565b6121cf601f8401601f1916602001612747565b90508281528383830111156121e357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461221157600080fd5b919050565b8035801515811461221157600080fd5b60006020828403121561223857600080fd5b611468826121fa565b6000806040838503121561225457600080fd5b61225d836121fa565b915061226b602084016121fa565b90509250929050565b60008060006060848603121561228957600080fd5b612292846121fa565b92506122a0602085016121fa565b9150604084013590509250925092565b600080600080608085870312156122c657600080fd5b6122cf856121fa565b93506122dd602086016121fa565b925060408501359150606085013567ffffffffffffffff81111561230057600080fd5b8501601f8101871361231157600080fd5b612320878235602084016121a2565b91505092959194509250565b6000806040838503121561233f57600080fd5b612348836121fa565b915061226b60208401612216565b6000806040838503121561236957600080fd5b612372836121fa565b946020939093013593505050565b6000602080838503121561239357600080fd5b823567ffffffffffffffff808211156123ab57600080fd5b818501915085601f8301126123bf57600080fd5b8135818111156123d1576123d16128a9565b8060051b91506123e2848301612747565b8181528481019084860184860187018a10156123fd57600080fd5b600095505b8386101561242757612413816121fa565b835260019590950194918601918601612402565b5098975050505050505050565b60006020828403121561244657600080fd5b61146882612216565b60006020828403121561246157600080fd5b8135611468816128bf565b60006020828403121561247e57600080fd5b8151611468816128bf565b60006020828403121561249b57600080fd5b813567ffffffffffffffff8111156124b257600080fd5b8201601f810184136124c357600080fd5b6117b7848235602084016121a2565b6000602082840312156124e457600080fd5b5035919050565b600081518084526125038160208601602086016127bb565b601f01601f19169290920160200192915050565b60008451602061252a8285838a016127bb565b85519184019161253d8184848a016127bb565b8554920191600090600181811c908083168061255a57607f831692505b85831081141561257857634e487b7160e01b85526022600452602485fd5b80801561258c576001811461259d576125ca565b60ff198516885283880195506125ca565b60008b81526020902060005b858110156125c25781548a8201529084019088016125a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260e908301846124eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561265057835183529284019291840191600101612634565b50909695505050505050565b60208152600061146860208301846124eb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612770576127706128a9565b604052919050565b6000821982111561278b5761278b612851565b500190565b60008261279f5761279f612867565b500490565b6000828210156127b6576127b6612851565b500390565b60005b838110156127d65781810151838201526020016127be565b838111156113095750506000910152565b600181811c908216806127fb57607f821691505b6020821081141561281c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283657612836612851565b5060010190565b60008261284c5761284c612867565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bc057600080fdfea2646970667358221220340379763a02979164f26cb0679466d68e850b9d5d6f19fae6b359078b44896564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002354686f72746c6573204e465420436c7562202d205370656369616c2045646974696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008544e43202d2053450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51727a314158713565435a5567583979397666394c4770394c31553938766f4461563576654e35566938676e2f00000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002354686f72746c6573204e465420436c7562202d205370656369616c2045646974696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008544e43202d2053450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51727a314158713565435a5567583979397666394c4770394c31553938766f4461563576654e35566938676e2f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Thortles NFT Club - Special Edition
Arg [1] : _symbol (string): TNC - SE
Arg [2] : _initBaseURI (string): ipfs://QmQrz1AXq5eCZUgX9y9vf9LGp9L1U98voDaV5veN5Vi8gn/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [4] : 54686f72746c6573204e465420436c7562202d205370656369616c2045646974
Arg [5] : 696f6e0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 544e43202d205345000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d51727a314158713565435a5567583979397666394c4770
Arg [10] : 394c31553938766f4461563576654e35566938676e2f00000000000000000000
Deployed ByteCode Sourcemap
47470:5924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41237:224;;;;;;;;;;-1:-1:-1;41237:224:0;;;;;:::i;:::-;;:::i;:::-;;;8550:14:1;;8543:22;8525:41;;8513:2;8498:18;41237:224:0;;;;;;;;51820:71;;;;;;;;;;-1:-1:-1;51820:71:0;;;;;:::i;:::-;;:::i;:::-;;28731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30290:221::-;;;;;;;;;;-1:-1:-1;30290:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7211:32:1;;;7193:51;;7181:2;7166:18;30290:221:0;7047:203:1;50896:114:0;;;;;;;;;;-1:-1:-1;50896:114:0;;;;;:::i;:::-;;:::i;29813:411::-;;;;;;;;;;-1:-1:-1;29813:411:0;;;;;:::i;:::-;;:::i;51156:133::-;;;;;;;;;;-1:-1:-1;51156:133:0;;;;;:::i;:::-;;:::i;53093:298::-;;;:::i;41877:113::-;;;;;;;;;;-1:-1:-1;41965:10:0;:17;41877:113;;;19268:25:1;;;19256:2;19241:18;41877:113:0;19122:177:1;47666:32:0;;;;;;;;;;;;;;;;31040:339;;;;;;;;;;-1:-1:-1;31040:339:0;;;;;:::i;:::-;;:::i;47897:33::-;;;;;;;;;;-1:-1:-1;47897:33:0;;;;;;;;;;;41545:256;;;;;;;;;;-1:-1:-1;41545:256:0;;;;;:::i;:::-;;:::i;31450:185::-;;;;;;;;;;-1:-1:-1;31450:185:0;;;;;:::i;:::-;;:::i;49981:330::-;;;;;;;;;;-1:-1:-1;49981:330:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47703:56::-;;;;;;;;;;;;;;;;42067:233;;;;;;;;;;-1:-1:-1;42067:233:0;;;;;:::i;:::-;;:::i;51388:96::-;;;;;;;;;;-1:-1:-1;51388:96:0;;;;;:::i;:::-;;:::i;47817:25::-;;;;;;;;;;-1:-1:-1;47817:25:0;;;;;;;;28425:239;;;;;;;;;;-1:-1:-1;28425:239:0;;;;;:::i;:::-;;:::i;47847:45::-;;;;;;;;;;-1:-1:-1;47847:45:0;;;;;;;;;;;47563:21;;;;;;;;;;;;;:::i;28155:208::-;;;;;;;;;;-1:-1:-1;28155:208:0;;;;;:::i;:::-;;:::i;7701:103::-;;;;;;;;;;;;;:::i;7050:87::-;;;;;;;;;;-1:-1:-1;7123:6:0;;-1:-1:-1;;;;;7123:6:0;7050:87;;47764:46;;;;;;;;;;;;;;;;28900:104;;;;;;;;;;;;;:::i;48565:970::-;;;;;;:::i;:::-;;:::i;30583:155::-;;;;;;;;;;-1:-1:-1;30583:155:0;;;;;:::i;:::-;;:::i;31706:328::-;;;;;;;;;;-1:-1:-1;31706:328:0;;;;;:::i;:::-;;:::i;47937:63::-;;;;;;;;;;-1:-1:-1;47937:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52270:115;;;;;;;;;;-1:-1:-1;52270:115:0;;;;;:::i;:::-;;:::i;49673:188::-;;;;;;;;;;-1:-1:-1;49673:188:0;;;;;:::i;:::-;;:::i;47589:37::-;;;;;;;;;;;;;:::i;50405:378::-;;;;;;;;;;-1:-1:-1;50405:378:0;;;;;:::i;:::-;;:::i;52520:274::-;;;;;;;;;;-1:-1:-1;52520:274:0;;;;;:::i;:::-;;:::i;47631:30::-;;;;;;;;;;;;;;;;51601:120;;;;;;;;;;-1:-1:-1;51601:120:0;;;;;:::i;:::-;;:::i;30809:164::-;;;;;;;;;;-1:-1:-1;30809:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30930:25:0;;;30906:4;30930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30809:164;7959:201;;;;;;;;;;-1:-1:-1;7959:201:0;;;;;:::i;:::-;;:::i;52001:90::-;;;;;;;;;;-1:-1:-1;52001:90:0;;;;;:::i;:::-;;:::i;41237:224::-;41339:4;-1:-1:-1;;;;;;41363:50:0;;-1:-1:-1;;;41363:50:0;;:90;;;41417:36;41441:11;41417:23;:36::i;:::-;41356:97;41237:224;-1:-1:-1;;41237:224:0:o;51820:71::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;;;;;;;;;51871:6:::1;:14:::0;;-1:-1:-1;;51871:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51820:71::o;28731:100::-;28785:13;28818:5;28811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28731:100;:::o;30290:221::-;30366:7;33633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33633:16:0;30386:73;;;;-1:-1:-1;;;30386:73:0;;16083:2:1;30386:73:0;;;16065:21:1;16122:2;16102:18;;;16095:30;16161:34;16141:18;;;16134:62;-1:-1:-1;;;16212:18:1;;;16205:42;16264:19;;30386:73:0;15881:408:1;30386:73:0;-1:-1:-1;30479:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30479:24:0;;30290:221::o;50896:114::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;50972:13:::1;:32:::0;50896:114::o;29813:411::-;29894:13;29910:23;29925:7;29910:14;:23::i;:::-;29894:39;;29958:5;-1:-1:-1;;;;;29952:11:0;:2;-1:-1:-1;;;;;29952:11:0;;;29944:57;;;;-1:-1:-1;;;29944:57:0;;18091:2:1;29944:57:0;;;18073:21:1;18130:2;18110:18;;;18103:30;18169:34;18149:18;;;18142:62;-1:-1:-1;;;18220:18:1;;;18213:31;18261:19;;29944:57:0;17889:397:1;29944:57:0;5854:10;-1:-1:-1;;;;;30036:21:0;;;;:62;;-1:-1:-1;30061:37:0;30078:5;5854:10;30809:164;:::i;30061:37::-;30014:168;;;;-1:-1:-1;;;30014:168:0;;13284:2:1;30014:168:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;13433:26;13413:18;;;13406:54;13477:19;;30014:168:0;13082:420:1;30014:168:0;30195:21;30204:2;30208:7;30195:8;:21::i;:::-;29883:341;29813:411;;:::o;51156:133::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;51238:37:::1;:45:::0;51156:133::o;53093:298::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;53158:6:::1;::::0;::::1;;53157:7;53149:43;;;::::0;-1:-1:-1;;;53149:43:0;;10949:2:1;53149:43:0::1;::::0;::::1;10931:21:1::0;10988:2;10968:18;;;10961:30;11027:25;11007:18;;;11000:53;11070:18;;53149:43:0::1;10747:347:1::0;53149:43:0::1;53212:14;::::0;;;::::1;;;53211:15;53203:65;;;::::0;-1:-1:-1;;;53203:65:0;;12060:2:1;53203:65:0::1;::::0;::::1;12042:21:1::0;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;-1:-1:-1;;;12189:18:1;;;12182:35;12234:19;;53203:65:0::1;11858:401:1::0;53203:65:0::1;53283:12;53309:7;7123:6:::0;;-1:-1:-1;;;;;7123:6:0;;7050:87;53309:7:::1;-1:-1:-1::0;;;;;53301:21:0::1;53330;53301:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53282:74;;;53375:7;53367:16;;;::::0;::::1;;53138:253;53093:298::o:0;31040:339::-;31235:41;5854:10;31268:7;31235:18;:41::i;:::-;31227:103;;;;-1:-1:-1;;;31227:103:0;;;;;;;:::i;:::-;31343:28;31353:4;31359:2;31363:7;31343:9;:28::i;41545:256::-;41642:7;41678:23;41695:5;41678:16;:23::i;:::-;41670:5;:31;41662:87;;;;-1:-1:-1;;;41662:87:0;;9003:2:1;41662:87:0;;;8985:21:1;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:1;;;9125:41;9183:19;;41662:87:0;8801:407:1;41662:87:0;-1:-1:-1;;;;;;41767:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41545:256::o;31450:185::-;31588:39;31605:4;31611:2;31615:7;31588:39;;;;;;;;;;;;:16;:39::i;49981:330::-;50041:16;50066:23;50092:17;50102:6;50092:9;:17::i;:::-;50066:43;;50116:25;50158:15;50144:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50144:30:0;;50116:58;;50186:9;50181:103;50201:15;50197:1;:19;50181:103;;;50246:30;50266:6;50274:1;50246:19;:30::i;:::-;50232:8;50241:1;50232:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50218:3;;;;:::i;:::-;;;;50181:103;;;-1:-1:-1;50297:8:0;49981:330;-1:-1:-1;;;49981:330:0:o;42067:233::-;42142:7;42178:30;41965:10;:17;;41877:113;42178:30;42170:5;:38;42162:95;;;;-1:-1:-1;;;42162:95:0;;18911:2:1;42162:95:0;;;18893:21:1;18950:2;18930:18;;;18923:30;18989:34;18969:18;;;18962:62;-1:-1:-1;;;19040:18:1;;;19033:42;19092:19;;42162:95:0;18709:408:1;42162:95:0;42275:10;42286:5;42275:17;;;;;;;;:::i;:::-;;;;;;;;;42268:24;;42067:233;;;:::o;51388:96::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;51458:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51388:96:::0;:::o;28425:239::-;28497:7;28533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28533:16:0;28568:19;28560:73;;;;-1:-1:-1;;;28560:73:0;;14546:2:1;28560:73:0;;;14528:21:1;14585:2;14565:18;;;14558:30;14624:34;14604:18;;;14597:62;-1:-1:-1;;;14675:18:1;;;14668:39;14724:19;;28560:73:0;14344:405:1;47563:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28155:208::-;28227:7;-1:-1:-1;;;;;28255:19:0;;28247:74;;;;-1:-1:-1;;;28247:74:0;;14135:2:1;28247:74:0;;;14117:21:1;14174:2;14154:18;;;14147:30;14213:34;14193:18;;;14186:62;-1:-1:-1;;;14264:18:1;;;14257:40;14314:19;;28247:74:0;13933:406:1;28247:74:0;-1:-1:-1;;;;;;28339:16:0;;;;;:9;:16;;;;;;;28155:208::o;7701:103::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;7766:30:::1;7793:1;7766:18;:30::i;:::-;7701:103::o:0;28900:104::-;28956:13;28989:7;28982:14;;;;;:::i;48565:970::-;48631:6;;;;48630:7;48622:42;;;;-1:-1:-1;;;48622:42:0;;9834:2:1;48622:42:0;;;9816:21:1;9873:2;9853:18;;;9846:30;-1:-1:-1;;;9892:18:1;;;9885:52;9954:18;;48622:42:0;9632:346:1;48622:42:0;48671:14;48688:13;41965:10;:17;;41877:113;48688:13;48671:30;;48730:1;48716:11;:15;48708:67;;;;-1:-1:-1;;;48708:67:0;;16496:2:1;48708:67:0;;;16478:21:1;16535:2;16515:18;;;16508:30;16574:34;16554:18;;;16547:62;-1:-1:-1;;;16625:18:1;;;16618:37;16672:19;;48708:67:0;16294:403:1;48708:67:0;48805:13;;48790:11;:28;;48782:77;;;;-1:-1:-1;;;48782:77:0;;12879:2:1;48782:77:0;;;12861:21:1;12918:2;12898:18;;;12891:30;12957:34;12937:18;;;12930:62;-1:-1:-1;;;13008:18:1;;;13001:34;13052:19;;48782:77:0;12677:400:1;48782:77:0;48898:9;;48874:20;48883:11;48874:6;:20;:::i;:::-;:33;;48866:77;;;;-1:-1:-1;;;48866:77:0;;14956:2:1;48866:77:0;;;14938:21:1;14995:2;14975:18;;;14968:30;15034:33;15014:18;;;15007:61;15085:18;;48866:77:0;14754:355:1;48866:77:0;7123:6;;-1:-1:-1;;;;;7123:6:0;48956:10;:21;48952:428;;48993:26;;;;;;;;:34;;:26;:34;48990:382;;;49052:35;49076:10;49052:23;:35::i;:::-;49044:105;;;;-1:-1:-1;;;49044:105:0;;13709:2:1;49044:105:0;;;13691:21:1;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;13858:27;13838:18;;;13831:55;13903:19;;49044:105:0;13507:421:1;49044:105:0;49212:10;49164:24;49191:32;;;:20;:32;;;;;;49281:37;;49247:30;49266:11;49191:32;49247:30;:::i;:::-;:71;;49239:121;;;;-1:-1:-1;;;49239:121:0;;15316:2:1;49239:121:0;;;15298:21:1;15355:2;15335:18;;;15328:30;15394:34;15374:18;;;15367:62;-1:-1:-1;;;15445:18:1;;;15438:35;15490:19;;49239:121:0;15114:401:1;49239:121:0;49029:343;48990:382;49409:1;49392:138;49417:11;49412:1;:16;49392:138;;49467:10;49446:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;49489:33:0;;-1:-1:-1;49499:10:0;49511;49520:1;49511:6;:10;:::i;:::-;49489:9;:33::i;:::-;49430:3;;;;:::i;:::-;;;;49392:138;;30583:155;30678:52;5854:10;30711:8;30721;30678:18;:52::i;31706:328::-;31881:41;5854:10;31914:7;31881:18;:41::i;:::-;31873:103;;;;-1:-1:-1;;;31873:103:0;;;;;;;:::i;:::-;31987:39;32001:4;32007:2;32011:7;32020:5;31987:13;:39::i;:::-;31706:328;;;;:::o;52270:115::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;52345:26:::1;:34:::0;;;::::1;;;;-1:-1:-1::0;;52345:34:0;;::::1;::::0;;;::::1;::::0;;52270:115::o;49673:188::-;-1:-1:-1;;;;;49761:38:0;;49742:4;49761:38;;;:31;:38;;;;;;;;49757:78;;;-1:-1:-1;49821:4:0;;49673:188;-1:-1:-1;49673:188:0:o;49757:78::-;-1:-1:-1;49850:5:0;;49673:188;-1:-1:-1;49673:188:0:o;47589:37::-;;;;;;;:::i;50405:378::-;33609:4;33633:16;;;:7;:16;;;;;;50478:13;;-1:-1:-1;;;;;33633:16:0;50500:76;;;;-1:-1:-1;;;50500:76:0;;17675:2:1;50500:76:0;;;17657:21:1;17714:2;17694:18;;;17687:30;17753:34;17733:18;;;17726:62;-1:-1:-1;;;17804:18:1;;;17797:45;17859:19;;50500:76:0;17473:411:1;50500:76:0;50589:28;50620:10;:8;:10::i;:::-;50589:41;;50675:1;50650:14;50644:28;:32;:133;;;;;;;;;;;;;;;;;50712:14;50728:18;:7;:16;:18::i;:::-;50748:13;50695:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50644:133;50637:140;50405:378;-1:-1:-1;;;50405:378:0:o;52520:274::-;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;52618:15:::1;52613:174;52649:9;:16;52639:7;:26;52613:174;;;52693:38;52712:9;52722:7;52712:18;;;;;;;;:::i;:::-;;;;;;;52693;:38::i;:::-;52746:27;:29:::0;;;:27:::1;:29;::::0;::::1;:::i;:::-;;;;;;52667:9;;;;;:::i;:::-;;;;52613:174;;51601:120:::0;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;51683:32;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7959:201::-:0;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8048:22:0;::::1;8040:73;;;::::0;-1:-1:-1;;;8040:73:0;;10185:2:1;8040:73:0::1;::::0;::::1;10167:21:1::0;10224:2;10204:18;;;10197:30;10263:34;10243:18;;;10236:62;-1:-1:-1;;;10314:18:1;;;10307:36;10360:19;;8040:73:0::1;9983:402:1::0;8040:73:0::1;8124:28;8143:8;8124:18;:28::i;52001:90::-:0;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;52063:14:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52063:22:0;;::::1;::::0;;;::::1;::::0;;52001:90::o;27786:305::-;27888:4;-1:-1:-1;;;;;;27925:40:0;;-1:-1:-1;;;27925:40:0;;:105;;-1:-1:-1;;;;;;;27982:48:0;;-1:-1:-1;;;27982:48:0;27925:105;:158;;;-1:-1:-1;;;;;;;;;;19591:40:0;;;28047:36;19482:157;37526:174;37601:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37601:29:0;-1:-1:-1;;;;;37601:29:0;;;;;;;;:24;;37655:23;37601:24;37655:14;:23::i;:::-;-1:-1:-1;;;;;37646:46:0;;;;;;;;;;;37526:174;;:::o;33838:348::-;33931:4;33633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33633:16:0;33948:73;;;;-1:-1:-1;;;33948:73:0;;12466:2:1;33948:73:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;-1:-1:-1;;;12595:18:1;;;12588:42;12647:19;;33948:73:0;12264:408:1;33948:73:0;34032:13;34048:23;34063:7;34048:14;:23::i;:::-;34032:39;;34101:5;-1:-1:-1;;;;;34090:16:0;:7;-1:-1:-1;;;;;34090:16:0;;:51;;;;34134:7;-1:-1:-1;;;;;34110:31:0;:20;34122:7;34110:11;:20::i;:::-;-1:-1:-1;;;;;34110:31:0;;34090:51;:87;;;-1:-1:-1;;;;;;30930:25:0;;;30906:4;30930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34145:32;34082:96;33838:348;-1:-1:-1;;;;33838:348:0:o;36830:578::-;36989:4;-1:-1:-1;;;;;36962:31:0;:23;36977:7;36962:14;:23::i;:::-;-1:-1:-1;;;;;36962:31:0;;36954:85;;;;-1:-1:-1;;;36954:85:0;;17265:2:1;36954:85:0;;;17247:21:1;17304:2;17284:18;;;17277:30;17343:34;17323:18;;;17316:62;-1:-1:-1;;;17394:18:1;;;17387:39;17443:19;;36954:85:0;17063:405:1;36954:85:0;-1:-1:-1;;;;;37058:16:0;;37050:65;;;;-1:-1:-1;;;37050:65:0;;11301:2:1;37050:65:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:34;11359:18;;;11352:62;-1:-1:-1;;;11430:18:1;;;11423:34;11474:19;;37050:65:0;11099:400:1;37050:65:0;37128:39;37149:4;37155:2;37159:7;37128:20;:39::i;:::-;37232:29;37249:1;37253:7;37232:8;:29::i;:::-;-1:-1:-1;;;;;37274:15:0;;;;;;:9;:15;;;;;:20;;37293:1;;37274:15;:20;;37293:1;;37274:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37305:13:0;;;;;;:9;:13;;;;;:18;;37322:1;;37305:13;:18;;37322:1;;37305:18;:::i;:::-;;;;-1:-1:-1;;37334:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37334:21:0;-1:-1:-1;;;;;37334:21:0;;;;;;;;;37373:27;;37334:16;;37373:27;;;;;;;36830:578;;;:::o;8320:191::-;8413:6;;;-1:-1:-1;;;;;8430:17:0;;;-1:-1:-1;;;;;;8430:17:0;;;;;;;8463:40;;8413:6;;;8430:17;8413:6;;8463:40;;8394:16;;8463:40;8383:128;8320:191;:::o;34528:110::-;34604:26;34614:2;34618:7;34604:26;;;;;;;;;;;;:9;:26::i;37842:315::-;37997:8;-1:-1:-1;;;;;37988:17:0;:5;-1:-1:-1;;;;;37988:17:0;;;37980:55;;;;-1:-1:-1;;;37980:55:0;;11706:2:1;37980:55:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784:27;11764:18;;;11757:55;11829:18;;37980:55:0;11504:349:1;37980:55:0;-1:-1:-1;;;;;38046:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38046:46:0;;;;;;;;;;38108:41;;8525::1;;;38108::0;;8498:18:1;38108:41:0;;;;;;;37842:315;;;:::o;32916:::-;33073:28;33083:4;33089:2;33093:7;33073:9;:28::i;:::-;33120:48;33143:4;33149:2;33153:7;33162:5;33120:22;:48::i;:::-;33112:111;;;;-1:-1:-1;;;33112:111:0;;;;;;;:::i;48255:102::-;48315:13;48344:7;48337:14;;;;;:::i;3336:723::-;3392:13;3613:10;3609:53;;-1:-1:-1;;3640:10:0;;;;;;;;;;;;-1:-1:-1;;;3640:10:0;;;;;3336:723::o;3609:53::-;3687:5;3672:12;3728:78;3735:9;;3728:78;;3761:8;;;;:::i;:::-;;-1:-1:-1;3784:10:0;;-1:-1:-1;3792:2:0;3784:10;;:::i;:::-;;;3728:78;;;3816:19;3848:6;3838:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3838:17:0;;3816:39;;3866:154;3873:10;;3866:154;;3900:11;3910:1;3900:11;;:::i;:::-;;-1:-1:-1;3969:10:0;3977:2;3969:5;:10;:::i;:::-;3956:24;;:2;:24;:::i;:::-;3943:39;;3926:6;3933;3926:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3926:56:0;;;;;;;;-1:-1:-1;3997:11:0;4006:2;3997:11;;:::i;:::-;;;3866:154;;52802:123;7123:6;;-1:-1:-1;;;;;7123:6:0;5854:10;7270:23;7262:68;;;;-1:-1:-1;;;7262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52873:37:0::1;;::::0;;;:31:::1;:37;::::0;;;;:44;;-1:-1:-1;;52873:44:0::1;52913:4;52873:44;::::0;;52802:123::o;42913:589::-;-1:-1:-1;;;;;43119:18:0;;43115:187;;43154:40;43186:7;44329:10;:17;;44302:24;;;;:15;:24;;;;;:44;;;44357:24;;;;;;;;;;;;44225:164;43154:40;43115:187;;;43224:2;-1:-1:-1;;;;;43216:10:0;:4;-1:-1:-1;;;;;43216:10:0;;43212:90;;43243:47;43276:4;43282:7;43243:32;:47::i;:::-;-1:-1:-1;;;;;43316:16:0;;43312:183;;43349:45;43386:7;43349:36;:45::i;43312:183::-;43422:4;-1:-1:-1;;;;;43416:10:0;:2;-1:-1:-1;;;;;43416:10:0;;43412:83;;43443:40;43471:2;43475:7;43443:27;:40::i;34865:321::-;34995:18;35001:2;35005:7;34995:5;:18::i;:::-;35046:54;35077:1;35081:2;35085:7;35094:5;35046:22;:54::i;:::-;35024:154;;;;-1:-1:-1;;;35024:154:0;;;;;;;:::i;38722:799::-;38877:4;-1:-1:-1;;;;;38898:13:0;;9661:20;9709:8;38894:620;;38934:72;;-1:-1:-1;;;38934:72:0;;-1:-1:-1;;;;;38934:36:0;;;;;:72;;5854:10;;38985:4;;38991:7;;39000:5;;38934:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38934:72:0;;;;;;;;-1:-1:-1;;38934:72:0;;;;;;;;;;;;:::i;:::-;;;38930:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39176:13:0;;39172:272;;39219:60;;-1:-1:-1;;;39219:60:0;;;;;;;:::i;39172:272::-;39394:6;39388:13;39379:6;39375:2;39371:15;39364:38;38930:529;-1:-1:-1;;;;;;39057:51:0;-1:-1:-1;;;39057:51:0;;-1:-1:-1;39050:58:0;;38894:620;-1:-1:-1;39498:4:0;38722:799;;;;;;:::o;45016:988::-;45282:22;45332:1;45307:22;45324:4;45307:16;:22::i;:::-;:26;;;;:::i;:::-;45344:18;45365:26;;;:17;:26;;;;;;45282:51;;-1:-1:-1;45498:28:0;;;45494:328;;-1:-1:-1;;;;;45565:18:0;;45543:19;45565:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45616:30;;;;;;:44;;;45733:30;;:17;:30;;;;;:43;;;45494:328;-1:-1:-1;45918:26:0;;;;:17;:26;;;;;;;;45911:33;;;-1:-1:-1;;;;;45962:18:0;;;;;:12;:18;;;;;:34;;;;;;;45955:41;45016:988::o;46299:1079::-;46577:10;:17;46552:22;;46577:21;;46597:1;;46577:21;:::i;:::-;46609:18;46630:24;;;:15;:24;;;;;;47003:10;:26;;46552:46;;-1:-1:-1;46630:24:0;;46552:46;;47003:26;;;;;;:::i;:::-;;;;;;;;;46981:48;;47067:11;47042:10;47053;47042:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47147:28;;;:15;:28;;;;;;;:41;;;47319:24;;;;;47312:31;47354:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46370:1008;;;46299:1079;:::o;43803:221::-;43888:14;43905:20;43922:2;43905:16;:20::i;:::-;-1:-1:-1;;;;;43936:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43981:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43803:221:0:o;35522:382::-;-1:-1:-1;;;;;35602:16:0;;35594:61;;;;-1:-1:-1;;;35594:61:0;;15722:2:1;35594:61:0;;;15704:21:1;;;15741:18;;;15734:30;15800:34;15780:18;;;15773:62;15852:18;;35594:61:0;15520:356:1;35594:61:0;33609:4;33633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33633:16:0;:30;35666:58;;;;-1:-1:-1;;;35666:58:0;;10592:2:1;35666:58:0;;;10574:21:1;10631:2;10611:18;;;10604:30;10670;10650:18;;;10643:58;10718:18;;35666:58:0;10390:352:1;35666:58:0;35737:45;35766:1;35770:2;35774:7;35737:20;:45::i;:::-;-1:-1:-1;;;;;35795:13:0;;;;;;:9;:13;;;;;:18;;35812:1;;35795:13;:18;;35812:1;;35795:18;:::i;:::-;;;;-1:-1:-1;;35824:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35824:21:0;-1:-1:-1;;;;;35824:21:0;;;;;;;;35863:33;;35824:16;;;35863:33;;35824:16;;35863:33;35522:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:1527::-;5529:3;5567:6;5561:13;5593:4;5606:51;5650:6;5645:3;5640:2;5632:6;5628:15;5606:51;:::i;:::-;5720:13;;5679:16;;;;5742:55;5720:13;5679:16;5764:15;;;5742:55;:::i;:::-;5886:13;;5819:20;;;5859:1;;5946;5968:18;;;;6021;;;;6048:93;;6126:4;6116:8;6112:19;6100:31;;6048:93;6189:2;6179:8;6176:16;6156:18;6153:40;6150:167;;;-1:-1:-1;;;6216:33:1;;6272:4;6269:1;6262:15;6302:4;6223:3;6290:17;6150:167;6333:18;6360:110;;;;6484:1;6479:328;;;;6326:481;;6360:110;-1:-1:-1;;6395:24:1;;6381:39;;6440:20;;;;-1:-1:-1;6360:110:1;;6479:328;19657:1;19650:14;;;19694:4;19681:18;;6574:1;6588:169;6602:8;6599:1;6596:15;6588:169;;;6684:14;;6669:13;;;6662:37;6727:16;;;;6619:10;;6588:169;;;6592:3;;6788:8;6781:5;6777:20;6770:27;;6326:481;-1:-1:-1;6823:3:1;;5305:1527;-1:-1:-1;;;;;;;;;;;5305:1527:1:o;7255:488::-;-1:-1:-1;;;;;7524:15:1;;;7506:34;;7576:15;;7571:2;7556:18;;7549:43;7623:2;7608:18;;7601:34;;;7671:3;7666:2;7651:18;;7644:31;;;7449:4;;7692:45;;7717:19;;7709:6;7692:45;:::i;:::-;7684:53;7255:488;-1:-1:-1;;;;;;7255:488:1:o;7748:632::-;7919:2;7971:21;;;8041:13;;7944:18;;;8063:22;;;7890:4;;7919:2;8142:15;;;;8116:2;8101:18;;;7890:4;8185:169;8199:6;8196:1;8193:13;8185:169;;;8260:13;;8248:26;;8329:15;;;;8294:12;;;;8221:1;8214:9;8185:169;;;-1:-1:-1;8371:3:1;;7748:632;-1:-1:-1;;;;;;7748:632:1:o;8577:219::-;8726:2;8715:9;8708:21;8689:4;8746:44;8786:2;8775:9;8771:18;8763:6;8746:44;:::i;9213:414::-;9415:2;9397:21;;;9454:2;9434:18;;;9427:30;9493:34;9488:2;9473:18;;9466:62;-1:-1:-1;;;9559:2:1;9544:18;;9537:48;9617:3;9602:19;;9213:414::o;16702:356::-;16904:2;16886:21;;;16923:18;;;16916:30;16982:34;16977:2;16962:18;;16955:62;17049:2;17034:18;;16702:356::o;18291:413::-;18493:2;18475:21;;;18532:2;18512:18;;;18505:30;18571:34;18566:2;18551:18;;18544:62;-1:-1:-1;;;18637:2:1;18622:18;;18615:47;18694:3;18679:19;;18291:413::o;19304:275::-;19375:2;19369:9;19440:2;19421:13;;-1:-1:-1;;19417:27:1;19405:40;;19475:18;19460:34;;19496:22;;;19457:62;19454:88;;;19522:18;;:::i;:::-;19558:2;19551:22;19304:275;;-1:-1:-1;19304:275:1:o;19710:128::-;19750:3;19781:1;19777:6;19774:1;19771:13;19768:39;;;19787:18;;:::i;:::-;-1:-1:-1;19823:9:1;;19710:128::o;19843:120::-;19883:1;19909;19899:35;;19914:18;;:::i;:::-;-1:-1:-1;19948:9:1;;19843:120::o;19968:125::-;20008:4;20036:1;20033;20030:8;20027:34;;;20041:18;;:::i;:::-;-1:-1:-1;20078:9:1;;19968:125::o;20098:258::-;20170:1;20180:113;20194:6;20191:1;20188:13;20180:113;;;20270:11;;;20264:18;20251:11;;;20244:39;20216:2;20209:10;20180:113;;;20311:6;20308:1;20305:13;20302:48;;;-1:-1:-1;;20346:1:1;20328:16;;20321:27;20098:258::o;20361:380::-;20440:1;20436:12;;;;20483;;;20504:61;;20558:4;20550:6;20546:17;20536:27;;20504:61;20611:2;20603:6;20600:14;20580:18;20577:38;20574:161;;;20657:10;20652:3;20648:20;20645:1;20638:31;20692:4;20689:1;20682:15;20720:4;20717:1;20710:15;20574:161;;20361:380;;;:::o;20746:135::-;20785:3;-1:-1:-1;;20806:17:1;;20803:43;;;20826:18;;:::i;:::-;-1:-1:-1;20873:1:1;20862:13;;20746:135::o;20886:112::-;20918:1;20944;20934:35;;20949:18;;:::i;:::-;-1:-1:-1;20983:9:1;;20886:112::o;21003:127::-;21064:10;21059:3;21055:20;21052:1;21045:31;21095:4;21092:1;21085:15;21119:4;21116:1;21109:15;21135:127;21196:10;21191:3;21187:20;21184:1;21177:31;21227:4;21224:1;21217:15;21251:4;21248:1;21241:15;21267:127;21328:10;21323:3;21319:20;21316:1;21309:31;21359:4;21356:1;21349:15;21383:4;21380:1;21373:15;21399:127;21460:10;21455:3;21451:20;21448:1;21441:31;21491:4;21488:1;21481:15;21515:4;21512:1;21505:15;21531:127;21592:10;21587:3;21583:20;21580:1;21573:31;21623:4;21620:1;21613:15;21647:4;21644:1;21637:15;21663:131;-1:-1:-1;;;;;;21737:32:1;;21727:43;;21717:71;;21784:1;21781;21774:12
Swarm Source
ipfs://340379763a02979164f26cb0679466d68e850b9d5d6f19fae6b359078b448965
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.