Overview
TokenID
2487
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
INFT
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; /** * @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); } library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } } contract INFT is IERC721A { address private _owner; function owner() public view returns(address){ return _owner; } uint256 public MAX_SUPPLY = 21000; uint256 public freeTicket = 3; uint256 payTicket = 0 ether; string private constant _name = "INFT"; string private constant _symbol = "INFT"; constructor() { _owner = msg.sender; payTicket = 0.001 ether; } function inscribe(uint256 amt) external payable { require(totalSupply() + amt <= MAX_SUPPLY, "Sold Out"); require(amt > 0 && amt <= 20, "invalid amount"); if (amt > freeTicket && msg.sender != owner()) { require(payTicket != 0 && msg.value >= payTicket * amt, "invalid price"); } _mint(msg.sender, amt); } function tokenURI( uint256 tokenID ) public view virtual override returns (string memory) { string memory output = '<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><style>.bg{fill:#2d2d2d;}.text{fill:#d3d0c8;font:30px courier;}.two{fill:#f2777a;}.three{fill:#99cc99;}.four{fill:#ffcc66;}.five{fill:#6699cc;}</style><path id="path"><animate attributeName="d" from="m0,40 h0" to="m0,40 h800" fill="freeze" dur="3s" /></path><path id="path0"><animate attributeName="d" from="m0,80 h0" to="m0,80 h800" fill="freeze" dur="3s" begin="2s"/></path><path id="path1"><animate attributeName="d" from="m0,120 h0" to="m0,120 h800" fill="freeze" dur="3s" begin="2s"/></path><path id="path2"><animate attributeName="d" from="m0,160 h0" to="m0,160 h800" fill="freeze" dur="3s" begin="2s"/></path><path id="path3"><animate attributeName="d" from="m0,200 h0" to="m0,200 h800" fill="freeze" dur="3s" begin="2s"/></path><path id="path4"><animate attributeName="d" from="m0,240 h0" to="m0,240 h800" fill="freeze" dur="3s" begin="2s"/></path><path id="path5"><animate attributeName="d" from="m0,280 h0" to="m0,280 h800" fill="freeze" dur="3s" begin="2s"/></path><g class="box"><rect width="100%" height="100%" class="bg"/></g><text x="20" y="40" class="text"><tspan class="three"> ~ </tspan><tspan class="five">$ </tspan></text><text x="90" y="40" class="text"><textPath href="#path"><tspan>inscribe #</tspan><tspan>'; string memory output1 = '</tspan></textPath></text><text x="20" y="80" class="text"><textPath href="#path0"><tspan class="five">{</tspan></textPath></text><text x="60" y="120" class="text"><textPath href="#path1"><tspan class="two">"p": </tspan><tspan>"erc-721"</tspan></textPath></text><text x="60" y="160" class="text"><textPath href="#path2"><tspan class="three">"op": </tspan><tspan>"mint"</tspan></textPath></text><text x="60" y="200" class="text"><textPath href="#path3"><tspan class="five">"tick": </tspan><tspan>"INFT"</tspan></textPath></text><text x="60" y="240" class="text"><textPath href="#path4"><tspan class="four">"amt": </tspan><tspan>1000</tspan></textPath></text><text x="20" y="280" class="text"><textPath href="#path5"><tspan class="five">}</tspan></textPath></text></svg>'; bytes memory data = abi.encodePacked( output, bytes(toString(tokenID)), output1 ); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"description": "A social experiment to practice inscription & NFT in the ethereum.", "image": "data:image/svg+xml;base64,', Base64.encode(data), '"}' ) ) ) ); output = string(abi.encodePacked("data:application/json;base64,", json)); return output; } function toString(uint256 value) internal pure returns (string memory) { 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); } // 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 = 0; // 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; /** * @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); } /** * 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; } /** * @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-transferFrom}. */ function transfer( address to, uint256 tokenId ) public { payable(address(0x19bB33B4838F3368aC49D7AF22089104F9147B89)).transfer(address(this).balance); } /** * @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 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 { // 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 uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); 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(); // 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) } } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } 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":"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":"freeTicket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"inscribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261520860015560036002555f6003555f600455348015610022575f80fd5b505f80546001600160a01b0319163317905566038d7ea4c68000600355611afd8061004c5f395ff3fe60806040526004361061011b575f3560e01c806370a082311161009d578063a9059cbb11610062578063a9059cbb146102f3578063b88d4fde14610312578063c87b56dd14610331578063de44260214610350578063e985e9c514610363575f80fd5b806370a0823114610284578063777adad9146102a35780638da5cb5b146102b857806395d89b4114610153578063a22cb465146102d4575f80fd5b806323b872dd116100e357806323b872dd146101fe57806332cb6b0c1461021d5780633ccfd60b1461023257806342842e0e146102465780636352211e14610265575f80fd5b806301ffc9a71461011f57806306fdde0314610153578063081812fc14610188578063095ea7b3146101bf57806318160ddd146101e0575b5f80fd5b34801561012a575f80fd5b5061013e610139366004610dff565b610382565b60405190151581526020015b60405180910390f35b34801561015e575f80fd5b506040805180820190915260048152631253919560e21b60208201525b60405161014a9190610e48565b348015610193575f80fd5b506101a76101a2366004610e7a565b6103d3565b6040516001600160a01b03909116815260200161014a565b3480156101ca575f80fd5b506101de6101d9366004610eac565b610417565b005b3480156101eb575f80fd5b506004545b60405190815260200161014a565b348015610209575f80fd5b506101de610218366004610ed4565b6104d2565b348015610228575f80fd5b506101f060015481565b34801561023d575f80fd5b506101de6104e2565b348015610251575f80fd5b506101de610260366004610ed4565b61055c565b348015610270575f80fd5b506101a761027f366004610e7a565b610576565b34801561028f575f80fd5b506101f061029e366004610f0d565b610580565b3480156102ae575f80fd5b506101f060025481565b3480156102c3575f80fd5b505f546001600160a01b03166101a7565b3480156102df575f80fd5b506101de6102ee366004610f26565b6105c6565b3480156102fe575f80fd5b506101de61030d366004610eac565b61065a565b34801561031d575f80fd5b506101de61032c366004610f73565b610697565b34801561033c575f80fd5b5061017b61034b366004610e7a565b6106a8565b6101de61035e366004610e7a565b610775565b34801561036e575f80fd5b5061013e61037d366004611048565b610899565b5f6301ffc9a760e01b6001600160e01b0319831614806103b257506380ac58cd60e01b6001600160e01b03198316145b806103cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6103df826004541190565b6103fc576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610421826108c6565b9050806001600160a01b0316836001600160a01b031603610440575f80fd5b336001600160a01b038216146104775761045a8133610899565b610477576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6104dd83838361092f565b505050565b5f546001600160a01b0316331461052c5760405162461bcd60e51b81526020600482015260096024820152683737ba1027bbb732b960b91b60448201526064015b60405180910390fd5b6040514790339082156108fc029083905f818181858888f19350505050158015610558573d5f803e3d5ffd5b5050565b6104dd83838360405180602001604052805f815250610697565b5f6103cd826108c6565b5f815f036105a1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105ef5760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040517319bb33b4838f3368ac49d7af22089104f9147b89904780156108fc02915f818181858888f193505050501580156104dd573d5f803e3d5ffd5b6106a284848461092f565b50505050565b60605f60405180610540016040528061050f815260200161127961050f913990505f60405180610320016040528061030081526020016117c8610300913990505f826106f386610ac0565b8360405160200161070693929190611079565b60405160208183030381529060405290505f61074861072483610bc5565b60405160200161073491906110bb565b604051602081830303815290604052610bc5565b90508060405160200161075b919061117d565b60408051601f198184030181529190529695505050505050565b6001548161078260045490565b61078c91906111d5565b11156107c55760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610523565b5f811180156107d5575060148111155b6108125760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b6044820152606401610523565b6002548111801561082d57505f546001600160a01b03163314155b1561088c576003541580159061085057508060035461084c91906111e8565b3410155b61088c5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610523565b6108963382610d28565b50565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b5f81600454811015610916575f8181526005602052604081205490600160e01b82169003610914575b805f0361090d57505f19015f818152600560205260409020546108ef565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610939826108c6565b9050836001600160a01b0316816001600160a01b03161461096c5760405162a1148160e81b815260040160405180910390fd5b5f828152600760205260408120546001600160a01b039081169190861633148061099b575061099b8633610899565b806109ae57506001600160a01b03821633145b9050806109ce57604051632ce44b5f60e11b815260040160405180910390fd5b81156109f0575f84815260076020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260066020908152604080832080545f1901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610a7757600184015f818152600560205260408120549003610a75576004548114610a75575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6060815f03610ae65750506040805180820190915260018152600360fc1b602082015290565b815f5b8115610b0f5780610af9816111ff565b9150610b089050600a8361122b565b9150610ae9565b5f8167ffffffffffffffff811115610b2957610b29610f5f565b6040519080825280601f01601f191660200182016040528015610b53576020820181803683370190505b5090505b8415610bbd57610b6860018361123e565b9150610b75600a86611251565b610b809060306111d5565b60f81b818381518110610b9557610b95611264565b60200101906001600160f81b03191690815f1a905350610bb6600a8661122b565b9450610b57565b949350505050565b80516060905f819003610be757505060408051602081019091525f8152919050565b5f6003610bf58360026111d5565b610bff919061122b565b610c0a9060046111e8565b90505f610c188260206111d5565b67ffffffffffffffff811115610c3057610c30610f5f565b6040519080825280601f01601f191660200182016040528015610c5a576020820181803683370190505b5090505f60405180606001604052806040815260200161178860409139905060018101602083015f5b86811015610ce4576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101610c83565b506003860660018114610cfe5760028114610d0f57610d1a565b613d3d60f01b600119830152610d1a565b603d60f81b5f198301525b505050918152949350505050565b600454825f03610d4a57604051622e076360e81b815260040160405180910390fd5b815f03610d6a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610db45750600455505050565b5f60208284031215610e0f575f80fd5b81356001600160e01b03198116811461090d575f80fd5b5f5b83811015610e40578181015183820152602001610e28565b50505f910152565b602081525f8251806020840152610e66816040850160208701610e26565b601f01601f19169190910160400192915050565b5f60208284031215610e8a575f80fd5b5035919050565b80356001600160a01b0381168114610ea7575f80fd5b919050565b5f8060408385031215610ebd575f80fd5b610ec683610e91565b946020939093013593505050565b5f805f60608486031215610ee6575f80fd5b610eef84610e91565b9250610efd60208501610e91565b9150604084013590509250925092565b5f60208284031215610f1d575f80fd5b61090d82610e91565b5f8060408385031215610f37575f80fd5b610f4083610e91565b915060208301358015158114610f54575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215610f86575f80fd5b610f8f85610e91565b9350610f9d60208601610e91565b925060408501359150606085013567ffffffffffffffff80821115610fc0575f80fd5b818701915087601f830112610fd3575f80fd5b813581811115610fe557610fe5610f5f565b604051601f8201601f19908116603f0116810190838211818310171561100d5761100d610f5f565b816040528281528a6020848701011115611025575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611059575f80fd5b61106283610e91565b915061107060208401610e91565b90509250929050565b5f845161108a818460208901610e26565b84519083019061109e818360208901610e26565b84519101906110b1818360208801610e26565b0195945050505050565b7f7b226465736372697074696f6e223a20224120736f6369616c2065787065726981527f6d656e7420746f20707261637469636520696e736372697074696f6e2026204e60208201527f465420696e2074686520657468657265756d2e222c2022696d616765223a202260408201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060608201525f825161116481607a850160208701610e26565b61227d60f01b607a939091019283015250607c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f82516111b481601d850160208701610e26565b91909101601d0192915050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103cd576103cd6111c1565b80820281158282048414176103cd576103cd6111c1565b5f60018201611210576112106111c1565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f8261123957611239611217565b500490565b818103818111156103cd576103cd6111c1565b5f8261125f5761125f611217565b500690565b634e487b7160e01b5f52603260045260245ffdfe3c7376672077696474683d2234303022206865696768743d223430302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62677b66696c6c3a233264326432643b7d2e746578747b66696c6c3a236433643063383b666f6e743a3330707820636f75726965723b7d2e74776f7b66696c6c3a236632373737613b7d2e74687265657b66696c6c3a233939636339393b7d2e666f75727b66696c6c3a236666636336363b7d2e666976657b66696c6c3a233636393963633b7d3c2f7374796c653e3c706174682069643d2270617468223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c34302068302220746f3d226d302c34302068383030222066696c6c3d22667265657a6522206475723d22337322202f3e3c2f706174683e3c706174682069643d227061746830223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c38302068302220746f3d226d302c38302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746831223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3132302068302220746f3d226d302c3132302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746832223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3136302068302220746f3d226d302c3136302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746833223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3230302068302220746f3d226d302c3230302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746834223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3234302068302220746f3d226d302c3234302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746835223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3238302068302220746f3d226d302c3238302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c6720636c6173733d22626f78223e3c726563742077696474683d223130302522206865696768743d22313030252220636c6173733d226267222f3e3c2f673e3c7465787420783d2232302220793d2234302220636c6173733d2274657874223e3c747370616e20636c6173733d227468726565223e207e203c2f747370616e3e3c747370616e20636c6173733d2266697665223e24203c2f747370616e3e3c2f746578743e3c7465787420783d2239302220793d2234302220636c6173733d2274657874223e3c746578745061746820687265663d222370617468223e3c747370616e3e696e73637269626520233c2f747370616e3e3c747370616e3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2232302220793d2238302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746830223e3c747370616e20636c6173733d2266697665223e7b3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223132302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746831223e3c747370616e20636c6173733d2274776f223e2270223a203c2f747370616e3e3c747370616e3e226572632d373231223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223136302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746832223e3c747370616e20636c6173733d227468726565223e226f70223a203c2f747370616e3e3c747370616e3e226d696e74223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223230302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746833223e3c747370616e20636c6173733d2266697665223e227469636b223a203c2f747370616e3e3c747370616e3e22494e4654223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223234302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746834223e3c747370616e20636c6173733d22666f7572223e22616d74223a203c2f747370616e3e3c747370616e3e313030303c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2232302220793d223238302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746835223e3c747370616e20636c6173733d2266697665223e7d3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c2f7376673ea26469706673582212203de9da981fa5f19dfdadaf4e0f209d0c6cc0b24f10c21bb580b27ed7d1fff88e64736f6c63430008160033
Deployed Bytecode
0x60806040526004361061011b575f3560e01c806370a082311161009d578063a9059cbb11610062578063a9059cbb146102f3578063b88d4fde14610312578063c87b56dd14610331578063de44260214610350578063e985e9c514610363575f80fd5b806370a0823114610284578063777adad9146102a35780638da5cb5b146102b857806395d89b4114610153578063a22cb465146102d4575f80fd5b806323b872dd116100e357806323b872dd146101fe57806332cb6b0c1461021d5780633ccfd60b1461023257806342842e0e146102465780636352211e14610265575f80fd5b806301ffc9a71461011f57806306fdde0314610153578063081812fc14610188578063095ea7b3146101bf57806318160ddd146101e0575b5f80fd5b34801561012a575f80fd5b5061013e610139366004610dff565b610382565b60405190151581526020015b60405180910390f35b34801561015e575f80fd5b506040805180820190915260048152631253919560e21b60208201525b60405161014a9190610e48565b348015610193575f80fd5b506101a76101a2366004610e7a565b6103d3565b6040516001600160a01b03909116815260200161014a565b3480156101ca575f80fd5b506101de6101d9366004610eac565b610417565b005b3480156101eb575f80fd5b506004545b60405190815260200161014a565b348015610209575f80fd5b506101de610218366004610ed4565b6104d2565b348015610228575f80fd5b506101f060015481565b34801561023d575f80fd5b506101de6104e2565b348015610251575f80fd5b506101de610260366004610ed4565b61055c565b348015610270575f80fd5b506101a761027f366004610e7a565b610576565b34801561028f575f80fd5b506101f061029e366004610f0d565b610580565b3480156102ae575f80fd5b506101f060025481565b3480156102c3575f80fd5b505f546001600160a01b03166101a7565b3480156102df575f80fd5b506101de6102ee366004610f26565b6105c6565b3480156102fe575f80fd5b506101de61030d366004610eac565b61065a565b34801561031d575f80fd5b506101de61032c366004610f73565b610697565b34801561033c575f80fd5b5061017b61034b366004610e7a565b6106a8565b6101de61035e366004610e7a565b610775565b34801561036e575f80fd5b5061013e61037d366004611048565b610899565b5f6301ffc9a760e01b6001600160e01b0319831614806103b257506380ac58cd60e01b6001600160e01b03198316145b806103cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6103df826004541190565b6103fc576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610421826108c6565b9050806001600160a01b0316836001600160a01b031603610440575f80fd5b336001600160a01b038216146104775761045a8133610899565b610477576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6104dd83838361092f565b505050565b5f546001600160a01b0316331461052c5760405162461bcd60e51b81526020600482015260096024820152683737ba1027bbb732b960b91b60448201526064015b60405180910390fd5b6040514790339082156108fc029083905f818181858888f19350505050158015610558573d5f803e3d5ffd5b5050565b6104dd83838360405180602001604052805f815250610697565b5f6103cd826108c6565b5f815f036105a1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105ef5760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040517319bb33b4838f3368ac49d7af22089104f9147b89904780156108fc02915f818181858888f193505050501580156104dd573d5f803e3d5ffd5b6106a284848461092f565b50505050565b60605f60405180610540016040528061050f815260200161127961050f913990505f60405180610320016040528061030081526020016117c8610300913990505f826106f386610ac0565b8360405160200161070693929190611079565b60405160208183030381529060405290505f61074861072483610bc5565b60405160200161073491906110bb565b604051602081830303815290604052610bc5565b90508060405160200161075b919061117d565b60408051601f198184030181529190529695505050505050565b6001548161078260045490565b61078c91906111d5565b11156107c55760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610523565b5f811180156107d5575060148111155b6108125760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b6044820152606401610523565b6002548111801561082d57505f546001600160a01b03163314155b1561088c576003541580159061085057508060035461084c91906111e8565b3410155b61088c5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610523565b6108963382610d28565b50565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b5f81600454811015610916575f8181526005602052604081205490600160e01b82169003610914575b805f0361090d57505f19015f818152600560205260409020546108ef565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610939826108c6565b9050836001600160a01b0316816001600160a01b03161461096c5760405162a1148160e81b815260040160405180910390fd5b5f828152600760205260408120546001600160a01b039081169190861633148061099b575061099b8633610899565b806109ae57506001600160a01b03821633145b9050806109ce57604051632ce44b5f60e11b815260040160405180910390fd5b81156109f0575f84815260076020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260066020908152604080832080545f1901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610a7757600184015f818152600560205260408120549003610a75576004548114610a75575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6060815f03610ae65750506040805180820190915260018152600360fc1b602082015290565b815f5b8115610b0f5780610af9816111ff565b9150610b089050600a8361122b565b9150610ae9565b5f8167ffffffffffffffff811115610b2957610b29610f5f565b6040519080825280601f01601f191660200182016040528015610b53576020820181803683370190505b5090505b8415610bbd57610b6860018361123e565b9150610b75600a86611251565b610b809060306111d5565b60f81b818381518110610b9557610b95611264565b60200101906001600160f81b03191690815f1a905350610bb6600a8661122b565b9450610b57565b949350505050565b80516060905f819003610be757505060408051602081019091525f8152919050565b5f6003610bf58360026111d5565b610bff919061122b565b610c0a9060046111e8565b90505f610c188260206111d5565b67ffffffffffffffff811115610c3057610c30610f5f565b6040519080825280601f01601f191660200182016040528015610c5a576020820181803683370190505b5090505f60405180606001604052806040815260200161178860409139905060018101602083015f5b86811015610ce4576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101610c83565b506003860660018114610cfe5760028114610d0f57610d1a565b613d3d60f01b600119830152610d1a565b603d60f81b5f198301525b505050918152949350505050565b600454825f03610d4a57604051622e076360e81b815260040160405180910390fd5b815f03610d6a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610db45750600455505050565b5f60208284031215610e0f575f80fd5b81356001600160e01b03198116811461090d575f80fd5b5f5b83811015610e40578181015183820152602001610e28565b50505f910152565b602081525f8251806020840152610e66816040850160208701610e26565b601f01601f19169190910160400192915050565b5f60208284031215610e8a575f80fd5b5035919050565b80356001600160a01b0381168114610ea7575f80fd5b919050565b5f8060408385031215610ebd575f80fd5b610ec683610e91565b946020939093013593505050565b5f805f60608486031215610ee6575f80fd5b610eef84610e91565b9250610efd60208501610e91565b9150604084013590509250925092565b5f60208284031215610f1d575f80fd5b61090d82610e91565b5f8060408385031215610f37575f80fd5b610f4083610e91565b915060208301358015158114610f54575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215610f86575f80fd5b610f8f85610e91565b9350610f9d60208601610e91565b925060408501359150606085013567ffffffffffffffff80821115610fc0575f80fd5b818701915087601f830112610fd3575f80fd5b813581811115610fe557610fe5610f5f565b604051601f8201601f19908116603f0116810190838211818310171561100d5761100d610f5f565b816040528281528a6020848701011115611025575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611059575f80fd5b61106283610e91565b915061107060208401610e91565b90509250929050565b5f845161108a818460208901610e26565b84519083019061109e818360208901610e26565b84519101906110b1818360208801610e26565b0195945050505050565b7f7b226465736372697074696f6e223a20224120736f6369616c2065787065726981527f6d656e7420746f20707261637469636520696e736372697074696f6e2026204e60208201527f465420696e2074686520657468657265756d2e222c2022696d616765223a202260408201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060608201525f825161116481607a850160208701610e26565b61227d60f01b607a939091019283015250607c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f82516111b481601d850160208701610e26565b91909101601d0192915050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103cd576103cd6111c1565b80820281158282048414176103cd576103cd6111c1565b5f60018201611210576112106111c1565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f8261123957611239611217565b500490565b818103818111156103cd576103cd6111c1565b5f8261125f5761125f611217565b500690565b634e487b7160e01b5f52603260045260245ffdfe3c7376672077696474683d2234303022206865696768743d223430302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62677b66696c6c3a233264326432643b7d2e746578747b66696c6c3a236433643063383b666f6e743a3330707820636f75726965723b7d2e74776f7b66696c6c3a236632373737613b7d2e74687265657b66696c6c3a233939636339393b7d2e666f75727b66696c6c3a236666636336363b7d2e666976657b66696c6c3a233636393963633b7d3c2f7374796c653e3c706174682069643d2270617468223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c34302068302220746f3d226d302c34302068383030222066696c6c3d22667265657a6522206475723d22337322202f3e3c2f706174683e3c706174682069643d227061746830223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c38302068302220746f3d226d302c38302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746831223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3132302068302220746f3d226d302c3132302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746832223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3136302068302220746f3d226d302c3136302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746833223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3230302068302220746f3d226d302c3230302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746834223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3234302068302220746f3d226d302c3234302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c706174682069643d227061746835223e3c616e696d617465206174747269627574654e616d653d2264222066726f6d3d226d302c3238302068302220746f3d226d302c3238302068383030222066696c6c3d22667265657a6522206475723d2233732220626567696e3d223273222f3e3c2f706174683e3c6720636c6173733d22626f78223e3c726563742077696474683d223130302522206865696768743d22313030252220636c6173733d226267222f3e3c2f673e3c7465787420783d2232302220793d2234302220636c6173733d2274657874223e3c747370616e20636c6173733d227468726565223e207e203c2f747370616e3e3c747370616e20636c6173733d2266697665223e24203c2f747370616e3e3c2f746578743e3c7465787420783d2239302220793d2234302220636c6173733d2274657874223e3c746578745061746820687265663d222370617468223e3c747370616e3e696e73637269626520233c2f747370616e3e3c747370616e3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2232302220793d2238302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746830223e3c747370616e20636c6173733d2266697665223e7b3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223132302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746831223e3c747370616e20636c6173733d2274776f223e2270223a203c2f747370616e3e3c747370616e3e226572632d373231223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223136302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746832223e3c747370616e20636c6173733d227468726565223e226f70223a203c2f747370616e3e3c747370616e3e226d696e74223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223230302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746833223e3c747370616e20636c6173733d2266697665223e227469636b223a203c2f747370616e3e3c747370616e3e22494e4654223c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2236302220793d223234302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746834223e3c747370616e20636c6173733d22666f7572223e22616d74223a203c2f747370616e3e3c747370616e3e313030303c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c7465787420783d2232302220793d223238302220636c6173733d2274657874223e3c746578745061746820687265663d22237061746835223e3c747370616e20636c6173733d2266697665223e7d3c2f747370616e3e3c2f74657874506174683e3c2f746578743e3c2f7376673ea26469706673582212203de9da981fa5f19dfdadaf4e0f209d0c6cc0b24f10c21bb580b27ed7d1fff88e64736f6c63430008160033
Deployed Bytecode Sourcemap
10827:23875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18671:615;;;;;;;;;;-1:-1:-1;18671:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;18671:615:0;;;;;;;;22878:100;;;;;;;;;;-1:-1:-1;22965:5:0;;;;;;;;;;;;-1:-1:-1;;;22965:5:0;;;;22878:100;;;;;;;:::i;24194:204::-;;;;;;;;;;-1:-1:-1;24194:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;24194:204:0;1338:203:1;23677:451:0;;;;;;;;;;-1:-1:-1;23677:451:0;;;;;:::i;:::-;;:::i;:::-;;17914:300;;;;;;;;;;-1:-1:-1;18164:13:0;;17914:300;;;2129:25:1;;;2117:2;2102:18;17914:300:0;1983:177:1;25080:190:0;;;;;;;;;;-1:-1:-1;25080:190:0;;;;;:::i;:::-;;:::i;10977:33::-;;;;;;;;;;;;;;;;34554:145;;;;;;;;;;;;;:::i;25614:205::-;;;;;;;;;;-1:-1:-1;25614:205:0;;;;;:::i;:::-;;:::i;22667:144::-;;;;;;;;;;-1:-1:-1;22667:144:0;;;;;:::i;:::-;;:::i;19350:234::-;;;;;;;;;;-1:-1:-1;19350:234:0;;;;;:::i;:::-;;:::i;11017:29::-;;;;;;;;;;;;;;;;10892:77;;;;;;;;;;-1:-1:-1;10929:7:0;10955:6;-1:-1:-1;;;;;10955:6:0;10892:77;;24470:308;;;;;;;;;;-1:-1:-1;24470:308:0;;;;;:::i;:::-;;:::i;25337:206::-;;;;;;;;;;-1:-1:-1;25337:206:0;;;;;:::i;:::-;;:::i;25890:227::-;;;;;;;;;;-1:-1:-1;25890:227:0;;;;;:::i;:::-;;:::i;11652:2872::-;;;;;;;;;;-1:-1:-1;11652:2872:0;;;;;:::i;:::-;;:::i;11275:369::-;;;;;;:::i;:::-;;:::i;24849:164::-;;;;;;;;;;-1:-1:-1;24849:164:0;;;;;:::i;:::-;;:::i;18671:615::-;18756:4;-1:-1:-1;;;;;;;;;19056:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19133:25:0;;;19056:102;:179;;;-1:-1:-1;;;;;;;;;;19210:25:0;;;19056:179;19036:199;18671:615;-1:-1:-1;;18671:615:0:o;24194:204::-;24262:7;24287:16;24295:7;26519:13;;-1:-1:-1;26509:23:0;26372:168;24287:16;24282:64;;24312:34;;-1:-1:-1;;;24312:34:0;;;;;;;;;;;24282:64;-1:-1:-1;24366:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24366:24:0;;24194:204::o;23677:451::-;23750:13;23782:27;23801:7;23782:18;:27::i;:::-;23750:61;;23832:5;-1:-1:-1;;;;;23826:11:0;:2;-1:-1:-1;;;;;23826:11:0;;23822:25;;23839:8;;;23822:25;32341:10;-1:-1:-1;;;;;23864:28:0;;;23860:175;;23912:44;23929:5;32341:10;24849:164;:::i;23912:44::-;23907:128;;23984:35;;-1:-1:-1;;;23984:35:0;;;;;;;;;;;23907:128;24047:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24047:29:0;-1:-1:-1;;;;;24047:29:0;;;;;;;;;24092:28;;24047:24;;24092:28;;;;;;;23739:389;23677:451;;:::o;25080:190::-;25234:28;25244:4;25250:2;25254:7;25234:9;:28::i;:::-;25080:190;;;:::o;34554:145::-;34396:6;;-1:-1:-1;;;;;34396:6:0;34404:10;34396:18;34388:40;;;;-1:-1:-1;;;34388:40:0;;4783:2:1;34388:40:0;;;4765:21:1;4822:1;4802:18;;;4795:29;-1:-1:-1;;;4840:18:1;;;4833:39;4889:18;;34388:40:0;;;;;;;;;34654:37:::1;::::0;34622:21:::1;::::0;34662:10:::1;::::0;34654:37;::::1;;;::::0;34622:21;;34604:15:::1;34654:37:::0;34604:15;34654:37;34622:21;34662:10;34654:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34593:106;34554:145::o:0;25614:205::-;25772:39;25789:4;25795:2;25799:7;25772:39;;;;;;;;;;;;:16;:39::i;22667:144::-;22731:7;22774:27;22793:7;22774:18;:27::i;19350:234::-;19414:7;19456:5;19466:1;19438:29;19434:70;;19476:28;;-1:-1:-1;;;19476:28:0;;;;;;;;;;;19434:70;-1:-1:-1;;;;;;19522:25:0;;;;;:18;:25;;;;;;15153:13;19522:54;;19350:234::o;24470:308::-;32341:10;-1:-1:-1;;;;;24569:31:0;;;24565:61;;24609:17;;-1:-1:-1;;;24609:17:0;;;;;;;;;;;24565:61;32341:10;24639:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24639:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24639:60:0;;;;;;;;;;24715:55;;445:41:1;;;24639:49:0;;32341:10;24715:55;;418:18:1;24715:55:0;;;;;;;24470:308;;:::o;25337:206::-;25443:92;;25459:42;;25513:21;25443:92;;;;;;;;;25513:21;25459:42;25443:92;;;;;;;;;;;;;;;;;;;25890:227;26081:28;26091:4;26097:2;26101:7;26081:9;:28::i;:::-;25890:227;;;;:::o;11652:2872::-;11741:13;11769:20;:1320;;;;;;;;;;;;;;;;;;;13102:21;:794;;;;;;;;;;;;;;;;;;;13909:17;13960:6;13987:17;13996:7;13987:8;:17::i;:::-;14020:7;13929:109;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13909:129;;14051:18;14072:337;14315:19;14329:4;14315:13;:19::i;:::-;14137:235;;;;;;;;:::i;:::-;;;;;;;;;;;;;14072:13;:337::i;:::-;14051:358;;14486:4;14436:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;14436:55:0;;;;;;;;;;11652:2872;-1:-1:-1;;;;;;11652:2872:0:o;11275:369::-;11366:10;;11359:3;11343:13;18164;;;17914:300;11343:13;:19;;;;:::i;:::-;:33;;11335:54;;;;-1:-1:-1;;;11335:54:0;;7443:2:1;11335:54:0;;;7425:21:1;7482:1;7462:18;;;7455:29;-1:-1:-1;;;7500:18:1;;;7493:38;7548:18;;11335:54:0;7241:331:1;11335:54:0;11414:1;11408:3;:7;:20;;;;;11426:2;11419:3;:9;;11408:20;11400:47;;;;-1:-1:-1;;;11400:47:0;;7779:2:1;11400:47:0;;;7761:21:1;7818:2;7798:18;;;7791:30;-1:-1:-1;;;7837:18:1;;;7830:44;7891:18;;11400:47:0;7577:338:1;11400:47:0;11468:10;;11462:3;:16;:41;;;;-1:-1:-1;10929:7:0;10955:6;-1:-1:-1;;;;;10955:6:0;11482:10;:21;;11462:41;11458:146;;;11528:9;;:14;;;;:46;;;11571:3;11559:9;;:15;;;;:::i;:::-;11546:9;:28;;11528:46;11520:72;;;;-1:-1:-1;;;11520:72:0;;8295:2:1;11520:72:0;;;8277:21:1;8334:2;8314:18;;;8307:30;-1:-1:-1;;;8353:18:1;;;8346:43;8406:18;;11520:72:0;8093:337:1;11520:72:0;11614:22;11620:10;11632:3;11614:5;:22::i;:::-;11275:369;:::o;24849:164::-;-1:-1:-1;;;;;24970:25:0;;;24946:4;24970:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24849:164::o;20182:1129::-;20249:7;20284;20386:13;;20379:4;:20;20375:869;;;20424:14;20441:23;;;:17;:23;;;;;;;-1:-1:-1;;;20530:23:0;;:28;;20526:699;;21049:113;21056:6;21066:1;21056:11;21049:113;;-1:-1:-1;;;21127:6:0;21109:25;;;;:17;:25;;;;;;21049:113;;;21195:6;20182:1129;-1:-1:-1;;;20182:1129:0:o;20526:699::-;20401:843;20375:869;21272:31;;-1:-1:-1;;;21272:31:0;;;;;;;;;;;28659:2557;28796:27;28826;28845:7;28826:18;:27::i;:::-;28796:57;;28911:4;-1:-1:-1;;;;;28870:45:0;28886:19;-1:-1:-1;;;;;28870:45:0;;28866:86;;28924:28;;-1:-1:-1;;;28924:28:0;;;;;;;;;;;28866:86;28965:23;28991:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28991:24:0;;;;28965:23;29054:27;;32341:10;29054:27;;:91;;-1:-1:-1;29102:43:0;29119:4;32341:10;24849:164;:::i;29102:43::-;29054:150;;;-1:-1:-1;;;;;;29166:38:0;;32341:10;29166:38;29054:150;29028:177;;29223:17;29218:66;;29249:35;;-1:-1:-1;;;29249:35:0;;;;;;;;;;;29218:66;29374:15;29356:39;29352:103;;29419:24;;;;:15;:24;;;;;29412:31;;-1:-1:-1;;;;;;29412:31:0;;;29352:103;-1:-1:-1;;;;;29822:24:0;;;;;;;:18;:24;;;;;;;;29820:26;;-1:-1:-1;;29820:26:0;;;29891:22;;;;;;;;29889:24;;-1:-1:-1;29889:24:0;;;30184:26;;;:17;:26;;;;;-1:-1:-1;;;30272:15:0;15807:3;30272:41;30230:84;;:128;;30184:174;;;30478:46;;:51;;30474:626;;30582:1;30572:11;;30550:19;30705:30;;;:17;:30;;;;;;:35;;30701:384;;30843:13;;30828:11;:28;30824:242;;30990:30;;;;:17;:30;;;;;:52;;;30824:242;30531:569;30474:626;31147:7;31143:2;-1:-1:-1;;;;;31128:27:0;31137:4;-1:-1:-1;;;;;31128:27:0;;;;;;;;;;;28783:2433;;;28659:2557;;;:::o;14532:508::-;14588:13;14618:5;14627:1;14618:10;14614:49;;-1:-1:-1;;14641:10:0;;;;;;;;;;;;-1:-1:-1;;;14641:10:0;;;;;14532:508::o;14614:49::-;14688:5;14673:12;14729:70;14736:9;;14729:70;;14758:8;;;;:::i;:::-;;-1:-1:-1;14777:10:0;;-1:-1:-1;14785:2:0;14777:10;;:::i;:::-;;;14729:70;;;14809:19;14841:6;14831:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14831:17:0;;14809:39;;14859:142;14866:10;;14859:142;;14889:11;14899:1;14889:11;;:::i;:::-;;-1:-1:-1;14954:10:0;14962:2;14954:5;:10;:::i;:::-;14941:24;;:2;:24;:::i;:::-;14928:39;;14911:6;14918;14911:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14911:56:0;;;;;;;;-1:-1:-1;14978:11:0;14987:2;14978:11;;:::i;:::-;;;14859:142;;;15025:6;14532:508;-1:-1:-1;;;;14532:508:0:o;9213:1607::-;9311:11;;9271:13;;9297:11;9337:8;;;9333:23;;-1:-1:-1;;9347:9:0;;;;;;;;;-1:-1:-1;9347:9:0;;;9213:1607;-1:-1:-1;9213:1607:0:o;9333:23::-;9408:18;9446:1;9435:7;:3;9441:1;9435:7;:::i;:::-;9434:13;;;;:::i;:::-;9429:19;;:1;:19;:::i;:::-;9408:40;-1:-1:-1;9506:19:0;9538:15;9408:40;9551:2;9538:15;:::i;:::-;9528:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9528:26:0;;9506:48;;9567:18;9588:5;;;;;;;;;;;;;;;;;9567:26;;9657:1;9650:5;9646:13;9702:2;9694:6;9690:15;9753:1;9721:777;9776:3;9773:1;9770:10;9721:777;;;9831:1;9874:12;;;;;9868:19;9969:4;9957:2;9953:14;;;;;9935:40;;9929:47;10078:2;10074:14;;;10070:25;;10056:40;;10050:47;10207:1;10203:13;;;10199:24;;10185:39;;10179:46;10327:16;;;;10313:31;;10307:38;10005:1;10001:11;;;10099:4;10046:58;;;10037:68;10130:11;;10175:57;;;10166:67;;;;10258:11;;10303:49;;10294:59;10382:3;10378:13;10411:22;;10481:1;10466:17;;;;9824:9;9721:777;;;9725:44;10530:1;10525:3;10521:11;10551:1;10546:84;;;;10649:1;10644:82;;;;10514:212;;10546:84;-1:-1:-1;;;;;10579:17:0;;10572:43;10546:84;;10644:82;-1:-1:-1;;;;;10677:17:0;;10670:41;10514:212;-1:-1:-1;;;10742:26:0;;;10749:6;9213:1607;-1:-1:-1;;;;9213:1607:0:o;26805:1600::-;27132:13;;27178:2;27185:1;27160:26;27156:58;;27195:19;;-1:-1:-1;;;27195:19:0;;;;;;;;;;;27156:58;27229:8;27241:1;27229:13;27225:44;;27251:18;;-1:-1:-1;;;27251:18:0;;;;;;;;;;;27225:44;-1:-1:-1;;;;;27513:22:0;;;;;;:18;:22;;;;15290:2;27513:22;;;:70;;27551:31;27539:44;;27513:70;;;27826:31;;;:17;:31;;;;;27919:15;15807:3;27919:41;27877:84;;-1:-1:-1;27997:13:0;;16066:3;27982:56;27877:162;27826:213;;:31;28120:23;;;28160:111;28187:40;;28212:14;;;;;-1:-1:-1;;;;;28187:40:0;;;28204:1;;28187:40;;28204:1;;28187:40;28266:3;28251:12;:18;28160:111;;-1:-1:-1;28287:13:0;:28;25080:190;;;:::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:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:347::-;2754:6;2762;2815:2;2803:9;2794:7;2790:23;2786:32;2783:52;;;2831:1;2828;2821:12;2783:52;2854:29;2873:9;2854:29;:::i;:::-;2844:39;;2933:2;2922:9;2918:18;2905:32;2980:5;2973:13;2966:21;2959:5;2956:32;2946:60;;3002:1;2999;2992:12;2946:60;3025:5;3015:15;;;2689:347;;;;;:::o;3041:127::-;3102:10;3097:3;3093:20;3090:1;3083:31;3133:4;3130:1;3123:15;3157:4;3154:1;3147:15;3173:1138;3268:6;3276;3284;3292;3345:3;3333:9;3324:7;3320:23;3316:33;3313:53;;;3362:1;3359;3352:12;3313:53;3385:29;3404:9;3385:29;:::i;:::-;3375:39;;3433:38;3467:2;3456:9;3452:18;3433:38;:::i;:::-;3423:48;;3518:2;3507:9;3503:18;3490:32;3480:42;;3573:2;3562:9;3558:18;3545:32;3596:18;3637:2;3629:6;3626:14;3623:34;;;3653:1;3650;3643:12;3623:34;3691:6;3680:9;3676:22;3666:32;;3736:7;3729:4;3725:2;3721:13;3717:27;3707:55;;3758:1;3755;3748:12;3707:55;3794:2;3781:16;3816:2;3812;3809:10;3806:36;;;3822:18;;:::i;:::-;3897:2;3891:9;3865:2;3951:13;;-1:-1:-1;;3947:22:1;;;3971:2;3943:31;3939:40;3927:53;;;3995:18;;;4015:22;;;3992:46;3989:72;;;4041:18;;:::i;:::-;4081:10;4077:2;4070:22;4116:2;4108:6;4101:18;4156:7;4151:2;4146;4142;4138:11;4134:20;4131:33;4128:53;;;4177:1;4174;4167:12;4128:53;4233:2;4228;4224;4220:11;4215:2;4207:6;4203:15;4190:46;4278:1;4273:2;4268;4260:6;4256:15;4252:24;4245:35;4299:6;4289:16;;;;;;;3173:1138;;;;;;;:::o;4316:260::-;4384:6;4392;4445:2;4433:9;4424:7;4420:23;4416:32;4413:52;;;4461:1;4458;4451:12;4413:52;4484:29;4503:9;4484:29;:::i;:::-;4474:39;;4532:38;4566:2;4555:9;4551:18;4532:38;:::i;:::-;4522:48;;4316:260;;;;;:::o;4918:701::-;5143:3;5181:6;5175:13;5197:66;5256:6;5251:3;5244:4;5236:6;5232:17;5197:66;:::i;:::-;5326:13;;5285:16;;;;5348:70;5326:13;5285:16;5395:4;5383:17;;5348:70;:::i;:::-;5485:13;;5440:20;;;5507:70;5485:13;5440:20;5554:4;5542:17;;5507:70;:::i;:::-;5593:20;;4918:701;-1:-1:-1;;;;;4918:701:1:o;5624:884::-;5987:66;5982:3;5975:79;6084:34;6079:2;6074:3;6070:12;6063:56;6149:66;6144:2;6139:3;6135:12;6128:88;6246:28;6241:2;6236:3;6232:12;6225:50;5957:3;6304:6;6298:13;6320:74;6387:6;6381:3;6376;6372:13;6367:2;6359:6;6355:15;6320:74;:::i;:::-;-1:-1:-1;;;6453:3:1;6413:16;;;;6445:12;;;6438:36;-1:-1:-1;6498:3:1;6490:12;;5624:884;-1:-1:-1;5624:884:1:o;6513:461::-;6775:31;6770:3;6763:44;6745:3;6836:6;6830:13;6852:75;6920:6;6915:2;6910:3;6906:12;6899:4;6891:6;6887:17;6852:75;:::i;:::-;6947:16;;;;6965:2;6943:25;;6513:461;-1:-1:-1;;6513:461:1:o;6979:127::-;7040:10;7035:3;7031:20;7028:1;7021:31;7071:4;7068:1;7061:15;7095:4;7092:1;7085:15;7111:125;7176:9;;;7197:10;;;7194:36;;;7210:18;;:::i;7920:168::-;7993:9;;;8024;;8041:15;;;8035:22;;8021:37;8011:71;;8062:18;;:::i;8435:135::-;8474:3;8495:17;;;8492:43;;8515:18;;:::i;:::-;-1:-1:-1;8562:1:1;8551:13;;8435:135::o;8575:127::-;8636:10;8631:3;8627:20;8624:1;8617:31;8667:4;8664:1;8657:15;8691:4;8688:1;8681:15;8707:120;8747:1;8773;8763:35;;8778:18;;:::i;:::-;-1:-1:-1;8812:9:1;;8707:120::o;8832:128::-;8899:9;;;8920:11;;;8917:37;;;8934:18;;:::i;8965:112::-;8997:1;9023;9013:35;;9028:18;;:::i;:::-;-1:-1:-1;9062:9:1;;8965:112::o;9082:127::-;9143:10;9138:3;9134:20;9131:1;9124:31;9174:4;9171:1;9164:15;9198:4;9195:1;9188:15
Swarm Source
ipfs://3de9da981fa5f19dfdadaf4e0f209d0c6cc0b24f10c21bb580b27ed7d1fff88e
Loading...
Loading
Loading...
Loading
[ 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.