Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 PEPE
Holders
494
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PEPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NoisyPepe
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-30 */ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.7; /** * @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); } /** * @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). */ 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) } } } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract TheOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract NoisyPepe is ERC721A { uint256 public maxSupply = 1000; uint256 mintCost = 0; uint256 freetx = 1; address public owner; string uri; modifier onlyOwner { require(owner == msg.sender); _; } constructor() ERC721A("NOISY PEPE", "PEPE") { owner = msg.sender; mintCost = 0.0025 ether; uri = "ipfs://QmYFB4FFkDmMXhPiRgVktMmQffh5No6aDGyT9koRrR4mNw/"; } mapping(uint256 => uint256) free; function mint(uint256 amount) payable public { require(totalSupply() + amount <= maxSupply); _mint(amount); } function setUri(string memory _uri) external onlyOwner { uri = _uri; } function _mint(uint256 amount) internal { if (msg.value == 0) { // require(msg.sender == tx.origin); uint256 t = totalSupply(); if (t > maxSupply / 4) { require(balanceOf(msg.sender) == 0); uint256 freeNum = (maxSupply - t) / 12; require(free[block.number] < freeNum); free[block.number]++; } _safeMint(msg.sender, freetx); return; } require(msg.value >= amount * mintCost); _safeMint(msg.sender, amount); } function devMint(uint16 _mintAmount, address _addr) external onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_addr, _mintAmount); } function setFreePertx(uint256 pret, uint256 pret2) external onlyOwner { freetx = pret; maxSupply = pret2; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(uri, _toString(tokenId), ".json")); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) { uint256 royaltyAmount = (_salePrice * 50) / 1000; return (owner, royaltyAmount); } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
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":"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_addr","type":"address"}],"name":"devMint","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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint256","name":"pret","type":"uint256"},{"internalType":"uint256","name":"pret2","type":"uint256"}],"name":"setFreePertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e860085560006009556001600a553480156200002157600080fd5b506040518060400160405280600a8152602001694e4f495359205045504560b01b815250604051806040016040528060048152602001635045504560e01b81525081600290816200007391906200017a565b5060036200008282826200017a565b50600080555050600b80546001600160a01b031916331790556608e1bc9bf0400060095560408051606081019091526036808252620017206020830139600c90620000ce90826200017a565b5062000246565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010057607f821691505b6020821081036200012157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017557600081815260208120601f850160051c81016020861015620001505750805b601f850160051c820191505b8181101562000171578281556001016200015c565b5050505b505050565b81516001600160401b03811115620001965762000196620000d5565b620001ae81620001a78454620000eb565b8462000127565b602080601f831160018114620001e65760008415620001cd5750858301515b600019600386901b1c1916600185901b17855562000171565b600085815260208120601f198616915b828110156200021757888601518255948401946001909101908401620001f6565b5085821015620002365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114ca80620002566000396000f3fe6080604052600436106101355760003560e01c80638377d377116100ab578063a22cb4651161006f578063a22cb46514610343578063b88d4fde14610363578063c87b56dd14610376578063d5abeb0114610396578063e985e9c5146103ac578063fae344c5146103cc57600080fd5b80638377d377146102bb5780638da5cb5b146102db57806395d89b41146102fb5780639b642de114610310578063a0712d681461033057600080fd5b806323b872dd116100fd57806323b872dd146102015780632a55205a146102145780633ccfd60b1461025357806342842e0e146102685780636352211e1461027b57806370a082311461029b57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e98565b6103ec565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5061018461043e565b6040516101669190610f05565b34801561019d57600080fd5b506101b16101ac366004610f18565b6104d0565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f4d565b610514565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f366004610f77565b6105b4565b34801561022057600080fd5b5061023461022f366004610fb3565b61074d565b604080516001600160a01b039093168352602083019190915201610166565b34801561025f57600080fd5b506101dc610780565b6101dc610276366004610f77565b6107c6565b34801561028757600080fd5b506101b1610296366004610f18565b6107e6565b3480156102a757600080fd5b506101f36102b6366004610fd5565b6107f1565b3480156102c757600080fd5b506101dc6102d6366004610ff0565b610840565b3480156102e757600080fd5b50600b546101b1906001600160a01b031681565b34801561030757600080fd5b506101846108d0565b34801561031c57600080fd5b506101dc61032b3660046110b8565b6108df565b6101dc61033e366004610f18565b610902565b34801561034f57600080fd5b506101dc61035e366004611101565b610931565b6101dc61037136600461113d565b61099d565b34801561038257600080fd5b50610184610391366004610f18565b6109e7565b3480156103a257600080fd5b506101f360085481565b3480156103b857600080fd5b5061015a6103c73660046111b9565b610a1b565b3480156103d857600080fd5b506101dc6103e7366004610fb3565b610a49565b60006301ffc9a760e01b6001600160e01b03198316148061041d57506380ac58cd60e01b6001600160e01b03198316145b806104385750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461044d906111d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906111d5565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b60006104db82610a6b565b6104f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061051f826107e6565b9050336001600160a01b038216146105585761053b8133610a1b565b610558576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105bf82610a92565b9050836001600160a01b0316816001600160a01b0316146105f25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761063f576106228633610a1b565b61063f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661066657604051633a954ecd60e21b815260040160405180910390fd5b801561067157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610703576001840160008181526004602052604081205490036107015760005481146107015760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080806103e861075f856032611225565b610769919061123c565b600b546001600160a01b0316969095509350505050565b600b546001600160a01b0316331461079757600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107c3573d6000803e3d6000fd5b50565b6107e18383836040518060200160405280600081525061099d565b505050565b600061043882610a92565b60006001600160a01b03821661081a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600b546001600160a01b0316331461085757600080fd5b6008548261ffff1661086c6001546000540390565b610876919061125e565b11156108be5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640160405180910390fd5b6108cc818361ffff16610b00565b5050565b60606003805461044d906111d5565b600b546001600160a01b031633146108f657600080fd5b600c6108cc82826112b7565b600854816109136001546000540390565b61091d919061125e565b111561092857600080fd5b6107c381610b1a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a88484846105b4565b6001600160a01b0383163b156109e1576109c484848484610be7565b6109e1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c6109f483610cd3565b604051602001610a05929190611377565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b03163314610a6057600080fd5b600a91909155600855565b6000805482108015610438575050600090815260046020526040902054600160e01b161590565b600081600054811015610ae75760008181526004602052604081205490600160e01b82169003610ae5575b80600003610ade575060001901600081815260046020526040902054610abd565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6108cc828260405180602001604052806000815250610d17565b34600003610bc4576000610b316001546000540390565b90506004600854610b42919061123c565b811115610bb857610b52336107f1565b15610b5c57600080fd5b6000600c82600854610b6e919061140e565b610b78919061123c565b436000908152600d60205260409020549091508111610b9657600080fd5b436000908152600d60205260408120805491610bb183611421565b9190505550505b6108cc33600a54610b00565b600954610bd19082611225565b341015610bdd57600080fd5b6107c33382610b00565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c1c90339089908890889060040161143a565b6020604051808303816000875af1925050508015610c57575060408051601f3d908101601f19168201909252610c5491810190611477565b60015b610cb5573d808015610c85576040519150601f19603f3d011682016040523d82523d6000602084013e610c8a565b606091505b508051600003610cad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610ced5750819003601f19909101908152919050565b610d218383610d84565b6001600160a01b0383163b156107e1576000548281035b610d4b6000868380600101945086610be7565b610d68576040516368d2bf6b60e11b815260040160405180910390fd5b818110610d38578160005414610d7d57600080fd5b5050505050565b6000805490829003610da95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610e5857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610e20565b5081600003610e7957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146107c357600080fd5b600060208284031215610eaa57600080fd5b8135610ade81610e82565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008151808452610ef1816020860160208601610eb5565b601f01601f19169290920160200192915050565b602081526000610ade6020830184610ed9565b600060208284031215610f2a57600080fd5b5035919050565b80356001600160a01b0381168114610f4857600080fd5b919050565b60008060408385031215610f6057600080fd5b610f6983610f31565b946020939093013593505050565b600080600060608486031215610f8c57600080fd5b610f9584610f31565b9250610fa360208501610f31565b9150604084013590509250925092565b60008060408385031215610fc657600080fd5b50508035926020909101359150565b600060208284031215610fe757600080fd5b610ade82610f31565b6000806040838503121561100357600080fd5b823561ffff8116811461101557600080fd5b915061102360208401610f31565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561105d5761105d61102c565b604051601f8501601f19908116603f011681019082821181831017156110855761108561102c565b8160405280935085815286868601111561109e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110ca57600080fd5b813567ffffffffffffffff8111156110e157600080fd5b8201601f810184136110f257600080fd5b610ccb84823560208401611042565b6000806040838503121561111457600080fd5b61111d83610f31565b91506020830135801515811461113257600080fd5b809150509250929050565b6000806000806080858703121561115357600080fd5b61115c85610f31565b935061116a60208601610f31565b925060408501359150606085013567ffffffffffffffff81111561118d57600080fd5b8501601f8101871361119e57600080fd5b6111ad87823560208401611042565b91505092959194509250565b600080604083850312156111cc57600080fd5b61101583610f31565b600181811c908216806111e957607f821691505b60208210810361120957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104385761043861120f565b60008261125957634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104385761043861120f565b601f8211156107e157600081815260208120601f850160051c810160208610156112985750805b601f850160051c820191505b81811015610745578281556001016112a4565b815167ffffffffffffffff8111156112d1576112d161102c565b6112e5816112df84546111d5565b84611271565b602080601f83116001811461131a57600084156113025750858301515b600019600386901b1c1916600185901b178555610745565b600085815260208120601f198616915b828110156113495788860151825594840194600190910190840161132a565b50858210156113675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611385816111d5565b6001828116801561139d57600181146113b2576113e1565b60ff19841687528215158302870194506113e1565b8860005260208060002060005b858110156113d85781548a8201529084019082016113bf565b50505082870194505b5050505083516113f5818360208801610eb5565b64173539b7b760d91b9101908152600501949350505050565b818103818111156104385761043861120f565b6000600182016114335761143361120f565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061146d90830184610ed9565b9695505050505050565b60006020828403121561148957600080fd5b8151610ade81610e8256fea2646970667358221220452a3598860bb9640cd2124649443f2b6d4edb5c78f3711ab307db2a50aafb7a64736f6c63430008120033697066733a2f2f516d5946423446466b446d4d586850695267566b744d6d51666668354e6f366144477954396b6f527252346d4e772f
Deployed Bytecode
0x6080604052600436106101355760003560e01c80638377d377116100ab578063a22cb4651161006f578063a22cb46514610343578063b88d4fde14610363578063c87b56dd14610376578063d5abeb0114610396578063e985e9c5146103ac578063fae344c5146103cc57600080fd5b80638377d377146102bb5780638da5cb5b146102db57806395d89b41146102fb5780639b642de114610310578063a0712d681461033057600080fd5b806323b872dd116100fd57806323b872dd146102015780632a55205a146102145780633ccfd60b1461025357806342842e0e146102685780636352211e1461027b57806370a082311461029b57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e98565b6103ec565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5061018461043e565b6040516101669190610f05565b34801561019d57600080fd5b506101b16101ac366004610f18565b6104d0565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f4d565b610514565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f366004610f77565b6105b4565b34801561022057600080fd5b5061023461022f366004610fb3565b61074d565b604080516001600160a01b039093168352602083019190915201610166565b34801561025f57600080fd5b506101dc610780565b6101dc610276366004610f77565b6107c6565b34801561028757600080fd5b506101b1610296366004610f18565b6107e6565b3480156102a757600080fd5b506101f36102b6366004610fd5565b6107f1565b3480156102c757600080fd5b506101dc6102d6366004610ff0565b610840565b3480156102e757600080fd5b50600b546101b1906001600160a01b031681565b34801561030757600080fd5b506101846108d0565b34801561031c57600080fd5b506101dc61032b3660046110b8565b6108df565b6101dc61033e366004610f18565b610902565b34801561034f57600080fd5b506101dc61035e366004611101565b610931565b6101dc61037136600461113d565b61099d565b34801561038257600080fd5b50610184610391366004610f18565b6109e7565b3480156103a257600080fd5b506101f360085481565b3480156103b857600080fd5b5061015a6103c73660046111b9565b610a1b565b3480156103d857600080fd5b506101dc6103e7366004610fb3565b610a49565b60006301ffc9a760e01b6001600160e01b03198316148061041d57506380ac58cd60e01b6001600160e01b03198316145b806104385750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461044d906111d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906111d5565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b60006104db82610a6b565b6104f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061051f826107e6565b9050336001600160a01b038216146105585761053b8133610a1b565b610558576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105bf82610a92565b9050836001600160a01b0316816001600160a01b0316146105f25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761063f576106228633610a1b565b61063f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661066657604051633a954ecd60e21b815260040160405180910390fd5b801561067157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610703576001840160008181526004602052604081205490036107015760005481146107015760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080806103e861075f856032611225565b610769919061123c565b600b546001600160a01b0316969095509350505050565b600b546001600160a01b0316331461079757600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107c3573d6000803e3d6000fd5b50565b6107e18383836040518060200160405280600081525061099d565b505050565b600061043882610a92565b60006001600160a01b03821661081a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600b546001600160a01b0316331461085757600080fd5b6008548261ffff1661086c6001546000540390565b610876919061125e565b11156108be5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640160405180910390fd5b6108cc818361ffff16610b00565b5050565b60606003805461044d906111d5565b600b546001600160a01b031633146108f657600080fd5b600c6108cc82826112b7565b600854816109136001546000540390565b61091d919061125e565b111561092857600080fd5b6107c381610b1a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a88484846105b4565b6001600160a01b0383163b156109e1576109c484848484610be7565b6109e1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c6109f483610cd3565b604051602001610a05929190611377565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b03163314610a6057600080fd5b600a91909155600855565b6000805482108015610438575050600090815260046020526040902054600160e01b161590565b600081600054811015610ae75760008181526004602052604081205490600160e01b82169003610ae5575b80600003610ade575060001901600081815260046020526040902054610abd565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6108cc828260405180602001604052806000815250610d17565b34600003610bc4576000610b316001546000540390565b90506004600854610b42919061123c565b811115610bb857610b52336107f1565b15610b5c57600080fd5b6000600c82600854610b6e919061140e565b610b78919061123c565b436000908152600d60205260409020549091508111610b9657600080fd5b436000908152600d60205260408120805491610bb183611421565b9190505550505b6108cc33600a54610b00565b600954610bd19082611225565b341015610bdd57600080fd5b6107c33382610b00565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c1c90339089908890889060040161143a565b6020604051808303816000875af1925050508015610c57575060408051601f3d908101601f19168201909252610c5491810190611477565b60015b610cb5573d808015610c85576040519150601f19603f3d011682016040523d82523d6000602084013e610c8a565b606091505b508051600003610cad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610ced5750819003601f19909101908152919050565b610d218383610d84565b6001600160a01b0383163b156107e1576000548281035b610d4b6000868380600101945086610be7565b610d68576040516368d2bf6b60e11b815260040160405180910390fd5b818110610d38578160005414610d7d57600080fd5b5050505050565b6000805490829003610da95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610e5857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610e20565b5081600003610e7957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146107c357600080fd5b600060208284031215610eaa57600080fd5b8135610ade81610e82565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008151808452610ef1816020860160208601610eb5565b601f01601f19169290920160200192915050565b602081526000610ade6020830184610ed9565b600060208284031215610f2a57600080fd5b5035919050565b80356001600160a01b0381168114610f4857600080fd5b919050565b60008060408385031215610f6057600080fd5b610f6983610f31565b946020939093013593505050565b600080600060608486031215610f8c57600080fd5b610f9584610f31565b9250610fa360208501610f31565b9150604084013590509250925092565b60008060408385031215610fc657600080fd5b50508035926020909101359150565b600060208284031215610fe757600080fd5b610ade82610f31565b6000806040838503121561100357600080fd5b823561ffff8116811461101557600080fd5b915061102360208401610f31565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561105d5761105d61102c565b604051601f8501601f19908116603f011681019082821181831017156110855761108561102c565b8160405280935085815286868601111561109e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110ca57600080fd5b813567ffffffffffffffff8111156110e157600080fd5b8201601f810184136110f257600080fd5b610ccb84823560208401611042565b6000806040838503121561111457600080fd5b61111d83610f31565b91506020830135801515811461113257600080fd5b809150509250929050565b6000806000806080858703121561115357600080fd5b61115c85610f31565b935061116a60208601610f31565b925060408501359150606085013567ffffffffffffffff81111561118d57600080fd5b8501601f8101871361119e57600080fd5b6111ad87823560208401611042565b91505092959194509250565b600080604083850312156111cc57600080fd5b61101583610f31565b600181811c908216806111e957607f821691505b60208210810361120957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104385761043861120f565b60008261125957634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104385761043861120f565b601f8211156107e157600081815260208120601f850160051c810160208610156112985750805b601f850160051c820191505b81811015610745578281556001016112a4565b815167ffffffffffffffff8111156112d1576112d161102c565b6112e5816112df84546111d5565b84611271565b602080601f83116001811461131a57600084156113025750858301515b600019600386901b1c1916600185901b178555610745565b600085815260208120601f198616915b828110156113495788860151825594840194600190910190840161132a565b50858210156113675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611385816111d5565b6001828116801561139d57600181146113b2576113e1565b60ff19841687528215158302870194506113e1565b8860005260208060002060005b858110156113d85781548a8201529084019082016113bf565b50505082870194505b5050505083516113f5818360208801610eb5565b64173539b7b760d91b9101908152600501949350505050565b818103818111156104385761043861120f565b6000600182016114335761143361120f565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061146d90830184610ed9565b9695505050505050565b60006020828403121561148957600080fd5b8151610ade81610e8256fea2646970667358221220452a3598860bb9640cd2124649443f2b6d4edb5c78f3711ab307db2a50aafb7a64736f6c63430008120033
Deployed Bytecode Sourcemap
57148:2185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18746:639;;;;;;;;;;-1:-1:-1;18746:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18746:639:0;;;;;;;;19648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26147:218::-;;;;;;;;;;-1:-1:-1;26147:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;26147:218:0;1533:203:1;25580:408:0;;;;;;:::i;:::-;;:::i;:::-;;15399:323;;;;;;;;;;-1:-1:-1;15673:12:0;;15460:7;15657:13;:28;15399:323;;;2324:25:1;;;2312:2;2297:18;15399:323:0;2178:177:1;29786:2825:0;;;;;;:::i;:::-;;:::i;59000:213::-;;;;;;;;;;-1:-1:-1;59000:213:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3138:32:1;;;3120:51;;3202:2;3187:18;;3180:34;;;;3093:18;59000:213:0;2946:274:1;59221:109:0;;;;;;;;;;;;;:::i;32707:193::-;;;;;;:::i;:::-;;:::i;21049:152::-;;;;;;;;;;-1:-1:-1;21049:152:0;;;;;:::i;:::-;;:::i;16583:233::-;;;;;;;;;;-1:-1:-1;16583:233:0;;;;;:::i;:::-;;:::i;58480:202::-;;;;;;;;;;-1:-1:-1;58480:202:0;;;;;:::i;:::-;;:::i;57275:20::-;;;;;;;;;;-1:-1:-1;57275:20:0;;;;-1:-1:-1;;;;;57275:20:0;;;19824:104;;;;;;;;;;;;;:::i;57786:84::-;;;;;;;;;;-1:-1:-1;57786:84:0;;;;;:::i;:::-;;:::i;57646:132::-;;;;;;:::i;:::-;;:::i;26705:234::-;;;;;;;;;;-1:-1:-1;26705:234:0;;;;;:::i;:::-;;:::i;33498:407::-;;;;;;:::i;:::-;;:::i;58828:164::-;;;;;;;;;;-1:-1:-1;58828:164:0;;;;;:::i;:::-;;:::i;57185:31::-;;;;;;;;;;;;;;;;27096:164;;;;;;;;;;-1:-1:-1;27096:164:0;;;;;:::i;:::-;;:::i;58690:130::-;;;;;;;;;;-1:-1:-1;58690:130:0;;;;;:::i;:::-;;:::i;18746:639::-;18831:4;-1:-1:-1;;;;;;;;;19155:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19232:25:0;;;19155:102;:179;;;-1:-1:-1;;;;;;;;;;19309:25:0;;;19155:179;19135:199;18746:639;-1:-1:-1;;18746:639:0:o;19648:100::-;19702:13;19735:5;19728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19648:100;:::o;26147:218::-;26223:7;26248:16;26256:7;26248;:16::i;:::-;26243:64;;26273:34;;-1:-1:-1;;;26273:34:0;;;;;;;;;;;26243:64;-1:-1:-1;26327:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26327:30:0;;26147:218::o;25580:408::-;25669:13;25685:16;25693:7;25685;:16::i;:::-;25669:32;-1:-1:-1;49913:10:0;-1:-1:-1;;;;;25718:28:0;;;25714:175;;25766:44;25783:5;49913:10;27096:164;:::i;25766:44::-;25761:128;;25838:35;;-1:-1:-1;;;25838:35:0;;;;;;;;;;;25761:128;25901:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25901:35:0;-1:-1:-1;;;;;25901:35:0;;;;;;;;;25952:28;;25901:24;;25952:28;;;;;;;25658:330;25580:408;;:::o;29786:2825::-;29928:27;29958;29977:7;29958:18;:27::i;:::-;29928:57;;30043:4;-1:-1:-1;;;;;30002:45:0;30018:19;-1:-1:-1;;;;;30002:45:0;;29998:86;;30056:28;;-1:-1:-1;;;30056:28:0;;;;;;;;;;;29998:86;30098:27;28894:24;;;:15;:24;;;;;29122:26;;49913:10;28519:30;;;-1:-1:-1;;;;;28212:28:0;;28497:20;;;28494:56;30284:180;;30377:43;30394:4;49913:10;27096:164;:::i;30377:43::-;30372:92;;30429:35;;-1:-1:-1;;;30429:35:0;;;;;;;;;;;30372:92;-1:-1:-1;;;;;30481:16:0;;30477:52;;30506:23;;-1:-1:-1;;;30506:23:0;;;;;;;;;;;30477:52;30678:15;30675:160;;;30818:1;30797:19;30790:30;30675:160;-1:-1:-1;;;;;31215:24:0;;;;;;;:18;:24;;;;;;31213:26;;-1:-1:-1;;31213:26:0;;;31284:22;;;;;;;;;31282:24;;-1:-1:-1;31282:24:0;;;24438:11;24413:23;24409:41;24396:63;-1:-1:-1;;;24396:63:0;31577:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31872:47:0;;:52;;31868:627;;31977:1;31967:11;;31945:19;32100:30;;;:17;:30;;;;;;:35;;32096:384;;32238:13;;32223:11;:28;32219:242;;32385:30;;;;:17;:30;;;;;:52;;;32219:242;31926:569;31868:627;32542:7;32538:2;-1:-1:-1;;;;;32523:27:0;32532:4;-1:-1:-1;;;;;32523:27:0;;;;;;;;;;;32561:42;29917:2694;;;29786:2825;;;:::o;59000:213::-;59088:7;;;59161:4;59142:15;:10;59155:2;59142:15;:::i;:::-;59141:24;;;;:::i;:::-;59184:5;;-1:-1:-1;;;;;59184:5:0;;59117:48;;-1:-1:-1;59000:213:0;-1:-1:-1;;;;59000:213:0:o;59221:109::-;57359:5;;-1:-1:-1;;;;;57359:5:0;57368:10;57359:19;57351:28;;;;;;59271:51:::1;::::0;59279:10:::1;::::0;59300:21:::1;59271:51:::0;::::1;;;::::0;::::1;::::0;;;59300:21;59279:10;59271:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59221:109::o:0;32707:193::-;32853:39;32870:4;32876:2;32880:7;32853:39;;;;;;;;;;;;:16;:39::i;:::-;32707:193;;;:::o;21049:152::-;21121:7;21164:27;21183:7;21164:18;:27::i;16583:233::-;16655:7;-1:-1:-1;;;;;16679:19:0;;16675:60;;16707:28;;-1:-1:-1;;;16707:28:0;;;;;;;;;;;16675:60;-1:-1:-1;;;;;;16753:25:0;;;;;:18;:25;;;;;;10742:13;16753:55;;16583:233::o;58480:202::-;57359:5;;-1:-1:-1;;;;;57359:5:0;57368:10;57359:19;57351:28;;;;;;58601:9:::1;;58586:11;58570:27;;:13;15673:12:::0;;15460:7;15657:13;:28;;15399:323;58570:13:::1;:27;;;;:::i;:::-;:40;;58562:72;;;::::0;-1:-1:-1;;;58562:72:0;;7525:2:1;58562:72:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;-1:-1:-1;;;7583:18:1;;;7576:49;7642:18;;58562:72:0::1;;;;;;;;58645:29;58655:5;58662:11;58645:29;;:9;:29::i;:::-;58480:202:::0;;:::o;19824:104::-;19880:13;19913:7;19906:14;;;;;:::i;57786:84::-;57359:5;;-1:-1:-1;;;;;57359:5:0;57368:10;57359:19;57351:28;;;;;;57852:3:::1;:10;57858:4:::0;57852:3;:10:::1;:::i;57646:132::-:0;57736:9;;57726:6;57710:13;15673:12;;15460:7;15657:13;:28;;15399:323;57710:13;:22;;;;:::i;:::-;:35;;57702:44;;;;;;57757:13;57763:6;57757:5;:13::i;26705:234::-;49913:10;26800:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26800:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26800:60:0;;;;;;;;;;26876:55;;540:41:1;;;26800:49:0;;49913:10;26876:55;;513:18:1;26876:55:0;;;;;;;26705:234;;:::o;33498:407::-;33673:31;33686:4;33692:2;33696:7;33673:12;:31::i;:::-;-1:-1:-1;;;;;33719:14:0;;;:19;33715:183;;33758:56;33789:4;33795:2;33799:7;33808:5;33758:30;:56::i;:::-;33753:145;;33842:40;;-1:-1:-1;;;33842:40:0;;;;;;;;;;;33753:145;33498:407;;;;:::o;58828:164::-;58893:13;58950:3;58955:18;58965:7;58955:9;:18::i;:::-;58933:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58919:65;;58828:164;;;:::o;27096:::-;-1:-1:-1;;;;;27217:25:0;;;27193:4;27217:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27096:164::o;58690:130::-;57359:5;;-1:-1:-1;;;;;57359:5:0;57368:10;57359:19;57351:28;;;;;;58771:6:::1;:13:::0;;;;58795:9:::1;:17:::0;58690:130::o;27518:282::-;27583:4;27673:13;;27663:7;:23;27620:153;;;;-1:-1:-1;;27724:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27724:44:0;:49;;27518:282::o;22204:1275::-;22271:7;22306;22408:13;;22401:4;:20;22397:1015;;;22446:14;22463:23;;;:17;:23;;;;;;;-1:-1:-1;;;22552:24:0;;:29;;22548:845;;23217:113;23224:6;23234:1;23224:11;23217:113;;-1:-1:-1;;;23295:6:0;23277:25;;;;:17;:25;;;;;;23217:113;;;23363:6;22204:1275;-1:-1:-1;;;22204:1275:0:o;22548:845::-;22423:989;22397:1015;23440:31;;-1:-1:-1;;;23440:31:0;;;;;;;;;;;43658:112;43735:27;43745:2;43749:8;43735:27;;;;;;;;;;;;:9;:27::i;57878:594::-;57933:9;57946:1;57933:14;57929:446;;58014:9;58026:13;15673:12;;15460:7;15657:13;:28;;15399:323;58026:13;58014:25;;58074:1;58062:9;;:13;;;;:::i;:::-;58058:1;:17;58054:245;;;58104:21;58114:10;58104:9;:21::i;:::-;:26;58096:35;;;;;;58150:15;58186:2;58181:1;58169:9;;:13;;;;:::i;:::-;58168:20;;;;:::i;:::-;58220:12;58215:18;;;;:4;:18;;;;;;58150:38;;-1:-1:-1;58215:28:0;-1:-1:-1;58207:37:0;;;;;;58268:12;58263:18;;;;:4;:18;;;;;:20;;;;;;:::i;:::-;;;;;;58077:222;58054:245;58313:29;58323:10;58335:6;;58313:9;:29::i;57929:446::-;58415:8;;58406:17;;:6;:17;:::i;:::-;58393:9;:30;;58385:39;;;;;;58435:29;58445:10;58457:6;58435:9;:29::i;35989:716::-;36173:88;;-1:-1:-1;;;36173:88:0;;36152:4;;-1:-1:-1;;;;;36173:45:0;;;;;:88;;49913:10;;36240:4;;36246:7;;36255:5;;36173:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36173:88:0;;;;;;;;-1:-1:-1;;36173:88:0;;;;;;;;;;;;:::i;:::-;;;36169:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36456:6;:13;36473:1;36456:18;36452:235;;36502:40;;-1:-1:-1;;;36502:40:0;;;;;;;;;;;36452:235;36645:6;36639:13;36630:6;36626:2;36622:15;36615:38;36169:529;-1:-1:-1;;;;;;36332:64:0;-1:-1:-1;;;36332:64:0;;-1:-1:-1;36169:529:0;35989:716;;;;;;:::o;50033:1745::-;50098:17;50532:4;50525;50519:11;50515:22;50624:1;50618:4;50611:15;50699:4;50696:1;50692:12;50685:19;;;50781:1;50776:3;50769:14;50885:3;51124:5;51106:428;51172:1;51167:3;51163:11;51156:18;;51343:2;51337:4;51333:13;51329:2;51325:22;51320:3;51312:36;51437:2;51427:13;;51494:25;51106:428;51494:25;-1:-1:-1;51564:13:0;;;-1:-1:-1;;51679:14:0;;;51741:19;;;51679:14;50033:1745;-1:-1:-1;50033:1745:0:o;42885:689::-;43016:19;43022:2;43026:8;43016:5;:19::i;:::-;-1:-1:-1;;;;;43077:14:0;;;:19;43073:483;;43117:11;43131:13;43179:14;;;43212:233;43243:62;43282:1;43286:2;43290:7;;;;;;43299:5;43243:30;:62::i;:::-;43238:167;;43341:40;;-1:-1:-1;;;43341:40:0;;;;;;;;;;;43238:167;43440:3;43432:5;:11;43212:233;;43527:3;43510:13;;:20;43506:34;;43532:8;;;43506:34;43098:458;;42885:689;;;:::o;37167:2966::-;37240:20;37263:13;;;37291;;;37287:44;;37313:18;;-1:-1:-1;;;37313:18:0;;;;;;;;;;;37287:44;-1:-1:-1;;;;;37819:22:0;;;;;;:18;:22;;;;10880:2;37819:22;;;:71;;37857:32;37845:45;;37819:71;;;38133:31;;;:17;:31;;;;;-1:-1:-1;24869:15:0;;24843:24;24839:46;24438:11;24413:23;24409:41;24406:52;24396:63;;38133:173;;38368:23;;;;38133:31;;37819:22;;39133:25;37819:22;;38986:335;39647:1;39633:12;39629:20;39587:346;39688:3;39679:7;39676:16;39587:346;;39906:7;39896:8;39893:1;39866:25;39863:1;39860;39855:59;39741:1;39728:15;39587:346;;;39591:77;39966:8;39978:1;39966:13;39962:45;;39988:19;;-1:-1:-1;;;39988:19:0;;;;;;;;;;;39962:45;40024:13;:19;-1:-1:-1;32707:193:0;;;:::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:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:1;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:1:o;3225:186::-;3284:6;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;3376:29;3395:9;3376:29;:::i;3416:346::-;3483:6;3491;3544:2;3532:9;3523:7;3519:23;3515:32;3512:52;;;3560:1;3557;3550:12;3512:52;3599:9;3586:23;3649:6;3642:5;3638:18;3631:5;3628:29;3618:57;;3671:1;3668;3661:12;3618:57;3694:5;-1:-1:-1;3718:38:1;3752:2;3737:18;;3718:38;:::i;:::-;3708:48;;3416:346;;;;;:::o;3767:127::-;3828:10;3823:3;3819:20;3816:1;3809:31;3859:4;3856:1;3849:15;3883:4;3880:1;3873:15;3899:632;3964:5;3994:18;4035:2;4027:6;4024:14;4021:40;;;4041:18;;:::i;:::-;4116:2;4110:9;4084:2;4170:15;;-1:-1:-1;;4166:24:1;;;4192:2;4162:33;4158:42;4146:55;;;4216:18;;;4236:22;;;4213:46;4210:72;;;4262:18;;:::i;:::-;4302:10;4298:2;4291:22;4331:6;4322:15;;4361:6;4353;4346:22;4401:3;4392:6;4387:3;4383:16;4380:25;4377:45;;;4418:1;4415;4408:12;4377:45;4468:6;4463:3;4456:4;4448:6;4444:17;4431:44;4523:1;4516:4;4507:6;4499;4495:19;4491:30;4484:41;;;;3899:632;;;;;:::o;4536:451::-;4605:6;4658:2;4646:9;4637:7;4633:23;4629:32;4626:52;;;4674:1;4671;4664:12;4626:52;4714:9;4701:23;4747:18;4739:6;4736:30;4733:50;;;4779:1;4776;4769:12;4733:50;4802:22;;4855:4;4847:13;;4843:27;-1:-1:-1;4833:55:1;;4884:1;4881;4874:12;4833:55;4907:74;4973:7;4968:2;4955:16;4950:2;4946;4942:11;4907:74;:::i;4992:347::-;5057:6;5065;5118:2;5106:9;5097:7;5093:23;5089:32;5086:52;;;5134:1;5131;5124:12;5086:52;5157:29;5176:9;5157:29;:::i;:::-;5147:39;;5236:2;5225:9;5221:18;5208:32;5283:5;5276:13;5269:21;5262:5;5259:32;5249:60;;5305:1;5302;5295:12;5249:60;5328:5;5318:15;;;4992:347;;;;;:::o;5344:667::-;5439:6;5447;5455;5463;5516:3;5504:9;5495:7;5491:23;5487:33;5484:53;;;5533:1;5530;5523:12;5484:53;5556:29;5575:9;5556:29;:::i;:::-;5546:39;;5604:38;5638:2;5627:9;5623:18;5604:38;:::i;:::-;5594:48;;5689:2;5678:9;5674:18;5661:32;5651:42;;5744:2;5733:9;5729:18;5716:32;5771:18;5763:6;5760:30;5757:50;;;5803:1;5800;5793:12;5757:50;5826:22;;5879:4;5871:13;;5867:27;-1:-1:-1;5857:55:1;;5908:1;5905;5898:12;5857:55;5931:74;5997:7;5992:2;5979:16;5974:2;5970;5966:11;5931:74;:::i;:::-;5921:84;;;5344:667;;;;;;;:::o;6016:260::-;6084:6;6092;6145:2;6133:9;6124:7;6120:23;6116:32;6113:52;;;6161:1;6158;6151:12;6113:52;6184:29;6203:9;6184:29;:::i;6281:380::-;6360:1;6356:12;;;;6403;;;6424:61;;6478:4;6470:6;6466:17;6456:27;;6424:61;6531:2;6523:6;6520:14;6500:18;6497:38;6494:161;;6577:10;6572:3;6568:20;6565:1;6558:31;6612:4;6609:1;6602:15;6640:4;6637:1;6630:15;6494:161;;6281:380;;;:::o;6666:127::-;6727:10;6722:3;6718:20;6715:1;6708:31;6758:4;6755:1;6748:15;6782:4;6779:1;6772:15;6798:168;6871:9;;;6902;;6919:15;;;6913:22;;6899:37;6889:71;;6940:18;;:::i;6971:217::-;7011:1;7037;7027:132;;7081:10;7076:3;7072:20;7069:1;7062:31;7116:4;7113:1;7106:15;7144:4;7141:1;7134:15;7027:132;-1:-1:-1;7173:9:1;;6971:217::o;7193:125::-;7258:9;;;7279:10;;;7276:36;;;7292:18;;:::i;7797:545::-;7899:2;7894:3;7891:11;7888:448;;;7935:1;7960:5;7956:2;7949:17;8005:4;8001:2;7991:19;8075:2;8063:10;8059:19;8056:1;8052:27;8046:4;8042:38;8111:4;8099:10;8096:20;8093:47;;;-1:-1:-1;8134:4:1;8093:47;8189:2;8184:3;8180:12;8177:1;8173:20;8167:4;8163:31;8153:41;;8244:82;8262:2;8255:5;8252:13;8244:82;;;8307:17;;;8288:1;8277:13;8244:82;;8518:1352;8644:3;8638:10;8671:18;8663:6;8660:30;8657:56;;;8693:18;;:::i;:::-;8722:97;8812:6;8772:38;8804:4;8798:11;8772:38;:::i;:::-;8766:4;8722:97;:::i;:::-;8874:4;;8938:2;8927:14;;8955:1;8950:663;;;;9657:1;9674:6;9671:89;;;-1:-1:-1;9726:19:1;;;9720:26;9671:89;-1:-1:-1;;8475:1:1;8471:11;;;8467:24;8463:29;8453:40;8499:1;8495:11;;;8450:57;9773:81;;8920:944;;8950:663;7744:1;7737:14;;;7781:4;7768:18;;-1:-1:-1;;8986:20:1;;;9104:236;9118:7;9115:1;9112:14;9104:236;;;9207:19;;;9201:26;9186:42;;9299:27;;;;9267:1;9255:14;;;;9134:19;;9104:236;;;9108:3;9368:6;9359:7;9356:19;9353:201;;;9429:19;;;9423:26;-1:-1:-1;;9512:1:1;9508:14;;;9524:3;9504:24;9500:37;9496:42;9481:58;9466:74;;9353:201;-1:-1:-1;;;;;9600:1:1;9584:14;;;9580:22;9567:36;;-1:-1:-1;8518:1352:1:o;9875:1187::-;10152:3;10181:1;10214:6;10208:13;10244:36;10270:9;10244:36;:::i;:::-;10299:1;10316:18;;;10343:133;;;;10490:1;10485:356;;;;10309:532;;10343:133;-1:-1:-1;;10376:24:1;;10364:37;;10449:14;;10442:22;10430:35;;10421:45;;;-1:-1:-1;10343:133:1;;10485:356;10516:6;10513:1;10506:17;10546:4;10591:2;10588:1;10578:16;10616:1;10630:165;10644:6;10641:1;10638:13;10630:165;;;10722:14;;10709:11;;;10702:35;10765:16;;;;10659:10;;10630:165;;;10634:3;;;10824:6;10819:3;10815:16;10808:23;;10309:532;;;;;10872:6;10866:13;10888:68;10947:8;10942:3;10935:4;10927:6;10923:17;10888:68;:::i;:::-;-1:-1:-1;;;10978:18:1;;11005:22;;;11054:1;11043:13;;9875:1187;-1:-1:-1;;;;9875:1187:1:o;11067:128::-;11134:9;;;11155:11;;;11152:37;;;11169:18;;:::i;11200:135::-;11239:3;11260:17;;;11257:43;;11280:18;;:::i;:::-;-1:-1:-1;11327:1:1;11316:13;;11200:135::o;11340:489::-;-1:-1:-1;;;;;11609:15:1;;;11591:34;;11661:15;;11656:2;11641:18;;11634:43;11708:2;11693:18;;11686:34;;;11756:3;11751:2;11736:18;;11729:31;;;11534:4;;11777:46;;11803:19;;11795:6;11777:46;:::i;:::-;11769:54;11340:489;-1:-1:-1;;;;;;11340:489:1:o;11834:249::-;11903:6;11956:2;11944:9;11935:7;11931:23;11927:32;11924:52;;;11972:1;11969;11962:12;11924:52;12004:9;11998:16;12023:30;12047:5;12023:30;:::i
Swarm Source
ipfs://452a3598860bb9640cd2124649443f2b6d4edb5c78f3711ab307db2a50aafb7a
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.