Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 53 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Team Mint | 16568180 | 733 days ago | IN | 0 ETH | 0.00192796 | ||||
Mint | 16567971 | 733 days ago | IN | 0 ETH | 0.00120113 | ||||
Mint | 16567957 | 733 days ago | IN | 0 ETH | 0.00140897 | ||||
Mint | 16567952 | 733 days ago | IN | 0 ETH | 0.00106592 | ||||
Mint | 16567952 | 733 days ago | IN | 0 ETH | 0.00106592 | ||||
Mint | 16567949 | 733 days ago | IN | 0 ETH | 0.00108876 | ||||
Mint | 16567949 | 733 days ago | IN | 0 ETH | 0.00108876 | ||||
Mint | 16567948 | 733 days ago | IN | 0 ETH | 0.00111926 | ||||
Mint | 16567948 | 733 days ago | IN | 0 ETH | 0.00111926 | ||||
Mint | 16567946 | 733 days ago | IN | 0 ETH | 0.00107834 | ||||
Mint | 16567943 | 733 days ago | IN | 0 ETH | 0.00099606 | ||||
Mint | 16567941 | 733 days ago | IN | 0 ETH | 0.00098434 | ||||
Mint | 16567941 | 733 days ago | IN | 0 ETH | 0.00098434 | ||||
Mint | 16567940 | 733 days ago | IN | 0 ETH | 0.00099831 | ||||
Mint | 16567938 | 733 days ago | IN | 0 ETH | 0.00104879 | ||||
Mint | 16567937 | 733 days ago | IN | 0 ETH | 0.00103335 | ||||
Mint | 16567936 | 733 days ago | IN | 0 ETH | 0.00122003 | ||||
Mint | 16567933 | 733 days ago | IN | 0 ETH | 0.00108552 | ||||
Mint | 16567929 | 733 days ago | IN | 0 ETH | 0.00106441 | ||||
Mint | 16567929 | 733 days ago | IN | 0 ETH | 0.00106441 | ||||
Mint | 16567928 | 733 days ago | IN | 0 ETH | 0.00105592 | ||||
Mint | 16567926 | 733 days ago | IN | 0 ETH | 0.0010383 | ||||
Mint | 16567926 | 733 days ago | IN | 0 ETH | 0.0010383 | ||||
Mint | 16567924 | 733 days ago | IN | 0 ETH | 0.00103419 | ||||
Mint | 16567924 | 733 days ago | IN | 0 ETH | 0.00103419 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BlonkBlonk
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-06 */ /** ▄▄▄▄ ██▓ ▒█████ ███▄ █ ██ ▄█▀ ▄▄▄▄ ██▓ ▒█████ ███▄ █ ██ ▄█▀ ▓█████▄ ▓██▒ ▒██▒ ██▒ ██ ▀█ █ ██▄█▒ ▓█████▄ ▓██▒ ▒██▒ ██▒ ██ ▀█ █ ██▄█▒ ▒██▒ ▄██▒██░ ▒██░ ██▒▓██ ▀█ ██▒▓███▄░ ▒██▒ ▄██▒██░ ▒██░ ██▒▓██ ▀█ ██▒▓███▄░ ▒██░█▀ ▒██░ ▒██ ██░▓██▒ ▐▌██▒▓██ █▄ ▒██░█▀ ▒██░ ▒██ ██░▓██▒ ▐▌██▒▓██ █▄ ░▓█ ▀█▓░██████▒░ ████▓▒░▒██░ ▓██░▒██▒ █▄░▓█ ▀█▓░██████▒░ ████▓▒░▒██░ ▓██░▒██▒ █▄ ░▒▓███▀▒░ ▒░▓ ░░ ▒░▒░▒░ ░ ▒░ ▒ ▒ ▒ ▒▒ ▓▒░▒▓███▀▒░ ▒░▓ ░░ ▒░▒░▒░ ░ ▒░ ▒ ▒ ▒ ▒▒ ▓▒ ▒░▒ ░ ░ ░ ▒ ░ ░ ▒ ▒░ ░ ░░ ░ ▒░░ ░▒ ▒░▒░▒ ░ ░ ░ ▒ ░ ░ ▒ ▒░ ░ ░░ ░ ▒░░ ░▒ ▒░ ░ ░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; /** * @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) } } } contract BlonkBlonk is ERC721A { address public owner; uint256 public maxSupply; uint256 public mintPrice; mapping(uint256 => uint256) private _userMinted; function mint(uint256 amount) payable public { require(totalSupply() + amount <= maxSupply); require(msg.value >= mintPrice * amount); _safeMint(msg.sender, amount); } function mint() public { require(msg.sender == tx.origin); require(totalSupply() + 1 <= maxSupply); _mints(msg.sender); } function _mints(address addr) internal { uint256 free = FreeNum(); if (free == 1) { require(balanceOf(msg.sender) < 1); require(_userMinted[block.number] < FreeBlocks() && balanceOf(tx.origin) < 1); _userMinted[block.number]++; } _mint(msg.sender, free); } function teamMint(address addr, uint256 amount) public onlyOwner { require(totalSupply() + amount <= maxSupply); _safeMint(addr, amount); } modifier onlyOwner { require(owner == msg.sender); _; } constructor() ERC721A("Blonk Blonk", "BB") { owner = msg.sender; maxSupply = 3333; mintPrice = 0.002 ether; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked("ipfs://bafybeide2fsjcryygfzh55lfics5urjbpugwuxnobtupyrq4eckjitn2gy/", _toString(tokenId), ".json")); } function FreeNum() internal returns (uint256) { if (totalSupply() < 1000) { return 2; } return 1; } function FreeBlocks() internal returns (uint256){ return (maxSupply - totalSupply()) / 12; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) { uint256 royaltyAmount = (_salePrice * 60) / 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":"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":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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
60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a426c6f6e6b20426c6f6e6b60a81b81525060405180604001604052806002815260200161212160f11b815250816002908162000062919062000146565b50600362000071828262000146565b50600080555050600880546001600160a01b03191633179055610d0560095566071afd498d0000600a5562000212565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000cc57607f821691505b602082108103620000ed57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200014157600081815260208120601f850160051c810160208610156200011c5750805b601f850160051c820191505b818110156200013d5782815560010162000128565b5050505b505050565b81516001600160401b03811115620001625762000162620000a1565b6200017a81620001738454620000b7565b84620000f3565b602080601f831160018114620001b25760008415620001995750858301515b600019600386901b1c1916600185901b1785556200013d565b600085815260208120601f198616915b82811015620001e357888601518255948401946001909101908401620001c2565b5085821015620002025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6112eb80620002226000396000f3fe6080604052600436106101355760003560e01c80636817c76c116100ab578063a22cb4651161006f578063a22cb4651461032e578063add5a4fa1461034e578063b88d4fde1461036e578063c87b56dd14610381578063d5abeb01146103a1578063e985e9c5146103b757600080fd5b80636817c76c146102b057806370a08231146102c65780638da5cb5b146102e657806395d89b4114610306578063a0712d681461031b57600080fd5b806318160ddd116100fd57806318160ddd146101f357806323b872dd146102165780632a55205a146102295780633ccfd60b1461026857806342842e0e1461027d5780636352211e1461029057600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c95780631249c58b146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e54565b6103d7565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610429565b6040516101669190610ec1565b34801561019d57600080fd5b506101b16101ac366004610ed4565b6104bb565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f09565b6104ff565b005b3480156101ea57600080fd5b506101dc61059f565b3480156101ff57600080fd5b50600154600054035b604051908152602001610166565b6101dc610224366004610f33565b6105d6565b34801561023557600080fd5b50610249610244366004610f6f565b61076e565b604080516001600160a01b039093168352602083019190915201610166565b34801561027457600080fd5b506101dc6107a1565b6101dc61028b366004610f33565b6107e7565b34801561029c57600080fd5b506101b16102ab366004610ed4565b610807565b3480156102bc57600080fd5b50610208600a5481565b3480156102d257600080fd5b506102086102e1366004610f91565b610812565b3480156102f257600080fd5b506008546101b1906001600160a01b031681565b34801561031257600080fd5b50610184610861565b6101dc610329366004610ed4565b610870565b34801561033a57600080fd5b506101dc610349366004610fac565b6108ba565b34801561035a57600080fd5b506101dc610369366004610f09565b610926565b6101dc61037c366004610ffe565b610971565b34801561038d57600080fd5b5061018461039c366004610ed4565b6109bb565b3480156103ad57600080fd5b5061020860095481565b3480156103c357600080fd5b5061015a6103d23660046110da565b6109ec565b60006301ffc9a760e01b6001600160e01b03198316148061040857506380ac58cd60e01b6001600160e01b03198316145b806104235750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104389061110d565b80601f01602080910402602001604051908101604052809291908181526020018280546104649061110d565b80156104b15780601f10610486576101008083540402835291602001916104b1565b820191906000526020600020905b81548152906001019060200180831161049457829003601f168201915b5050505050905090565b60006104c682610a1a565b6104e3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050a82610807565b9050336001600160a01b038216146105435761052681336109ec565b610543576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3332146105ab57600080fd5b600954600154600054036105c090600161115d565b11156105cb57600080fd5b6105d433610a41565b565b60006105e182610acb565b9050836001600160a01b0316816001600160a01b0316146106145760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106615761064486336109ec565b61066157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661068857604051633a954ecd60e21b815260040160405180910390fd5b801561069357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610725576001840160008181526004602052604081205490036107235760005481146107235760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600080806103e861078085603c611170565b61078a9190611187565b6008546001600160a01b0316969095509350505050565b6008546001600160a01b031633146107b857600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107e4573d6000803e3d6000fd5b50565b61080283838360405180602001604052806000815250610971565b505050565b600061042382610acb565b60006001600160a01b03821661083b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104389061110d565b600954816108816001546000540390565b61088b919061115d565b111561089657600080fd5b80600a546108a49190611170565b3410156108b057600080fd5b6107e43382610b39565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461093d57600080fd5b6009548161094e6001546000540390565b610958919061115d565b111561096357600080fd5b61096d8282610b39565b5050565b61097c8484846105d6565b6001600160a01b0383163b156109b55761099884848484610b53565b6109b5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109c682610c3e565b6040516020016109d691906111a9565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610423575050600090815260046020526040902054600160e01b161590565b6000610a4b610c82565b905080600103610ac1576001610a6033610812565b10610a6a57600080fd5b610a72610ca6565b436000908152600b6020526040902054108015610a9757506001610a9532610812565b105b610aa057600080fd5b436000908152600b60205260408120805491610abb8361122f565b91905055505b61096d3382610cd3565b600081600054811015610b205760008181526004602052604081205490600160e01b82169003610b1e575b80600003610b17575060001901600081815260046020526040902054610af6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b61096d828260405180602001604052806000815250610dd1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610b88903390899088908890600401611248565b6020604051808303816000875af1925050508015610bc3575060408051601f3d908101601f19168201909252610bc091810190611285565b60015b610c21573d808015610bf1576040519150601f19603f3d011682016040523d82523d6000602084013e610bf6565b606091505b508051600003610c19576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610c585750819003601f19909101908152919050565b60006103e8610c946001546000540390565b1015610ca05750600290565b50600190565b6000600c610cb76001546000540390565b600954610cc491906112a2565b610cce9190611187565b905090565b6000805490829003610cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610da757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610d6f565b5081600003610dc857604051622e076360e81b815260040160405180910390fd5b60005550505050565b610ddb8383610cd3565b6001600160a01b0383163b15610802576000548281035b610e056000868380600101945086610b53565b610e22576040516368d2bf6b60e11b815260040160405180910390fd5b818110610df2578160005414610e3757600080fd5b5050505050565b6001600160e01b0319811681146107e457600080fd5b600060208284031215610e6657600080fd5b8135610b1781610e3e565b60005b83811015610e8c578181015183820152602001610e74565b50506000910152565b60008151808452610ead816020860160208601610e71565b601f01601f19169290920160200192915050565b602081526000610b176020830184610e95565b600060208284031215610ee657600080fd5b5035919050565b80356001600160a01b0381168114610f0457600080fd5b919050565b60008060408385031215610f1c57600080fd5b610f2583610eed565b946020939093013593505050565b600080600060608486031215610f4857600080fd5b610f5184610eed565b9250610f5f60208501610eed565b9150604084013590509250925092565b60008060408385031215610f8257600080fd5b50508035926020909101359150565b600060208284031215610fa357600080fd5b610b1782610eed565b60008060408385031215610fbf57600080fd5b610fc883610eed565b915060208301358015158114610fdd57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561101457600080fd5b61101d85610eed565b935061102b60208601610eed565b925060408501359150606085013567ffffffffffffffff8082111561104f57600080fd5b818701915087601f83011261106357600080fd5b81358181111561107557611075610fe8565b604051601f8201601f19908116603f0116810190838211818310171561109d5761109d610fe8565b816040528281528a60208487010111156110b657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156110ed57600080fd5b6110f683610eed565b915061110460208401610eed565b90509250929050565b600181811c9082168061112157607f821691505b60208210810361114157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561042357610423611147565b808202811582820484141761042357610423611147565b6000826111a457634e487b7160e01b600052601260045260246000fd5b500490565b7f697066733a2f2f6261667962656964653266736a6372797967667a6835356c6681527f6963733575726a627075677775786e6f627475707972713465636b6a69746e3260208201526267792f60e81b604082015260008251611213816043850160208701610e71565b64173539b7b760d91b6043939091019283015250604801919050565b60006001820161124157611241611147565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061127b90830184610e95565b9695505050505050565b60006020828403121561129757600080fd5b8151610b1781610e3e565b818103818111156104235761042361114756fea2646970667358221220d44f658860ebedce5567de5644f75780b389967ba30cd8c952af469c0833488b64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101355760003560e01c80636817c76c116100ab578063a22cb4651161006f578063a22cb4651461032e578063add5a4fa1461034e578063b88d4fde1461036e578063c87b56dd14610381578063d5abeb01146103a1578063e985e9c5146103b757600080fd5b80636817c76c146102b057806370a08231146102c65780638da5cb5b146102e657806395d89b4114610306578063a0712d681461031b57600080fd5b806318160ddd116100fd57806318160ddd146101f357806323b872dd146102165780632a55205a146102295780633ccfd60b1461026857806342842e0e1461027d5780636352211e1461029057600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c95780631249c58b146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e54565b6103d7565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610429565b6040516101669190610ec1565b34801561019d57600080fd5b506101b16101ac366004610ed4565b6104bb565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f09565b6104ff565b005b3480156101ea57600080fd5b506101dc61059f565b3480156101ff57600080fd5b50600154600054035b604051908152602001610166565b6101dc610224366004610f33565b6105d6565b34801561023557600080fd5b50610249610244366004610f6f565b61076e565b604080516001600160a01b039093168352602083019190915201610166565b34801561027457600080fd5b506101dc6107a1565b6101dc61028b366004610f33565b6107e7565b34801561029c57600080fd5b506101b16102ab366004610ed4565b610807565b3480156102bc57600080fd5b50610208600a5481565b3480156102d257600080fd5b506102086102e1366004610f91565b610812565b3480156102f257600080fd5b506008546101b1906001600160a01b031681565b34801561031257600080fd5b50610184610861565b6101dc610329366004610ed4565b610870565b34801561033a57600080fd5b506101dc610349366004610fac565b6108ba565b34801561035a57600080fd5b506101dc610369366004610f09565b610926565b6101dc61037c366004610ffe565b610971565b34801561038d57600080fd5b5061018461039c366004610ed4565b6109bb565b3480156103ad57600080fd5b5061020860095481565b3480156103c357600080fd5b5061015a6103d23660046110da565b6109ec565b60006301ffc9a760e01b6001600160e01b03198316148061040857506380ac58cd60e01b6001600160e01b03198316145b806104235750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104389061110d565b80601f01602080910402602001604051908101604052809291908181526020018280546104649061110d565b80156104b15780601f10610486576101008083540402835291602001916104b1565b820191906000526020600020905b81548152906001019060200180831161049457829003601f168201915b5050505050905090565b60006104c682610a1a565b6104e3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050a82610807565b9050336001600160a01b038216146105435761052681336109ec565b610543576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3332146105ab57600080fd5b600954600154600054036105c090600161115d565b11156105cb57600080fd5b6105d433610a41565b565b60006105e182610acb565b9050836001600160a01b0316816001600160a01b0316146106145760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106615761064486336109ec565b61066157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661068857604051633a954ecd60e21b815260040160405180910390fd5b801561069357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610725576001840160008181526004602052604081205490036107235760005481146107235760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600080806103e861078085603c611170565b61078a9190611187565b6008546001600160a01b0316969095509350505050565b6008546001600160a01b031633146107b857600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107e4573d6000803e3d6000fd5b50565b61080283838360405180602001604052806000815250610971565b505050565b600061042382610acb565b60006001600160a01b03821661083b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104389061110d565b600954816108816001546000540390565b61088b919061115d565b111561089657600080fd5b80600a546108a49190611170565b3410156108b057600080fd5b6107e43382610b39565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461093d57600080fd5b6009548161094e6001546000540390565b610958919061115d565b111561096357600080fd5b61096d8282610b39565b5050565b61097c8484846105d6565b6001600160a01b0383163b156109b55761099884848484610b53565b6109b5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109c682610c3e565b6040516020016109d691906111a9565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610423575050600090815260046020526040902054600160e01b161590565b6000610a4b610c82565b905080600103610ac1576001610a6033610812565b10610a6a57600080fd5b610a72610ca6565b436000908152600b6020526040902054108015610a9757506001610a9532610812565b105b610aa057600080fd5b436000908152600b60205260408120805491610abb8361122f565b91905055505b61096d3382610cd3565b600081600054811015610b205760008181526004602052604081205490600160e01b82169003610b1e575b80600003610b17575060001901600081815260046020526040902054610af6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b61096d828260405180602001604052806000815250610dd1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610b88903390899088908890600401611248565b6020604051808303816000875af1925050508015610bc3575060408051601f3d908101601f19168201909252610bc091810190611285565b60015b610c21573d808015610bf1576040519150601f19603f3d011682016040523d82523d6000602084013e610bf6565b606091505b508051600003610c19576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610c585750819003601f19909101908152919050565b60006103e8610c946001546000540390565b1015610ca05750600290565b50600190565b6000600c610cb76001546000540390565b600954610cc491906112a2565b610cce9190611187565b905090565b6000805490829003610cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610da757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610d6f565b5081600003610dc857604051622e076360e81b815260040160405180910390fd5b60005550505050565b610ddb8383610cd3565b6001600160a01b0383163b15610802576000548281035b610e056000868380600101945086610b53565b610e22576040516368d2bf6b60e11b815260040160405180910390fd5b818110610df2578160005414610e3757600080fd5b5050505050565b6001600160e01b0319811681146107e457600080fd5b600060208284031215610e6657600080fd5b8135610b1781610e3e565b60005b83811015610e8c578181015183820152602001610e74565b50506000910152565b60008151808452610ead816020860160208601610e71565b601f01601f19169290920160200192915050565b602081526000610b176020830184610e95565b600060208284031215610ee657600080fd5b5035919050565b80356001600160a01b0381168114610f0457600080fd5b919050565b60008060408385031215610f1c57600080fd5b610f2583610eed565b946020939093013593505050565b600080600060608486031215610f4857600080fd5b610f5184610eed565b9250610f5f60208501610eed565b9150604084013590509250925092565b60008060408385031215610f8257600080fd5b50508035926020909101359150565b600060208284031215610fa357600080fd5b610b1782610eed565b60008060408385031215610fbf57600080fd5b610fc883610eed565b915060208301358015158114610fdd57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561101457600080fd5b61101d85610eed565b935061102b60208601610eed565b925060408501359150606085013567ffffffffffffffff8082111561104f57600080fd5b818701915087601f83011261106357600080fd5b81358181111561107557611075610fe8565b604051601f8201601f19908116603f0116810190838211818310171561109d5761109d610fe8565b816040528281528a60208487010111156110b657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156110ed57600080fd5b6110f683610eed565b915061110460208401610eed565b90509250929050565b600181811c9082168061112157607f821691505b60208210810361114157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561042357610423611147565b808202811582820484141761042357610423611147565b6000826111a457634e487b7160e01b600052601260045260246000fd5b500490565b7f697066733a2f2f6261667962656964653266736a6372797967667a6835356c6681527f6963733575726a627075677775786e6f627475707972713465636b6a69746e3260208201526267792f60e81b604082015260008251611213816043850160208701610e71565b64173539b7b760d91b6043939091019283015250604801919050565b60006001820161124157611241611147565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061127b90830184610e95565b9695505050505050565b60006020828403121561129757600080fd5b8151610b1781610e3e565b818103818111156104235761042361114756fea2646970667358221220d44f658860ebedce5567de5644f75780b389967ba30cd8c952af469c0833488b64736f6c63430008120033
Deployed Bytecode Sourcemap
53517:2176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20472:639;;;;;;;;;;-1:-1:-1;20472:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20472:639:0;;;;;;;;21374:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27865:218::-;;;;;;;;;;-1:-1:-1;27865:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;27865:218:0;1533:203:1;27298:408:0;;;;;;:::i;:::-;;:::i;:::-;;53917:153;;;;;;;;;;;;;:::i;17125:323::-;;;;;;;;;;-1:-1:-1;17399:12:0;;17186:7;17383:13;:28;17125:323;;;2324:25:1;;;2312:2;2297:18;17125:323:0;2178:177:1;31504:2827:0;;;;;;:::i;:::-;;:::i;55358:213::-;;;;;;;;;;-1:-1:-1;55358:213:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3138:32:1;;;3120:51;;3202:2;3187:18;;3180:34;;;;3093:18;55358:213:0;2946:274:1;55579:109:0;;;;;;;;;;;;;:::i;34427:193::-;;;;;;:::i;:::-;;:::i;22767:152::-;;;;;;;;;;-1:-1:-1;22767:152:0;;;;;:::i;:::-;;:::i;53619:24::-;;;;;;;;;;;;;;;;18309:233;;;;;;;;;;-1:-1:-1;18309:233:0;;;;;:::i;:::-;;:::i;53557:20::-;;;;;;;;;;-1:-1:-1;53557:20:0;;;;-1:-1:-1;;;;;53557:20:0;;;21550:104;;;;;;;;;;;;;:::i;53710:199::-;;;;;;:::i;:::-;;:::i;28423:234::-;;;;;;;;;;-1:-1:-1;28423:234:0;;;;;:::i;:::-;;:::i;54443:162::-;;;;;;;;;;-1:-1:-1;54443:162:0;;;;;:::i;:::-;;:::i;35220:407::-;;;;;;:::i;:::-;;:::i;54854:230::-;;;;;;;;;;-1:-1:-1;54854:230:0;;;;;:::i;:::-;;:::i;53586:24::-;;;;;;;;;;;;;;;;28814:164;;;;;;;;;;-1:-1:-1;28814:164:0;;;;;:::i;:::-;;:::i;20472:639::-;20557:4;-1:-1:-1;;;;;;;;;20881:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20958:25:0;;;20881:102;:179;;;-1:-1:-1;;;;;;;;;;21035:25:0;;;20881:179;20861:199;20472:639;-1:-1:-1;;20472:639:0:o;21374:100::-;21428:13;21461:5;21454:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21374:100;:::o;27865:218::-;27941:7;27966:16;27974:7;27966;:16::i;:::-;27961:64;;27991:34;;-1:-1:-1;;;27991:34:0;;;;;;;;;;;27961:64;-1:-1:-1;28045:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28045:30:0;;27865:218::o;27298:408::-;27387:13;27403:16;27411:7;27403;:16::i;:::-;27387:32;-1:-1:-1;51643:10:0;-1:-1:-1;;;;;27436:28:0;;;27432:175;;27484:44;27501:5;51643:10;28814:164;:::i;27484:44::-;27479:128;;27556:35;;-1:-1:-1;;;27556:35:0;;;;;;;;;;;27479:128;27619:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;27619:35:0;-1:-1:-1;;;;;27619:35:0;;;;;;;;;27670:28;;27619:24;;27670:28;;;;;;;27376:330;27298:408;;:::o;53917:153::-;53959:10;53973:9;53959:23;53951:32;;;;;;54023:9;;17399:12;;17186:7;17383:13;:28;54002:17;;54018:1;54002:17;:::i;:::-;:30;;53994:39;;;;;;54044:18;54051:10;54044:6;:18::i;:::-;53917:153::o;31504:2827::-;31648:27;31678;31697:7;31678:18;:27::i;:::-;31648:57;;31763:4;-1:-1:-1;;;;;31722:45:0;31738:19;-1:-1:-1;;;;;31722:45:0;;31718:86;;31776:28;;-1:-1:-1;;;31776:28:0;;;;;;;;;;;31718:86;31818:27;30612:24;;;:15;:24;;;;;30840:26;;51643:10;30237:30;;;-1:-1:-1;;;;;29930:28:0;;30215:20;;;30212:56;32004:180;;32097:43;32114:4;51643:10;28814:164;:::i;32097:43::-;32092:92;;32149:35;;-1:-1:-1;;;32149:35:0;;;;;;;;;;;32092:92;-1:-1:-1;;;;;32201:16:0;;32197:52;;32226:23;;-1:-1:-1;;;32226:23:0;;;;;;;;;;;32197:52;32398:15;32395:160;;;32538:1;32517:19;32510:30;32395:160;-1:-1:-1;;;;;32935:24:0;;;;;;;:18;:24;;;;;;32933:26;;-1:-1:-1;;32933:26:0;;;33004:22;;;;;;;;;33002:24;;-1:-1:-1;33002:24:0;;;26156:11;26131:23;26127:41;26114:63;-1:-1:-1;;;26114:63:0;33297:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;33592:47:0;;:52;;33588:627;;33697:1;33687:11;;33665:19;33820:30;;;:17;:30;;;;;;:35;;33816:384;;33958:13;;33943:11;:28;33939:242;;34105:30;;;;:17;:30;;;;;:52;;;33939:242;33646:569;33588:627;34262:7;34258:2;-1:-1:-1;;;;;34243:27:0;34252:4;-1:-1:-1;;;;;34243:27:0;;;;;;;;;;;31635:2696;;;31504:2827;;;:::o;55358:213::-;55446:7;;;55519:4;55500:15;:10;55513:2;55500:15;:::i;:::-;55499:24;;;;:::i;:::-;55542:5;;-1:-1:-1;;;;;55542:5:0;;55475:48;;-1:-1:-1;55358:213:0;-1:-1:-1;;;;55358:213:0:o;55579:109::-;54655:5;;-1:-1:-1;;;;;54655:5:0;54664:10;54655:19;54647:28;;;;;;55629:51:::1;::::0;55637:10:::1;::::0;55658:21:::1;55629:51:::0;::::1;;;::::0;::::1;::::0;;;55658:21;55637:10;55629:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55579:109::o:0;34427:193::-;34573:39;34590:4;34596:2;34600:7;34573:39;;;;;;;;;;;;:16;:39::i;:::-;34427:193;;;:::o;22767:152::-;22839:7;22882:27;22901:7;22882:18;:27::i;18309:233::-;18381:7;-1:-1:-1;;;;;18405:19:0;;18401:60;;18433:28;;-1:-1:-1;;;18433:28:0;;;;;;;;;;;18401:60;-1:-1:-1;;;;;;18479:25:0;;;;;:18;:25;;;;;;12468:13;18479:55;;18309:233::o;21550:104::-;21606:13;21639:7;21632:14;;;;;:::i;53710:199::-;53800:9;;53790:6;53774:13;17399:12;;17186:7;17383:13;:28;;17125:323;53774:13;:22;;;;:::i;:::-;:35;;53766:44;;;;;;53854:6;53842:9;;:18;;;;:::i;:::-;53829:9;:31;;53821:40;;;;;;53872:29;53882:10;53894:6;53872:9;:29::i;28423:234::-;51643:10;28518:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28518:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28518:60:0;;;;;;;;;;28594:55;;540:41:1;;;28518:49:0;;51643:10;28594:55;;513:18:1;28594:55:0;;;;;;;28423:234;;:::o;54443:162::-;54655:5;;-1:-1:-1;;;;;54655:5:0;54664:10;54655:19;54647:28;;;;;;54553:9:::1;;54543:6;54527:13;17399:12:::0;;17186:7;17383:13;:28;;17125:323;54527:13:::1;:22;;;;:::i;:::-;:35;;54519:44;;;::::0;::::1;;54574:23;54584:4;54590:6;54574:9;:23::i;:::-;54443:162:::0;;:::o;35220:407::-;35395:31;35408:4;35414:2;35418:7;35395:12;:31::i;:::-;-1:-1:-1;;;;;35441:14:0;;;:19;35437:183;;35480:56;35511:4;35517:2;35521:7;35530:5;35480:30;:56::i;:::-;35475:145;;35564:40;;-1:-1:-1;;;35564:40:0;;;;;;;;;;;35475:145;35220:407;;;;:::o;54854:230::-;54919:13;55047:18;55057:7;55047:9;:18::i;:::-;54959:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;54945:131;;54854:230;;;:::o;28814:164::-;-1:-1:-1;;;;;28935:25:0;;;28911:4;28935:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28814:164::o;29236:282::-;29301:4;29391:13;;29381:7;:23;29338:153;;;;-1:-1:-1;;29442:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29442:44:0;:49;;29236:282::o;54078:357::-;54128:12;54143:9;:7;:9::i;:::-;54128:24;;54167:4;54175:1;54167:9;54163:231;;54225:1;54201:21;54211:10;54201:9;:21::i;:::-;:25;54193:34;;;;;;54278:12;:10;:12::i;:::-;54262;54250:25;;;;:11;:25;;;;;;:40;:89;;;;;54338:1;54315:20;54325:9;54315;:20::i;:::-;:24;54250:89;54242:98;;;;;;54367:12;54355:25;;;;:11;:25;;;;;:27;;;;;;:::i;:::-;;;;;;54163:231;54404:23;54410:10;54422:4;54404:5;:23::i;23922:1275::-;23989:7;24024;24126:13;;24119:4;:20;24115:1015;;;24164:14;24181:23;;;:17;:23;;;;;;;-1:-1:-1;;;24270:24:0;;:29;;24266:845;;24935:113;24942:6;24952:1;24942:11;24935:113;;-1:-1:-1;;;25013:6:0;24995:25;;;;:17;:25;;;;;;24935:113;;;25081:6;23922:1275;-1:-1:-1;;;23922:1275:0:o;24266:845::-;24141:989;24115:1015;25158:31;;-1:-1:-1;;;25158:31:0;;;;;;;;;;;45388:112;45465:27;45475:2;45479:8;45465:27;;;;;;;;;;;;:9;:27::i;37719:716::-;37903:88;;-1:-1:-1;;;37903:88:0;;37882:4;;-1:-1:-1;;;;;37903:45:0;;;;;:88;;51643:10;;37970:4;;37976:7;;37985:5;;37903:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37903:88:0;;;;;;;;-1:-1:-1;;37903:88:0;;;;;;;;;;;;:::i;:::-;;;37899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38186:6;:13;38203:1;38186:18;38182:235;;38232:40;;-1:-1:-1;;;38232:40:0;;;;;;;;;;;38182:235;38375:6;38369:13;38360:6;38356:2;38352:15;38345:38;37899:529;-1:-1:-1;;;;;;38062:64:0;-1:-1:-1;;;38062:64:0;;-1:-1:-1;37719:716:0;;;;;;:::o;51763:1745::-;51828:17;52262:4;52255;52249:11;52245:22;52354:1;52348:4;52341:15;52429:4;52426:1;52422:12;52415:19;;;52511:1;52506:3;52499:14;52615:3;52854:5;52836:428;52902:1;52897:3;52893:11;52886:18;;53073:2;53067:4;53063:13;53059:2;53055:22;53050:3;53042:36;53167:2;53157:13;;53224:25;52836:428;53224:25;-1:-1:-1;53294:13:0;;;-1:-1:-1;;53409:14:0;;;53471:19;;;53409:14;51763:1745;-1:-1:-1;51763:1745:0:o;55092:144::-;55129:7;55169:4;55153:13;17399:12;;17186:7;17383:13;:28;;17125:323;55153:13;:20;55149:61;;;-1:-1:-1;55197:1:0;;55092:144::o;55149:61::-;-1:-1:-1;55227:1:0;;55092:144::o;55244:106::-;55284:7;55340:2;55323:13;17399:12;;17186:7;17383:13;:28;;17125:323;55323:13;55311:9;;:25;;;;:::i;:::-;55310:32;;;;:::i;:::-;55303:39;;55244:106;:::o;38897:2966::-;38970:20;38993:13;;;39021;;;39017:44;;39043:18;;-1:-1:-1;;;39043:18:0;;;;;;;;;;;39017:44;-1:-1:-1;;;;;39549:22:0;;;;;;:18;:22;;;;12606:2;39549:22;;;:71;;39587:32;39575:45;;39549:71;;;39863:31;;;:17;:31;;;;;-1:-1:-1;26587:15:0;;26561:24;26557:46;26156:11;26131:23;26127:41;26124:52;26114:63;;39863:173;;40098:23;;;;39863:31;;39549:22;;40863:25;39549:22;;40716:335;41377:1;41363:12;41359:20;41317:346;41418:3;41409:7;41406:16;41317:346;;41636:7;41626:8;41623:1;41596:25;41593:1;41590;41585:59;41471:1;41458:15;41317:346;;;41321:77;41696:8;41708:1;41696:13;41692:45;;41718:19;;-1:-1:-1;;;41718:19:0;;;;;;;;;;;41692:45;41754:13;:19;-1:-1:-1;34427:193:0;;;:::o;44615:689::-;44746:19;44752:2;44756:8;44746:5;:19::i;:::-;-1:-1:-1;;;;;44807:14:0;;;:19;44803:483;;44847:11;44861:13;44909:14;;;44942:233;44973:62;45012:1;45016:2;45020:7;;;;;;45029:5;44973:30;:62::i;:::-;44968:167;;45071:40;;-1:-1:-1;;;45071:40:0;;;;;;;;;;;44968:167;45170:3;45162:5;:11;44942:233;;45257:3;45240:13;;:20;45236:34;;45262:8;;;45236:34;44828:458;;44615:689;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693: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:347::-;3481:6;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3581:29;3600:9;3581:29;:::i;:::-;3571:39;;3660:2;3649:9;3645:18;3632:32;3707:5;3700:13;3693:21;3686:5;3683:32;3673:60;;3729:1;3726;3719:12;3673:60;3752:5;3742:15;;;3416:347;;;;;:::o;3768:127::-;3829:10;3824:3;3820:20;3817:1;3810:31;3860:4;3857:1;3850:15;3884:4;3881:1;3874:15;3900:1138;3995:6;4003;4011;4019;4072:3;4060:9;4051:7;4047:23;4043:33;4040:53;;;4089:1;4086;4079:12;4040:53;4112:29;4131:9;4112:29;:::i;:::-;4102:39;;4160:38;4194:2;4183:9;4179:18;4160:38;:::i;:::-;4150:48;;4245:2;4234:9;4230:18;4217:32;4207:42;;4300:2;4289:9;4285:18;4272:32;4323:18;4364:2;4356:6;4353:14;4350:34;;;4380:1;4377;4370:12;4350:34;4418:6;4407:9;4403:22;4393:32;;4463:7;4456:4;4452:2;4448:13;4444:27;4434:55;;4485:1;4482;4475:12;4434:55;4521:2;4508:16;4543:2;4539;4536:10;4533:36;;;4549:18;;:::i;:::-;4624:2;4618:9;4592:2;4678:13;;-1:-1:-1;;4674:22:1;;;4698:2;4670:31;4666:40;4654:53;;;4722:18;;;4742:22;;;4719:46;4716:72;;;4768:18;;:::i;:::-;4808:10;4804:2;4797:22;4843:2;4835:6;4828:18;4883:7;4878:2;4873;4869;4865:11;4861:20;4858:33;4855:53;;;4904:1;4901;4894:12;4855:53;4960:2;4955;4951;4947:11;4942:2;4934:6;4930:15;4917:46;5005:1;5000:2;4995;4987:6;4983:15;4979:24;4972:35;5026:6;5016:16;;;;;;;3900:1138;;;;;;;:::o;5043:260::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5211:29;5230:9;5211:29;:::i;:::-;5201:39;;5259:38;5293:2;5282:9;5278:18;5259:38;:::i;:::-;5249:48;;5043:260;;;;;:::o;5308:380::-;5387:1;5383:12;;;;5430;;;5451:61;;5505:4;5497:6;5493:17;5483:27;;5451:61;5558:2;5550:6;5547:14;5527:18;5524:38;5521:161;;5604:10;5599:3;5595:20;5592:1;5585:31;5639:4;5636:1;5629:15;5667:4;5664:1;5657:15;5521:161;;5308:380;;;:::o;5693:127::-;5754:10;5749:3;5745:20;5742:1;5735:31;5785:4;5782:1;5775:15;5809:4;5806:1;5799:15;5825:125;5890:9;;;5911:10;;;5908:36;;;5924:18;;:::i;5955:168::-;6028:9;;;6059;;6076:15;;;6070:22;;6056:37;6046:71;;6097:18;;:::i;6128:217::-;6168:1;6194;6184:132;;6238:10;6233:3;6229:20;6226:1;6219:31;6273:4;6270:1;6263:15;6301:4;6298:1;6291:15;6184:132;-1:-1:-1;6330:9:1;;6128:217::o;6350:722::-;6713:34;6708:3;6701:47;6778:34;6773:2;6768:3;6764:12;6757:56;-1:-1:-1;;;6838:2:1;6833:3;6829:12;6822:27;6683:3;6878:6;6872:13;6894:73;6960:6;6955:2;6950:3;6946:12;6941:2;6933:6;6929:15;6894:73;:::i;:::-;-1:-1:-1;;;7026:2:1;6986:16;;;;7018:11;;;7011:28;-1:-1:-1;7063:2:1;7055:11;;6350:722;-1:-1:-1;6350:722:1:o;7077:135::-;7116:3;7137:17;;;7134:43;;7157:18;;:::i;:::-;-1:-1:-1;7204:1:1;7193:13;;7077:135::o;7217:489::-;-1:-1:-1;;;;;7486:15:1;;;7468:34;;7538:15;;7533:2;7518:18;;7511:43;7585:2;7570:18;;7563:34;;;7633:3;7628:2;7613:18;;7606:31;;;7411:4;;7654:46;;7680:19;;7672:6;7654:46;:::i;:::-;7646:54;7217:489;-1:-1:-1;;;;;;7217:489:1:o;7711:249::-;7780:6;7833:2;7821:9;7812:7;7808:23;7804:32;7801:52;;;7849:1;7846;7839:12;7801:52;7881:9;7875:16;7900:30;7924:5;7900:30;:::i;7965:128::-;8032:9;;;8053:11;;;8050:37;;;8067:18;;:::i
Swarm Source
ipfs://d44f658860ebedce5567de5644f75780b389967ba30cd8c952af469c0833488b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.