ERC-721
Overview
Max Total Supply
3,333 c0cK
Holders
2,013
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 c0cKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
c0cKroAcht0wN
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-28 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/cockroachtown.sol pragma solidity ^0.8.4; contract c0cKroAcht0wN is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool private iNvaSioN; string public c0cKroAchBoDEE; uint256 public immutable c0cKroAchArmy = 5555; uint256 public immutable c0cKroAchEGGs; uint256 private immutable c0cKroAchLaB; uint256 public c0cKroAchC0st = 0.005 ether; uint256 public c0cKroAchCaPTuReD; mapping(address => uint256) public c0cKroAchViRgiN; constructor( uint256 _EGGs, uint256 _LaB ) ERC721A("c0cKroAch t0wN", "c0cK") { c0cKroAchEGGs = _EGGs; c0cKroAchLaB = _LaB; } modifier callerIsc0cKroAch() { require(tx.origin == msg.sender, "The caller is not a c0cKroAch"); _; } function breeDc0cKroAch(uint256 breeDEGGs) external payable callerIsc0cKroAch nonReentrant { uint256 totalc0cKroAch = totalSupply(); require(iNvaSioN); require(breeDEGGs > 0); require(breeDEGGs <= c0cKroAchEGGs); require(totalc0cKroAch + breeDEGGs <= c0cKroAchArmy); require(c0cKroAchViRgiN[msg.sender] + breeDEGGs <= c0cKroAchEGGs); require(totalc0cKroAch - c0cKroAchCaPTuReD + breeDEGGs <= c0cKroAchArmy - c0cKroAchLaB); if (c0cKroAchViRgiN[msg.sender] == 0) { require(msg.value >= (breeDEGGs-1) * c0cKroAchC0st); } else { require(msg.value >= breeDEGGs * c0cKroAchC0st); } _safeMint(msg.sender, breeDEGGs); c0cKroAchViRgiN[msg.sender] += breeDEGGs; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function cAtcHc0cKroAchF0rLaB(address c0cKLaB, uint256 breeDEGGs) public onlyOwner { uint256 totalc0cKroAch = totalSupply(); require(totalc0cKroAch + breeDEGGs <= c0cKroAchArmy); require(c0cKroAchCaPTuReD + breeDEGGs <= c0cKroAchLaB); _safeMint(c0cKLaB, breeDEGGs); c0cKroAchCaPTuReD += breeDEGGs; } function laUncHiNvaSioN(bool _secret) external onlyOwner { iNvaSioN = _secret; } function gReEDyc0cKroAch(uint256 nEwC0sT) external onlyOwner { c0cKroAchC0st = nEwC0sT; } function _baseURI() internal view virtual override returns (string memory) { return c0cKroAchBoDEE; } function sH0wBoDEE(string memory _BoDEE) external onlyOwner { c0cKroAchBoDEE = _BoDEE; } function c0cKroAchNeEdMoNi() external onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_EGGs","type":"uint256"},{"internalType":"uint256","name":"_LaB","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"breeDEGGs","type":"uint256"}],"name":"breeDc0cKroAch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"c0cKroAchArmy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c0cKroAchBoDEE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c0cKroAchC0st","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c0cKroAchCaPTuReD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c0cKroAchEGGs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c0cKroAchNeEdMoNi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"c0cKroAchViRgiN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"c0cKLaB","type":"address"},{"internalType":"uint256","name":"breeDEGGs","type":"uint256"}],"name":"cAtcHc0cKroAchF0rLaB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nEwC0sT","type":"uint256"}],"name":"gReEDyc0cKroAch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_secret","type":"bool"}],"name":"laUncHiNvaSioN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_BoDEE","type":"string"}],"name":"sH0wBoDEE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526115b36080526611c37937e08000600c553480156200002257600080fd5b5060405162001bba38038062001bba8339810160408190526200004591620001cc565b604080518082018252600e81526d319831a5b937a0b1b4103a183ba760911b6020808301918252835180850190945260048452636330634b60e01b908401528151919291620000979160029162000126565b508051620000ad90600390602084019062000126565b5050600160005550620000c033620000d4565b600160095560a09190915260c0526200022e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013490620001f1565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b60008060408385031215620001e057600080fd5b505080516020909101519092909150565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516119326200028860003960008181610b680152610f1a0152600081816103ea01528181610aba0152610b2d01526000818161041e01528181610ae701528181610b890152610ee401526119326000f3fe6080604052600436106101c25760003560e01c806370a08231116100f757806397dd364611610095578063ca45305511610064578063ca453055146104dc578063ca8ea0da146104f1578063e985e9c514610511578063f2fde38b1461055a57600080fd5b806397dd364614610473578063a22cb46514610489578063b88d4fde146104a9578063c87b56dd146104bc57600080fd5b806375a2300e116100d157806375a2300e146103d857806384ce469d1461040c5780638da5cb5b1461044057806395d89b411461045e57600080fd5b806370a0823114610383578063715018a6146103a3578063751edc86146103b857600080fd5b806342842e0e116101645780634e93a65f1161013e5780634e93a65f1461030d578063554a7db41461033a5780635c1594991461034d5780636352211e1461036357600080fd5b806342842e0e146102c557806346aac858146102d85780634bafc1d7146102ed57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313647c501461026b57806318160ddd1461028b57806323b872dd146102b257600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046116be565b61057a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cc565b6040516101f391906117f2565b34801561022a57600080fd5b5061023e610239366004611741565b61065e565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611679565b6106a2565b005b34801561027757600080fd5b506102696102863660046116a3565b610742565b34801561029757600080fd5b5060015460005403600019015b6040519081526020016101f3565b6102696102c0366004611597565b61075d565b6102696102d3366004611597565b6108ee565b3480156102e457600080fd5b5061026961090e565b3480156102f957600080fd5b50610269610308366004611741565b6109d0565b34801561031957600080fd5b506102a4610328366004611549565b600e6020526000908152604090205481565b610269610348366004611741565b6109dd565b34801561035957600080fd5b506102a4600c5481565b34801561036f57600080fd5b5061023e61037e366004611741565b610c5e565b34801561038f57600080fd5b506102a461039e366004611549565b610c69565b3480156103af57600080fd5b50610269610cb8565b3480156103c457600080fd5b506102696103d33660046116f8565b610ccc565b3480156103e457600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561041857600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561044c57600080fd5b506008546001600160a01b031661023e565b34801561046a57600080fd5b50610211610ceb565b34801561047f57600080fd5b506102a4600d5481565b34801561049557600080fd5b506102696104a436600461164f565b610cfa565b6102696104b73660046115d3565b610d66565b3480156104c857600080fd5b506102116104d7366004611741565b610db0565b3480156104e857600080fd5b50610211610e35565b3480156104fd57600080fd5b5061026961050c366004611679565b610ec3565b34801561051d57600080fd5b506101e761052c366004611564565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056657600080fd5b50610269610575366004611549565b610f78565b60006301ffc9a760e01b6001600160e01b0319831614806105ab57506380ac58cd60e01b6001600160e01b03198316145b806105c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105db9061187f565b80601f01602080910402602001604051908101604052809291908181526020018280546106079061187f565b80156106545780601f1061062957610100808354040283529160200191610654565b820191906000526020600020905b81548152906001019060200180831161063757829003601f168201915b5050505050905090565b600061066982610ff1565b610686576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ad82610c5e565b9050336001600160a01b038216146106e6576106c9813361052c565b6106e6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61074a611026565b600a805460ff1916911515919091179055565b600061076882611080565b9050836001600160a01b0316816001600160a01b03161461079b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107e8576107cb863361052c565b6107e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661080f57604051633a954ecd60e21b815260040160405180910390fd5b801561081a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108a557600184016000818152600460205260409020546108a35760005481146108a35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61090983838360405180602001604052806000815250610d66565b505050565b610916611026565b6002600954141561096e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d80600081146109b5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ba565b606091505b50509050806109c857600080fd5b506001600955565b6109d8611026565b600c55565b323314610a2c5760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c6572206973206e6f742061206330634b726f4163680000006044820152606401610965565b60026009541415610a7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610965565b60026009556000610a996001546000546000199190030190565b600a5490915060ff16610aab57600080fd5b60008211610ab857600080fd5b7f0000000000000000000000000000000000000000000000000000000000000000821115610ae557600080fd5b7f0000000000000000000000000000000000000000000000000000000000000000610b108383611805565b1115610b1b57600080fd5b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000090610b58908490611805565b1115610b6357600080fd5b610bad7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061183c565b82600d5483610bbc919061183c565b610bc69190611805565b1115610bd157600080fd5b336000908152600e6020526040902054610c0e57600c54610bf360018461183c565b610bfd919061181d565b341015610c0957600080fd5b610c27565b600c54610c1b908361181d565b341015610c2757600080fd5b610c3133836110e9565b336000908152600e602052604081208054849290610c50908490611805565b909155505060016009555050565b60006105c682611080565b60006001600160a01b038216610c92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610cc0611026565b610cca6000611103565b565b610cd4611026565b8051610ce790600b90602084019061140e565b5050565b6060600380546105db9061187f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d7184848461075d565b6001600160a01b0383163b15610daa57610d8d84848484611155565b610daa576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dbb82610ff1565b610dd857604051630a14c4b560e41b815260040160405180910390fd5b6000610de261124d565b9050805160001415610e035760405180602001604052806000815250610e2e565b80610e0d8461125c565b604051602001610e1e929190611786565b6040516020818303038152906040525b9392505050565b600b8054610e429061187f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e9061187f565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b505050505081565b610ecb611026565b6000610ee06001546000546000199190030190565b90507f0000000000000000000000000000000000000000000000000000000000000000610f0d8383611805565b1115610f1857600080fd5b7f000000000000000000000000000000000000000000000000000000000000000082600d54610f479190611805565b1115610f5257600080fd5b610f5c83836110e9565b81600d6000828254610f6e9190611805565b9091555050505050565b610f80611026565b6001600160a01b038116610fe55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b610fee81611103565b50565b600081600111158015611005575060005482105b80156105c6575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610cca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610965565b600081806001116110d0576000548110156110d057600081815260046020526040902054600160e01b81166110ce575b80610e2e5750600019016000818152600460205260409020546110b0565b505b604051636f96cda160e11b815260040160405180910390fd5b610ce78282604051806020016040528060008152506112aa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061118a9033908990889088906004016117b5565b602060405180830381600087803b1580156111a457600080fd5b505af19250505080156111d4575060408051601f3d908101601f191682019092526111d1918101906116db565b60015b61122f573d808015611202576040519150601f19603f3d011682016040523d82523d6000602084013e611207565b606091505b508051611227576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105db9061187f565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061129357611298565b611276565b50819003601f19909101908152919050565b6112b48383611317565b6001600160a01b0383163b15610909576000548281035b6112de6000868380600101945086611155565b6112fb576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112cb57816000541461131057600080fd5b5050505050565b600054816113385760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113e757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016113af565b508161140557604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461141a9061187f565b90600052602060002090601f01602090048101928261143c5760008555611482565b82601f1061145557805160ff1916838001178555611482565b82800160010185558215611482579182015b82811115611482578251825591602001919060010190611467565b5061148e929150611492565b5090565b5b8082111561148e5760008155600101611493565b600067ffffffffffffffff808411156114c2576114c26118d0565b604051601f8501601f19908116603f011681019082821181831017156114ea576114ea6118d0565b8160405280935085815286868601111561150357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461153457600080fd5b919050565b8035801515811461153457600080fd5b60006020828403121561155b57600080fd5b610e2e8261151d565b6000806040838503121561157757600080fd5b6115808361151d565b915061158e6020840161151d565b90509250929050565b6000806000606084860312156115ac57600080fd5b6115b58461151d565b92506115c36020850161151d565b9150604084013590509250925092565b600080600080608085870312156115e957600080fd5b6115f28561151d565b93506116006020860161151d565b925060408501359150606085013567ffffffffffffffff81111561162357600080fd5b8501601f8101871361163457600080fd5b611643878235602084016114a7565b91505092959194509250565b6000806040838503121561166257600080fd5b61166b8361151d565b915061158e60208401611539565b6000806040838503121561168c57600080fd5b6116958361151d565b946020939093013593505050565b6000602082840312156116b557600080fd5b610e2e82611539565b6000602082840312156116d057600080fd5b8135610e2e816118e6565b6000602082840312156116ed57600080fd5b8151610e2e816118e6565b60006020828403121561170a57600080fd5b813567ffffffffffffffff81111561172157600080fd5b8201601f8101841361173257600080fd5b611245848235602084016114a7565b60006020828403121561175357600080fd5b5035919050565b60008151808452611772816020860160208601611853565b601f01601f19169290920160200192915050565b60008351611798818460208801611853565b8351908301906117ac818360208801611853565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117e89083018461175a565b9695505050505050565b602081526000610e2e602083018461175a565b60008219821115611818576118186118ba565b500190565b6000816000190483118215151615611837576118376118ba565b500290565b60008282101561184e5761184e6118ba565b500390565b60005b8381101561186e578181015183820152602001611856565b83811115610daa5750506000910152565b600181811c9082168061189357607f821691505b602082108114156118b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fee57600080fdfea2646970667358221220f6cd94c4202e58250146cd170e66f84bdde3d0a49f9838125cf3d12aa83b62d564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f757806397dd364611610095578063ca45305511610064578063ca453055146104dc578063ca8ea0da146104f1578063e985e9c514610511578063f2fde38b1461055a57600080fd5b806397dd364614610473578063a22cb46514610489578063b88d4fde146104a9578063c87b56dd146104bc57600080fd5b806375a2300e116100d157806375a2300e146103d857806384ce469d1461040c5780638da5cb5b1461044057806395d89b411461045e57600080fd5b806370a0823114610383578063715018a6146103a3578063751edc86146103b857600080fd5b806342842e0e116101645780634e93a65f1161013e5780634e93a65f1461030d578063554a7db41461033a5780635c1594991461034d5780636352211e1461036357600080fd5b806342842e0e146102c557806346aac858146102d85780634bafc1d7146102ed57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313647c501461026b57806318160ddd1461028b57806323b872dd146102b257600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046116be565b61057a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cc565b6040516101f391906117f2565b34801561022a57600080fd5b5061023e610239366004611741565b61065e565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611679565b6106a2565b005b34801561027757600080fd5b506102696102863660046116a3565b610742565b34801561029757600080fd5b5060015460005403600019015b6040519081526020016101f3565b6102696102c0366004611597565b61075d565b6102696102d3366004611597565b6108ee565b3480156102e457600080fd5b5061026961090e565b3480156102f957600080fd5b50610269610308366004611741565b6109d0565b34801561031957600080fd5b506102a4610328366004611549565b600e6020526000908152604090205481565b610269610348366004611741565b6109dd565b34801561035957600080fd5b506102a4600c5481565b34801561036f57600080fd5b5061023e61037e366004611741565b610c5e565b34801561038f57600080fd5b506102a461039e366004611549565b610c69565b3480156103af57600080fd5b50610269610cb8565b3480156103c457600080fd5b506102696103d33660046116f8565b610ccc565b3480156103e457600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000a81565b34801561041857600080fd5b506102a47f00000000000000000000000000000000000000000000000000000000000015b381565b34801561044c57600080fd5b506008546001600160a01b031661023e565b34801561046a57600080fd5b50610211610ceb565b34801561047f57600080fd5b506102a4600d5481565b34801561049557600080fd5b506102696104a436600461164f565b610cfa565b6102696104b73660046115d3565b610d66565b3480156104c857600080fd5b506102116104d7366004611741565b610db0565b3480156104e857600080fd5b50610211610e35565b3480156104fd57600080fd5b5061026961050c366004611679565b610ec3565b34801561051d57600080fd5b506101e761052c366004611564565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056657600080fd5b50610269610575366004611549565b610f78565b60006301ffc9a760e01b6001600160e01b0319831614806105ab57506380ac58cd60e01b6001600160e01b03198316145b806105c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105db9061187f565b80601f01602080910402602001604051908101604052809291908181526020018280546106079061187f565b80156106545780601f1061062957610100808354040283529160200191610654565b820191906000526020600020905b81548152906001019060200180831161063757829003601f168201915b5050505050905090565b600061066982610ff1565b610686576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ad82610c5e565b9050336001600160a01b038216146106e6576106c9813361052c565b6106e6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61074a611026565b600a805460ff1916911515919091179055565b600061076882611080565b9050836001600160a01b0316816001600160a01b03161461079b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107e8576107cb863361052c565b6107e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661080f57604051633a954ecd60e21b815260040160405180910390fd5b801561081a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108a557600184016000818152600460205260409020546108a35760005481146108a35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61090983838360405180602001604052806000815250610d66565b505050565b610916611026565b6002600954141561096e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d80600081146109b5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ba565b606091505b50509050806109c857600080fd5b506001600955565b6109d8611026565b600c55565b323314610a2c5760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c6572206973206e6f742061206330634b726f4163680000006044820152606401610965565b60026009541415610a7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610965565b60026009556000610a996001546000546000199190030190565b600a5490915060ff16610aab57600080fd5b60008211610ab857600080fd5b7f000000000000000000000000000000000000000000000000000000000000000a821115610ae557600080fd5b7f00000000000000000000000000000000000000000000000000000000000015b3610b108383611805565b1115610b1b57600080fd5b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000a90610b58908490611805565b1115610b6357600080fd5b610bad7f00000000000000000000000000000000000000000000000000000000000003e87f00000000000000000000000000000000000000000000000000000000000015b361183c565b82600d5483610bbc919061183c565b610bc69190611805565b1115610bd157600080fd5b336000908152600e6020526040902054610c0e57600c54610bf360018461183c565b610bfd919061181d565b341015610c0957600080fd5b610c27565b600c54610c1b908361181d565b341015610c2757600080fd5b610c3133836110e9565b336000908152600e602052604081208054849290610c50908490611805565b909155505060016009555050565b60006105c682611080565b60006001600160a01b038216610c92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610cc0611026565b610cca6000611103565b565b610cd4611026565b8051610ce790600b90602084019061140e565b5050565b6060600380546105db9061187f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d7184848461075d565b6001600160a01b0383163b15610daa57610d8d84848484611155565b610daa576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dbb82610ff1565b610dd857604051630a14c4b560e41b815260040160405180910390fd5b6000610de261124d565b9050805160001415610e035760405180602001604052806000815250610e2e565b80610e0d8461125c565b604051602001610e1e929190611786565b6040516020818303038152906040525b9392505050565b600b8054610e429061187f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e9061187f565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b505050505081565b610ecb611026565b6000610ee06001546000546000199190030190565b90507f00000000000000000000000000000000000000000000000000000000000015b3610f0d8383611805565b1115610f1857600080fd5b7f00000000000000000000000000000000000000000000000000000000000003e882600d54610f479190611805565b1115610f5257600080fd5b610f5c83836110e9565b81600d6000828254610f6e9190611805565b9091555050505050565b610f80611026565b6001600160a01b038116610fe55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b610fee81611103565b50565b600081600111158015611005575060005482105b80156105c6575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610cca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610965565b600081806001116110d0576000548110156110d057600081815260046020526040902054600160e01b81166110ce575b80610e2e5750600019016000818152600460205260409020546110b0565b505b604051636f96cda160e11b815260040160405180910390fd5b610ce78282604051806020016040528060008152506112aa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061118a9033908990889088906004016117b5565b602060405180830381600087803b1580156111a457600080fd5b505af19250505080156111d4575060408051601f3d908101601f191682019092526111d1918101906116db565b60015b61122f573d808015611202576040519150601f19603f3d011682016040523d82523d6000602084013e611207565b606091505b508051611227576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105db9061187f565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061129357611298565b611276565b50819003601f19909101908152919050565b6112b48383611317565b6001600160a01b0383163b15610909576000548281035b6112de6000868380600101945086611155565b6112fb576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112cb57816000541461131057600080fd5b5050505050565b600054816113385760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113e757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016113af565b508161140557604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461141a9061187f565b90600052602060002090601f01602090048101928261143c5760008555611482565b82601f1061145557805160ff1916838001178555611482565b82800160010185558215611482579182015b82811115611482578251825591602001919060010190611467565b5061148e929150611492565b5090565b5b8082111561148e5760008155600101611493565b600067ffffffffffffffff808411156114c2576114c26118d0565b604051601f8501601f19908116603f011681019082821181831017156114ea576114ea6118d0565b8160405280935085815286868601111561150357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461153457600080fd5b919050565b8035801515811461153457600080fd5b60006020828403121561155b57600080fd5b610e2e8261151d565b6000806040838503121561157757600080fd5b6115808361151d565b915061158e6020840161151d565b90509250929050565b6000806000606084860312156115ac57600080fd5b6115b58461151d565b92506115c36020850161151d565b9150604084013590509250925092565b600080600080608085870312156115e957600080fd5b6115f28561151d565b93506116006020860161151d565b925060408501359150606085013567ffffffffffffffff81111561162357600080fd5b8501601f8101871361163457600080fd5b611643878235602084016114a7565b91505092959194509250565b6000806040838503121561166257600080fd5b61166b8361151d565b915061158e60208401611539565b6000806040838503121561168c57600080fd5b6116958361151d565b946020939093013593505050565b6000602082840312156116b557600080fd5b610e2e82611539565b6000602082840312156116d057600080fd5b8135610e2e816118e6565b6000602082840312156116ed57600080fd5b8151610e2e816118e6565b60006020828403121561170a57600080fd5b813567ffffffffffffffff81111561172157600080fd5b8201601f8101841361173257600080fd5b611245848235602084016114a7565b60006020828403121561175357600080fd5b5035919050565b60008151808452611772816020860160208601611853565b601f01601f19169290920160200192915050565b60008351611798818460208801611853565b8351908301906117ac818360208801611853565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117e89083018461175a565b9695505050505050565b602081526000610e2e602083018461175a565b60008219821115611818576118186118ba565b500190565b6000816000190483118215151615611837576118376118ba565b500290565b60008282101561184e5761184e6118ba565b500390565b60005b8381101561186e578181015183820152602001611856565b83811115610daa5750506000910152565b600181811c9082168061189357607f821691505b602082108114156118b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fee57600080fdfea2646970667358221220f6cd94c4202e58250146cd170e66f84bdde3d0a49f9838125cf3d12aa83b62d564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _EGGs (uint256): 10
Arg [1] : _LaB (uint256): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
60396:2660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20934:639;;;;;;;;;;-1:-1:-1;20934:639:0;;;;;:::i;:::-;;:::i;:::-;;;6113:14:1;;6106:22;6088:41;;6076:2;6061:18;20934:639:0;;;;;;;;21836:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28327:218::-;;;;;;;;;;-1:-1:-1;28327:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;28327:218:0;5247:203:1;27760:408:0;;;;;;:::i;:::-;;:::i;:::-;;62430:94;;;;;;;;;;-1:-1:-1;62430:94:0;;;;;:::i;:::-;;:::i;17587:323::-;;;;;;;;;;-1:-1:-1;62056:1:0;17861:12;17648:7;17845:13;:28;-1:-1:-1;;17845:46:0;17587:323;;;7996:25:1;;;7984:2;7969:18;17587:323:0;7850:177:1;31966:2825:0;;;;;;:::i;:::-;;:::i;34887:193::-;;;;;;:::i;:::-;;:::i;62876:175::-;;;;;;;;;;;;;:::i;62532:103::-;;;;;;;;;;-1:-1:-1;62532:103:0;;;;;:::i;:::-;;:::i;60794:50::-;;;;;;;;;;-1:-1:-1;60794:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;61164:792;;;;;;:::i;:::-;;:::i;60704:42::-;;;;;;;;;;;;;;;;23229:152;;;;;;;;;;-1:-1:-1;23229:152:0;;;;;:::i;:::-;;:::i;18771:233::-;;;;;;;;;;-1:-1:-1;18771:233:0;;;;;:::i;:::-;;:::i;59500:103::-;;;;;;;;;;;;;:::i;62766:102::-;;;;;;;;;;-1:-1:-1;62766:102:0;;;;;:::i;:::-;;:::i;60614:38::-;;;;;;;;;;;;;;;60562:45;;;;;;;;;;;;;;;58852:87;;;;;;;;;;-1:-1:-1;58925:6:0;;-1:-1:-1;;;;;58925:6:0;58852:87;;22012:104;;;;;;;;;;;;;:::i;60753:32::-;;;;;;;;;;;;;;;;28885:234;;;;;;;;;;-1:-1:-1;28885:234:0;;;;;:::i;:::-;;:::i;35678:407::-;;;;;;:::i;:::-;;:::i;22222:318::-;;;;;;;;;;-1:-1:-1;22222:318:0;;;;;:::i;:::-;;:::i;60527:28::-;;;;;;;;;;;;;:::i;62073:349::-;;;;;;;;;;-1:-1:-1;62073:349:0;;;;;:::i;:::-;;:::i;29276:164::-;;;;;;;;;;-1:-1:-1;29276:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29397:25:0;;;29373:4;29397:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29276:164;59758:201;;;;;;;;;;-1:-1:-1;59758:201:0;;;;;:::i;:::-;;:::i;20934:639::-;21019:4;-1:-1:-1;;;;;;;;;21343:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21420:25:0;;;21343:102;:179;;;-1:-1:-1;;;;;;;;;;21497:25:0;;;21343:179;21323:199;20934:639;-1:-1:-1;;20934:639:0:o;21836:100::-;21890:13;21923:5;21916:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21836:100;:::o;28327:218::-;28403:7;28428:16;28436:7;28428;:16::i;:::-;28423:64;;28453:34;;-1:-1:-1;;;28453:34:0;;;;;;;;;;;28423:64;-1:-1:-1;28507:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28507:30:0;;28327:218::o;27760:408::-;27849:13;27865:16;27873:7;27865;:16::i;:::-;27849:32;-1:-1:-1;52093:10:0;-1:-1:-1;;;;;27898:28:0;;;27894:175;;27946:44;27963:5;52093:10;29276:164;:::i;27946:44::-;27941:128;;28018:35;;-1:-1:-1;;;28018:35:0;;;;;;;;;;;27941:128;28081:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28081:35:0;-1:-1:-1;;;;;28081:35:0;;;;;;;;;28132:28;;28081:24;;28132:28;;;;;;;27838:330;27760:408;;:::o;62430:94::-;58738:13;:11;:13::i;:::-;62498:8:::1;:18:::0;;-1:-1:-1;;62498:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62430:94::o;31966:2825::-;32108:27;32138;32157:7;32138:18;:27::i;:::-;32108:57;;32223:4;-1:-1:-1;;;;;32182:45:0;32198:19;-1:-1:-1;;;;;32182:45:0;;32178:86;;32236:28;;-1:-1:-1;;;32236:28:0;;;;;;;;;;;32178:86;32278:27;31074:24;;;:15;:24;;;;;31302:26;;52093:10;30699:30;;;-1:-1:-1;;;;;30392:28:0;;30677:20;;;30674:56;32464:180;;32557:43;32574:4;52093:10;29276:164;:::i;32557:43::-;32552:92;;32609:35;;-1:-1:-1;;;32609:35:0;;;;;;;;;;;32552:92;-1:-1:-1;;;;;32661:16:0;;32657:52;;32686:23;;-1:-1:-1;;;32686:23:0;;;;;;;;;;;32657:52;32858:15;32855:160;;;32998:1;32977:19;32970:30;32855:160;-1:-1:-1;;;;;33395:24:0;;;;;;;:18;:24;;;;;;33393:26;;-1:-1:-1;;33393:26:0;;;33464:22;;;;;;;;;33462:24;;-1:-1:-1;33462:24:0;;;26618:11;26593:23;26589:41;26576:63;-1:-1:-1;;;26576:63:0;33757:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34052:47:0;;34048:627;;34157:1;34147:11;;34125:19;34280:30;;;:17;:30;;;;;;34276:384;;34418:13;;34403:11;:28;34399:242;;34565:30;;;;:17;:30;;;;;:52;;;34399:242;34106:569;34048:627;34722:7;34718:2;-1:-1:-1;;;;;34703:27:0;34712:4;-1:-1:-1;;;;;34703:27:0;;;;;;;;;;;32097:2694;;;31966:2825;;;:::o;34887:193::-;35033:39;35050:4;35056:2;35060:7;35033:39;;;;;;;;;;;;:16;:39::i;:::-;34887:193;;;:::o;62876:175::-;58738:13;:11;:13::i;:::-;55777:1:::1;56375:7;;:19;;56367:63;;;::::0;-1:-1:-1;;;56367:63:0;;7692:2:1;56367:63:0::1;::::0;::::1;7674:21:1::0;7731:2;7711:18;;;7704:30;7770:33;7750:18;;;7743:61;7821:18;;56367:63:0::1;;;;;;;;;55777:1;56508:7;:18:::0;62964:58:::2;::::0;62946:12:::2;::::0;62972:10:::2;::::0;62996:21:::2;::::0;62946:12;62964:58;62946:12;62964:58;62996:21;62972:10;62964:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62945:77;;;63035:7;63027:16;;;::::0;::::2;;-1:-1:-1::0;55733:1:0::1;56687:7;:22:::0;62876:175::o;62532:103::-;58738:13;:11;:13::i;:::-;62604::::1;:23:::0;62532:103::o;61164:792::-;61079:9;61092:10;61079:23;61071:65;;;;-1:-1:-1;;;61071:65:0;;6973:2:1;61071:65:0;;;6955:21:1;7012:2;6992:18;;;6985:30;7051:31;7031:18;;;7024:59;7100:18;;61071:65:0;6771:353:1;61071:65:0;55777:1:::1;56375:7;;:19;;56367:63;;;::::0;-1:-1:-1;;;56367:63:0;;7692:2:1;56367:63:0::1;::::0;::::1;7674:21:1::0;7731:2;7711:18;;;7704:30;7770:33;7750:18;;;7743:61;7821:18;;56367:63:0::1;7490:355:1::0;56367:63:0::1;55777:1;56508:7;:18:::0;61266:22:::2;61291:13;62056:1:::0;17861:12;17648:7;17845:13;-1:-1:-1;;17845:28:0;;;:46;;17587:323;61291:13:::2;61323:8;::::0;61266:38;;-1:-1:-1;61323:8:0::2;;61315:17;;;::::0;::::2;;61363:1;61351:9;:13;61343:22;;;::::0;::::2;;61397:13;61384:9;:26;;61376:35;;;::::0;::::2;;61460:13;61430:26;61447:9:::0;61430:14;:26:::2;:::i;:::-;:43;;61422:52;;;::::0;::::2;;61509:10;61493:27;::::0;;;:15:::2;:27;::::0;;;;;61536:13:::2;::::0;61493:39:::2;::::0;61523:9;;61493:39:::2;:::i;:::-;:56;;61485:65;;;::::0;::::2;;61619:28;61635:12;61619:13;:28;:::i;:::-;61606:9;61586:17;;61569:14;:34;;;;:::i;:::-;:46;;;;:::i;:::-;:78;;61561:87;;;::::0;::::2;;61679:10;61663:27;::::0;;;:15:::2;:27;::::0;;;;;61659:196:::2;;61749:13;::::0;61734:11:::2;61744:1;61734:9:::0;:11:::2;:::i;:::-;61733:29;;;;:::i;:::-;61720:9;:42;;61712:51;;;::::0;::::2;;61659:196;;;61829:13;::::0;61817:25:::2;::::0;:9;:25:::2;:::i;:::-;61804:9;:38;;61796:47;;;::::0;::::2;;61865:32;61875:10;61887:9;61865;:32::i;:::-;61924:10;61908:27;::::0;;;:15:::2;:27;::::0;;;;:40;;61939:9;;61908:27;:40:::2;::::0;61939:9;;61908:40:::2;:::i;:::-;::::0;;;-1:-1:-1;;55733:1:0::1;56687:7;:22:::0;-1:-1:-1;;61164:792:0:o;23229:152::-;23301:7;23344:27;23363:7;23344:18;:27::i;18771:233::-;18843:7;-1:-1:-1;;;;;18867:19:0;;18863:60;;18895:28;;-1:-1:-1;;;18895:28:0;;;;;;;;;;;18863:60;-1:-1:-1;;;;;;18941:25:0;;;;;:18;:25;;;;;;12930:13;18941:55;;18771:233::o;59500:103::-;58738:13;:11;:13::i;:::-;59565:30:::1;59592:1;59565:18;:30::i;:::-;59500:103::o:0;62766:102::-;58738:13;:11;:13::i;:::-;62837:23;;::::1;::::0;:14:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62766:102:::0;:::o;22012:104::-;22068:13;22101:7;22094:14;;;;;:::i;28885:234::-;52093:10;28980:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28980:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28980:60:0;;;;;;;;;;29056:55;;6088:41:1;;;28980:49:0;;52093:10;29056:55;;6061:18:1;29056:55:0;;;;;;;28885:234;;:::o;35678:407::-;35853:31;35866:4;35872:2;35876:7;35853:12;:31::i;:::-;-1:-1:-1;;;;;35899:14:0;;;:19;35895:183;;35938:56;35969:4;35975:2;35979:7;35988:5;35938:30;:56::i;:::-;35933:145;;36022:40;;-1:-1:-1;;;36022:40:0;;;;;;;;;;;35933:145;35678:407;;;;:::o;22222:318::-;22295:13;22326:16;22334:7;22326;:16::i;:::-;22321:59;;22351:29;;-1:-1:-1;;;22351:29:0;;;;;;;;;;;22321:59;22393:21;22417:10;:8;:10::i;:::-;22393:34;;22451:7;22445:21;22470:1;22445:26;;:87;;;;;;;;;;;;;;;;;22498:7;22507:18;22517:7;22507:9;:18::i;:::-;22481:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22445:87;22438:94;22222:318;-1:-1:-1;;;22222:318:0:o;60527:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62073:349::-;58738:13;:11;:13::i;:::-;62167:22:::1;62192:13;62056:1:::0;17861:12;17648:7;17845:13;-1:-1:-1;;17845:28:0;;;:46;;17587:323;62192:13:::1;62167:38:::0;-1:-1:-1;62254:13:0::1;62224:26;62241:9:::0;62167:38;62224:26:::1;:::i;:::-;:43;;62216:52;;;::::0;::::1;;62320:12;62307:9;62287:17;;:29;;;;:::i;:::-;:45;;62279:54;;;::::0;::::1;;62344:29;62354:7;62363:9;62344;:29::i;:::-;62405:9;62384:17;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;62073:349:0:o;59758:201::-;58738:13;:11;:13::i;:::-;-1:-1:-1;;;;;59847:22:0;::::1;59839:73;;;::::0;-1:-1:-1;;;59839:73:0;;6566:2:1;59839:73:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:36;6741:19;;59839:73:0::1;6364:402:1::0;59839:73:0::1;59923:28;59942:8;59923:18;:28::i;:::-;59758:201:::0;:::o;29698:282::-;29763:4;29819:7;62056:1;29800:26;;:66;;;;;29853:13;;29843:7;:23;29800:66;:153;;;;-1:-1:-1;;29904:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29904:44:0;:49;;29698:282::o;59017:132::-;58925:6;;-1:-1:-1;;;;;58925:6:0;52093:10;59081:23;59073:68;;;;-1:-1:-1;;;59073:68:0;;7331:2:1;59073:68:0;;;7313:21:1;;;7350:18;;;7343:30;7409:34;7389:18;;;7382:62;7461:18;;59073:68:0;7129:356:1;24384:1275:0;24451:7;24486;;62056:1;24535:23;24531:1061;;24588:13;;24581:4;:20;24577:1015;;;24626:14;24643:23;;;:17;:23;;;;;;-1:-1:-1;;;24732:24:0;;24728:845;;25397:113;25404:11;25397:113;;-1:-1:-1;;;25475:6:0;25457:25;;;;:17;:25;;;;;;25397:113;;24728:845;24603:989;24577:1015;25620:31;;-1:-1:-1;;;25620:31:0;;;;;;;;;;;45838:112;45915:27;45925:2;45929:8;45915:27;;;;;;;;;;;;:9;:27::i;60119:191::-;60212:6;;;-1:-1:-1;;;;;60229:17:0;;;-1:-1:-1;;;;;;60229:17:0;;;;;;;60262:40;;60212:6;;;60229:17;60212:6;;60262:40;;60193:16;;60262:40;60182:128;60119:191;:::o;38169:716::-;38353:88;;-1:-1:-1;;;38353:88:0;;38332:4;;-1:-1:-1;;;;;38353:45:0;;;;;:88;;52093:10;;38420:4;;38426:7;;38435:5;;38353:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38353:88:0;;;;;;;;-1:-1:-1;;38353:88:0;;;;;;;;;;;;:::i;:::-;;;38349:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38636:13:0;;38632:235;;38682:40;;-1:-1:-1;;;38682:40:0;;;;;;;;;;;38632:235;38825:6;38819:13;38810:6;38806:2;38802:15;38795:38;38349:529;-1:-1:-1;;;;;;38512:64:0;-1:-1:-1;;;38512:64:0;;-1:-1:-1;38349:529:0;38169:716;;;;;;:::o;62643:115::-;62703:13;62736:14;62729:21;;;;;:::i;52213:1745::-;52278:17;52712:4;52705;52699:11;52695:22;52804:1;52798:4;52791:15;52879:4;52876:1;52872:12;52865:19;;;52961:1;52956:3;52949:14;53065:3;53304:5;53286:428;53352:1;53347:3;53343:11;53336:18;;53523:2;53517:4;53513:13;53509:2;53505:22;53500:3;53492:36;53617:2;53607:13;;;53674:25;;53692:5;;53674:25;53286:428;;;-1:-1:-1;53744:13:0;;;-1:-1:-1;;53859:14:0;;;53921:19;;;53859:14;52213:1745;-1:-1:-1;52213:1745:0:o;45065:689::-;45196:19;45202:2;45206:8;45196:5;:19::i;:::-;-1:-1:-1;;;;;45257:14:0;;;:19;45253:483;;45297:11;45311:13;45359:14;;;45392:233;45423:62;45462:1;45466:2;45470:7;;;;;;45479:5;45423:30;:62::i;:::-;45418:167;;45521:40;;-1:-1:-1;;;45521:40:0;;;;;;;;;;;45418:167;45620:3;45612:5;:11;45392:233;;45707:3;45690:13;;:20;45686:34;;45712:8;;;45686:34;45278:458;;45065:689;;;:::o;39347:2966::-;39420:20;39443:13;39471;39467:44;;39493:18;;-1:-1:-1;;;39493:18:0;;;;;;;;;;;39467:44;-1:-1:-1;;;;;39999:22:0;;;;;;:18;:22;;;;13068:2;39999:22;;;:71;;40037:32;40025:45;;39999:71;;;40313:31;;;:17;:31;;;;;-1:-1:-1;27049:15:0;;27023:24;27019:46;26618:11;26593:23;26589:41;26586:52;26576:63;;40313:173;;40548:23;;;;40313:31;;39999:22;;41313:25;39999:22;;41166:335;41827:1;41813:12;41809:20;41767:346;41868:3;41859:7;41856:16;41767:346;;42086:7;42076:8;42073:1;42046:25;42043:1;42040;42035:59;41921:1;41908:15;41767:346;;;-1:-1:-1;42146:13:0;42142:45;;42168:19;;-1:-1:-1;;;42168:19:0;;;;;;;;;;;42142:45;42204:13;:19;-1:-1:-1;34887:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;6140:219::-;6289:2;6278:9;6271:21;6252:4;6309:44;6349:2;6338:9;6334:18;6326:6;6309:44;:::i;8032:128::-;8072:3;8103:1;8099:6;8096:1;8093:13;8090:39;;;8109:18;;:::i;:::-;-1:-1:-1;8145:9:1;;8032:128::o;8165:168::-;8205:7;8271:1;8267;8263:6;8259:14;8256:1;8253:21;8248:1;8241:9;8234:17;8230:45;8227:71;;;8278:18;;:::i;:::-;-1:-1:-1;8318:9:1;;8165:168::o;8338:125::-;8378:4;8406:1;8403;8400:8;8397:34;;;8411:18;;:::i;:::-;-1:-1:-1;8448:9:1;;8338:125::o;8468:258::-;8540:1;8550:113;8564:6;8561:1;8558:13;8550:113;;;8640:11;;;8634:18;8621:11;;;8614:39;8586:2;8579:10;8550:113;;;8681:6;8678:1;8675:13;8672:48;;;-1:-1:-1;;8716:1:1;8698:16;;8691:27;8468:258::o;8731:380::-;8810:1;8806:12;;;;8853;;;8874:61;;8928:4;8920:6;8916:17;8906:27;;8874:61;8981:2;8973:6;8970:14;8950:18;8947:38;8944:161;;;9027:10;9022:3;9018:20;9015:1;9008:31;9062:4;9059:1;9052:15;9090:4;9087:1;9080:15;8944:161;;8731:380;;;:::o;9116:127::-;9177:10;9172:3;9168:20;9165:1;9158:31;9208:4;9205:1;9198:15;9232:4;9229:1;9222:15;9248:127;9309:10;9304:3;9300:20;9297:1;9290:31;9340:4;9337:1;9330:15;9364:4;9361:1;9354:15;9380:131;-1:-1:-1;;;;;;9454:32:1;;9444:43;;9434:71;;9501:1;9498;9491:12
Swarm Source
ipfs://f6cd94c4202e58250146cd170e66f84bdde3d0a49f9838125cf3d12aa83b62d5
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.