Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,222 DF-ART
Holders
751
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DF-ARTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DFUNNY
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-14 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: tests/DFART.sol // ERC721A Contracts v4.2.3 // Devcode: 21.91.92.30.38 pragma solidity ^0.8.4; contract DFUNNY is ERC721A, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 2222; bool public _isSaleActive = false; bool public _revealed = true; uint256 public mintPrice = 0.001 ether; uint256 public maxBalance = 3; uint256 public maxMint = 3; string baseURI; string public notRevealedUri; string public baseExtension = ".json"; mapping(uint256 => string) private _tokenURIs; constructor(string memory initBaseURI, string memory initNotRevealedUri) ERC721A("DFUNNY", "DF-ART") { setBaseURI(initBaseURI); setNotRevealedURI(initNotRevealedUri); } function getNum() public view returns (uint) { return totalSupply(); } function mintPublic(uint256 tokenQuantity) public payable { require( totalSupply() + tokenQuantity <= MAX_SUPPLY, "Sale would exceed max supply" ); require(_isSaleActive, "Sale must be active to mint NFT"); require(tokenQuantity <= maxMint, "Mint too many tokens at a time"); require( balanceOf(msg.sender) + tokenQuantity <= maxBalance, "Sale would exceed max balance" ); require(tokenQuantity * mintPrice <= msg.value, "Not enough ether"); _safeMint(msg.sender, tokenQuantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "URI query for nonexistent token" ); if (_revealed == false) { return notRevealedUri; } string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); if (bytes(base).length == 0) { return _tokenURI; } if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function flipSaleActive() public onlyOwner { _isSaleActive = !_isSaleActive; } function flipReveal() public onlyOwner { _revealed = !_revealed; } function mintOwner() public onlyOwner { _safeMint(msg.sender, 1); } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setMaxBalance(uint256 _maxBalance) public onlyOwner { maxBalance = _maxBalance; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"payable","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":"payable","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":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805461ffff60a01b1916600160a81b17905566038d7ea4c680006009556003600a819055600b5560c06040526005608081905264173539b7b760d91b60a09081526200005191600e919062000213565b503480156200005f57600080fd5b506040516200205c3803806200205c833981016040819052620000829162000370565b604051806040016040528060068152602001654446554e4e5960d01b8152506040518060400160405280600681526020016511118b50549560d21b8152508160029080519060200190620000d892919062000213565b508051620000ee90600390602084019062000213565b5050600080555062000100336200011e565b6200010b8262000170565b620001168162000193565b50506200042d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017a620001b2565b80516200018f90600c90602084019062000213565b5050565b6200019d620001b2565b80516200018f90600d90602084019062000213565b6008546001600160a01b03163314620002115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200022190620003da565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b600082601f830112620002cb57600080fd5b81516001600160401b0380821115620002e857620002e862000417565b604051601f8301601f19908116603f0116810190828211818310171562000313576200031362000417565b816040528381526020925086838588010111156200033057600080fd5b600091505b8382101562000354578582018301518183018401529082019062000335565b83821115620003665760008385830101525b9695505050505050565b600080604083850312156200038457600080fd5b82516001600160401b03808211156200039c57600080fd5b620003aa86838701620002b9565b93506020850151915080821115620003c157600080fd5b50620003d085828601620002b9565b9150509250929050565b600181811c90821680620003ef57607f821691505b602082108114156200041157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c1f806200043d6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c51461059f578063efd0cbf9146105e8578063f2c4ce1e146105fb578063f2fde38b1461061b578063f4a0a5281461063b57600080fd5b8063c668286214610520578063c87b56dd14610535578063cecb06d014610555578063da3ef23f1461056a578063de8b51e11461058a57600080fd5b80638da5cb5b116100f25780638da5cb5b1461049a57806395d89b41146104b85780639d51d9b7146104cd578063a22cb465146104ed578063b88d4fde1461050d57600080fd5b806370a0823114610439578063715018a61461045957806373ad468a1461046e5780637501f7411461048457600080fd5b806342842e0e116101a65780636352211e116101755780636352211e146103ac57806367e0badb146103cc5780636817c76c146103e15780636ebeac85146103f75780637080d6fc1461041857600080fd5b806342842e0e1461033957806351cff8d91461034c578063547520fe1461036c57806355f804b31461038c57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611878565b61065b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106ad565b60405161024b9190611a70565b34801561028257600080fd5b506102966102913660046118fb565b61073f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50610269610783565b6102d66102d136600461184e565b610811565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d661030936600461175a565b6108b1565b34801561031a57600080fd5b506102ed6108ae81565b34801561033057600080fd5b506102d6610a42565b6102d661034736600461175a565b610a6b565b34801561035857600080fd5b506102d661036736600461170c565b610a8b565b34801561037857600080fd5b506102d66103873660046118fb565b610acb565b34801561039857600080fd5b506102d66103a73660046118b2565b610ad8565b3480156103b857600080fd5b506102966103c73660046118fb565b610af7565b3480156103d857600080fd5b506102ed610b02565b3480156103ed57600080fd5b506102ed60095481565b34801561040357600080fd5b5060085461023f90600160a81b900460ff1681565b34801561042457600080fd5b5060085461023f90600160a01b900460ff1681565b34801561044557600080fd5b506102ed61045436600461170c565b610b16565b34801561046557600080fd5b506102d6610b65565b34801561047a57600080fd5b506102ed600a5481565b34801561049057600080fd5b506102ed600b5481565b3480156104a657600080fd5b506008546001600160a01b0316610296565b3480156104c457600080fd5b50610269610b79565b3480156104d957600080fd5b506102d66104e83660046118fb565b610b88565b3480156104f957600080fd5b506102d6610508366004611812565b610b95565b6102d661051b366004611796565b610c01565b34801561052c57600080fd5b50610269610c4b565b34801561054157600080fd5b506102696105503660046118fb565b610c58565b34801561056157600080fd5b506102d6610e5d565b34801561057657600080fd5b506102d66105853660046118b2565b610e70565b34801561059657600080fd5b506102d6610e8b565b3480156105ab57600080fd5b5061023f6105ba366004611727565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102d66105f63660046118fb565b610eb4565b34801561060757600080fd5b506102d66106163660046118b2565b61108a565b34801561062757600080fd5b506102d661063636600461170c565b6110a5565b34801561064757600080fd5b506102d66106563660046118fb565b61111b565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611b11565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611b11565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611128565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600d805461079090611b11565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90611b11565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b505050505081565b600061081c82610af7565b9050336001600160a01b038216146108555761083881336105ba565b610855576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108bc8261114f565b9050836001600160a01b0316816001600160a01b0316146108ef5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761093c5761091f86336105ba565b61093c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661096357604051633a954ecd60e21b815260040160405180910390fd5b801561096e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166109f957600184016000818152600460205260409020546109f75760005481146109f75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a4a6111b7565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610a8683838360405180602001604052806000815250610c01565b505050565b610a936111b7565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a86573d6000803e3d6000fd5b610ad36111b7565b600b55565b610ae06111b7565b8051610af390600c9060208401906115e1565b5050565b60006106a78261114f565b6000610b116001546000540390565b905090565b60006001600160a01b038216610b3f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b6d6111b7565b610b776000611211565b565b6060600380546106bc90611b11565b610b906111b7565b600a55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c0c8484846108b1565b6001600160a01b0383163b15610c4557610c2884848484611263565b610c45576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e805461079090611b11565b6060610c6382611128565b610cb45760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600854600160a81b900460ff16610d5757600d8054610cd290611b11565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfe90611b11565b8015610d4b5780601f10610d2057610100808354040283529160200191610d4b565b820191906000526020600020905b815481529060010190602001808311610d2e57829003601f168201915b50505050509050919050565b6000828152600f602052604081208054610d7090611b11565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90611b11565b8015610de95780601f10610dbe57610100808354040283529160200191610de9565b820191906000526020600020905b815481529060010190602001808311610dcc57829003601f168201915b505050505090506000610dfa61135b565b9050805160001415610e0d575092915050565b815115610e3f578082604051602001610e27929190611940565b60405160208183030381529060405292505050919050565b80610e498561136a565b600e604051602001610e279392919061196f565b610e656111b7565b610b77336001611468565b610e786111b7565b8051610af390600e9060208401906115e1565b610e936111b7565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6108ae81610ec56001546000540390565b610ecf9190611a83565b1115610f1d5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610cab565b600854600160a01b900460ff16610f765760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610cab565b600b54811115610fc85760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610cab565b600a5481610fd533610b16565b610fdf9190611a83565b111561102d5760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610cab565b346009548261103c9190611aaf565b111561107d5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610cab565b6110873382611468565b50565b6110926111b7565b8051610af390600d9060208401906115e1565b6110ad6111b7565b6001600160a01b0381166111125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cab565b61108781611211565b6111236111b7565b600955565b60008054821080156106a7575050600090815260046020526040902054600160e01b161590565b60008160005481101561119e57600081815260046020526040902054600160e01b811661119c575b80611195575060001901600081815260046020526040902054611177565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cab565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611298903390899088908890600401611a33565b602060405180830381600087803b1580156112b257600080fd5b505af19250505080156112e2575060408051601f3d908101601f191682019092526112df91810190611895565b60015b61133d573d808015611310576040519150601f19603f3d011682016040523d82523d6000602084013e611315565b606091505b508051611335576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546106bc90611b11565b60608161138e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113b857806113a281611b4c565b91506113b19050600a83611a9b565b9150611392565b60008167ffffffffffffffff8111156113d3576113d3611bbd565b6040519080825280601f01601f1916602001820160405280156113fd576020820181803683370190505b5090505b841561135357611412600183611ace565b915061141f600a86611b67565b61142a906030611a83565b60f81b81838151811061143f5761143f611ba7565b60200101906001600160f81b031916908160001a905350611461600a86611a9b565b9450611401565b610af382826040518060200160405280600081525061148783836114ea565b6001600160a01b0383163b15610a86576000548281035b6114b16000868380600101945086611263565b6114ce576040516368d2bf6b60e11b815260040160405180910390fd5b81811061149e5781600054146114e357600080fd5b5050505050565b6000548161150b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146115ba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611582565b50816115d857604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546115ed90611b11565b90600052602060002090601f01602090048101928261160f5760008555611655565b82601f1061162857805160ff1916838001178555611655565b82800160010185558215611655579182015b8281111561165557825182559160200191906001019061163a565b50611661929150611665565b5090565b5b808211156116615760008155600101611666565b600067ffffffffffffffff8084111561169557611695611bbd565b604051601f8501601f19908116603f011681019082821181831017156116bd576116bd611bbd565b816040528093508581528686860111156116d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170757600080fd5b919050565b60006020828403121561171e57600080fd5b611195826116f0565b6000806040838503121561173a57600080fd5b611743836116f0565b9150611751602084016116f0565b90509250929050565b60008060006060848603121561176f57600080fd5b611778846116f0565b9250611786602085016116f0565b9150604084013590509250925092565b600080600080608085870312156117ac57600080fd5b6117b5856116f0565b93506117c3602086016116f0565b925060408501359150606085013567ffffffffffffffff8111156117e657600080fd5b8501601f810187136117f757600080fd5b6118068782356020840161167a565b91505092959194509250565b6000806040838503121561182557600080fd5b61182e836116f0565b91506020830135801515811461184357600080fd5b809150509250929050565b6000806040838503121561186157600080fd5b61186a836116f0565b946020939093013593505050565b60006020828403121561188a57600080fd5b813561119581611bd3565b6000602082840312156118a757600080fd5b815161119581611bd3565b6000602082840312156118c457600080fd5b813567ffffffffffffffff8111156118db57600080fd5b8201601f810184136118ec57600080fd5b6113538482356020840161167a565b60006020828403121561190d57600080fd5b5035919050565b6000815180845261192c816020860160208601611ae5565b601f01601f19169290920160200192915050565b60008351611952818460208801611ae5565b835190830190611966818360208801611ae5565b01949350505050565b6000845160206119828285838a01611ae5565b8551918401916119958184848a01611ae5565b8554920191600090600181811c90808316806119b257607f831692505b8583108114156119d057634e487b7160e01b85526022600452602485fd5b8080156119e457600181146119f557611a22565b60ff19851688528388019550611a22565b60008b81526020902060005b85811015611a1a5781548a820152908401908801611a01565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a6690830184611914565b9695505050505050565b6020815260006111956020830184611914565b60008219821115611a9657611a96611b7b565b500190565b600082611aaa57611aaa611b91565b500490565b6000816000190483118215151615611ac957611ac9611b7b565b500290565b600082821015611ae057611ae0611b7b565b500390565b60005b83811015611b00578181015183820152602001611ae8565b83811115610c455750506000910152565b600181811c90821680611b2557607f821691505b60208210811415611b4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b6057611b60611b7b565b5060010190565b600082611b7657611b76611b91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108757600080fdfea2646970667358221220e511a0f9e9ff7082a9b3ff32ab6b87ad0c53b973b3119d4d53095a23f58e63b164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c51461059f578063efd0cbf9146105e8578063f2c4ce1e146105fb578063f2fde38b1461061b578063f4a0a5281461063b57600080fd5b8063c668286214610520578063c87b56dd14610535578063cecb06d014610555578063da3ef23f1461056a578063de8b51e11461058a57600080fd5b80638da5cb5b116100f25780638da5cb5b1461049a57806395d89b41146104b85780639d51d9b7146104cd578063a22cb465146104ed578063b88d4fde1461050d57600080fd5b806370a0823114610439578063715018a61461045957806373ad468a1461046e5780637501f7411461048457600080fd5b806342842e0e116101a65780636352211e116101755780636352211e146103ac57806367e0badb146103cc5780636817c76c146103e15780636ebeac85146103f75780637080d6fc1461041857600080fd5b806342842e0e1461033957806351cff8d91461034c578063547520fe1461036c57806355f804b31461038c57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611878565b61065b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106ad565b60405161024b9190611a70565b34801561028257600080fd5b506102966102913660046118fb565b61073f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50610269610783565b6102d66102d136600461184e565b610811565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d661030936600461175a565b6108b1565b34801561031a57600080fd5b506102ed6108ae81565b34801561033057600080fd5b506102d6610a42565b6102d661034736600461175a565b610a6b565b34801561035857600080fd5b506102d661036736600461170c565b610a8b565b34801561037857600080fd5b506102d66103873660046118fb565b610acb565b34801561039857600080fd5b506102d66103a73660046118b2565b610ad8565b3480156103b857600080fd5b506102966103c73660046118fb565b610af7565b3480156103d857600080fd5b506102ed610b02565b3480156103ed57600080fd5b506102ed60095481565b34801561040357600080fd5b5060085461023f90600160a81b900460ff1681565b34801561042457600080fd5b5060085461023f90600160a01b900460ff1681565b34801561044557600080fd5b506102ed61045436600461170c565b610b16565b34801561046557600080fd5b506102d6610b65565b34801561047a57600080fd5b506102ed600a5481565b34801561049057600080fd5b506102ed600b5481565b3480156104a657600080fd5b506008546001600160a01b0316610296565b3480156104c457600080fd5b50610269610b79565b3480156104d957600080fd5b506102d66104e83660046118fb565b610b88565b3480156104f957600080fd5b506102d6610508366004611812565b610b95565b6102d661051b366004611796565b610c01565b34801561052c57600080fd5b50610269610c4b565b34801561054157600080fd5b506102696105503660046118fb565b610c58565b34801561056157600080fd5b506102d6610e5d565b34801561057657600080fd5b506102d66105853660046118b2565b610e70565b34801561059657600080fd5b506102d6610e8b565b3480156105ab57600080fd5b5061023f6105ba366004611727565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102d66105f63660046118fb565b610eb4565b34801561060757600080fd5b506102d66106163660046118b2565b61108a565b34801561062757600080fd5b506102d661063636600461170c565b6110a5565b34801561064757600080fd5b506102d66106563660046118fb565b61111b565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611b11565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611b11565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611128565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600d805461079090611b11565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90611b11565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b505050505081565b600061081c82610af7565b9050336001600160a01b038216146108555761083881336105ba565b610855576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108bc8261114f565b9050836001600160a01b0316816001600160a01b0316146108ef5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761093c5761091f86336105ba565b61093c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661096357604051633a954ecd60e21b815260040160405180910390fd5b801561096e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166109f957600184016000818152600460205260409020546109f75760005481146109f75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a4a6111b7565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610a8683838360405180602001604052806000815250610c01565b505050565b610a936111b7565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a86573d6000803e3d6000fd5b610ad36111b7565b600b55565b610ae06111b7565b8051610af390600c9060208401906115e1565b5050565b60006106a78261114f565b6000610b116001546000540390565b905090565b60006001600160a01b038216610b3f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b6d6111b7565b610b776000611211565b565b6060600380546106bc90611b11565b610b906111b7565b600a55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c0c8484846108b1565b6001600160a01b0383163b15610c4557610c2884848484611263565b610c45576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e805461079090611b11565b6060610c6382611128565b610cb45760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600854600160a81b900460ff16610d5757600d8054610cd290611b11565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfe90611b11565b8015610d4b5780601f10610d2057610100808354040283529160200191610d4b565b820191906000526020600020905b815481529060010190602001808311610d2e57829003601f168201915b50505050509050919050565b6000828152600f602052604081208054610d7090611b11565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90611b11565b8015610de95780601f10610dbe57610100808354040283529160200191610de9565b820191906000526020600020905b815481529060010190602001808311610dcc57829003601f168201915b505050505090506000610dfa61135b565b9050805160001415610e0d575092915050565b815115610e3f578082604051602001610e27929190611940565b60405160208183030381529060405292505050919050565b80610e498561136a565b600e604051602001610e279392919061196f565b610e656111b7565b610b77336001611468565b610e786111b7565b8051610af390600e9060208401906115e1565b610e936111b7565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6108ae81610ec56001546000540390565b610ecf9190611a83565b1115610f1d5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610cab565b600854600160a01b900460ff16610f765760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610cab565b600b54811115610fc85760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610cab565b600a5481610fd533610b16565b610fdf9190611a83565b111561102d5760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610cab565b346009548261103c9190611aaf565b111561107d5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610cab565b6110873382611468565b50565b6110926111b7565b8051610af390600d9060208401906115e1565b6110ad6111b7565b6001600160a01b0381166111125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cab565b61108781611211565b6111236111b7565b600955565b60008054821080156106a7575050600090815260046020526040902054600160e01b161590565b60008160005481101561119e57600081815260046020526040902054600160e01b811661119c575b80611195575060001901600081815260046020526040902054611177565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cab565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611298903390899088908890600401611a33565b602060405180830381600087803b1580156112b257600080fd5b505af19250505080156112e2575060408051601f3d908101601f191682019092526112df91810190611895565b60015b61133d573d808015611310576040519150601f19603f3d011682016040523d82523d6000602084013e611315565b606091505b508051611335576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546106bc90611b11565b60608161138e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113b857806113a281611b4c565b91506113b19050600a83611a9b565b9150611392565b60008167ffffffffffffffff8111156113d3576113d3611bbd565b6040519080825280601f01601f1916602001820160405280156113fd576020820181803683370190505b5090505b841561135357611412600183611ace565b915061141f600a86611b67565b61142a906030611a83565b60f81b81838151811061143f5761143f611ba7565b60200101906001600160f81b031916908160001a905350611461600a86611a9b565b9450611401565b610af382826040518060200160405280600081525061148783836114ea565b6001600160a01b0383163b15610a86576000548281035b6114b16000868380600101945086611263565b6114ce576040516368d2bf6b60e11b815260040160405180910390fd5b81811061149e5781600054146114e357600080fd5b5050505050565b6000548161150b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146115ba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611582565b50816115d857604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546115ed90611b11565b90600052602060002090601f01602090048101928261160f5760008555611655565b82601f1061162857805160ff1916838001178555611655565b82800160010185558215611655579182015b8281111561165557825182559160200191906001019061163a565b50611661929150611665565b5090565b5b808211156116615760008155600101611666565b600067ffffffffffffffff8084111561169557611695611bbd565b604051601f8501601f19908116603f011681019082821181831017156116bd576116bd611bbd565b816040528093508581528686860111156116d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170757600080fd5b919050565b60006020828403121561171e57600080fd5b611195826116f0565b6000806040838503121561173a57600080fd5b611743836116f0565b9150611751602084016116f0565b90509250929050565b60008060006060848603121561176f57600080fd5b611778846116f0565b9250611786602085016116f0565b9150604084013590509250925092565b600080600080608085870312156117ac57600080fd5b6117b5856116f0565b93506117c3602086016116f0565b925060408501359150606085013567ffffffffffffffff8111156117e657600080fd5b8501601f810187136117f757600080fd5b6118068782356020840161167a565b91505092959194509250565b6000806040838503121561182557600080fd5b61182e836116f0565b91506020830135801515811461184357600080fd5b809150509250929050565b6000806040838503121561186157600080fd5b61186a836116f0565b946020939093013593505050565b60006020828403121561188a57600080fd5b813561119581611bd3565b6000602082840312156118a757600080fd5b815161119581611bd3565b6000602082840312156118c457600080fd5b813567ffffffffffffffff8111156118db57600080fd5b8201601f810184136118ec57600080fd5b6113538482356020840161167a565b60006020828403121561190d57600080fd5b5035919050565b6000815180845261192c816020860160208601611ae5565b601f01601f19169290920160200192915050565b60008351611952818460208801611ae5565b835190830190611966818360208801611ae5565b01949350505050565b6000845160206119828285838a01611ae5565b8551918401916119958184848a01611ae5565b8554920191600090600181811c90808316806119b257607f831692505b8583108114156119d057634e487b7160e01b85526022600452602485fd5b8080156119e457600181146119f557611a22565b60ff19851688528388019550611a22565b60008b81526020902060005b85811015611a1a5781548a820152908401908801611a01565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a6690830184611914565b9695505050505050565b6020815260006111956020830184611914565b60008219821115611a9657611a96611b7b565b500190565b600082611aaa57611aaa611b91565b500490565b6000816000190483118215151615611ac957611ac9611b7b565b500290565b600082821015611ae057611ae0611b7b565b500390565b60005b83811015611b00578181015183820152602001611ae8565b83811115610c455750506000910152565b600181811c90821680611b2557607f821691505b60208210811415611b4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b6057611b60611b7b565b5060010190565b600082611b7657611b76611b91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108757600080fdfea2646970667358221220e511a0f9e9ff7082a9b3ff32ab6b87ad0c53b973b3119d4d53095a23f58e63b164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57647:3430:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:639;;;;;;;;;;-1:-1:-1;24494:639:0;;;;;:::i;:::-;;:::i;:::-;;;7178:14:1;;7171:22;7153:41;;7141:2;7126:18;24494:639:0;;;;;;;;25396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31887:218::-;;;;;;;;;;-1:-1:-1;31887:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6476:32:1;;;6458:51;;6446:2;6431:18;31887:218:0;6312:203:1;57992:28:0;;;;;;;;;;;;;:::i;31320:408::-;;;;;;:::i;:::-;;:::i;:::-;;21147:323;;;;;;;;;;-1:-1:-1;21421:12:0;;21208:7;21405:13;:28;21147:323;;;10482:25:1;;;10470:2;10455:18;21147:323:0;10336:177:1;35526:2825:0;;;;;;:::i;:::-;;:::i;57725:41::-;;;;;;;;;;;;57762:4;57725:41;;60137:80;;;;;;;;;;;;;:::i;38447:193::-;;;;;;:::i;:::-;;:::i;60927:145::-;;;;;;;;;;-1:-1:-1;60927:145:0;;;;;:::i;:::-;;:::i;60827:92::-;;;;;;;;;;-1:-1:-1;60827:92:0;;;;;:::i;:::-;;:::i;59925:104::-;;;;;;;;;;-1:-1:-1;59925:104:0;;;;;:::i;:::-;;:::i;26789:152::-;;;;;;;;;;-1:-1:-1;26789:152:0;;;;;:::i;:::-;;:::i;58342:83::-;;;;;;;;;;;;;:::i;57854:38::-;;;;;;;;;;;;;;;;57814:28;;;;;;;;;;-1:-1:-1;57814:28:0;;;;-1:-1:-1;;;57814:28:0;;;;;;57773:33;;;;;;;;;;-1:-1:-1;57773:33:0;;;;-1:-1:-1;;;57773:33:0;;;;;;22331:233;;;;;;;;;;-1:-1:-1;22331:233:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;57900:29::-;;;;;;;;;;;;;;;;57937:26;;;;;;;;;;;;;;;;4625:87;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;25572:104;;;;;;;;;;;;;:::i;60715:::-;;;;;;;;;;-1:-1:-1;60715:104:0;;;;;:::i;:::-;;:::i;32445:234::-;;;;;;;;;;-1:-1:-1;32445:234:0;;;;;:::i;:::-;;:::i;39238:407::-;;;;;;:::i;:::-;;:::i;58027:37::-;;;;;;;;;;;;;:::i;59061:740::-;;;;;;;;;;-1:-1:-1;59061:740:0;;;;;:::i;:::-;;:::i;60225:81::-;;;;;;;;;;;;;:::i;60556:151::-;;;;;;;;;;-1:-1:-1;60556:151:0;;;;;:::i;:::-;;:::i;60037:92::-;;;;;;;;;;;;;:::i;32836:164::-;;;;;;;;;;-1:-1:-1;32836:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32957:25:0;;;32933:4;32957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32836:164;58433:620;;;;;;:::i;:::-;;:::i;60422:126::-;;;;;;;;;;-1:-1:-1;60422:126:0;;;;;:::i;:::-;;:::i;5531:201::-;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;60314:100::-;;;;;;;;;;-1:-1:-1;60314:100:0;;;;;:::i;:::-;;:::i;24494:639::-;24579:4;-1:-1:-1;;;;;;;;;24903:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24980:25:0;;;24903:102;:179;;;-1:-1:-1;;;;;;;;;;25057:25:0;;;24903:179;24883:199;24494:639;-1:-1:-1;;24494:639:0:o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;31887:218::-;31963:7;31988:16;31996:7;31988;:16::i;:::-;31983:64;;32013:34;;-1:-1:-1;;;32013:34:0;;;;;;;;;;;31983:64;-1:-1:-1;32067:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32067:30:0;;31887:218::o;57992:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31320:408::-;31409:13;31425:16;31433:7;31425;:16::i;:::-;31409:32;-1:-1:-1;55653:10:0;-1:-1:-1;;;;;31458:28:0;;;31454:175;;31506:44;31523:5;55653:10;32836:164;:::i;31506:44::-;31501:128;;31578:35;;-1:-1:-1;;;31578:35:0;;;;;;;;;;;31501:128;31641:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31641:35:0;-1:-1:-1;;;;;31641:35:0;;;;;;;;;31692:28;;31641:24;;31692:28;;;;;;;31398:330;31320:408;;:::o;35526:2825::-;35668:27;35698;35717:7;35698:18;:27::i;:::-;35668:57;;35783:4;-1:-1:-1;;;;;35742:45:0;35758:19;-1:-1:-1;;;;;35742:45:0;;35738:86;;35796:28;;-1:-1:-1;;;35796:28:0;;;;;;;;;;;35738:86;35838:27;34634:24;;;:15;:24;;;;;34862:26;;55653:10;34259:30;;;-1:-1:-1;;;;;33952:28:0;;34237:20;;;34234:56;36024:180;;36117:43;36134:4;55653:10;32836:164;:::i;36117:43::-;36112:92;;36169:35;;-1:-1:-1;;;36169:35:0;;;;;;;;;;;36112:92;-1:-1:-1;;;;;36221:16:0;;36217:52;;36246:23;;-1:-1:-1;;;36246:23:0;;;;;;;;;;;36217:52;36418:15;36415:160;;;36558:1;36537:19;36530:30;36415:160;-1:-1:-1;;;;;36955:24:0;;;;;;;:18;:24;;;;;;36953:26;;-1:-1:-1;;36953:26:0;;;37024:22;;;;;;;;;37022:24;;-1:-1:-1;37022:24:0;;;30178:11;30153:23;30149:41;30136:63;-1:-1:-1;;;30136:63:0;37317:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37612:47:0;;37608:627;;37717:1;37707:11;;37685:19;37840:30;;;:17;:30;;;;;;37836:384;;37978:13;;37963:11;:28;37959:242;;38125:30;;;;:17;:30;;;;;:52;;;37959:242;37666:569;37608:627;38282:7;38278:2;-1:-1:-1;;;;;38263:27:0;38272:4;-1:-1:-1;;;;;38263:27:0;;;;;;;;;;;35657:2694;;;35526:2825;;;:::o;60137:80::-;4511:13;:11;:13::i;:::-;60200:9:::1;::::0;;-1:-1:-1;;;;60187:22:0;::::1;-1:-1:-1::0;;;60200:9:0;;;::::1;;;60199:10;60187:22:::0;;::::1;;::::0;;60137:80::o;38447:193::-;38593:39;38610:4;38616:2;38620:7;38593:39;;;;;;;;;;;;:16;:39::i;:::-;38447:193;;;:::o;60927:145::-;4511:13;:11;:13::i;:::-;61035:29:::1;::::0;61003:21:::1;::::0;-1:-1:-1;;;;;61035:20:0;::::1;::::0;:29;::::1;;;::::0;61003:21;;60985:15:::1;61035:29:::0;60985:15;61035:29;61003:21;61035:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;60827:92:::0;4511:13;:11;:13::i;:::-;60893:7:::1;:18:::0;60827:92::o;59925:104::-;4511:13;:11;:13::i;:::-;60000:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59925:104:::0;:::o;26789:152::-;26861:7;26904:27;26923:7;26904:18;:27::i;58342:83::-;58381:4;58404:13;21421:12;;21208:7;21405:13;:28;;21147:323;58404:13;58397:20;;58342:83;:::o;22331:233::-;22403:7;-1:-1:-1;;;;;22427:19:0;;22423:60;;22455:28;;-1:-1:-1;;;22455:28:0;;;;;;;;;;;22423:60;-1:-1:-1;;;;;;22501:25:0;;;;;:18;:25;;;;;;16490:13;22501:55;;22331:233::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;25572:104::-;25628:13;25661:7;25654:14;;;;;:::i;60715:104::-;4511:13;:11;:13::i;:::-;60787:10:::1;:24:::0;60715:104::o;32445:234::-;55653:10;32540:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32540:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32540:60:0;;;;;;;;;;32616:55;;7153:41:1;;;32540:49:0;;55653:10;32616:55;;7126:18:1;32616:55:0;;;;;;;32445:234;;:::o;39238:407::-;39413:31;39426:4;39432:2;39436:7;39413:12;:31::i;:::-;-1:-1:-1;;;;;39459:14:0;;;:19;39455:183;;39498:56;39529:4;39535:2;39539:7;39548:5;39498:30;:56::i;:::-;39493:145;;39582:40;;-1:-1:-1;;;39582:40:0;;;;;;;;;;;39493:145;39238:407;;;;:::o;58027:37::-;;;;;;;:::i;59061:740::-;59179:13;59232:16;59240:7;59232;:16::i;:::-;59210:97;;;;-1:-1:-1;;;59210:97:0;;8336:2:1;59210:97:0;;;8318:21:1;8375:2;8355:18;;;8348:30;8414:33;8394:18;;;8387:61;8465:18;;59210:97:0;;;;;;;;;59324:9;;-1:-1:-1;;;59324:9:0;;;;59320:72;;59366:14;59359:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59061:740;;;:::o;59320:72::-;59404:23;59430:19;;;:10;:19;;;;;59404:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59460:18;59481:10;:8;:10::i;:::-;59460:31;;59514:4;59508:18;59530:1;59508:23;59504:72;;;-1:-1:-1;59555:9:0;59061:740;-1:-1:-1;;59061:740:0:o;59504:72::-;59592:23;;:27;59588:108;;59667:4;59673:9;59650:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59636:48;;;;59061:740;;;:::o;59588:108::-;59752:4;59758:18;:7;:16;:18::i;:::-;59778:13;59735:57;;;;;;;;;;:::i;60225:81::-;4511:13;:11;:13::i;:::-;60274:24:::1;60284:10;60296:1;60274:9;:24::i;60556:151::-:0;4511:13;:11;:13::i;:::-;60666:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;60037:92::-:0;4511:13;:11;:13::i;:::-;60108::::1;::::0;;-1:-1:-1;;;;60091:30:0;::::1;-1:-1:-1::0;;;60108:13:0;;;::::1;;;60107:14;60091:30:::0;;::::1;;::::0;;60037:92::o;58433:620::-;57762:4;58540:13;58524;21421:12;;21208:7;21405:13;:28;;21147:323;58524:13;:29;;;;:::i;:::-;:43;;58502:121;;;;-1:-1:-1;;;58502:121:0;;9103:2:1;58502:121:0;;;9085:21:1;9142:2;9122:18;;;9115:30;9181;9161:18;;;9154:58;9229:18;;58502:121:0;8901:352:1;58502:121:0;58642:13;;-1:-1:-1;;;58642:13:0;;;;58634:57;;;;-1:-1:-1;;;58634:57:0;;7976:2:1;58634:57:0;;;7958:21:1;8015:2;7995:18;;;7988:30;8054:33;8034:18;;;8027:61;8105:18;;58634:57:0;7774:355:1;58634:57:0;58729:7;;58712:13;:24;;58704:67;;;;-1:-1:-1;;;58704:67:0;;9460:2:1;58704:67:0;;;9442:21:1;9499:2;9479:18;;;9472:30;9538:32;9518:18;;;9511:60;9588:18;;58704:67:0;9258:354:1;58704:67:0;58848:10;;58831:13;58806:21;58816:10;58806:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;58784:132;;;;-1:-1:-1;;;58784:132:0;;9819:2:1;58784:132:0;;;9801:21:1;9858:2;9838:18;;;9831:30;9897:31;9877:18;;;9870:59;9946:18;;58784:132:0;9617:353:1;58784:132:0;58966:9;58953;;58937:13;:25;;;;:::i;:::-;:38;;58929:67;;;;-1:-1:-1;;;58929:67:0;;7631:2:1;58929:67:0;;;7613:21:1;7670:2;7650:18;;;7643:30;-1:-1:-1;;;7689:18:1;;;7682:46;7745:18;;58929:67:0;7429:340:1;58929:67:0;59009:36;59019:10;59031:13;59009:9;:36::i;:::-;58433:620;:::o;60422:126::-;4511:13;:11;:13::i;:::-;60508:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5531:201::-:0;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;8696:2:1;5612:73:0::1;::::0;::::1;8678:21:1::0;8735:2;8715:18;;;8708:30;8774:34;8754:18;;;8747:62;-1:-1:-1;;;8825:18:1;;;8818:36;8871:19;;5612:73:0::1;8494:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;60314:100::-:0;4511:13;:11;:13::i;:::-;60384:9:::1;:22:::0;60314:100::o;33258:282::-;33323:4;33413:13;;33403:7;:23;33360:153;;;;-1:-1:-1;;33464:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33464:44:0;:49;;33258:282::o;27944:1275::-;28011:7;28046;28148:13;;28141:4;:20;28137:1015;;;28186:14;28203:23;;;:17;:23;;;;;;-1:-1:-1;;;28292:24:0;;28288:845;;28957:113;28964:11;28957:113;;-1:-1:-1;;;29035:6:0;29017:25;;;;:17;:25;;;;;;28957:113;;;29103:6;27944:1275;-1:-1:-1;;;27944:1275:0:o;28288:845::-;28163:989;28137:1015;29180:31;;-1:-1:-1;;;29180:31:0;;;;;;;;;;;4790:132;4698:6;;-1:-1:-1;;;;;4698:6:0;55653:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;10177:2:1;4846:68:0;;;10159:21:1;;;10196:18;;;10189:30;10255:34;10235:18;;;10228:62;10307:18;;4846:68:0;9975:356:1;5892:191:0;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;41729:716::-;41913:88;;-1:-1:-1;;;41913:88:0;;41892:4;;-1:-1:-1;;;;;41913:45:0;;;;;:88;;55653:10;;41980:4;;41986:7;;41995:5;;41913:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41913:88:0;;;;;;;;-1:-1:-1;;41913:88:0;;;;;;;;;;;;:::i;:::-;;;41909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42196:13:0;;42192:235;;42242:40;;-1:-1:-1;;;42242:40:0;;;;;;;;;;;42192:235;42385:6;42379:13;42370:6;42366:2;42362:15;42355:38;41909:529;-1:-1:-1;;;;;;42072:64:0;-1:-1:-1;;;42072:64:0;;-1:-1:-1;41909:529:0;41729:716;;;;;;:::o;59809:108::-;59869:13;59902:7;59895:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;49398:112;49475:27;49485:2;49489:8;49475:27;;;;;;;;;;;;48756:19;48762:2;48766:8;48756:5;:19::i;:::-;-1:-1:-1;;;;;48817:14:0;;;:19;48813:483;;48857:11;48871:13;48919:14;;;48952:233;48983:62;49022:1;49026:2;49030:7;;;;;;49039:5;48983:30;:62::i;:::-;48978:167;;49081:40;;-1:-1:-1;;;49081:40:0;;;;;;;;;;;48978:167;49180:3;49172:5;:11;48952:233;;49267:3;49250:13;;:20;49246:34;;49272:8;;;49246:34;48838:458;;48625:689;;;:::o;42907:2966::-;42980:20;43003:13;43031;43027:44;;43053:18;;-1:-1:-1;;;43053:18:0;;;;;;;;;;;43027:44;-1:-1:-1;;;;;43559:22:0;;;;;;:18;:22;;;;16628:2;43559:22;;;:71;;43597:32;43585:45;;43559:71;;;43873:31;;;:17;:31;;;;;-1:-1:-1;30609:15:0;;30583:24;30579:46;30178:11;30153:23;30149:41;30146:52;30136:63;;43873:173;;44108:23;;;;43873:31;;43559:22;;44873:25;43559:22;;44726:335;45387:1;45373:12;45369:20;45327:346;45428:3;45419:7;45416:16;45327:346;;45646:7;45636:8;45633:1;45606:25;45603:1;45600;45595:59;45481:1;45468:15;45327:346;;;-1:-1:-1;45706:13:0;45702:45;;45728:19;;-1:-1:-1;;;45728:19:0;;;;;;;;;;;45702:45;45764:13;:19;-1:-1:-1;38447:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4780:1527::-;5004:3;5042:6;5036:13;5068:4;5081:51;5125:6;5120:3;5115:2;5107:6;5103:15;5081:51;:::i;:::-;5195:13;;5154:16;;;;5217:55;5195:13;5154:16;5239:15;;;5217:55;:::i;:::-;5361:13;;5294:20;;;5334:1;;5421;5443:18;;;;5496;;;;5523:93;;5601:4;5591:8;5587:19;5575:31;;5523:93;5664:2;5654:8;5651:16;5631:18;5628:40;5625:167;;;-1:-1:-1;;;5691:33:1;;5747:4;5744:1;5737:15;5777:4;5698:3;5765:17;5625:167;5808:18;5835:110;;;;5959:1;5954:328;;;;5801:481;;5835:110;-1:-1:-1;;5870:24:1;;5856:39;;5915:20;;;;-1:-1:-1;5835:110:1;;5954:328;10591:1;10584:14;;;10628:4;10615:18;;6049:1;6063:169;6077:8;6074:1;6071:15;6063:169;;;6159:14;;6144:13;;;6137:37;6202:16;;;;6094:10;;6063:169;;;6067:3;;6263:8;6256:5;6252:20;6245:27;;5801:481;-1:-1:-1;6298:3:1;;4780:1527;-1:-1:-1;;;;;;;;;;;4780:1527:1:o;6520:488::-;-1:-1:-1;;;;;6789:15:1;;;6771:34;;6841:15;;6836:2;6821:18;;6814:43;6888:2;6873:18;;6866:34;;;6936:3;6931:2;6916:18;;6909:31;;;6714:4;;6957:45;;6982:19;;6974:6;6957:45;:::i;:::-;6949:53;6520:488;-1:-1:-1;;;;;;6520:488:1:o;7205:219::-;7354:2;7343:9;7336:21;7317:4;7374:44;7414:2;7403:9;7399:18;7391:6;7374:44;:::i;10644:128::-;10684:3;10715:1;10711:6;10708:1;10705:13;10702:39;;;10721:18;;:::i;:::-;-1:-1:-1;10757:9:1;;10644:128::o;10777:120::-;10817:1;10843;10833:35;;10848:18;;:::i;:::-;-1:-1:-1;10882:9:1;;10777:120::o;10902:168::-;10942:7;11008:1;11004;11000:6;10996:14;10993:1;10990:21;10985:1;10978:9;10971:17;10967:45;10964:71;;;11015:18;;:::i;:::-;-1:-1:-1;11055:9:1;;10902:168::o;11075:125::-;11115:4;11143:1;11140;11137:8;11134:34;;;11148:18;;:::i;:::-;-1:-1:-1;11185:9:1;;11075:125::o;11205:258::-;11277:1;11287:113;11301:6;11298:1;11295:13;11287:113;;;11377:11;;;11371:18;11358:11;;;11351:39;11323:2;11316:10;11287:113;;;11418:6;11415:1;11412:13;11409:48;;;-1:-1:-1;;11453:1:1;11435:16;;11428:27;11205:258::o;11468:380::-;11547:1;11543:12;;;;11590;;;11611:61;;11665:4;11657:6;11653:17;11643:27;;11611:61;11718:2;11710:6;11707:14;11687:18;11684:38;11681:161;;;11764:10;11759:3;11755:20;11752:1;11745:31;11799:4;11796:1;11789:15;11827:4;11824:1;11817:15;11681:161;;11468:380;;;:::o;11853:135::-;11892:3;-1:-1:-1;;11913:17:1;;11910:43;;;11933:18;;:::i;:::-;-1:-1:-1;11980:1:1;11969:13;;11853:135::o;11993:112::-;12025:1;12051;12041:35;;12056:18;;:::i;:::-;-1:-1:-1;12090:9:1;;11993:112::o;12110:127::-;12171:10;12166:3;12162:20;12159:1;12152:31;12202:4;12199:1;12192:15;12226:4;12223:1;12216:15;12242:127;12303:10;12298:3;12294:20;12291:1;12284:31;12334:4;12331:1;12324:15;12358:4;12355:1;12348:15;12374:127;12435:10;12430:3;12426:20;12423:1;12416:31;12466:4;12463:1;12456:15;12490:4;12487:1;12480:15;12506:127;12567:10;12562:3;12558:20;12555:1;12548:31;12598:4;12595:1;12588:15;12622:4;12619:1;12612:15;12638:131;-1:-1:-1;;;;;;12712:32:1;;12702:43;;12692:71;;12759:1;12756;12749:12
Swarm Source
ipfs://e511a0f9e9ff7082a9b3ff32ab6b87ad0c53b973b3119d4d53095a23f58e63b1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.