Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,300 Nakamigos Opepen
Holders
691
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Nakamigos OpepenLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NakamigosOpepenEdition
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-09 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; // _ _ _ _ _____ _____ _ _ _ _ //| \ | | | | (_) | _ | | ___| | (_) | (_) //| \| | __ _| | ____ _ _ __ ___ _ __ _ ___ ___ | | | |_ __ ___ _ __ ___ _ __ | |__ __| |_| |_ _ ___ _ __ //| . ` |/ _` | |/ / _` | '_ ` _ \| |/ _` |/ _ \/ __| | | | | '_ \ / _ \ '_ \ / _ \ '_ \ | __|/ _` | | __| |/ _ \| '_ \ //| |\ | (_| | < (_| | | | | | | | (_| | (_) \__ \ \ \_/ / |_) | __/ |_) | __/ | | | | |__| (_| | | |_| | (_) | | | | //\_| \_/\__,_|_|\_\__,_|_| |_| |_|_|\__, |\___/|___/ \___/| .__/ \___| .__/ \___|_| |_| \____/\__,_|_|\__|_|\___/|_| |_| // __/ | | | | | // |___/ |_| |_| // /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } contract NakamigosOpepenEdition is IERC721A { address private _owner; function owner() public view returns(address){ return _owner; } modifier onlyOwner() { require(_owner==msg.sender); _; } uint256 public constant MAX_SUPPLY = 3300; uint256 public COST = 0.0025 ether; string private constant _name = "Nakamigos Opepen Edition"; string private constant _symbol = "Nakamigos Opepen"; string public constant contractURI = "ipfs://QmfMNzwswKMMmeYRV5NLMUBnqgF2K6YqXoa8wEnRoS73K4"; string private _baseURI = "QmfMNzwswKMMmeYRV5NLMUBnqgF2K6YqXoa8wEnRoS73K4"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } // 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 tokenId of the next token to be minted. uint256 private _currentIndex = 1; // The number of tokens burned. // uint256 private _burnCounter; // 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } function setConfig( uint256 _COST) external onlyOwner{ COST = _COST; } /** * @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 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 override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /* function contractURI() public view returns (string memory) { return string(abi.encodePacked("ipfs://", _contractURI)); } */ /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ /* function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ /* function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } */ /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_COST","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6608e1bc9bf0400060015560e0604052602e6080818152906200138860a0396002906200002d9082620000fe565b5060016003553480156200004057600080fd5b50600080546001600160a01b03191633179055620001ca565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200008457607f821691505b602082108103620000a557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620000f957600081815260208120601f850160051c81016020861015620000d45750805b601f850160051c820191505b81811015620000f557828155600101620000e0565b5050505b505050565b81516001600160401b038111156200011a576200011a62000059565b62000132816200012b84546200006f565b84620000ab565b602080601f8311600181146200016a5760008415620001515750858301515b600019600386901b1c1916600185901b178555620000f5565b600085815260208120601f198616915b828110156200019b578886015182559484019460019091019084016200017a565b5085821015620001ba5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6111ae80620001da6000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb4651461038c578063b88d4fde146103ac578063bf8fbbd2146103cc578063c87b56dd146103e2578063e8a3d48514610402578063e985e9c51461041757600080fd5b806370a08231146102e2578063893bcfbe146103025780638da5cb5b1461032257806395d89b4114610340578063a0712d681461037957600080fd5b806323b872dd116100fd57806323b872dd1461023757806332cb6b0c146102575780633ccfd60b1461026d57806342842e0e1461028257806347064d6a146102a25780636352211e146102c257600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101be578063095ea7b3146101f657806318160ddd14610218575b600080fd5b34801561014657600080fd5b5061015a610155366004610c63565b610437565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152601881527f4e616b616d69676f73204f706570656e2045646974696f6e000000000000000060208201525b6040516101669190610cb1565b3480156101ca57600080fd5b506101de6101d9366004610ce4565b610489565b6040516001600160a01b039091168152602001610166565b34801561020257600080fd5b50610216610211366004610d19565b6104cf565b005b34801561022457600080fd5b506003545b604051908152602001610166565b34801561024357600080fd5b50610216610252366004610d43565b61058d565b34801561026357600080fd5b50610229610ce481565b34801561027957600080fd5b5061021661059d565b34801561028e57600080fd5b5061021661029d366004610d43565b6105e7565b3480156102ae57600080fd5b506102166102bd366004610e0b565b610602565b3480156102ce57600080fd5b506101de6102dd366004610ce4565b610625565b3480156102ee57600080fd5b506102296102fd366004610e5c565b610630565b34801561030e57600080fd5b5061021661031d366004610ce4565b610679565b34801561032e57600080fd5b506000546001600160a01b03166101de565b34801561034c57600080fd5b5060408051808201909152601081526f2730b5b0b6b4b3b7b99027b832b832b760811b60208201526101b1565b610216610387366004610ce4565b610695565b34801561039857600080fd5b506102166103a7366004610e77565b610740565b3480156103b857600080fd5b506102166103c7366004610eb3565b6107d5565b3480156103d857600080fd5b5061022960015481565b3480156103ee57600080fd5b506101b16103fd366004610ce4565b6107e6565b34801561040e57600080fd5b506101b16108ef565b34801561042357600080fd5b5061015a610432366004610f2f565b61090b565b60006301ffc9a760e01b6001600160e01b03198316148061046857506380ac58cd60e01b6001600160e01b03198316145b806104835750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610496826003541190565b6104b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104da82610939565b9050806001600160a01b0316836001600160a01b0316036104fa57600080fd5b336001600160a01b0382161461053157610514813361090b565b610531576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105988383836109a0565b505050565b6000546001600160a01b031633146105b457600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105e3573d6000803e3d6000fd5b5050565b610598838383604051806020016040528060008152506107d5565b6000546001600160a01b0316331461061957600080fd5b60026105e38282610fe2565b600061048382610939565b600081600003610653576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461069057600080fd5b600155565b33610ce4826106a360035490565b6106ad91906110b8565b11156106ea5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b34600154836106f991906110cb565b11156107365760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016106e1565b6105e38183610b39565b336001600160a01b038316036107695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e08484846109a0565b50505050565b60606107f3826003541190565b61081057604051630a14c4b560e41b815260040160405180910390fd5b60006002805461081f90610f62565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90610f62565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905080516000036108bd57604051806020016040528060008152506108e8565b806108c784610c14565b6040516020016108d89291906110e2565b6040516020818303038152906040525b9392505050565b6040518060600160405280603581526020016111446035913981565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000816003548110156109875760008181526004602052604081205490600160e01b82169003610985575b806000036108e8575060001901600081815260046020526040902054610964565b505b604051636f96cda160e11b815260040160405180910390fd5b60006109ab82610939565b9050836001600160a01b0316816001600160a01b0316146109de5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610a0e5750610a0e863361090b565b80610a2157506001600160a01b03821633145b905080610a4157604051632ce44b5f60e11b815260040160405180910390fd5b8115610a6457600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610aef57600184016000818152600460205260408120549003610aed576003548114610aed5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610b5c57604051622e076360e81b815260040160405180910390fd5b81600003610b7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610bc85750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610c5157600183039250600a81066030018353600a9004610c33565b50819003601f19909101908152919050565b600060208284031215610c7557600080fd5b81356001600160e01b0319811681146108e857600080fd5b60005b83811015610ca8578181015183820152602001610c90565b50506000910152565b6020815260008251806020840152610cd0816040850160208701610c8d565b601f01601f19169190910160400192915050565b600060208284031215610cf657600080fd5b5035919050565b80356001600160a01b0381168114610d1457600080fd5b919050565b60008060408385031215610d2c57600080fd5b610d3583610cfd565b946020939093013593505050565b600080600060608486031215610d5857600080fd5b610d6184610cfd565b9250610d6f60208501610cfd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610db057610db0610d7f565b604051601f8501601f19908116603f01168101908282118183101715610dd857610dd8610d7f565b81604052809350858152868686011115610df157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215610e1d57600080fd5b813567ffffffffffffffff811115610e3457600080fd5b8201601f81018413610e4557600080fd5b610e5484823560208401610d95565b949350505050565b600060208284031215610e6e57600080fd5b6108e882610cfd565b60008060408385031215610e8a57600080fd5b610e9383610cfd565b915060208301358015158114610ea857600080fd5b809150509250929050565b60008060008060808587031215610ec957600080fd5b610ed285610cfd565b9350610ee060208601610cfd565b925060408501359150606085013567ffffffffffffffff811115610f0357600080fd5b8501601f81018713610f1457600080fd5b610f2387823560208401610d95565b91505092959194509250565b60008060408385031215610f4257600080fd5b610f4b83610cfd565b9150610f5960208401610cfd565b90509250929050565b600181811c90821680610f7657607f821691505b602082108103610f9657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561059857600081815260208120601f850160051c81016020861015610fc35750805b601f850160051c820191505b81811015610b3157828155600101610fcf565b815167ffffffffffffffff811115610ffc57610ffc610d7f565b6110108161100a8454610f62565b84610f9c565b602080601f831160018114611045576000841561102d5750858301515b600019600386901b1c1916600185901b178555610b31565b600085815260208120601f198616915b8281101561107457888601518255948401946001909101908401611055565b50858210156110925787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610483576104836110a2565b8082028115828204841417610483576104836110a2565b66697066733a2f2f60c81b815260008351611104816007850160208801610c8d565b602f60f81b6007918401918201528351611125816008840160208801610c8d565b64173539b7b760d91b60089290910191820152600d0194935050505056fe697066733a2f2f516d664d4e7a7773774b4d4d6d65595256354e4c4d55426e716746324b365971586f613877456e526f5337334b34a2646970667358221220a33d1197ad0d4726e2fa275683ea269eebabdb0d17e29e7568347d26d6eeb39f64736f6c63430008130033516d664d4e7a7773774b4d4d6d65595256354e4c4d55426e716746324b365971586f613877456e526f5337334b34
Deployed Bytecode
0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb4651461038c578063b88d4fde146103ac578063bf8fbbd2146103cc578063c87b56dd146103e2578063e8a3d48514610402578063e985e9c51461041757600080fd5b806370a08231146102e2578063893bcfbe146103025780638da5cb5b1461032257806395d89b4114610340578063a0712d681461037957600080fd5b806323b872dd116100fd57806323b872dd1461023757806332cb6b0c146102575780633ccfd60b1461026d57806342842e0e1461028257806347064d6a146102a25780636352211e146102c257600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101be578063095ea7b3146101f657806318160ddd14610218575b600080fd5b34801561014657600080fd5b5061015a610155366004610c63565b610437565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152601881527f4e616b616d69676f73204f706570656e2045646974696f6e000000000000000060208201525b6040516101669190610cb1565b3480156101ca57600080fd5b506101de6101d9366004610ce4565b610489565b6040516001600160a01b039091168152602001610166565b34801561020257600080fd5b50610216610211366004610d19565b6104cf565b005b34801561022457600080fd5b506003545b604051908152602001610166565b34801561024357600080fd5b50610216610252366004610d43565b61058d565b34801561026357600080fd5b50610229610ce481565b34801561027957600080fd5b5061021661059d565b34801561028e57600080fd5b5061021661029d366004610d43565b6105e7565b3480156102ae57600080fd5b506102166102bd366004610e0b565b610602565b3480156102ce57600080fd5b506101de6102dd366004610ce4565b610625565b3480156102ee57600080fd5b506102296102fd366004610e5c565b610630565b34801561030e57600080fd5b5061021661031d366004610ce4565b610679565b34801561032e57600080fd5b506000546001600160a01b03166101de565b34801561034c57600080fd5b5060408051808201909152601081526f2730b5b0b6b4b3b7b99027b832b832b760811b60208201526101b1565b610216610387366004610ce4565b610695565b34801561039857600080fd5b506102166103a7366004610e77565b610740565b3480156103b857600080fd5b506102166103c7366004610eb3565b6107d5565b3480156103d857600080fd5b5061022960015481565b3480156103ee57600080fd5b506101b16103fd366004610ce4565b6107e6565b34801561040e57600080fd5b506101b16108ef565b34801561042357600080fd5b5061015a610432366004610f2f565b61090b565b60006301ffc9a760e01b6001600160e01b03198316148061046857506380ac58cd60e01b6001600160e01b03198316145b806104835750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610496826003541190565b6104b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104da82610939565b9050806001600160a01b0316836001600160a01b0316036104fa57600080fd5b336001600160a01b0382161461053157610514813361090b565b610531576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105988383836109a0565b505050565b6000546001600160a01b031633146105b457600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105e3573d6000803e3d6000fd5b5050565b610598838383604051806020016040528060008152506107d5565b6000546001600160a01b0316331461061957600080fd5b60026105e38282610fe2565b600061048382610939565b600081600003610653576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461069057600080fd5b600155565b33610ce4826106a360035490565b6106ad91906110b8565b11156106ea5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b34600154836106f991906110cb565b11156107365760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016106e1565b6105e38183610b39565b336001600160a01b038316036107695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e08484846109a0565b50505050565b60606107f3826003541190565b61081057604051630a14c4b560e41b815260040160405180910390fd5b60006002805461081f90610f62565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90610f62565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905080516000036108bd57604051806020016040528060008152506108e8565b806108c784610c14565b6040516020016108d89291906110e2565b6040516020818303038152906040525b9392505050565b6040518060600160405280603581526020016111446035913981565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000816003548110156109875760008181526004602052604081205490600160e01b82169003610985575b806000036108e8575060001901600081815260046020526040902054610964565b505b604051636f96cda160e11b815260040160405180910390fd5b60006109ab82610939565b9050836001600160a01b0316816001600160a01b0316146109de5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610a0e5750610a0e863361090b565b80610a2157506001600160a01b03821633145b905080610a4157604051632ce44b5f60e11b815260040160405180910390fd5b8115610a6457600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610aef57600184016000818152600460205260408120549003610aed576003548114610aed5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610b5c57604051622e076360e81b815260040160405180910390fd5b81600003610b7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610bc85750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610c5157600183039250600a81066030018353600a9004610c33565b50819003601f19909101908152919050565b600060208284031215610c7557600080fd5b81356001600160e01b0319811681146108e857600080fd5b60005b83811015610ca8578181015183820152602001610c90565b50506000910152565b6020815260008251806020840152610cd0816040850160208701610c8d565b601f01601f19169190910160400192915050565b600060208284031215610cf657600080fd5b5035919050565b80356001600160a01b0381168114610d1457600080fd5b919050565b60008060408385031215610d2c57600080fd5b610d3583610cfd565b946020939093013593505050565b600080600060608486031215610d5857600080fd5b610d6184610cfd565b9250610d6f60208501610cfd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610db057610db0610d7f565b604051601f8501601f19908116603f01168101908282118183101715610dd857610dd8610d7f565b81604052809350858152868686011115610df157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215610e1d57600080fd5b813567ffffffffffffffff811115610e3457600080fd5b8201601f81018413610e4557600080fd5b610e5484823560208401610d95565b949350505050565b600060208284031215610e6e57600080fd5b6108e882610cfd565b60008060408385031215610e8a57600080fd5b610e9383610cfd565b915060208301358015158114610ea857600080fd5b809150509250929050565b60008060008060808587031215610ec957600080fd5b610ed285610cfd565b9350610ee060208601610cfd565b925060408501359150606085013567ffffffffffffffff811115610f0357600080fd5b8501601f81018713610f1457600080fd5b610f2387823560208401610d95565b91505092959194509250565b60008060408385031215610f4257600080fd5b610f4b83610cfd565b9150610f5960208401610cfd565b90509250929050565b600181811c90821680610f7657607f821691505b602082108103610f9657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561059857600081815260208120601f850160051c81016020861015610fc35750805b601f850160051c820191505b81811015610b3157828155600101610fcf565b815167ffffffffffffffff811115610ffc57610ffc610d7f565b6110108161100a8454610f62565b84610f9c565b602080601f831160018114611045576000841561102d5750858301515b600019600386901b1c1916600185901b178555610b31565b600085815260208120601f198616915b8281101561107457888601518255948401946001909101908401611055565b50858210156110925787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610483576104836110a2565b8082028115828204841417610483576104836110a2565b66697066733a2f2f60c81b815260008351611104816007850160208801610c8d565b602f60f81b6007918401918201528351611125816008840160208801610c8d565b64173539b7b760d91b60089290910191820152600d0194935050505056fe697066733a2f2f516d664d4e7a7773774b4d4d6d65595256354e4c4d55426e716746324b365971586f613877456e526f5337334b34a2646970667358221220a33d1197ad0d4726e2fa275683ea269eebabdb0d17e29e7568347d26d6eeb39f64736f6c63430008130033
Deployed Bytecode Sourcemap
10030:24068:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14824:615;;;;;;;;;;-1:-1:-1;14824:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14824:615:0;;;;;;;;19577:100;;;;;;;;;;-1:-1:-1;19664:5:0;;;;;;;;;;;;;;;;;19577:100;;;;;;;:::i;21402:204::-;;;;;;;;;;-1:-1:-1;21402:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;21402:204:0;1338:203:1;20885:451:0;;;;;;;;;;-1:-1:-1;20885:451:0;;;;;:::i;:::-;;:::i;:::-;;14067:300;;;;;;;;;;-1:-1:-1;14317:13:0;;14067:300;;;2129:25:1;;;2117:2;2102:18;14067:300:0;1983:177:1;22288:190:0;;;;;;;;;;-1:-1:-1;22288:190:0;;;;;:::i;:::-;;:::i;10283:41::-;;;;;;;;;;;;10320:4;10283:41;;33950:145;;;;;;;;;;;;;:::i;22549:205::-;;;;;;;;;;-1:-1:-1;22549:205:0;;;;;:::i;:::-;;:::i;13264:91::-;;;;;;;;;;-1:-1:-1;13264:91:0;;;;;:::i;:::-;;:::i;19366:144::-;;;;;;;;;;-1:-1:-1;19366:144:0;;;;;:::i;:::-;;:::i;15503:234::-;;;;;;;;;;-1:-1:-1;15503:234:0;;;;;:::i;:::-;;:::i;13363:84::-;;;;;;;;;;-1:-1:-1;13363:84:0;;;;;:::i;:::-;;:::i;10111:77::-;;;;;;;;;;-1:-1:-1;10148:7:0;10174:6;-1:-1:-1;;;;;10174:6:0;10111:77;;19746:104;;;;;;;;;;-1:-1:-1;19835:7:0;;;;;;;;;;;;-1:-1:-1;;;19835:7:0;;;;19746:104;;10740:262;;;;;;:::i;:::-;;:::i;21678:308::-;;;;;;;;;;-1:-1:-1;21678:308:0;;;;;:::i;:::-;;:::i;22825:227::-;;;;;;;;;;-1:-1:-1;22825:227:0;;;;;:::i;:::-;;:::i;10331:34::-;;;;;;;;;;;;;;;;19864:339;;;;;;;;;;-1:-1:-1;19864:339:0;;;;;:::i;:::-;;:::i;10498:92::-;;;;;;;;;;;;;:::i;22057:164::-;;;;;;;;;;-1:-1:-1;22057:164:0;;;;;:::i;:::-;;:::i;14824:615::-;14909:4;-1:-1:-1;;;;;;;;;15209:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15286:25:0;;;15209:102;:179;;;-1:-1:-1;;;;;;;;;;15363:25:0;;;15209:179;15189:199;14824:615;-1:-1:-1;;14824:615:0:o;21402:204::-;21470:7;21495:16;21503:7;23454:13;;-1:-1:-1;23444:23:0;23307:168;21495:16;21490:64;;21520:34;;-1:-1:-1;;;21520:34:0;;;;;;;;;;;21490:64;-1:-1:-1;21574:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21574:24:0;;21402:204::o;20885:451::-;20958:13;20990:27;21009:7;20990:18;:27::i;:::-;20958:61;;21040:5;-1:-1:-1;;;;;21034:11:0;:2;-1:-1:-1;;;;;21034:11:0;;21030:25;;21047:8;;;21030:25;31936:10;-1:-1:-1;;;;;21072:28:0;;;21068:175;;21120:44;21137:5;31936:10;22057:164;:::i;21120:44::-;21115:128;;21192:35;;-1:-1:-1;;;21192:35:0;;;;;;;;;;;21115:128;21255:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21255:29:0;-1:-1:-1;;;;;21255:29:0;;;;;;;;;21300:28;;21255:24;;21300:28;;;;;;;20947:389;20885:451;;:::o;22288:190::-;22442:28;22452:4;22458:2;22462:7;22442:9;:28::i;:::-;22288:190;;;:::o;33950:145::-;10235:6;;-1:-1:-1;;;;;10235:6:0;10243:10;10235:18;10227:27;;;;;;34050:37:::1;::::0;34018:21:::1;::::0;34058:10:::1;::::0;34050:37;::::1;;;::::0;34018:21;;34000:15:::1;34050:37:::0;34000:15;34050:37;34018:21;34058:10;34050:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33989:106;33950:145::o:0;22549:205::-;22707:39;22724:4;22730:2;22734:7;22707:39;;;;;;;;;;;;:16;:39::i;13264:91::-;10235:6;;-1:-1:-1;;;;;10235:6:0;10243:10;10235:18;10227:27;;;;;;13331:8:::1;:16;13342:5:::0;13331:8;:16:::1;:::i;19366:144::-:0;19430:7;19473:27;19492:7;19473:18;:27::i;15503:234::-;15567:7;15609:5;15619:1;15591:29;15587:70;;15629:28;;-1:-1:-1;;;15629:28:0;;;;;;;;;;;15587:70;-1:-1:-1;;;;;;15675:25:0;;;;;:18;:25;;;;;;11115:13;15675:54;;15503:234::o;13363:84::-;10235:6;;-1:-1:-1;;;;;10235:6:0;10243:10;10235:18;10227:27;;;;;;13427:4:::1;:12:::0;13363:84::o;10740:262::-;31936:10;10320:4;10869:6;10853:13;14317;;;14067:300;10853:13;:22;;;;:::i;:::-;:36;;10845:56;;;;-1:-1:-1;;;10845:56:0;;8256:2:1;10845:56:0;;;8238:21:1;8295:1;8275:18;;;8268:29;-1:-1:-1;;;8313:18:1;;;8306:37;8360:18;;10845:56:0;;;;;;;;;10935:9;10927:4;;10920:6;:11;;;;:::i;:::-;:24;;10912:49;;;;-1:-1:-1;;;10912:49:0;;8764:2:1;10912:49:0;;;8746:21:1;8803:2;8783:18;;;8776:30;-1:-1:-1;;;8822:18:1;;;8815:42;8874:18;;10912:49:0;8562:336:1;10912:49:0;10972:22;10978:7;10987:6;10972:5;:22::i;21678:308::-;31936:10;-1:-1:-1;;;;;21777:31:0;;;21773:61;;21817:17;;-1:-1:-1;;;21817:17:0;;;;;;;;;;;21773:61;31936:10;21847:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21847:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21847:60:0;;;;;;;;;;21923:55;;445:41:1;;;21847:49:0;;31936:10;21923:55;;418:18:1;21923:55:0;;;;;;;21678:308;;:::o;22825:227::-;23016:28;23026:4;23032:2;23036:7;23016:9;:28::i;:::-;22825:227;;;;:::o;19864:339::-;19937:13;19968:16;19976:7;23454:13;;-1:-1:-1;23444:23:0;23307:168;19968:16;19963:59;;19993:29;;-1:-1:-1;;;19993:29:0;;;;;;;;;;;19963:59;20033:21;20057:8;20033:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20089:7;20083:21;20108:1;20083:26;:112;;;;;;;;;;;;;;;;;20147:7;20161:18;20171:7;20161:9;:18::i;:::-;20119:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20083:112;20076:119;19864:339;-1:-1:-1;;;19864:339:0:o;10498:92::-;;;;;;;;;;;;;;;;;;;:::o;22057:164::-;-1:-1:-1;;;;;22178:25:0;;;22154:4;22178:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22057:164::o;16881:1129::-;16948:7;16983;17085:13;;17078:4;:20;17074:869;;;17123:14;17140:23;;;:17;:23;;;;;;;-1:-1:-1;;;17229:23:0;;:28;;17225:699;;17748:113;17755:6;17765:1;17755:11;17748:113;;-1:-1:-1;;;17826:6:0;17808:25;;;;:17;:25;;;;;;17748:113;;17225:699;17100:843;17074:869;17971:31;;-1:-1:-1;;;17971:31:0;;;;;;;;;;;28175:2636;28312:27;28342;28361:7;28342:18;:27::i;:::-;28312:57;;28427:4;-1:-1:-1;;;;;28386:45:0;28402:19;-1:-1:-1;;;;;28386:45:0;;28382:86;;28440:28;;-1:-1:-1;;;28440:28:0;;;;;;;;;;;28382:86;28481:23;28507:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28507:24:0;;;;28481:23;28570:27;;31936:10;28570:27;;:91;;-1:-1:-1;28618:43:0;28635:4;31936:10;22057:164;:::i;28618:43::-;28570:150;;;-1:-1:-1;;;;;;28682:38:0;;31936:10;28682:38;28570:150;28544:177;;28739:17;28734:66;;28765:35;;-1:-1:-1;;;28765:35:0;;;;;;;;;;;28734:66;28969:15;28951:39;28947:103;;29014:24;;;;:15;:24;;;;;29007:31;;-1:-1:-1;;;;;;29007:31:0;;;28947:103;-1:-1:-1;;;;;29417:24:0;;;;;;;:18;:24;;;;;;;;29415:26;;-1:-1:-1;;29415:26:0;;;29486:22;;;;;;;;29484:24;;-1:-1:-1;29484:24:0;;;29779:26;;;:17;:26;;;;;-1:-1:-1;;;29867:15:0;11769:3;29867:41;29825:84;;:128;;29779:174;;;30073:46;;:51;;30069:626;;30177:1;30167:11;;30145:19;30300:30;;;:17;:30;;;;;;:35;;30296:384;;30438:13;;30423:11;:28;30419:242;;30585:30;;;;:17;:30;;;;;:52;;;30419:242;30126:569;30069:626;30742:7;30738:2;-1:-1:-1;;;;;30723:27:0;30732:4;-1:-1:-1;;;;;30723:27:0;;;;;;;;;;;30761:42;28299:2512;;;28175:2636;;;:::o;26327:1594::-;26415:13;;26461:2;26468:1;26443:26;26439:58;;26478:19;;-1:-1:-1;;;26478:19:0;;;;;;;;;;;26439:58;26512:8;26524:1;26512:13;26508:44;;26534:18;;-1:-1:-1;;;26534:18:0;;;;;;;;;;;26508:44;-1:-1:-1;;;;;27029:22:0;;;;;;:18;:22;;;;11252:2;27029:22;;;:70;;27067:31;27055:44;;27029:70;;;27342:31;;;:17;:31;;;;;27435:15;11769:3;27435:41;27393:84;;-1:-1:-1;27513:13:0;;12028:3;27498:56;27393:162;27342:213;;:31;27636:23;;;27676:111;27703:40;;27728:14;;;;;-1:-1:-1;;;;;27703:40:0;;;27720:1;;27703:40;;27720:1;;27703:40;27782:3;27767:12;:18;27676:111;;-1:-1:-1;27803:13:0;:28;22288:190;;;:::o;32060:1882::-;32531:4;32525:11;;32538:3;32521:21;;32612:17;;;;33284:11;;;33161:5;33418:2;33432;33422:13;;33414:22;33284:11;33401:36;33474:2;33464:13;;33058:661;33490:4;33058:661;;;33658:1;33653:3;33649:11;33642:18;;33702:2;33696:4;33692:13;33688:2;33684:22;33679:3;33671:36;33575:2;33565:13;;33058:661;;;-1:-1:-1;33742:13:0;;;-1:-1:-1;;33851:12:0;;;33905:19;;;33851:12;32060:1882;-1:-1:-1;32060:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:127::-;2559:10;2554:3;2550:20;2547:1;2540:31;2590:4;2587:1;2580:15;2614:4;2611:1;2604:15;2630:632;2695:5;2725:18;2766:2;2758:6;2755:14;2752:40;;;2772:18;;:::i;:::-;2847:2;2841:9;2815:2;2901:15;;-1:-1:-1;;2897:24:1;;;2923:2;2893:33;2889:42;2877:55;;;2947:18;;;2967:22;;;2944:46;2941:72;;;2993:18;;:::i;:::-;3033:10;3029:2;3022:22;3062:6;3053:15;;3092:6;3084;3077:22;3132:3;3123:6;3118:3;3114:16;3111:25;3108:45;;;3149:1;3146;3139:12;3108:45;3199:6;3194:3;3187:4;3179:6;3175:17;3162:44;3254:1;3247:4;3238:6;3230;3226:19;3222:30;3215:41;;;;2630:632;;;;;:::o;3267:451::-;3336:6;3389:2;3377:9;3368:7;3364:23;3360:32;3357:52;;;3405:1;3402;3395:12;3357:52;3445:9;3432:23;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533:22;;3586:4;3578:13;;3574:27;-1:-1:-1;3564:55:1;;3615:1;3612;3605:12;3564:55;3638:74;3704:7;3699:2;3686:16;3681:2;3677;3673:11;3638:74;:::i;:::-;3628:84;3267:451;-1:-1:-1;;;;3267:451:1:o;3723:186::-;3782:6;3835:2;3823:9;3814:7;3810:23;3806:32;3803:52;;;3851:1;3848;3841:12;3803:52;3874:29;3893:9;3874:29;:::i;3914:347::-;3979:6;3987;4040:2;4028:9;4019:7;4015:23;4011:32;4008:52;;;4056:1;4053;4046:12;4008:52;4079:29;4098:9;4079:29;:::i;:::-;4069:39;;4158:2;4147:9;4143:18;4130:32;4205:5;4198:13;4191:21;4184:5;4181:32;4171:60;;4227:1;4224;4217:12;4171:60;4250:5;4240:15;;;3914:347;;;;;:::o;4266:667::-;4361:6;4369;4377;4385;4438:3;4426:9;4417:7;4413:23;4409:33;4406:53;;;4455:1;4452;4445:12;4406:53;4478:29;4497:9;4478:29;:::i;:::-;4468:39;;4526:38;4560:2;4549:9;4545:18;4526:38;:::i;:::-;4516:48;;4611:2;4600:9;4596:18;4583:32;4573:42;;4666:2;4655:9;4651:18;4638:32;4693:18;4685:6;4682:30;4679:50;;;4725:1;4722;4715:12;4679:50;4748:22;;4801:4;4793:13;;4789:27;-1:-1:-1;4779:55:1;;4830:1;4827;4820:12;4779:55;4853:74;4919:7;4914:2;4901:16;4896:2;4892;4888:11;4853:74;:::i;:::-;4843:84;;;4266:667;;;;;;;:::o;4938:260::-;5006:6;5014;5067:2;5055:9;5046:7;5042:23;5038:32;5035:52;;;5083:1;5080;5073:12;5035:52;5106:29;5125:9;5106:29;:::i;:::-;5096:39;;5154:38;5188:2;5177:9;5173:18;5154:38;:::i;:::-;5144:48;;4938:260;;;;;:::o;5203:380::-;5282:1;5278:12;;;;5325;;;5346:61;;5400:4;5392:6;5388:17;5378:27;;5346:61;5453:2;5445:6;5442:14;5422:18;5419:38;5416:161;;5499:10;5494:3;5490:20;5487:1;5480:31;5534:4;5531:1;5524:15;5562:4;5559:1;5552:15;5416:161;;5203:380;;;:::o;5714:545::-;5816:2;5811:3;5808:11;5805:448;;;5852:1;5877:5;5873:2;5866:17;5922:4;5918:2;5908:19;5992:2;5980:10;5976:19;5973:1;5969:27;5963:4;5959:38;6028:4;6016:10;6013:20;6010:47;;;-1:-1:-1;6051:4:1;6010:47;6106:2;6101:3;6097:12;6094:1;6090:20;6084:4;6080:31;6070:41;;6161:82;6179:2;6172:5;6169:13;6161:82;;;6224:17;;;6205:1;6194:13;6161:82;;6435:1352;6561:3;6555:10;6588:18;6580:6;6577:30;6574:56;;;6610:18;;:::i;:::-;6639:97;6729:6;6689:38;6721:4;6715:11;6689:38;:::i;:::-;6683:4;6639:97;:::i;:::-;6791:4;;6855:2;6844:14;;6872:1;6867:663;;;;7574:1;7591:6;7588:89;;;-1:-1:-1;7643:19:1;;;7637:26;7588:89;-1:-1:-1;;6392:1:1;6388:11;;;6384:24;6380:29;6370:40;6416:1;6412:11;;;6367:57;7690:81;;6837:944;;6867:663;5661:1;5654:14;;;5698:4;5685:18;;-1:-1:-1;;6903:20:1;;;7021:236;7035:7;7032:1;7029:14;7021:236;;;7124:19;;;7118:26;7103:42;;7216:27;;;;7184:1;7172:14;;;;7051:19;;7021:236;;;7025:3;7285:6;7276:7;7273:19;7270:201;;;7346:19;;;7340:26;-1:-1:-1;;7429:1:1;7425:14;;;7441:3;7421:24;7417:37;7413:42;7398:58;7383:74;;7270:201;-1:-1:-1;;;;;7517:1:1;7501:14;;;7497:22;7484:36;;-1:-1:-1;6435:1352:1:o;7792:127::-;7853:10;7848:3;7844:20;7841:1;7834:31;7884:4;7881:1;7874:15;7908:4;7905:1;7898:15;7924:125;7989:9;;;8010:10;;;8007:36;;;8023:18;;:::i;8389:168::-;8462:9;;;8493;;8510:15;;;8504:22;;8490:37;8480:71;;8531:18;;:::i;8903:935::-;-1:-1:-1;;;9410:3:1;9403:22;9385:3;9454:6;9448:13;9470:74;9537:6;9533:1;9528:3;9524:11;9517:4;9509:6;9505:17;9470:74;:::i;:::-;-1:-1:-1;;;9603:1:1;9563:16;;;9595:10;;;9588:23;9636:13;;9658:75;9636:13;9720:1;9712:10;;9705:4;9693:17;;9658:75;:::i;:::-;-1:-1:-1;;;9793:1:1;9752:17;;;;9785:10;;;9778:27;9829:2;9821:11;;8903:935;-1:-1:-1;;;;8903:935:1:o
Swarm Source
ipfs://a33d1197ad0d4726e2fa275683ea269eebabdb0d17e29e7568347d26d6eeb39f
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.