ERC-721
Overview
Max Total Supply
23,267 SAMPLE
Holders
2,319
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 SAMPLELoading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SampleNFT
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.5
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; error MintLimitExceeded(); contract SampleNFT is ERC721A, Ownable { uint256 public constant MINT_LIMIT = 10; constructor() ERC721A("Sample zkSync NFT", "SAMPLE") {} function mint(uint256 qty) external { if (qty > MINT_LIMIT) revert MintLimitExceeded(); _mint(msg.sender, qty); } function burn(uint256 tokenId) external { _burn(tokenId, true); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": true } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintLimitExceeded","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_LIMIT","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002454c7d56b9332af8238600c3f4efeb5e7f9974384d45b2789354be522a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000800000000000200000000030100190000006003300270000001ff0430019700030000004103550002000000010355000001ff0030019d000100000000001f0000000101200190000000600000c13d0000008001000039000000400010043f0000000001000031000000040210008c000005750000413d0000000203000367000000000203043b000000e002200270000002090420009c000002030000613d0000020a0420009c0000022f0000613d0000020b0420009c000002460000613d0000020c0420009c0000027b0000613d0000020d0420009c000001090000613d0000020e0420009c000002a90000613d0000020f0420009c0000013c0000613d000002100420009c000002c30000613d000002110420009c000001420000613d000002120420009c000001870000613d000002130420009c000002cf0000613d000002140420009c000002ec0000613d000002150420009c000003110000613d000002160420009c0000032a0000613d000002170420009c0000035f0000613d000002180420009c0000037a0000613d000002190420009c000001a20000613d0000021a0120009c000003c30000613d0000021b0120009c000003f70000613d0000021c0120009c000005750000c13d0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000201100367000000000101043b0000023602100197000000000212004b000005750000c13d0000000102000039000002370310009c0000005a0000613d000002380310009c0000005a0000613d000002390110009c00000000020000190000000102006039000000010220018f000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000c001000039000000400010043f0000001101000039000000800010043f0000020001000041000000a00010043f000000400500043d000002010150009c000000760000813d0000004001500039000000400010043f00000006010000390000000000150435000000200450003900000202010000410000000000140435000000800700043d000002030170009c0000007d0000a13d000002310100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001907f605ef0000040f0000000206000039000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000900000613d000002310100004100000000001004350000002201000039000000040010043f0000002402000039000000000100001907f605ef0000040f000000200130008c000800000005001d000700000004001d000600000006001d000500000007001d000000ae0000413d000000000060043500000020020000390000000001000019000400000003001d07f605bc0000040f00000005070000290000000606000029000000070400002900000008050000290000001f027000390000000502200270000000200370008c0000000003020019000000000300401900000004020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000ae0000813d000000000001041b0000000101100039000000a90000013d0000001f0170008c000000c40000a13d00000000006004350000002002000039000400000002001d000000000100001907f605bc0000040f000000040700002900000005060000290000000805000029000000200200008a000000000226016f0000000003000019000000000423004b0000008004700039000000cf0000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000000bb0000013d000000000170004c0000000001000019000000c80000613d000000a00100043d0000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000000dd0000013d000000000262004b000000d90000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b0000000101000039000000010260021000000007040000290000000606000029000000000112019f000000000016041b0000000006050433000002030160009c000000760000213d0000000303000039000000000103041a000000010210019000000001021002700000007f0520018f000000000502c0190000001f0250008c00000000020000190000000102002039000000000121013f0000000101100190000000890000c13d000000200150008c000600000003001d000500000006001d0000041f0000413d000000000030043500000020020000390000000001000019000400000005001d07f605bc0000040f0000000506000029000000060300002900000007040000290000001f026000390000000502200270000000200560008c0000000005020019000000000500401900000004020000290000001f02200039000000050220027000000000022100190000000001510019000000000521004b0000041f0000813d000000000001041b0000000101100039000001040000013d000000040110008a0000021d02000041000000400410008c000000000400001900000000040240190000021d01100197000000000510004c000000000200a0190000021d0110009c00000000010400190000000001026019000000000110004c000005750000c13d0000000401300370000000000201043b000002060120009c000005750000213d000600000002001d0000002401300370000000000101043b000800000001001d07f6067b0000040f00000206011001970000000003000411000700000001001d000000000113004b000004690000613d000000070100002900000000001004350000000701000039000000200010043f0000004002000039000500000002001d0000000001000019000400000003001d07f605bc0000040f000000040200002900000206022001970000000000200435000000200010043f0000000001000019000000050200002907f605bc0000040f000000000101041a000000ff01100190000004690000c13d000000400100043d00000232020000410000000000210435000000040200003907f605ef0000040f07f606240000040f07f606a10000040f00000000010000190000000002000019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d0000000401000039000600000001001d0000000201100367000000000101043b000800000001001d07f6067b0000040f000000080200002900000000002004350000000602000039000000200020043f000500000001001d0000004002000039000000000100001907f605bc0000040f0000000005010019000000000305041a0000000001000411000002060410019700000005010000290000020601100197000700000001001d000000000114004b000004840000613d000000000134004b000004840000613d000000070100002900000000001004350000000701000039000000200010043f0000004002000039000200000002001d0000000001000019000400000005001d000300000003001d000100000004001d07f605bc0000040f00000001020000290000000000200435000000200010043f0000000001000019000000020200002907f605bc0000040f00000003030000290000000405000029000000000101041a000000ff01100190000004840000c13d000000400100043d0000022d020000410000000000210435000000040200003907f605ef0000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000201100367000000000101043b07f6067b0000040f0000020602100197000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f000000040210008a0000021d04000041000000800520008c000000000500001900000000050440190000021d02200197000000000620004c000000000400a0190000021d0220009c00000000020500190000000002046019000000000220004c000005750000c13d0000000402300370000000000502043b000002060250009c000005750000213d0000002402300370000000000202043b000002060420009c000005750000213d0000006404300370000000000404043b000002030640009c000005750000213d00000023064000390000021d07000041000000000816004b000000000800001900000000080780190000021d011001970000021d06600197000000000916004b0000000007008019000000000116013f0000021d0110009c00000000010800190000000001076019000000000110004c000005750000c13d0000000401400039000000000113034f000000000101043b000002030310009c000000760000213d000000bf03100039000000200600008a000000000363016f000002030630009c000000760000213d000000400030043f000000800010043f000000240440003900000000034100190000000006000031000000000363004b000005750000213d0000001f0310018f00000002044003670000000506100272000001e80000613d00000000070000190000000508700210000000000984034f000000000909043b000000a00880003900000000009804350000000107700039000000000867004b000001e00000413d000000000730004c000001f70000613d0000000506600210000000000464034f0000000303300210000000a006600039000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f0000000000360435000000a001100039000000000001043500000044010000390000000201100367000000000301043b0000008004000039000000000105001907f607420000040f00000000010000190000000002000019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000201100367000000000201043b000002060120009c000005750000213d000800000002001d07f606600000040f0000000806000029000000000160004c000004e90000c13d000000400100043d00000064021000390000021e03000041000000000032043500000044021000390000021f03000041000000000032043500000024021000390000002603000039000000000032043500000220020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907f605ef0000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d000000400100043d0000000a0200003900000000002104350000002002000039000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d0000000204000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000000890000c13d000000400100043d00000000007104350000002002100039000000000550004c000004ff0000c13d000001000400008a000000000343016f0000000000320435000000000270004c000000200300003900000000030060190000002002300039000800000001001d07f6064c0000040f000000400100043d000700000001001d000000080200002907f6060b0000040f000000070300002900000000023100490000000001030019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000202100367000000000302043b000000000200041a000000000232004b000004d80000a13d0000000000300435000000200010043f00000040020000390000000001000019000800000003001d07f605bc0000040f0000000802000029000000000101041a0000022101100198000004d80000c13d00000000002004350000000601000039000000200010043f0000004002000039000000000100001907f605bc0000040f000000000101041a0000020602100197000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d0000000101000039000000000101041a000000000200041a0000000002120049000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f07f606240000040f000000400400043d000002300540009c000000760000213d0000002005400039000000400050043f000000000004043507f607420000040f00000000010000190000000002000019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000201100367000000000101043b000002060210009c000005750000213d000000000210004c0000050a0000c13d000000400100043d0000022c020000410000000000210435000000040200003907f605ef0000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d07f606600000040f0000000801000039000000000201041a0000020403200197000000000031041b000001ff010000410000000003000414000001ff0430009c0000000001034019000000c00110021000000205011001c700000206052001970000800d0200003900000003030000390000020704000041000000000600001907f607ec0000040f0000000101200190000004fb0000c13d000005750000013d0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d0000000801000039000000000101041a0000020602100197000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000000310004c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d0000000304000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000000890000c13d000000400100043d00000000007104350000002002100039000000000550004c000005170000c13d000001000400008a000000000343016f0000000000320435000000000270004c000000200300003900000000030060190000002002300039000800000001001d07f6064c0000040f000000400100043d000700000001001d000000080200002907f6060b0000040f000000070300002900000000023100490000000001030019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004030000390000000201300367000000000501043b0000000b0150008c000004e20000413d000000400100043d0000022a020000410000000000210435000000040200003907f605ef0000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000400310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000002010003670000000402100370000000000302043b000002060230009c000005750000213d0000002401100370000000000401043b000000000140004c0000000001000019000000010100c039000000000114004b000005750000c13d0000000001000411000700000001001d00000000001004350000000701000039000000200010043f0000004002000039000500000002001d0000000001000019000600000004001d000800000003001d07f605bc0000040f00000008020000290000000000200435000000200010043f0000000001000019000000050200002907f605bc0000040f000001000200008a000000000301041a000000000223016f0000000603000029000000000232019f000000000021041b000000400100043d0000000000310435000001ff020000410000000003000414000001ff0430009c0000000003028019000001ff0410009c00000000010280190000004001100210000000c002300210000000000112019f00000223011001c70000800d02000039000000030300003900000224040000410000000705000029000000080600002907f607ec0000040f0000000101200190000004fb0000c13d000005750000013d0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000200310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d00000004010000390000000202100367000000000202043b000000000300041a000000000323004b000004dd0000a13d0000000000200435000000200010043f0000004002000039000000000100001907f605bc0000040f000000000101041a0000022101100198000004dd0000c13d000000400100043d000800000001001d07f606400000040f00000008010000290000000000010435000000400100043d000700000001001d07f606400000040f000000070100002900000000000104350000002002000039000000400300043d000800000003001d0000000000230435000000200230003907f605f80000040f000000080300002900000000023100490000000001030019000000000300001907f605e50000040f0000000001000416000000000110004c000005750000c13d000000040100008a00000000011000310000021d02000041000000400310008c000000000300001900000000030240190000021d01100197000000000410004c000000000200a0190000021d0110009c00000000010300190000000001026019000000000110004c000005750000c13d07f606120000040f000800000001001d07f6061b0000040f0000000802000029000002060220019700000000002004350000000702000039000000200020043f000800000001001d0000004002000039000000000100001907f605bc0000040f000000080200002907f606740000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f0000001f0160008c000004350000a13d00000000003004350000002002000039000700000002001d000000000100001907f605bc0000040f000000070700002900000005060000290000000805000029000000200200008a000000000226016f0000000003000019000000000423004b0000000004570019000004400000813d0000000004040433000000000041041b0000002003300039000000200770003900000001011000390000042c0000013d000000000160004c0000000001000019000004390000613d00000000010404330000000302600210000000010400008a000000000224022f000000000242013f000000000221016f00000001016002100000044d0000013d000000000262004b0000044a0000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000603000029000000000112019f000000000013041b000000000000041b0000000801000039000000000201041a00000204042001970000000006000411000000000464019f000000000041041b000001ff010000410000000005000414000001ff0450009c0000000001054019000000c00110021000000205011001c700000206052001970000800d02000039000002070400004107f607ec0000040f0000000101200190000005750000613d00000020010000390000010000100443000001200000044300000100010000390000004002000039000002080300004107f605e50000040f000000080100002900000000001004350000000601000039000000200010043f0000004002000039000000000100001907f605bc0000040f000000000201041a00000204022001970000000606000029000000000262019f000000000021041b000001ff010000410000000002000414000001ff0320009c0000000001024019000000c00110021000000205011001c70000800d02000039000000040300003900000233040000410000000705000029000000080700002907f607ec0000040f0000000101200190000004fb0000c13d000005750000013d000000000130004c000004870000613d000000000005041b000000070100002900000000001004350000000501000039000000200010043f0000004002000039000400000002001d000000000100001907f605bc0000040f000000000201041a0000022e02200041000000000021041b000000080100002900000000001004350000000601000029000000200010043f0000000001000019000000040200002907f605bc0000040f00000226020000410000000000200439000400000001001d0000800b01000039000000060200002907f605d30000040f000000a0011002100000000702000029000000000121019f0000022f011001c70000000402000029000000000012041b00000005010000290000020801100198000004c10000c13d00000008010000290000000101100039000400000001001d00000000001004350000000601000029000000200010043f0000004002000039000000000100001907f605bc0000040f000000000101041a000000000110004c000004c10000c13d000000000100041a0000000402000029000000000112004b000004c10000613d000000040100002900000000001004350000000601000029000000200010043f0000004002000039000000000100001907f605bc0000040f0000000502000029000000000021041b000001ff010000410000000002000414000001ff0320009c0000000001024019000000c00110021000000205011001c70000800d020000390000000403000039000002270400004100000007050000290000000006000019000000080700002907f607ec0000040f0000000101200190000005750000613d0000000101000039000000000201041a0000000102200039000000000021041b00000000010000190000000002000019000000000300001907f605e50000040f000000400100043d00000234020000410000000000210435000000040200003907f605ef0000040f000000400100043d00000222020000410000000000210435000000040200003907f605ef0000040f000000000150004c000005220000c13d000000400100043d00000229020000410000000000210435000000040200003907f605ef0000040f0000000801000039000000000201041a0000020403200197000000000363019f000000000031041b000001ff010000410000000003000414000001ff0430009c0000000001034019000000c00110021000000205011001c700000206052001970000800d020000390000000303000039000002070400004107f607ec0000040f0000000101200190000005750000613d00000000010000190000000002000019000000000300001907f605e50000040f000000000040043500000235040000410000000003000019000000000573004b0000026f0000813d0000000005230019000000000604041a000000000065043500000020033000390000000104400039000005020000013d00000000001004350000000501000039000000200010043f0000004002000039000000000100001907f605bc0000040f000000000101041a0000020302100197000000400100043d00000000002104350000002002000039000000000300001907f605e50000040f00000000004004350000022b040000410000000003000019000000000573004b000003530000813d0000000005230019000000000604041a0000000000650435000000200330003900000001044000390000051a0000013d0000000001000411000700000001001d0000020604100197000400000004001d000000000100041a000800000001001d00000000004004350000000501000039000000200010043f0000004002000039000300000002001d0000000001000019000500000005001d000600000003001d07f605bc0000040f000000050200002900000225322000d1000000000301041a0000000002230019000000000021041b000000080100002900000000001004350000000601000029000000200010043f0000000001000019000000030200002907f605bc0000040f00000226020000410000000000200439000300000001001d0000800b01000039000000060200002907f605d30000040f00000208020000410000000503000029000000010330008c000000000200c0190000000403000029000000000223019f000000a001100210000000000112019f0000000302000029000000000012041b000001ff010000410000000002000414000001ff0320009c0000000001024019000000c00110021000000205011001c70000800d020000390000022704000041000000060300002900000000050000190000000706000029000000080700002907f607ec0000040f00000008070000290000000101200190000005750000613d00000005010000290000000001170019000600000001001d00000001077000390000000601000029000000000117004b000005780000613d000001ff010000410000000002000414000001ff0320009c0000000001024019000000c00110021000000205011001c70000800d020000390000000403000039000002270400004100000000050000190000000706000029000800000007001d000000080700002907f607ec0000040f00000008070000290000000101200190000005600000c13d0000000001000019000000000200001907f605ef0000040f0000000701000029000000000110004c000005800000c13d000000400100043d00000228020000410000000000210435000000040200003907f605ef0000040f0000000601000029000000000010041b00000000010000190000000002000019000000000300001907f605e50000040f0001000000000002000100000005001d000001ff05000041000001ff0630009c00000000030580190000004003300210000001ff0640009c00000000040580190000006004400210000000000334019f000001ff0410009c0000000001058019000000c001100210000000000113019f07f607ec0000040f000000010900002900000000030100190000006003300270000001ff03300197000000200430008c000000200500003900000000050340190000001f0450018f0000000505500272000005a80000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005a00000413d000000010220018f000000000640004c000005b80000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d000001ff03000041000001ff0410009c00000000010380190000004001100210000001ff0420009c00000000020380190000006002200210000000000112019f0000000002000414000001ff0420009c0000000002038019000000c002200210000000000112019f00000205011001c7000080100200003907f607f10000040f0000000102200190000005d00000613d000000000101043b000000000001042d0000000001000019000000000200001907f605ef0000040f0000000003010019000001ff010000410000000004000414000001ff0540009c0000000001044019000000c001100210000000600220021000000000011200190000023a01100041000000000203001907f607f10000040f0000000102200190000005e20000613d000000000101043b000000000001042d0000000001000019000000000200001907f605ef0000040f000001ff04000041000001ff0510009c000000000104801900000040011002100000000001310019000001ff0320009c000000000204801900000060022002100000000001210019000007f70001042e000001ff03000041000001ff0420009c0000000002038019000001ff0410009c000000000103801900000040011002100000006002200210000000000112019f000007f8000104300000000003010433000000000032043500000020022000390000000004000019000000000534004b000006040000813d00000000054200190000002004400039000000000614001900000000060604330000000000650435000005fc0000013d000000000132001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d0000000003020019000000200200003900000000002104350000002002100039000000000103001907f605f80000040f000000000001042d00000004010000390000000201100367000000000101043b0000023b0210009c000006180000813d000000000001042d0000000001000019000000000200001907f605ef0000040f00000024010000390000000201100367000000000101043b0000023b0210009c000006210000813d000000000001042d0000000001000019000000000200001907f605ef0000040f000000040110008a0000021d020000410000005f0310008c000000000300001900000000030220190000021d01100197000000000410004c00000000020080190000021d0110009c00000000010300190000000001026019000000000110004c0000063d0000613d00000002030003670000000401300370000000000101043b000002060210009c0000063d0000213d0000002402300370000000000202043b000002060420009c0000063d0000213d0000004403300370000000000303043b000000000001042d0000000001000019000000000200001907f605ef0000040f0000023c0210009c000006450000813d0000002001100039000000400010043f000000000001042d000002310100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001907f605ef0000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000002030310009c000006590000213d0000000102200190000006590000c13d000000400010043f000000000001042d000002310100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001907f605ef0000040f0000000801000039000000000101041a00000206011001970000000002000411000000000121004b000006670000c13d000000000001042d000000400100043d00000044021000390000023d0300004100000000003204350000022002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003907f605ef0000040f00000206022001970000000000200435000000200010043f0000004002000039000000000100001907f605bc0000040f000000000001042d00030000000000020000000003010019000000000100041a000000000131004b0000069c0000a13d00000000003004350000000401000039000200000001001d000000200010043f00000040020000390000000001000019000300000003001d07f605bc0000040f0000000303000029000000000101041a00000221021001980000069c0000c13d0000004002000039000100000002001d000000000210004c0000069b0000c13d000000010330008a000300000003001d00000000003004350000000201000029000000200010043f0000000001000019000000010200002907f605bc0000040f0000000303000029000000000101041a0000068e0000013d000000000001042d000000400100043d0000023e020000410000000000210435000000040200003907f605ef0000040f0008000000000002000500000002001d000700000001001d000800000003001d000000000103001907f6067b0000040f00000007020000290000020602200197000300000001001d0000020601100197000600000002001d000000000121004b000007300000c13d000000080100002900000000001004350000000601000039000000200010043f0000004002000039000000000100001907f605bc0000040f0000000006010019000000000406041a000000000100041100000206051001970000000603000029000000000135004b000006d40000613d000000000145004b000006d40000613d00000000003004350000000701000039000000200010043f0000004002000039000200000002001d0000000001000019000700000006001d000400000004001d000100000005001d07f605bc0000040f00000001020000290000000000200435000000200010043f0000000001000019000000020200002907f605bc0000040f000000040400002900000007060000290000000603000029000000000101041a000000ff011001900000073d0000613d00000005010000290000020601100198000700000001001d000007350000613d000000000140004c000006db0000613d000000000006041b00000000003004350000000501000039000400000001001d000000200010043f0000004002000039000500000002001d000000000100001907f605bc0000040f000000000201041a000000010220008a000000000021041b000000070100002900000000001004350000000401000029000000200010043f0000000001000019000000050200002907f605bc0000040f000000000201041a0000000102200039000000000021041b000000080100002900000000001004350000000401000039000400000001001d000000200010043f0000000001000019000000050200002907f605bc0000040f00000226020000410000000000200439000500000001001d0000800b01000039000000040200002907f605d30000040f000000a0011002100000000702000029000000000121019f00000208011001c70000000502000029000000000012041b00000003010000290000020801100198000007200000c13d00000008010000290000000101100039000500000001001d00000000001004350000000401000029000000200010043f0000004002000039000000000100001907f605bc0000040f000000000101041a000000000110004c000007200000c13d000000000100041a0000000502000029000000000112004b000007200000613d000000050100002900000000001004350000000401000029000000200010043f0000004002000039000000000100001907f605bc0000040f0000000302000029000000000021041b000001ff010000410000000002000414000001ff0320009c0000000001024019000000c00110021000000205011001c70000800d020000390000000403000039000002270400004100000006050000290000000706000029000000080700002907f607ec0000040f00000001012001900000073a0000613d000000000001042d000000400100043d0000023f020000410000000000210435000000040200003907f605ef0000040f000000400100043d00000240020000410000000000210435000000040200003907f605ef0000040f0000000001000019000000000200001907f605ef0000040f000000400100043d0000022d020000410000000000210435000000040200003907f605ef0000040f0004000000000002000300000004001d000400000002001d000100000001001d000200000003001d07f606a10000040f00000241010000410000000000100439000000040100002900000004001004430000800201000039000000240200003907f605d30000040f000000000110004c000007580000613d000000010100002900000004020000290000000203000029000000030400002907f6075e0000040f000000000110004c000007590000613d000000000001042d000000400100043d00000242020000410000000000210435000000040200003907f605ef0000040f0005000000000002000200000002001d000000400600043d0000024302000041000000000026043500000064026000390000000005000414000100000005001d00000080050000390000000000520435000000440260003900000000003204350000020601100197000000240260003900000000001204350000000001000411000002060110019700000004026000390000000000120435000300000006001d0000008402600039000000000104001907f605f80000040f00000002020000290000020602200197000000040320008c0000077e0000c13d0000000002000415000000050220008a00000020022000c9000500000000001d000007890000013d000000030300002900000000043100490000000101000029000000000503001907f605860000040f0000000002000415000000040220008a00000020022000c9000400000000001d000000000110004c000007a90000613d0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600430018f00000003060000290000000003640019000000000443004b00000000040000190000000104004039000002030530009c0000000005060019000007e30000213d0000000104400190000007e30000c13d000000400030043f0000001f0110008c000007a60000a13d00000000010504330000023603100197000000000313004b000007a60000c13d000000200220011a000000000201001f000002430110009c00000000010000190000000101006039000000000001042d0000000001000019000000000200001907f605ef0000040f00000060010000390000000102000032000007b40000c13d0000000002010433000000000320004c000007ea0000c13d000000400100043d00000242020000410000000000210435000000040200003907f605ef0000040f000002030120009c000007e30000213d0000003f01200039000000200300008a000000000331016f000000400100043d0000000003310019000000000413004b00000000040000190000000104004039000002030530009c000007e30000213d0000000104400190000007e30000c13d000000400030043f00000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500272000007d30000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000007cb0000413d000000000640004c000007ac0000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000007ac0000013d000002310100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001907f605ef0000040f000000200110003907f605ef0000040f000007ef002104210000000102000039000000000001042d0000000002000019000007ee0000013d000007f4002104230000000102000039000000000001042d0000000002000019000007f30000013d000007f600000432000007f70001042e000007f80001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff53616d706c65207a6b53796e63204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc053414d504c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000027752400000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c50000000000000000000000000000000000000000000000000000000001ffc9a7800000000000000000000000000000000000000000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000a14c4b5000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c310000000000000000000000000000000000000000000000010000000000000001796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef2e07630000000000000000000000000000000000000000000000000000000000b562e8dd00000000000000000000000000000000000000000000000000000000b643bfa600000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8f4eb6040000000000000000000000000000000000000000000000000000000059c896be0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf4e487b7100000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925cf4700e400000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5aceffffffff0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe04f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572df2d9b4200000000000000000000000000000000000000000000000000000000a114810000000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83d1a57ed600000000000000000000000000000000000000000000000000000000150b7a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
[ 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.