ERC-721
Overview
Max Total Supply
5,426 NOBODYS
Holders
325
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NOBODYS
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-01 */ // SPDX-License-Identifier: MIT /* 888888ba .88888. 888888ba .88888. 888888ba dP dP .d88888b 88 `8b d8' `8b 88 `8b d8' `8b 88 `8b Y8. .8P 88. "' 88 88 88 88 a88aaaa8P' 88 88 88 88 Y8aa8P `Y88888b. 88 88 88 88 88 `8b. 88 88 88 88 88 `8b 88 88 Y8. .8P 88 .88 Y8. .8P 88 .8P 88 d8' .8P dP dP `8888P' 88888888P `8888P' 8888888P dP Y88888P */ // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; 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/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.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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: contracts/NOBODYS.sol pragma solidity ^0.8.4; contract NOBODYS is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://nobodys.s3.amazonaws.com/metadata/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 10; uint256 public maxSupply = 10000; uint256 public maxFreePerWallet = 1; uint256 public totalFreeMinted = 0; uint256 public maxFreeSupply = 5000; mapping(address => uint256) public _mintedFreeAmount; constructor() ERC721A("NOBODYS Official", "NOBODYS") {} function mint(uint256 _amount) external payable { require(msg.value >= _amount * price, "Incorrect amount of ETH."); require(totalSupply() + _amount <= maxSupply, "Sold out."); require(tx.origin == msg.sender, "Only humans please."); require(_amount <= maxPerTx, "You may only mint a max of 10 per transaction"); _mint(msg.sender, _amount); } function mintFree(uint256 _amount) external payable { require(_mintedFreeAmount[msg.sender] + _amount <= maxFreePerWallet, "You have minted the max free amount allowed per wallet."); require(totalFreeMinted + _amount <= maxFreeSupply, "Cannot exceed Free supply." ); require(totalSupply() + _amount <= maxSupply, "Sold out."); _mintedFreeAmount[msg.sender]++; totalFreeMinted++; _safeMint(msg.sender, _amount); } function teamMint(uint256 _amount, address _wallet) external onlyOwner { require(totalSupply() + _amount <= maxSupply); _mint(_wallet, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTx = _amount; } function reduceSupply(uint256 _newSupply) external onlyOwner { require(_newSupply < maxSupply); maxSupply = _newSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFreeSupply = _newMaxFreeSupply; } function _startTokenId() internal pure override returns (uint256) { return 1; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"_amount","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052602a60808181529062001eb960a039600990620000229082620001d0565b5066038d7ea4c68000600a55600a600b55612710600c556001600d556000600e55611388600f553480156200005657600080fd5b506040518060400160405280601081526020016f1393d093d11654c813d9999a58da585b60821b815250604051806040016040528060078152602001664e4f424f44595360c81b8152508160029081620000b19190620001d0565b506003620000c08282620001d0565b5050600160005550620000d333620000d9565b6200029c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015657607f821691505b6020821081036200017757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c81016020861015620001a65750805b601f850160051c820191505b81811015620001c757828155600101620001b2565b5050505b505050565b81516001600160401b03811115620001ec57620001ec6200012b565b6200020481620001fd845462000141565b846200017d565b602080601f8311600181146200023c5760008415620002235750858301515b600019600386901b1c1916600185901b178555620001c7565b600085815260208120601f198616915b828110156200026d578886015182559484019460019091019084016200024c565b50858210156200028c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611c0d80620002ac6000396000f3fe6080604052600436106101f95760003560e01c806395d89b411161010d578063bfa457bc116100a0578063dad7b5c91161006f578063dad7b5c91461056b578063e985e9c514610581578063f2fde38b146105a1578063f4db2acb146105c1578063f968adbe146105ee57600080fd5b8063bfa457bc146104f5578063c6f6f21614610515578063c87b56dd14610535578063d5abeb011461055557600080fd5b8063a4146733116100dc578063a41467331461048c578063a70273571461049f578063b88d4fde146104b5578063bde12d73146104d557600080fd5b806395d89b411461042e578063a035b1fe14610443578063a0712d6814610459578063a22cb4651461046c57600080fd5b8063475133341161019057806370a082311161015f57806370a082311461039b578063715018a6146103bb57806380623444146103d05780638da5cb5b146103f057806391b7f5ed1461040e57600080fd5b8063475133341461033057806355f804b3146103465780636352211e146103665780636c0360eb1461038657600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102db5780633ccfd60b146102fb57806342842e0e1461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046115ba565b610604565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610656565b60405161022a9190611627565b34801561026157600080fd5b5061027561027036600461163a565b6106e8565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461166f565b61072c565b005b3480156102bb57600080fd5b506102cd600154600054036000190190565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f6366004611699565b6107cc565b34801561030757600080fd5b506102ad610965565b34801561031c57600080fd5b506102ad61032b366004611699565b610a00565b34801561033c57600080fd5b506102cd600f5481565b34801561035257600080fd5b506102ad6103613660046116d5565b610a20565b34801561037257600080fd5b5061027561038136600461163a565b610a35565b34801561039257600080fd5b50610248610a40565b3480156103a757600080fd5b506102cd6103b6366004611747565b610ace565b3480156103c757600080fd5b506102ad610b1d565b3480156103dc57600080fd5b506102ad6103eb36600461163a565b610b31565b3480156103fc57600080fd5b506008546001600160a01b0316610275565b34801561041a57600080fd5b506102ad61042936600461163a565b610b4c565b34801561043a57600080fd5b50610248610b59565b34801561044f57600080fd5b506102cd600a5481565b6102ad61046736600461163a565b610b68565b34801561047857600080fd5b506102ad610487366004611762565b610cd4565b6102ad61049a36600461163a565b610d69565b3480156104ab57600080fd5b506102cd600d5481565b3480156104c157600080fd5b506102ad6104d03660046117b4565b610ef2565b3480156104e157600080fd5b506102ad6104f036600461163a565b610f3c565b34801561050157600080fd5b506102ad610510366004611890565b610f49565b34801561052157600080fd5b506102ad61053036600461163a565b610f89565b34801561054157600080fd5b5061024861055036600461163a565b610f96565b34801561056157600080fd5b506102cd600c5481565b34801561057757600080fd5b506102cd600e5481565b34801561058d57600080fd5b5061021e61059c3660046118bc565b611037565b3480156105ad57600080fd5b506102ad6105bc366004611747565b611065565b3480156105cd57600080fd5b506102cd6105dc366004611747565b60106020526000908152604090205481565b3480156105fa57600080fd5b506102cd600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061063557506380ac58cd60e01b6001600160e01b03198316145b806106505750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610665906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610691906118e6565b80156106de5780601f106106b3576101008083540402835291602001916106de565b820191906000526020600020905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60006106f3826110db565b610710576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073782610a35565b9050336001600160a01b03821614610770576107538133611037565b610770576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107d782611110565b9050836001600160a01b0316816001600160a01b03161461080a5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108575761083a8633611037565b61085757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661087e57604051633a954ecd60e21b815260040160405180910390fd5b801561088957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361091b576001840160008181526004602052604081205490036109195760005481146109195760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61096d611186565b604051600090339047908381818185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b610a1b83838360405180602001604052806000815250610ef2565b505050565b610a28611186565b6009610a1b828483611966565b600061065082611110565b60098054610a4d906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a79906118e6565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b60006001600160a01b038216610af7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b25611186565b610b2f60006111e0565b565b610b39611186565b600c548110610b4757600080fd5b600c55565b610b54611186565b600a55565b606060038054610665906118e6565b600a54610b759082611a3c565b341015610bc45760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e000000000000000060448201526064016109f4565b600c5481610bd9600154600054036000190190565b610be39190611a53565b1115610c1d5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016109f4565b323314610c625760405162461bcd60e51b815260206004820152601360248201527227b7363c90343ab6b0b73990383632b0b9b29760691b60448201526064016109f4565b600b54811115610cca5760405162461bcd60e51b815260206004820152602d60248201527f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560448201526c39103a3930b739b0b1ba34b7b760991b60648201526084016109f4565b6109fd3382611232565b336001600160a01b03831603610cfd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5433600090815260106020526040902054610d87908390611a53565b1115610dfb5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e00000000000000000060648201526084016109f4565b600f5481600e54610e0c9190611a53565b1115610e5a5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420657863656564204672656520737570706c792e00000000000060448201526064016109f4565b600c5481610e6f600154600054036000190190565b610e799190611a53565b1115610eb35760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016109f4565b336000908152601060205260408120805491610ece83611a66565b9091555050600e8054906000610ee383611a66565b91905055506109fd3382611330565b610efd8484846107cc565b6001600160a01b0383163b15610f3657610f198484848461134a565b610f36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f44611186565b600f55565b610f51611186565b600c5482610f66600154600054036000190190565b610f709190611a53565b1115610f7b57600080fd5b610f858183611232565b5050565b610f91611186565b600b55565b6060610fa1826110db565b6110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f4565b600961101083611436565b604051602001611021929190611a7f565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61106d611186565b6001600160a01b0381166110d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b6109fd816111e0565b6000816001111580156110ef575060005482105b8015610650575050600090815260046020526040902054600160e01b161590565b6000818060011161116d5760005481101561116d5760008181526004602052604081205490600160e01b8216900361116b575b80600003611164575060001901600081815260046020526040902054611143565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036112575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461130657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016112ce565b508160000361132757604051622e076360e81b815260040160405180910390fd5b60005550505050565b610f85828260405180602001604052806000815250611537565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061137f903390899088908890600401611b16565b6020604051808303816000875af19250505080156113ba575060408051601f3d908101601f191682019092526113b791810190611b53565b60015b611418573d8080156113e8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ed565b606091505b508051600003611410576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361145d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611487578061147181611a66565b91506114809050600a83611b86565b9150611461565b60008167ffffffffffffffff8111156114a2576114a261179e565b6040519080825280601f01601f1916602001820160405280156114cc576020820181803683370190505b5090505b841561142e576114e1600183611b9a565b91506114ee600a86611bad565b6114f9906030611a53565b60f81b81838151811061150e5761150e611bc1565b60200101906001600160f81b031916908160001a905350611530600a86611b86565b94506114d0565b6115418383611232565b6001600160a01b0383163b15610a1b576000548281035b61156b600086838060010194508661134a565b611588576040516368d2bf6b60e11b815260040160405180910390fd5b81811061155857816000541461159d57600080fd5b5050505050565b6001600160e01b0319811681146109fd57600080fd5b6000602082840312156115cc57600080fd5b8135611164816115a4565b60005b838110156115f25781810151838201526020016115da565b50506000910152565b600081518084526116138160208601602086016115d7565b601f01601f19169290920160200192915050565b60208152600061116460208301846115fb565b60006020828403121561164c57600080fd5b5035919050565b80356001600160a01b038116811461166a57600080fd5b919050565b6000806040838503121561168257600080fd5b61168b83611653565b946020939093013593505050565b6000806000606084860312156116ae57600080fd5b6116b784611653565b92506116c560208501611653565b9150604084013590509250925092565b600080602083850312156116e857600080fd5b823567ffffffffffffffff8082111561170057600080fd5b818501915085601f83011261171457600080fd5b81358181111561172357600080fd5b86602082850101111561173557600080fd5b60209290920196919550909350505050565b60006020828403121561175957600080fd5b61116482611653565b6000806040838503121561177557600080fd5b61177e83611653565b91506020830135801515811461179357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117ca57600080fd5b6117d385611653565b93506117e160208601611653565b925060408501359150606085013567ffffffffffffffff8082111561180557600080fd5b818701915087601f83011261181957600080fd5b81358181111561182b5761182b61179e565b604051601f8201601f19908116603f011681019083821181831017156118535761185361179e565b816040528281528a602084870101111561186c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118a357600080fd5b823591506118b360208401611653565b90509250929050565b600080604083850312156118cf57600080fd5b6118d883611653565b91506118b360208401611653565b600181811c908216806118fa57607f821691505b60208210810361191a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a1b57600081815260208120601f850160051c810160208610156119475750805b601f850160051c820191505b8181101561095d57828155600101611953565b67ffffffffffffffff83111561197e5761197e61179e565b6119928361198c83546118e6565b83611920565b6000601f8411600181146119c657600085156119ae5750838201355b600019600387901b1c1916600186901b17835561159d565b600083815260209020601f19861690835b828110156119f757868501358255602094850194600190920191016119d7565b5086821015611a145760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761065057610650611a26565b8082018082111561065057610650611a26565b600060018201611a7857611a78611a26565b5060010190565b6000808454611a8d816118e6565b60018281168015611aa55760018114611aba57611ae9565b60ff1984168752821515830287019450611ae9565b8860005260208060002060005b85811015611ae05781548a820152908401908201611ac7565b50505082870194505b505050508351611afd8183602088016115d7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b49908301846115fb565b9695505050505050565b600060208284031215611b6557600080fd5b8151611164816115a4565b634e487b7160e01b600052601260045260246000fd5b600082611b9557611b95611b70565b500490565b8181038181111561065057610650611a26565b600082611bbc57611bbc611b70565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d2cf7f263abb3b37e8170077cecdd866e88eedaae10154eba80dfcc1790d9b5964736f6c6343000811003368747470733a2f2f6e6f626f6479732e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806395d89b411161010d578063bfa457bc116100a0578063dad7b5c91161006f578063dad7b5c91461056b578063e985e9c514610581578063f2fde38b146105a1578063f4db2acb146105c1578063f968adbe146105ee57600080fd5b8063bfa457bc146104f5578063c6f6f21614610515578063c87b56dd14610535578063d5abeb011461055557600080fd5b8063a4146733116100dc578063a41467331461048c578063a70273571461049f578063b88d4fde146104b5578063bde12d73146104d557600080fd5b806395d89b411461042e578063a035b1fe14610443578063a0712d6814610459578063a22cb4651461046c57600080fd5b8063475133341161019057806370a082311161015f57806370a082311461039b578063715018a6146103bb57806380623444146103d05780638da5cb5b146103f057806391b7f5ed1461040e57600080fd5b8063475133341461033057806355f804b3146103465780636352211e146103665780636c0360eb1461038657600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102db5780633ccfd60b146102fb57806342842e0e1461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046115ba565b610604565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610656565b60405161022a9190611627565b34801561026157600080fd5b5061027561027036600461163a565b6106e8565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461166f565b61072c565b005b3480156102bb57600080fd5b506102cd600154600054036000190190565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f6366004611699565b6107cc565b34801561030757600080fd5b506102ad610965565b34801561031c57600080fd5b506102ad61032b366004611699565b610a00565b34801561033c57600080fd5b506102cd600f5481565b34801561035257600080fd5b506102ad6103613660046116d5565b610a20565b34801561037257600080fd5b5061027561038136600461163a565b610a35565b34801561039257600080fd5b50610248610a40565b3480156103a757600080fd5b506102cd6103b6366004611747565b610ace565b3480156103c757600080fd5b506102ad610b1d565b3480156103dc57600080fd5b506102ad6103eb36600461163a565b610b31565b3480156103fc57600080fd5b506008546001600160a01b0316610275565b34801561041a57600080fd5b506102ad61042936600461163a565b610b4c565b34801561043a57600080fd5b50610248610b59565b34801561044f57600080fd5b506102cd600a5481565b6102ad61046736600461163a565b610b68565b34801561047857600080fd5b506102ad610487366004611762565b610cd4565b6102ad61049a36600461163a565b610d69565b3480156104ab57600080fd5b506102cd600d5481565b3480156104c157600080fd5b506102ad6104d03660046117b4565b610ef2565b3480156104e157600080fd5b506102ad6104f036600461163a565b610f3c565b34801561050157600080fd5b506102ad610510366004611890565b610f49565b34801561052157600080fd5b506102ad61053036600461163a565b610f89565b34801561054157600080fd5b5061024861055036600461163a565b610f96565b34801561056157600080fd5b506102cd600c5481565b34801561057757600080fd5b506102cd600e5481565b34801561058d57600080fd5b5061021e61059c3660046118bc565b611037565b3480156105ad57600080fd5b506102ad6105bc366004611747565b611065565b3480156105cd57600080fd5b506102cd6105dc366004611747565b60106020526000908152604090205481565b3480156105fa57600080fd5b506102cd600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061063557506380ac58cd60e01b6001600160e01b03198316145b806106505750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610665906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610691906118e6565b80156106de5780601f106106b3576101008083540402835291602001916106de565b820191906000526020600020905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60006106f3826110db565b610710576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073782610a35565b9050336001600160a01b03821614610770576107538133611037565b610770576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107d782611110565b9050836001600160a01b0316816001600160a01b03161461080a5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108575761083a8633611037565b61085757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661087e57604051633a954ecd60e21b815260040160405180910390fd5b801561088957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361091b576001840160008181526004602052604081205490036109195760005481146109195760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61096d611186565b604051600090339047908381818185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b610a1b83838360405180602001604052806000815250610ef2565b505050565b610a28611186565b6009610a1b828483611966565b600061065082611110565b60098054610a4d906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a79906118e6565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b60006001600160a01b038216610af7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b25611186565b610b2f60006111e0565b565b610b39611186565b600c548110610b4757600080fd5b600c55565b610b54611186565b600a55565b606060038054610665906118e6565b600a54610b759082611a3c565b341015610bc45760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e000000000000000060448201526064016109f4565b600c5481610bd9600154600054036000190190565b610be39190611a53565b1115610c1d5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016109f4565b323314610c625760405162461bcd60e51b815260206004820152601360248201527227b7363c90343ab6b0b73990383632b0b9b29760691b60448201526064016109f4565b600b54811115610cca5760405162461bcd60e51b815260206004820152602d60248201527f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560448201526c39103a3930b739b0b1ba34b7b760991b60648201526084016109f4565b6109fd3382611232565b336001600160a01b03831603610cfd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5433600090815260106020526040902054610d87908390611a53565b1115610dfb5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e00000000000000000060648201526084016109f4565b600f5481600e54610e0c9190611a53565b1115610e5a5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420657863656564204672656520737570706c792e00000000000060448201526064016109f4565b600c5481610e6f600154600054036000190190565b610e799190611a53565b1115610eb35760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016109f4565b336000908152601060205260408120805491610ece83611a66565b9091555050600e8054906000610ee383611a66565b91905055506109fd3382611330565b610efd8484846107cc565b6001600160a01b0383163b15610f3657610f198484848461134a565b610f36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f44611186565b600f55565b610f51611186565b600c5482610f66600154600054036000190190565b610f709190611a53565b1115610f7b57600080fd5b610f858183611232565b5050565b610f91611186565b600b55565b6060610fa1826110db565b6110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f4565b600961101083611436565b604051602001611021929190611a7f565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61106d611186565b6001600160a01b0381166110d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b6109fd816111e0565b6000816001111580156110ef575060005482105b8015610650575050600090815260046020526040902054600160e01b161590565b6000818060011161116d5760005481101561116d5760008181526004602052604081205490600160e01b8216900361116b575b80600003611164575060001901600081815260046020526040902054611143565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036112575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461130657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016112ce565b508160000361132757604051622e076360e81b815260040160405180910390fd5b60005550505050565b610f85828260405180602001604052806000815250611537565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061137f903390899088908890600401611b16565b6020604051808303816000875af19250505080156113ba575060408051601f3d908101601f191682019092526113b791810190611b53565b60015b611418573d8080156113e8576040519150601f19603f3d011682016040523d82523d6000602084013e6113ed565b606091505b508051600003611410576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361145d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611487578061147181611a66565b91506114809050600a83611b86565b9150611461565b60008167ffffffffffffffff8111156114a2576114a261179e565b6040519080825280601f01601f1916602001820160405280156114cc576020820181803683370190505b5090505b841561142e576114e1600183611b9a565b91506114ee600a86611bad565b6114f9906030611a53565b60f81b81838151811061150e5761150e611bc1565b60200101906001600160f81b031916908160001a905350611530600a86611b86565b94506114d0565b6115418383611232565b6001600160a01b0383163b15610a1b576000548281035b61156b600086838060010194508661134a565b611588576040516368d2bf6b60e11b815260040160405180910390fd5b81811061155857816000541461159d57600080fd5b5050505050565b6001600160e01b0319811681146109fd57600080fd5b6000602082840312156115cc57600080fd5b8135611164816115a4565b60005b838110156115f25781810151838201526020016115da565b50506000910152565b600081518084526116138160208601602086016115d7565b601f01601f19169290920160200192915050565b60208152600061116460208301846115fb565b60006020828403121561164c57600080fd5b5035919050565b80356001600160a01b038116811461166a57600080fd5b919050565b6000806040838503121561168257600080fd5b61168b83611653565b946020939093013593505050565b6000806000606084860312156116ae57600080fd5b6116b784611653565b92506116c560208501611653565b9150604084013590509250925092565b600080602083850312156116e857600080fd5b823567ffffffffffffffff8082111561170057600080fd5b818501915085601f83011261171457600080fd5b81358181111561172357600080fd5b86602082850101111561173557600080fd5b60209290920196919550909350505050565b60006020828403121561175957600080fd5b61116482611653565b6000806040838503121561177557600080fd5b61177e83611653565b91506020830135801515811461179357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117ca57600080fd5b6117d385611653565b93506117e160208601611653565b925060408501359150606085013567ffffffffffffffff8082111561180557600080fd5b818701915087601f83011261181957600080fd5b81358181111561182b5761182b61179e565b604051601f8201601f19908116603f011681019083821181831017156118535761185361179e565b816040528281528a602084870101111561186c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118a357600080fd5b823591506118b360208401611653565b90509250929050565b600080604083850312156118cf57600080fd5b6118d883611653565b91506118b360208401611653565b600181811c908216806118fa57607f821691505b60208210810361191a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a1b57600081815260208120601f850160051c810160208610156119475750805b601f850160051c820191505b8181101561095d57828155600101611953565b67ffffffffffffffff83111561197e5761197e61179e565b6119928361198c83546118e6565b83611920565b6000601f8411600181146119c657600085156119ae5750838201355b600019600387901b1c1916600186901b17835561159d565b600083815260209020601f19861690835b828110156119f757868501358255602094850194600190920191016119d7565b5086821015611a145760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761065057610650611a26565b8082018082111561065057610650611a26565b600060018201611a7857611a78611a26565b5060010190565b6000808454611a8d816118e6565b60018281168015611aa55760018114611aba57611ae9565b60ff1984168752821515830287019450611ae9565b8860005260208060002060005b85811015611ae05781548a820152908401908201611ac7565b50505082870194505b505050508351611afd8183602088016115d7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b49908301846115fb565b9695505050505050565b600060208284031215611b6557600080fd5b8151611164816115a4565b634e487b7160e01b600052601260045260246000fd5b600082611b9557611b95611b70565b500490565b8181038181111561065057610650611a26565b600082611bbc57611bbc611b70565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d2cf7f263abb3b37e8170077cecdd866e88eedaae10154eba80dfcc1790d9b5964736f6c63430008110033
Deployed Bytecode Sourcemap
57747:2762:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25295:639;;;;;;;;;;-1:-1:-1;25295:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25295:639:0;;;;;;;;26197:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32680:218::-;;;;;;;;;;-1:-1:-1;32680:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;32680:218:0;1533:203:1;32121:400:0;;;;;;;;;;-1:-1:-1;32121:400:0;;;;;:::i;:::-;;:::i;:::-;;21948:323;;;;;;;;;;;;60314:1;22222:12;22009:7;22206:13;:28;-1:-1:-1;;22206:46:0;;21948:323;;;;2324:25:1;;;2312:2;2297:18;21948:323:0;2178:177:1;36387:2817:0;;;;;;;;;;-1:-1:-1;36387:2817:0;;;;;:::i;:::-;;:::i;60331:173::-;;;;;;;;;;;;;:::i;39300:185::-;;;;;;;;;;-1:-1:-1;39300:185:0;;;;;:::i;:::-;;:::i;58104:35::-;;;;;;;;;;;;;;;;59642:102;;;;;;;;;;-1:-1:-1;59642:102:0;;;;;:::i;:::-;;:::i;27590:152::-;;;;;;;;;;-1:-1:-1;27590:152:0;;;;;:::i;:::-;;:::i;57827:68::-;;;;;;;;;;;;;:::i;23132:233::-;;;;;;;;;;-1:-1:-1;23132:233:0;;;;;:::i;:::-;;:::i;6045:103::-;;;;;;;;;;;;;:::i;59948:144::-;;;;;;;;;;-1:-1:-1;59948:144:0;;;;;:::i;:::-;;:::i;5397:87::-;;;;;;;;;;-1:-1:-1;5470:6:0;;-1:-1:-1;;;;;5470:6:0;5397:87;;59752:86;;;;;;;;;;-1:-1:-1;59752:86:0;;;;;:::i;:::-;;:::i;26373:104::-;;;;;;;;;;;;;:::i;57904:34::-;;;;;;;;;;;;;;;;58272:396;;;;;;:::i;:::-;;:::i;33238:308::-;;;;;;;;;;-1:-1:-1;33238:308:0;;;;;:::i;:::-;;:::i;58676:464::-;;;;;;:::i;:::-;;:::i;58021:35::-;;;;;;;;;;;;;;;;40083:399;;;;;;;;;;-1:-1:-1;40083:399:0;;;;;:::i;:::-;;:::i;60100:122::-;;;;;;;;;;-1:-1:-1;60100:122:0;;;;;:::i;:::-;;:::i;59148:169::-;;;;;;;;;;-1:-1:-1;59148:169:0;;;;;:::i;:::-;;:::i;59846:94::-;;;;;;;;;;-1:-1:-1;59846:94:0;;;;;:::i;:::-;;:::i;59325:309::-;;;;;;;;;;-1:-1:-1;59325:309:0;;;;;:::i;:::-;;:::i;57980:32::-;;;;;;;;;;;;;;;;58063:34;;;;;;;;;;;;;;;;33703:164;;;;;;;;;;-1:-1:-1;33703:164:0;;;;;:::i;:::-;;:::i;6303:201::-;;;;;;;;;;-1:-1:-1;6303:201:0;;;;;:::i;:::-;;:::i;58148:52::-;;;;;;;;;;-1:-1:-1;58148:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;57945:28;;;;;;;;;;;;;;;;25295:639;25380:4;-1:-1:-1;;;;;;;;;25704:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25781:25:0;;;25704:102;:179;;;-1:-1:-1;;;;;;;;;;25858:25:0;;;25704:179;25684:199;25295:639;-1:-1:-1;;25295:639:0:o;26197:100::-;26251:13;26284:5;26277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26197:100;:::o;32680:218::-;32756:7;32781:16;32789:7;32781;:16::i;:::-;32776:64;;32806:34;;-1:-1:-1;;;32806:34:0;;;;;;;;;;;32776:64;-1:-1:-1;32860:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32860:30:0;;32680:218::o;32121:400::-;32202:13;32218:16;32226:7;32218;:16::i;:::-;32202:32;-1:-1:-1;55978:10:0;-1:-1:-1;;;;;32251:28:0;;;32247:175;;32299:44;32316:5;55978:10;33703:164;:::i;32299:44::-;32294:128;;32371:35;;-1:-1:-1;;;32371:35:0;;;;;;;;;;;32294:128;32434:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;32434:35:0;-1:-1:-1;;;;;32434:35:0;;;;;;;;;32485:28;;32434:24;;32485:28;;;;;;;32191:330;32121:400;;:::o;36387:2817::-;36521:27;36551;36570:7;36551:18;:27::i;:::-;36521:57;;36636:4;-1:-1:-1;;;;;36595:45:0;36611:19;-1:-1:-1;;;;;36595:45:0;;36591:86;;36649:28;;-1:-1:-1;;;36649:28:0;;;;;;;;;;;36591:86;36691:27;35501:24;;;:15;:24;;;;;35723:26;;55978:10;35126:30;;;-1:-1:-1;;;;;34819:28:0;;35104:20;;;35101:56;36877:180;;36970:43;36987:4;55978:10;33703:164;:::i;36970:43::-;36965:92;;37022:35;;-1:-1:-1;;;37022:35:0;;;;;;;;;;;36965:92;-1:-1:-1;;;;;37074:16:0;;37070:52;;37099:23;;-1:-1:-1;;;37099:23:0;;;;;;;;;;;37070:52;37271:15;37268:160;;;37411:1;37390:19;37383:30;37268:160;-1:-1:-1;;;;;37808:24:0;;;;;;;:18;:24;;;;;;37806:26;;-1:-1:-1;;37806:26:0;;;37877:22;;;;;;;;;37875:24;;-1:-1:-1;37875:24:0;;;30979:11;30954:23;30950:41;30937:63;-1:-1:-1;;;30937:63:0;38170:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;38465:47:0;;:52;;38461:627;;38570:1;38560:11;;38538:19;38693:30;;;:17;:30;;;;;;:35;;38689:384;;38831:13;;38816:11;:28;38812:242;;38978:30;;;;:17;:30;;;;;:52;;;38812:242;38519:569;38461:627;39135:7;39131:2;-1:-1:-1;;;;;39116:27:0;39125:4;-1:-1:-1;;;;;39116:27:0;;;;;;;;;;;39154:42;36510:2694;;;36387:2817;;;:::o;60331:173::-;5283:13;:11;:13::i;:::-;60400:49:::1;::::0;60382:12:::1;::::0;60400:10:::1;::::0;60423:21:::1;::::0;60382:12;60400:49;60382:12;60400:49;60423:21;60400:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60381:68;;;60468:7;60460:36;;;::::0;-1:-1:-1;;;60460:36:0;;6429:2:1;60460:36:0::1;::::0;::::1;6411:21:1::0;6468:2;6448:18;;;6441:30;-1:-1:-1;;;6487:18:1;;;6480:46;6543:18;;60460:36:0::1;;;;;;;;;60370:134;60331:173::o:0;39300:185::-;39438:39;39455:4;39461:2;39465:7;39438:39;;;;;;;;;;;;:16;:39::i;:::-;39300:185;;;:::o;59642:102::-;5283:13;:11;:13::i;:::-;59718:7:::1;:18;59728:8:::0;;59718:7;:18:::1;:::i;27590:152::-:0;27662:7;27705:27;27724:7;27705:18;:27::i;57827:68::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23132:233::-;23204:7;-1:-1:-1;;;;;23228:19:0;;23224:60;;23256:28;;-1:-1:-1;;;23256:28:0;;;;;;;;;;;23224:60;-1:-1:-1;;;;;;23302:25:0;;;;;:18;:25;;;;;;17291:13;23302:55;;23132:233::o;6045:103::-;5283:13;:11;:13::i;:::-;6110:30:::1;6137:1;6110:18;:30::i;:::-;6045:103::o:0;59948:144::-;5283:13;:11;:13::i;:::-;60041:9:::1;;60028:10;:22;60020:31;;;::::0;::::1;;60062:9;:22:::0;59948:144::o;59752:86::-;5283:13;:11;:13::i;:::-;59816:5:::1;:14:::0;59752:86::o;26373:104::-;26429:13;26462:7;26455:14;;;;;:::i;58272:396::-;58364:5;;58354:15;;:7;:15;:::i;:::-;58341:9;:28;;58333:65;;;;-1:-1:-1;;;58333:65:0;;9137:2:1;58333:65:0;;;9119:21:1;9176:2;9156:18;;;9149:30;9215:26;9195:18;;;9188:54;9259:18;;58333:65:0;8935:348:1;58333:65:0;58444:9;;58433:7;58417:13;60314:1;22222:12;22009:7;22206:13;:28;-1:-1:-1;;22206:46:0;;21948:323;58417:13;:23;;;;:::i;:::-;:36;;58409:58;;;;-1:-1:-1;;;58409:58:0;;9620:2:1;58409:58:0;;;9602:21:1;9659:1;9639:18;;;9632:29;-1:-1:-1;;;9677:18:1;;;9670:39;9726:18;;58409:58:0;9418:332:1;58409:58:0;58486:9;58499:10;58486:23;58478:55;;;;-1:-1:-1;;;58478:55:0;;9957:2:1;58478:55:0;;;9939:21:1;9996:2;9976:18;;;9969:30;-1:-1:-1;;;10015:18:1;;;10008:49;10074:18;;58478:55:0;9755:343:1;58478:55:0;58563:8;;58552:7;:19;;58544:77;;;;-1:-1:-1;;;58544:77:0;;10305:2:1;58544:77:0;;;10287:21:1;10344:2;10324:18;;;10317:30;10383:34;10363:18;;;10356:62;-1:-1:-1;;;10434:18:1;;;10427:43;10487:19;;58544:77:0;10103:409:1;58544:77:0;58634:26;58640:10;58652:7;58634:5;:26::i;33238:308::-;55978:10;-1:-1:-1;;;;;33337:31:0;;;33333:61;;33377:17;;-1:-1:-1;;;33377:17:0;;;;;;;;;;;33333:61;55978:10;33407:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;33407:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;33407:60:0;;;;;;;;;;33483:55;;540:41:1;;;33407:49:0;;55978:10;33483:55;;513:18:1;33483:55:0;;;;;;;33238:308;;:::o;58676:464::-;58790:16;;58765:10;58747:29;;;;:17;:29;;;;;;:39;;58779:7;;58747:39;:::i;:::-;:59;;58739:127;;;;-1:-1:-1;;;58739:127:0;;10719:2:1;58739:127:0;;;10701:21:1;10758:2;10738:18;;;10731:30;10797:34;10777:18;;;10770:62;10868:25;10848:18;;;10841:53;10911:19;;58739:127:0;10517:419:1;58739:127:0;58908:13;;58897:7;58879:15;;:25;;;;:::i;:::-;:42;;58871:82;;;;-1:-1:-1;;;58871:82:0;;11143:2:1;58871:82:0;;;11125:21:1;11182:2;11162:18;;;11155:30;11221:28;11201:18;;;11194:56;11267:18;;58871:82:0;10941:350:1;58871:82:0;58999:9;;58988:7;58972:13;60314:1;22222:12;22009:7;22206:13;:28;-1:-1:-1;;22206:46:0;;21948:323;58972:13;:23;;;;:::i;:::-;:36;;58964:58;;;;-1:-1:-1;;;58964:58:0;;9620:2:1;58964:58:0;;;9602:21:1;9659:1;9639:18;;;9632:29;-1:-1:-1;;;9677:18:1;;;9670:39;9726:18;;58964:58:0;9418:332:1;58964:58:0;59053:10;59035:29;;;;:17;:29;;;;;:31;;;;;;:::i;:::-;;;;-1:-1:-1;;59077:15:0;:17;;;:15;:17;;;:::i;:::-;;;;;;59105:30;59115:10;59127:7;59105:9;:30::i;40083:399::-;40250:31;40263:4;40269:2;40273:7;40250:12;:31::i;:::-;-1:-1:-1;;;;;40296:14:0;;;:19;40292:183;;40335:56;40366:4;40372:2;40376:7;40385:5;40335:30;:56::i;:::-;40330:145;;40419:40;;-1:-1:-1;;;40419:40:0;;;;;;;;;;;40330:145;40083:399;;;;:::o;60100:122::-;5283:13;:11;:13::i;:::-;60181::::1;:33:::0;60100:122::o;59148:169::-;5283:13;:11;:13::i;:::-;59265:9:::1;;59254:7;59238:13;60314:1:::0;22222:12;22009:7;22206:13;:28;-1:-1:-1;;22206:46:0;;21948:323;59238:13:::1;:23;;;;:::i;:::-;:36;;59230:45;;;::::0;::::1;;59286:23;59292:7;59301;59286:5;:23::i;:::-;59148:169:::0;;:::o;59846:94::-;5283:13;:11;:13::i;:::-;59914:8:::1;:18:::0;59846:94::o;59325:309::-;59407:13;59455:16;59463:7;59455;:16::i;:::-;59433:113;;;;-1:-1:-1;;;59433:113:0;;11638:2:1;59433:113:0;;;11620:21:1;11677:2;11657:18;;;11650:30;11716:34;11696:18;;;11689:62;-1:-1:-1;;;11767:18:1;;;11760:45;11822:19;;59433:113:0;11436:411:1;59433:113:0;59588:7;59597:18;:7;:16;:18::i;:::-;59571:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59557:69;;59325:309;;;:::o;33703:164::-;-1:-1:-1;;;;;33824:25:0;;;33800:4;33824:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33703:164::o;6303:201::-;5283:13;:11;:13::i;:::-;-1:-1:-1;;;;;6392:22:0;::::1;6384:73;;;::::0;-1:-1:-1;;;6384:73:0;;13246:2:1;6384:73:0::1;::::0;::::1;13228:21:1::0;13285:2;13265:18;;;13258:30;13324:34;13304:18;;;13297:62;-1:-1:-1;;;13375:18:1;;;13368:36;13421:19;;6384:73:0::1;13044:402:1::0;6384:73:0::1;6468:28;6487:8;6468:18;:28::i;34125:282::-:0;34190:4;34246:7;60314:1;34227:26;;:66;;;;;34280:13;;34270:7;:23;34227:66;:153;;;;-1:-1:-1;;34331:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;34331:44:0;:49;;34125:282::o;28745:1275::-;28812:7;28847;;60314:1;28896:23;28892:1061;;28949:13;;28942:4;:20;28938:1015;;;28987:14;29004:23;;;:17;:23;;;;;;;-1:-1:-1;;;29093:24:0;;:29;;29089:845;;29758:113;29765:6;29775:1;29765:11;29758:113;;-1:-1:-1;;;29836:6:0;29818:25;;;;:17;:25;;;;;;29758:113;;;29904:6;28745:1275;-1:-1:-1;;;28745:1275:0:o;29089:845::-;28964:989;28938:1015;29981:31;;-1:-1:-1;;;29981:31:0;;;;;;;;;;;5562:132;5470:6;;-1:-1:-1;;;;;5470:6:0;55978:10;5626:23;5618:68;;;;-1:-1:-1;;;5618:68:0;;13653:2:1;5618:68:0;;;13635:21:1;;;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;13783:18;;5618:68:0;13451:356:1;6664:191:0;6757:6;;;-1:-1:-1;;;;;6774:17:0;;;-1:-1:-1;;;;;;6774:17:0;;;;;;;6807:40;;6757:6;;;6774:17;6757:6;;6807:40;;6738:16;;6807:40;6727:128;6664:191;:::o;43744:2454::-;43817:20;43840:13;;;43868;;;43864:44;;43890:18;;-1:-1:-1;;;43890:18:0;;;;;;;;;;;43864:44;-1:-1:-1;;;;;44396:22:0;;;;;;:18;:22;;;;17429:2;44396:22;;;:71;;44434:32;44422:45;;44396:71;;;44710:31;;;:17;:31;;;;;-1:-1:-1;31410:15:0;;31384:24;31380:46;30979:11;30954:23;30950:41;30947:52;30937:63;;44710:173;;44945:23;;;;44710:31;;44396:22;;45444:25;44396:22;;45297:335;45712:1;45698:12;45694:20;45652:346;45753:3;45744:7;45741:16;45652:346;;45971:7;45961:8;45958:1;45931:25;45928:1;45925;45920:59;45806:1;45793:15;45652:346;;;45656:77;46031:8;46043:1;46031:13;46027:45;;46053:19;;-1:-1:-1;;;46053:19:0;;;;;;;;;;;46027:45;46089:13;:19;-1:-1:-1;39300:185:0;;;:::o;49723:112::-;49800:27;49810:2;49814:8;49800:27;;;;;;;;;;;;:9;:27::i;42566:716::-;42750:88;;-1:-1:-1;;;42750:88:0;;42729:4;;-1:-1:-1;;;;;42750:45:0;;;;;:88;;55978:10;;42817:4;;42823:7;;42832:5;;42750:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42750:88:0;;;;;;;;-1:-1:-1;;42750:88:0;;;;;;;;;;;;:::i;:::-;;;42746:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43033:6;:13;43050:1;43033:18;43029:235;;43079:40;;-1:-1:-1;;;43079:40:0;;;;;;;;;;;43029:235;43222:6;43216:13;43207:6;43203:2;43199:15;43192:38;42746:529;-1:-1:-1;;;;;;42909:64:0;-1:-1:-1;;;42909:64:0;;-1:-1:-1;42746:529:0;42566:716;;;;;;:::o;2095:723::-;2151:13;2372:5;2381:1;2372:10;2368:53;;-1:-1:-1;;2399:10:0;;;;;;;;;;;;-1:-1:-1;;;2399:10:0;;;;;2095:723::o;2368:53::-;2446:5;2431:12;2487:78;2494:9;;2487:78;;2520:8;;;;:::i;:::-;;-1:-1:-1;2543:10:0;;-1:-1:-1;2551:2:0;2543:10;;:::i;:::-;;;2487:78;;;2575:19;2607:6;2597:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2597:17:0;;2575:39;;2625:154;2632:10;;2625:154;;2659:11;2669:1;2659:11;;:::i;:::-;;-1:-1:-1;2728:10:0;2736:2;2728:5;:10;:::i;:::-;2715:24;;:2;:24;:::i;:::-;2702:39;;2685:6;2692;2685:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2685:56:0;;;;;;;;-1:-1:-1;2756:11:0;2765:2;2756:11;;:::i;:::-;;;2625:154;;48950:689;49081:19;49087:2;49091:8;49081:5;:19::i;:::-;-1:-1:-1;;;;;49142:14:0;;;:19;49138:483;;49182:11;49196:13;49244:14;;;49277:233;49308:62;49347:1;49351:2;49355:7;;;;;;49364:5;49308:30;:62::i;:::-;49303:167;;49406:40;;-1:-1:-1;;;49406:40:0;;;;;;;;;;;49303:167;49505:3;49497:5;:11;49277:233;;49592:3;49575:13;;:20;49571:34;;49597:8;;;49571:34;49163:458;;48950:689;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;2910:18;2951:2;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3481:347::-;3546:6;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3725:2;3714:9;3710:18;3697:32;3772:5;3765:13;3758:21;3751:5;3748:32;3738:60;;3794:1;3791;3784:12;3738:60;3817:5;3807:15;;;3481:347;;;;;:::o;3833:127::-;3894:10;3889:3;3885:20;3882:1;3875:31;3925:4;3922:1;3915:15;3949:4;3946:1;3939:15;3965:1138;4060:6;4068;4076;4084;4137:3;4125:9;4116:7;4112:23;4108:33;4105:53;;;4154:1;4151;4144:12;4105:53;4177:29;4196:9;4177:29;:::i;:::-;4167:39;;4225:38;4259:2;4248:9;4244:18;4225:38;:::i;:::-;4215:48;;4310:2;4299:9;4295:18;4282:32;4272:42;;4365:2;4354:9;4350:18;4337:32;4388:18;4429:2;4421:6;4418:14;4415:34;;;4445:1;4442;4435:12;4415:34;4483:6;4472:9;4468:22;4458:32;;4528:7;4521:4;4517:2;4513:13;4509:27;4499:55;;4550:1;4547;4540:12;4499:55;4586:2;4573:16;4608:2;4604;4601:10;4598:36;;;4614:18;;:::i;:::-;4689:2;4683:9;4657:2;4743:13;;-1:-1:-1;;4739:22:1;;;4763:2;4735:31;4731:40;4719:53;;;4787:18;;;4807:22;;;4784:46;4781:72;;;4833:18;;:::i;:::-;4873:10;4869:2;4862:22;4908:2;4900:6;4893:18;4948:7;4943:2;4938;4934;4930:11;4926:20;4923:33;4920:53;;;4969:1;4966;4959:12;4920:53;5025:2;5020;5016;5012:11;5007:2;4999:6;4995:15;4982:46;5070:1;5065:2;5060;5052:6;5048:15;5044:24;5037:35;5091:6;5081:16;;;;;;;3965:1138;;;;;;;:::o;5108:254::-;5176:6;5184;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5289:9;5276:23;5266:33;;5318:38;5352:2;5341:9;5337:18;5318:38;:::i;:::-;5308:48;;5108:254;;;;;:::o;5367:260::-;5435:6;5443;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5535:29;5554:9;5535:29;:::i;:::-;5525:39;;5583:38;5617:2;5606:9;5602:18;5583:38;:::i;5632:380::-;5711:1;5707:12;;;;5754;;;5775:61;;5829:4;5821:6;5817:17;5807:27;;5775:61;5882:2;5874:6;5871:14;5851:18;5848:38;5845:161;;5928:10;5923:3;5919:20;5916:1;5909:31;5963:4;5960:1;5953:15;5991:4;5988:1;5981:15;5845:161;;5632:380;;;:::o;6698:545::-;6800:2;6795:3;6792:11;6789:448;;;6836:1;6861:5;6857:2;6850:17;6906:4;6902:2;6892:19;6976:2;6964:10;6960:19;6957:1;6953:27;6947:4;6943:38;7012:4;7000:10;6997:20;6994:47;;;-1:-1:-1;7035:4:1;6994:47;7090:2;7085:3;7081:12;7078:1;7074:20;7068:4;7064:31;7054:41;;7145:82;7163:2;7156:5;7153:13;7145:82;;;7208:17;;;7189:1;7178:13;7145:82;;7419:1206;7543:18;7538:3;7535:27;7532:53;;;7565:18;;:::i;:::-;7594:94;7684:3;7644:38;7676:4;7670:11;7644:38;:::i;:::-;7638:4;7594:94;:::i;:::-;7714:1;7739:2;7734:3;7731:11;7756:1;7751:616;;;;8411:1;8428:3;8425:93;;;-1:-1:-1;8484:19:1;;;8471:33;8425:93;-1:-1:-1;;7376:1:1;7372:11;;;7368:24;7364:29;7354:40;7400:1;7396:11;;;7351:57;8531:78;;7724:895;;7751:616;6645:1;6638:14;;;6682:4;6669:18;;-1:-1:-1;;7787:17:1;;;7888:9;7910:229;7924:7;7921:1;7918:14;7910:229;;;8013:19;;;8000:33;7985:49;;8120:4;8105:20;;;;8073:1;8061:14;;;;7940:12;7910:229;;;7914:3;8167;8158:7;8155:16;8152:159;;;8291:1;8287:6;8281:3;8275;8272:1;8268:11;8264:21;8260:34;8256:39;8243:9;8238:3;8234:19;8221:33;8217:79;8209:6;8202:95;8152:159;;;8354:1;8348:3;8345:1;8341:11;8337:19;8331:4;8324:33;7724:895;;7419:1206;;;:::o;8630:127::-;8691:10;8686:3;8682:20;8679:1;8672:31;8722:4;8719:1;8712:15;8746:4;8743:1;8736:15;8762:168;8835:9;;;8866;;8883:15;;;8877:22;;8863:37;8853:71;;8904:18;;:::i;9288:125::-;9353:9;;;9374:10;;;9371:36;;;9387:18;;:::i;11296:135::-;11335:3;11356:17;;;11353:43;;11376:18;;:::i;:::-;-1:-1:-1;11423:1:1;11412:13;;11296:135::o;11852:1187::-;12129:3;12158:1;12191:6;12185:13;12221:36;12247:9;12221:36;:::i;:::-;12276:1;12293:18;;;12320:133;;;;12467:1;12462:356;;;;12286:532;;12320:133;-1:-1:-1;;12353:24:1;;12341:37;;12426:14;;12419:22;12407:35;;12398:45;;;-1:-1:-1;12320:133:1;;12462:356;12493:6;12490:1;12483:17;12523:4;12568:2;12565:1;12555:16;12593:1;12607:165;12621:6;12618:1;12615:13;12607:165;;;12699:14;;12686:11;;;12679:35;12742:16;;;;12636:10;;12607:165;;;12611:3;;;12801:6;12796:3;12792:16;12785:23;;12286:532;;;;;12849:6;12843:13;12865:68;12924:8;12919:3;12912:4;12904:6;12900:17;12865:68;:::i;:::-;-1:-1:-1;;;12955:18:1;;12982:22;;;13031:1;13020:13;;11852:1187;-1:-1:-1;;;;11852:1187:1:o;13812:489::-;-1:-1:-1;;;;;14081:15:1;;;14063:34;;14133:15;;14128:2;14113:18;;14106:43;14180:2;14165:18;;14158:34;;;14228:3;14223:2;14208:18;;14201:31;;;14006:4;;14249:46;;14275:19;;14267:6;14249:46;:::i;:::-;14241:54;13812:489;-1:-1:-1;;;;;;13812:489:1:o;14306:249::-;14375:6;14428:2;14416:9;14407:7;14403:23;14399:32;14396:52;;;14444:1;14441;14434:12;14396:52;14476:9;14470:16;14495:30;14519:5;14495:30;:::i;14560:127::-;14621:10;14616:3;14612:20;14609:1;14602:31;14652:4;14649:1;14642:15;14676:4;14673:1;14666:15;14692:120;14732:1;14758;14748:35;;14763:18;;:::i;:::-;-1:-1:-1;14797:9:1;;14692:120::o;14817:128::-;14884:9;;;14905:11;;;14902:37;;;14919:18;;:::i;14950:112::-;14982:1;15008;14998:35;;15013:18;;:::i;:::-;-1:-1:-1;15047:9:1;;14950:112::o;15067:127::-;15128:10;15123:3;15119:20;15116:1;15109:31;15159:4;15156:1;15149:15;15183:4;15180:1;15173:15
Swarm Source
ipfs://d2cf7f263abb3b37e8170077cecdd866e88eedaae10154eba80dfcc1790d9b59
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.