Overview
TokenID
7907
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Insomnia
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-14 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; /** * @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 SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC2981 is IERC165 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; /// _registerInterface(_INTERFACE_ID_ERC2981); /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); } contract Insomnia is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>uint256) minted; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_PER_WALLET = 25; uint256 public constant COST = 0.15 ether; string private constant _name = "Insomnia"; string private constant _symbol = "Insomnia"; string private _baseURI = "QmYfegPEKNARU99CS7X8ism5ryvRFsnK8VR9jJGoHYpUXF"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); minted[msg.sender] += amount; _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 = 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; function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { receiver = _owner; royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price } uint use = 1; function setUse(uint256 _use) external onlyOwner{ use = _use; } function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @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 == 0x2a55205a || // ERC Royalties 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; } 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")) : ""; } /** * @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 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. */ // uint256 level = uint(totalSupply()/1000) uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; 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 remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } 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 generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } bool public teamMintUsed = false; function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _mint(msg.sender, amount); } 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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_use","type":"uint256"}],"name":"setUse","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052602e6080818152906115c460a03960029061001f90826100f2565b505f60038190556001600855600955600c805460ff19169055348015610043575f5ffd5b505f80546001600160a01b031916331790556101ac565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061008257607f821691505b6020821081036100a057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156100ed57805f5260205f20601f840160051c810160208510156100cb5750805b601f840160051c820191505b818110156100ea575f81556001016100d7565b50505b505050565b81516001600160401b0381111561010b5761010b61005a565b61011f81610119845461006e565b846100a6565b6020601f821160018114610151575f831561013a5750848201515b5f19600385901b1c1916600184901b1784556100ea565b5f84815260208120601f198516915b828110156101805787850151825560209485019460019092019101610160565b508482101561019d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b61140b806101b95f395ff3fe6080604052600436106101af575f3560e01c80634dd08f82116100e7578063a0712d6811610087578063bf8fbbd211610062578063bf8fbbd2146104c1578063c87b56dd146104dc578063e985e9c5146104fb578063f14695ae14610542575f5ffd5b8063a0712d6814610470578063a22cb46514610483578063b88d4fde146104a2575f5ffd5b806370a08231116100c257806370a08231146104075780638da5cb5b146104265780638ef1e2591461044257806395d89b41146101e7575f5ffd5b80634dd08f82146103b0578063609526c2146103c95780636352211e146103e8575f5ffd5b806323b872dd1161015257806332cb6b0c1161012d57806332cb6b0c146103495780633ccfd60b1461035e57806342842e0e1461037257806347064d6a14610391575f5ffd5b806323b872dd146102cd5780632a55205a146102ec5780632fbba1151461032a575f5ffd5b8063095ea7b31161018d578063095ea7b3146102575780630f2cdd6c1461027857806318160ddd1461029a57806322142e6c146102ae575f5ffd5b806301ffc9a7146101b357806306fdde03146101e7578063081812fc14610220575b5f5ffd5b3480156101be575f5ffd5b506101d26101cd366004610eb3565b610561565b60405190151581526020015b60405180910390f35b3480156101f2575f5ffd5b50604080518082019091526008815267496e736f6d6e696160c01b60208201525b6040516101de9190610eda565b34801561022b575f5ffd5b5061023f61023a366004610f0f565b6105cd565b6040516001600160a01b0390911681526020016101de565b348015610262575f5ffd5b50610276610271366004610f41565b610611565b005b348015610283575f5ffd5b5061028c601981565b6040519081526020016101de565b3480156102a5575f5ffd5b5060035461028c565b3480156102b9575f5ffd5b506102766102c8366004610f0f565b6106cc565b3480156102d8575f5ffd5b506102766102e7366004610f69565b610703565b3480156102f7575f5ffd5b5061030b610306366004610fa3565b610713565b604080516001600160a01b0390931683526020830191909152016101de565b348015610335575f5ffd5b50610276610344366004610f0f565b610742565b348015610354575f5ffd5b5061028c61271081565b348015610369575f5ffd5b506102766107cd565b34801561037d575f5ffd5b5061027661038c366004610f69565b610826565b34801561039c575f5ffd5b506102766103ab36600461104e565b610840565b3480156103bb575f5ffd5b50600c546101d29060ff1681565b3480156103d4575f5ffd5b5061028c6103e3366004610fa3565b610875565b3480156103f3575f5ffd5b5061023f610402366004610f0f565b6108c8565b348015610412575f5ffd5b5061028c61042136600461109b565b6108d2565b348015610431575f5ffd5b505f546001600160a01b031661023f565b34801561044d575f5ffd5b506101d261045c36600461109b565b600a6020525f908152604090205460ff1681565b61027661047e366004610f0f565b610918565b34801561048e575f5ffd5b5061027661049d3660046110b4565b6109e7565b3480156104ad575f5ffd5b506102766104bc3660046110ed565b610a7b565b3480156104cc575f5ffd5b5061028c670214e8348c4f000081565b3480156104e7575f5ffd5b506102136104f6366004610f0f565b610a8c565b348015610506575f5ffd5b506101d2610515366004611164565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561054d575f5ffd5b5061023f61055c366004610f0f565b610b90565b5f6301ffc9a760e01b6001600160e01b03198316148061059157506380ac58cd60e01b6001600160e01b03198316145b806105ac575063152a902d60e11b6001600160e01b03198316145b806105c75750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6105d9826003541190565b6105f6576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61061b82610bb8565b9050806001600160a01b0316836001600160a01b03160361063a575f5ffd5b336001600160a01b03821614610671576106548133610515565b610671576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f546001600160a01b031633146106fe5760405162461bcd60e51b81526004016106f59061118c565b60405180910390fd5b600855565b61070e838383610c1a565b505050565b5f80546001600160a01b03169061271061072f846101f46111c3565b61073991906111ee565b90509250929050565b5f546001600160a01b0316331461076b5760405162461bcd60e51b81526004016106f59061118c565b6127108161077860035490565b6107829190611201565b106107c05760405162461bcd60e51b815260206004820152600e60248201526d55736564206f6e6c79204f6e636560901b60448201526064016106f5565b6107ca3382610dab565b50565b5f546001600160a01b031633146107f65760405162461bcd60e51b81526004016106f59061118c565b6040514790339082156108fc029083905f818181858888f19350505050158015610822573d5f5f3e3d5ffd5b5050565b61070e83838360405180602001604052805f815250610a7b565b5f546001600160a01b031633146108695760405162461bcd60e51b81526004016106f59061118c565b60026108228282611297565b5f80610882600143611352565b6040805160208082018490523382840152606080830189905283518084039091018152608090920190925280519101209091506108bf8482611365565b95945050505050565b5f6105c782610bb8565b5f815f036108f3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336127108261092660035490565b6109309190611201565b11156109695760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106f5565b3461097c670214e8348c4f0000846111c3565b11156109b95760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016106f5565b335f90815260016020526040812080548492906109d7908490611201565b9091555061082290508183610dab565b336001600160a01b03831603610a105760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a86848484610c1a565b50505050565b6060610a99826003541190565b610ab657604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610ac490611214565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090611214565b8015610b3b5780601f10610b1257610100808354040283529160200191610b3b565b820191905f5260205f20905b815481529060010190602001808311610b1e57829003601f168201915b5050505050905080515f03610b5e5760405180602001604052805f815250610b89565b80610b6884610e64565b604051602001610b7992919061138f565b6040516020818303038152906040525b9392505050565b600b8181548110610b9f575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f81600354811015610c01575f8181526004602052604081205490600160e01b82169003610bff575b805f03610b8957505f19015f81815260046020526040902054610be1565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610c2482610bb8565b9050836001600160a01b0316816001600160a01b031614610c575760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c865750610c868633610515565b80610c9957506001600160a01b03821633145b905080610cb957604051632ce44b5f60e11b815260040160405180910390fd5b8115610cdb575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d6257600184015f818152600460205260408120549003610d60576003548114610d60575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610dcf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e195750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ea157600183039250600a81066030018353600a9004610e83565b50819003601f19909101908152919050565b5f60208284031215610ec3575f5ffd5b81356001600160e01b031981168114610b89575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610f1f575f5ffd5b5035919050565b80356001600160a01b0381168114610f3c575f5ffd5b919050565b5f5f60408385031215610f52575f5ffd5b610f5b83610f26565b946020939093013593505050565b5f5f5f60608486031215610f7b575f5ffd5b610f8484610f26565b9250610f9260208501610f26565b929592945050506040919091013590565b5f5f60408385031215610fb4575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610ff157610ff1610fc3565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561102057611020610fc3565b604052838152905080828401851015611037575f5ffd5b838360208301375f60208583010152509392505050565b5f6020828403121561105e575f5ffd5b813567ffffffffffffffff811115611074575f5ffd5b8201601f81018413611084575f5ffd5b61109384823560208401610fd7565b949350505050565b5f602082840312156110ab575f5ffd5b610b8982610f26565b5f5f604083850312156110c5575f5ffd5b6110ce83610f26565b9150602083013580151581146110e2575f5ffd5b809150509250929050565b5f5f5f5f60808587031215611100575f5ffd5b61110985610f26565b935061111760208601610f26565b925060408501359150606085013567ffffffffffffffff811115611139575f5ffd5b8501601f81018713611149575f5ffd5b61115887823560208401610fd7565b91505092959194509250565b5f5f60408385031215611175575f5ffd5b61117e83610f26565b915061073960208401610f26565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105c7576105c76111af565b634e487b7160e01b5f52601260045260245ffd5b5f826111fc576111fc6111da565b500490565b808201808211156105c7576105c76111af565b600181811c9082168061122857607f821691505b60208210810361124657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561070e57805f5260205f20601f840160051c810160208510156112715750805b601f840160051c820191505b81811015611290575f815560010161127d565b5050505050565b815167ffffffffffffffff8111156112b1576112b1610fc3565b6112c5816112bf8454611214565b8461124c565b6020601f8211600181146112f7575f83156112e05750848201515b5f19600385901b1c1916600184901b178455611290565b5f84815260208120601f198516915b828110156113265787850151825560209485019460019092019101611306565b508482101561134357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b818103818111156105c7576105c76111af565b5f82611373576113736111da565b500690565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6113aa6007830185611378565b602f60f81b81526113be6001820185611378565b64173539b7b760d91b81526005019594505050505056fea26469706673582212209815d7a5c85e764c2549d3f5803feb43d5cebf5b3d4d3e3a1e45848b4df6caef64736f6c634300081c0033516d5966656750454b4e4152553939435337583869736d357279765246736e4b385652396a4a476f485970555846
Deployed Bytecode
0x6080604052600436106101af575f3560e01c80634dd08f82116100e7578063a0712d6811610087578063bf8fbbd211610062578063bf8fbbd2146104c1578063c87b56dd146104dc578063e985e9c5146104fb578063f14695ae14610542575f5ffd5b8063a0712d6814610470578063a22cb46514610483578063b88d4fde146104a2575f5ffd5b806370a08231116100c257806370a08231146104075780638da5cb5b146104265780638ef1e2591461044257806395d89b41146101e7575f5ffd5b80634dd08f82146103b0578063609526c2146103c95780636352211e146103e8575f5ffd5b806323b872dd1161015257806332cb6b0c1161012d57806332cb6b0c146103495780633ccfd60b1461035e57806342842e0e1461037257806347064d6a14610391575f5ffd5b806323b872dd146102cd5780632a55205a146102ec5780632fbba1151461032a575f5ffd5b8063095ea7b31161018d578063095ea7b3146102575780630f2cdd6c1461027857806318160ddd1461029a57806322142e6c146102ae575f5ffd5b806301ffc9a7146101b357806306fdde03146101e7578063081812fc14610220575b5f5ffd5b3480156101be575f5ffd5b506101d26101cd366004610eb3565b610561565b60405190151581526020015b60405180910390f35b3480156101f2575f5ffd5b50604080518082019091526008815267496e736f6d6e696160c01b60208201525b6040516101de9190610eda565b34801561022b575f5ffd5b5061023f61023a366004610f0f565b6105cd565b6040516001600160a01b0390911681526020016101de565b348015610262575f5ffd5b50610276610271366004610f41565b610611565b005b348015610283575f5ffd5b5061028c601981565b6040519081526020016101de565b3480156102a5575f5ffd5b5060035461028c565b3480156102b9575f5ffd5b506102766102c8366004610f0f565b6106cc565b3480156102d8575f5ffd5b506102766102e7366004610f69565b610703565b3480156102f7575f5ffd5b5061030b610306366004610fa3565b610713565b604080516001600160a01b0390931683526020830191909152016101de565b348015610335575f5ffd5b50610276610344366004610f0f565b610742565b348015610354575f5ffd5b5061028c61271081565b348015610369575f5ffd5b506102766107cd565b34801561037d575f5ffd5b5061027661038c366004610f69565b610826565b34801561039c575f5ffd5b506102766103ab36600461104e565b610840565b3480156103bb575f5ffd5b50600c546101d29060ff1681565b3480156103d4575f5ffd5b5061028c6103e3366004610fa3565b610875565b3480156103f3575f5ffd5b5061023f610402366004610f0f565b6108c8565b348015610412575f5ffd5b5061028c61042136600461109b565b6108d2565b348015610431575f5ffd5b505f546001600160a01b031661023f565b34801561044d575f5ffd5b506101d261045c36600461109b565b600a6020525f908152604090205460ff1681565b61027661047e366004610f0f565b610918565b34801561048e575f5ffd5b5061027661049d3660046110b4565b6109e7565b3480156104ad575f5ffd5b506102766104bc3660046110ed565b610a7b565b3480156104cc575f5ffd5b5061028c670214e8348c4f000081565b3480156104e7575f5ffd5b506102136104f6366004610f0f565b610a8c565b348015610506575f5ffd5b506101d2610515366004611164565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561054d575f5ffd5b5061023f61055c366004610f0f565b610b90565b5f6301ffc9a760e01b6001600160e01b03198316148061059157506380ac58cd60e01b6001600160e01b03198316145b806105ac575063152a902d60e11b6001600160e01b03198316145b806105c75750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f6105d9826003541190565b6105f6576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61061b82610bb8565b9050806001600160a01b0316836001600160a01b03160361063a575f5ffd5b336001600160a01b03821614610671576106548133610515565b610671576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f546001600160a01b031633146106fe5760405162461bcd60e51b81526004016106f59061118c565b60405180910390fd5b600855565b61070e838383610c1a565b505050565b5f80546001600160a01b03169061271061072f846101f46111c3565b61073991906111ee565b90509250929050565b5f546001600160a01b0316331461076b5760405162461bcd60e51b81526004016106f59061118c565b6127108161077860035490565b6107829190611201565b106107c05760405162461bcd60e51b815260206004820152600e60248201526d55736564206f6e6c79204f6e636560901b60448201526064016106f5565b6107ca3382610dab565b50565b5f546001600160a01b031633146107f65760405162461bcd60e51b81526004016106f59061118c565b6040514790339082156108fc029083905f818181858888f19350505050158015610822573d5f5f3e3d5ffd5b5050565b61070e83838360405180602001604052805f815250610a7b565b5f546001600160a01b031633146108695760405162461bcd60e51b81526004016106f59061118c565b60026108228282611297565b5f80610882600143611352565b6040805160208082018490523382840152606080830189905283518084039091018152608090920190925280519101209091506108bf8482611365565b95945050505050565b5f6105c782610bb8565b5f815f036108f3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336127108261092660035490565b6109309190611201565b11156109695760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106f5565b3461097c670214e8348c4f0000846111c3565b11156109b95760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016106f5565b335f90815260016020526040812080548492906109d7908490611201565b9091555061082290508183610dab565b336001600160a01b03831603610a105760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a86848484610c1a565b50505050565b6060610a99826003541190565b610ab657604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610ac490611214565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090611214565b8015610b3b5780601f10610b1257610100808354040283529160200191610b3b565b820191905f5260205f20905b815481529060010190602001808311610b1e57829003601f168201915b5050505050905080515f03610b5e5760405180602001604052805f815250610b89565b80610b6884610e64565b604051602001610b7992919061138f565b6040516020818303038152906040525b9392505050565b600b8181548110610b9f575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f81600354811015610c01575f8181526004602052604081205490600160e01b82169003610bff575b805f03610b8957505f19015f81815260046020526040902054610be1565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610c2482610bb8565b9050836001600160a01b0316816001600160a01b031614610c575760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c865750610c868633610515565b80610c9957506001600160a01b03821633145b905080610cb957604051632ce44b5f60e11b815260040160405180910390fd5b8115610cdb575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d6257600184015f818152600460205260408120549003610d60576003548114610d60575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610dcf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e195750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ea157600183039250600a81066030018353600a9004610e83565b50819003601f19909101908152919050565b5f60208284031215610ec3575f5ffd5b81356001600160e01b031981168114610b89575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610f1f575f5ffd5b5035919050565b80356001600160a01b0381168114610f3c575f5ffd5b919050565b5f5f60408385031215610f52575f5ffd5b610f5b83610f26565b946020939093013593505050565b5f5f5f60608486031215610f7b575f5ffd5b610f8484610f26565b9250610f9260208501610f26565b929592945050506040919091013590565b5f5f60408385031215610fb4575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610ff157610ff1610fc3565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561102057611020610fc3565b604052838152905080828401851015611037575f5ffd5b838360208301375f60208583010152509392505050565b5f6020828403121561105e575f5ffd5b813567ffffffffffffffff811115611074575f5ffd5b8201601f81018413611084575f5ffd5b61109384823560208401610fd7565b949350505050565b5f602082840312156110ab575f5ffd5b610b8982610f26565b5f5f604083850312156110c5575f5ffd5b6110ce83610f26565b9150602083013580151581146110e2575f5ffd5b809150509250929050565b5f5f5f5f60808587031215611100575f5ffd5b61110985610f26565b935061111760208601610f26565b925060408501359150606085013567ffffffffffffffff811115611139575f5ffd5b8501601f81018713611149575f5ffd5b61115887823560208401610fd7565b91505092959194509250565b5f5f60408385031215611175575f5ffd5b61117e83610f26565b915061073960208401610f26565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105c7576105c76111af565b634e487b7160e01b5f52601260045260245ffd5b5f826111fc576111fc6111da565b500490565b808201808211156105c7576105c76111af565b600181811c9082168061122857607f821691505b60208210810361124657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561070e57805f5260205f20601f840160051c810160208510156112715750805b601f840160051c820191505b81811015611290575f815560010161127d565b5050505050565b815167ffffffffffffffff8111156112b1576112b1610fc3565b6112c5816112bf8454611214565b8461124c565b6020601f8211600181146112f7575f83156112e05750848201515b5f19600385901b1c1916600184901b178455611290565b5f84815260208120601f198516915b828110156113265787850151825560209485019460019092019101611306565b508482101561134357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b818103818111156105c7576105c76111af565b5f82611373576113736111da565b500690565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6113aa6007830185611378565b602f60f81b81526113be6001820185611378565b64173539b7b760d91b81526005019594505050505056fea26469706673582212209815d7a5c85e764c2549d3f5803feb43d5cebf5b3d4d3e3a1e45848b4df6caef64736f6c634300081c0033
Deployed Bytecode Sourcemap
16950:22301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21984:674;;;;;;;;;;-1:-1:-1;21984:674:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21984:674:0;;;;;;;;26250:100;;;;;;;;;;-1:-1:-1;26337:5:0;;;;;;;;;;;;-1:-1:-1;;;26337:5:0;;;;26250:100;;;;;;;:::i;27917:204::-;;;;;;;;;;-1:-1:-1;27917:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1315:32:1;;;1297:51;;1285:2;1270:18;27917:204:0;1151:203:1;27400:451:0;;;;;;;;;;-1:-1:-1;27400:451:0;;;;;:::i;:::-;;:::i;:::-;;17225:43;;;;;;;;;;;;17266:2;17225:43;;;;;1988:25:1;;;1976:2;1961:18;17225:43:0;1842:177:1;21227:300:0;;;;;;;;;;-1:-1:-1;21477:13:0;;21227:300;;20433:77;;;;;;;;;;-1:-1:-1;20433:77:0;;;;;:::i;:::-;;:::i;28803:190::-;;;;;;;;;;-1:-1:-1;28803:190:0;;;;;:::i;:::-;;:::i;20132:274::-;;;;;;;;;;-1:-1:-1;20132:274:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2946:32:1;;;2928:51;;3010:2;2995:18;;2988:34;;;;2901:18;20132:274:0;2754::1;38727:169:0;;;;;;;;;;-1:-1:-1;38727:169:0;;;;;:::i;:::-;;:::i;17176:42::-;;;;;;;;;;;;17213:5;17176:42;;39103:145;;;;;;;;;;;;;:::i;29064:205::-;;;;;;;;;;-1:-1:-1;29064:205:0;;;;;:::i;:::-;;:::i;20516:91::-;;;;;;;;;;-1:-1:-1;20516:91:0;;;;;:::i;:::-;;:::i;38688:32::-;;;;;;;;;;-1:-1:-1;38688:32:0;;;;;;;;38372:308;;;;;;;;;;-1:-1:-1;38372:308:0;;;;;:::i;:::-;;:::i;26039:144::-;;;;;;;;;;-1:-1:-1;26039:144:0;;;;;:::i;:::-;;:::i;22722:234::-;;;;;;;;;;-1:-1:-1;22722:234:0;;;;;:::i;:::-;;:::i;17052:77::-;;;;;;;;;;-1:-1:-1;17089:7:0;17115:6;-1:-1:-1;;;;;17115:6:0;17052:77;;32185:39;;;;;;;;;;-1:-1:-1;32185:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17568:306;;;;;;:::i;:::-;;:::i;28193:308::-;;;;;;;;;;-1:-1:-1;28193:308:0;;;;;:::i;:::-;;:::i;29340:227::-;;;;;;;;;;-1:-1:-1;29340:227:0;;;;;:::i;:::-;;:::i;17275:41::-;;;;;;;;;;;;17306:10;17275:41;;26537:339;;;;;;;;;;-1:-1:-1;26537:339:0;;;;;:::i;:::-;;:::i;28572:164::-;;;;;;;;;;-1:-1:-1;28572:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28693:25:0;;;28669:4;28693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28572:164;32231:22;;;;;;;;;;-1:-1:-1;32231:22:0;;;;;:::i;:::-;;:::i;21984:674::-;22069:4;-1:-1:-1;;;;;;;;;22369:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22446:25:0;;;22369:102;:179;;;-1:-1:-1;;;;;;;;;;22523:25:0;;;22369:179;:238;;;-1:-1:-1;;;;;;;;;;22582:25:0;;;22369:238;22349:258;21984:674;-1:-1:-1;;21984:674:0:o;27917:204::-;27985:7;28010:16;28018:7;29969:13;;-1:-1:-1;29959:23:0;29822:168;28010:16;28005:64;;28035:34;;-1:-1:-1;;;28035:34:0;;;;;;;;;;;28005:64;-1:-1:-1;28089:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28089:24:0;;27917:204::o;27400:451::-;27473:13;27505:27;27524:7;27505:18;:27::i;:::-;27473:61;;27555:5;-1:-1:-1;;;;;27549:11:0;:2;-1:-1:-1;;;;;27549:11:0;;27545:25;;27562:8;;;27545:25;36358:10;-1:-1:-1;;;;;27587:28:0;;;27583:175;;27635:44;27652:5;36358:10;28572:164;:::i;27635:44::-;27630:128;;27707:35;;-1:-1:-1;;;27707:35:0;;;;;;;;;;;27630:128;27770:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27770:29:0;-1:-1:-1;;;;;27770:29:0;;;;;;;;;27815:28;;27770:24;;27815:28;;;;;;;27462:389;27400:451;;:::o;20433:77::-;38945:6;;-1:-1:-1;;;;;38945:6:0;38953:10;38945:18;38937:40;;;;-1:-1:-1;;;38937:40:0;;;;;;;:::i;:::-;;;;;;;;;20492:3:::1;:10:::0;20433:77::o;28803:190::-;28957:28;28967:4;28973:2;28977:7;28957:9;:28::i;:::-;28803:190;;;:::o;20132:274::-;20231:16;20299:6;;-1:-1:-1;;;;;20299:6:0;;20352:5;20333:15;:9;20345:3;20333:15;:::i;:::-;20332:25;;;;:::i;:::-;20316:41;;20132:274;;;;;:::o;38727:169::-;38945:6;;-1:-1:-1;;;;;38945:6:0;38953:10;38945:18;38937:40;;;;-1:-1:-1;;;38937:40:0;;;;;;;:::i;:::-;17213:5:::1;38814:6;38798:13;21477::::0;;;21227:300;38798:13:::1;:22;;;;:::i;:::-;:35;38790:62;;;::::0;-1:-1:-1;;;38790:62:0;;7099:2:1;38790:62:0::1;::::0;::::1;7081:21:1::0;7138:2;7118:18;;;7111:30;-1:-1:-1;;;7157:18:1;;;7150:44;7211:18;;38790:62:0::1;6897:338:1::0;38790:62:0::1;38863:25;38869:10;38881:6;38863:5;:25::i;:::-;38727:169:::0;:::o;39103:145::-;38945:6;;-1:-1:-1;;;;;38945:6:0;38953:10;38945:18;38937:40;;;;-1:-1:-1;;;38937:40:0;;;;;;;:::i;:::-;39203:37:::1;::::0;39171:21:::1;::::0;39211:10:::1;::::0;39203:37;::::1;;;::::0;39171:21;;39153:15:::1;39203:37:::0;39153:15;39203:37;39171:21;39211:10;39203:37;::::1;;;;;;;;;;;;;;;;;;;;39142:106;39103:145::o:0;29064:205::-;29222:39;29239:4;29245:2;29249:7;29222:39;;;;;;;;;;;;:16;:39::i;20516:91::-;38945:6;;-1:-1:-1;;;;;38945:6:0;38953:10;38945:18;38937:40;;;;-1:-1:-1;;;38937:40:0;;;;;;;:::i;:::-;20583:8:::1;:16;20594:5:::0;20583:8;:16:::1;:::i;38372:308::-:0;38453:7;;38495:16;38510:1;38495:12;:16;:::i;:::-;38585:44;;;;;;;10084:25:1;;;38609:10:0;10125:18:1;;;10118:60;10194:18;;;;10187:34;;;38585:44:0;;;;;;;;;;10057:18:1;;;;38585:44:0;;;38575:55;;;;;10084:25:1;;-1:-1:-1;38648:24:0;38669:3;38575:55;38648:24;:::i;:::-;38641:31;38372:308;-1:-1:-1;;;;;38372:308:0:o;26039:144::-;26103:7;26146:27;26165:7;26146:18;:27::i;22722:234::-;22786:7;22828:5;22838:1;22810:29;22806:70;;22848:28;;-1:-1:-1;;;22848:28:0;;;;;;;;;;;22806:70;-1:-1:-1;;;;;;22894:25:0;;;;;:18;:25;;;;;;17985:13;22894:54;;22722:234::o;17568:306::-;36358:10;17213:5;17699:6;17683:13;21477;;;21227:300;17683:13;:22;;;;:::i;:::-;:36;;17675:57;;;;-1:-1:-1;;;17675:57:0;;10551:2:1;17675:57:0;;;10533:21:1;10590:1;10570:18;;;10563:29;-1:-1:-1;;;10608:18:1;;;10601:38;10656:18;;17675:57:0;10349:331:1;17675:57:0;17766:9;17751:11;17306:10;17751:6;:11;:::i;:::-;:24;;17743:49;;;;-1:-1:-1;;;17743:49:0;;10887:2:1;17743:49:0;;;10869:21:1;10926:2;10906:18;;;10899:30;-1:-1:-1;;;10945:18:1;;;10938:42;10997:18;;17743:49:0;10685:336:1;17743:49:0;17812:10;17805:18;;;;:6;:18;;;;;:28;;17827:6;;17805:18;:28;;17827:6;;17805:28;:::i;:::-;;;;-1:-1:-1;17844:22:0;;-1:-1:-1;17850:7:0;17859:6;17844:5;:22::i;28193:308::-;36358:10;-1:-1:-1;;;;;28292:31:0;;;28288:61;;28332:17;;-1:-1:-1;;;28332:17:0;;;;;;;;;;;28288:61;36358:10;28362:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28362:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28362:60:0;;;;;;;;;;28438:55;;445:41:1;;;28362:49:0;;36358:10;28438:55;;418:18:1;28438:55:0;;;;;;;28193:308;;:::o;29340:227::-;29531:28;29541:4;29547:2;29551:7;29531:9;:28::i;:::-;29340:227;;;;:::o;26537:339::-;26610:13;26641:16;26649:7;29969:13;;-1:-1:-1;29959:23:0;29822:168;26641:16;26636:59;;26666:29;;-1:-1:-1;;;26666:29:0;;;;;;;;;;;26636:59;26706:21;26730:8;26706:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26762:7;26756:21;26781:1;26756:26;:112;;;;;;;;;;;;;;;;;26820:7;26834:18;26844:7;26834:9;:18::i;:::-;26792:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26756:112;26749:119;26537:339;-1:-1:-1;;;26537:339:0:o;32231:22::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32231:22:0;;-1:-1:-1;32231:22:0;:::o;23554:1129::-;23621:7;23656;23758:13;;23751:4;:20;23747:869;;;23796:14;23813:23;;;:17;:23;;;;;;;-1:-1:-1;;;23902:23:0;;:28;;23898:699;;24421:113;24428:6;24438:1;24428:11;24421:113;;-1:-1:-1;;;24499:6:0;24481:25;;;;:17;:25;;;;;;24421:113;;23898:699;23773:843;23747:869;24644:31;;-1:-1:-1;;;24644:31:0;;;;;;;;;;;32260:2562;32402:27;32432;32451:7;32432:18;:27::i;:::-;32402:57;;32517:4;-1:-1:-1;;;;;32476:45:0;32492:19;-1:-1:-1;;;;;32476:45:0;;32472:86;;32530:28;;-1:-1:-1;;;32530:28:0;;;;;;;;;;;32472:86;32571:23;32597:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32597:24:0;;;;32571:23;32660:27;;36358:10;32660:27;;:91;;-1:-1:-1;32708:43:0;32725:4;36358:10;28572:164;:::i;32708:43::-;32660:150;;;-1:-1:-1;;;;;;32772:38:0;;36358:10;32772:38;32660:150;32634:177;;32829:17;32824:66;;32855:35;;-1:-1:-1;;;32855:35:0;;;;;;;;;;;32824:66;32980:15;32962:39;32958:103;;33025:24;;;;:15;:24;;;;;33018:31;;-1:-1:-1;;;;;;33018:31:0;;;32958:103;-1:-1:-1;;;;;33428:24:0;;;;;;;:18;:24;;;;;;;;33426:26;;-1:-1:-1;;33426:26:0;;;33497:22;;;;;;;;33495:24;;-1:-1:-1;33495:24:0;;;33790:26;;;:17;:26;;;;;-1:-1:-1;;;33878:15:0;18639:3;33878:41;33836:84;;:128;;33790:174;;;34084:46;;:51;;34080:626;;34188:1;34178:11;;34156:19;34311:30;;;:17;:30;;;;;;:35;;34307:384;;34449:13;;34434:11;:28;34430:242;;34596:30;;;;:17;:30;;;;;:52;;;34430:242;34137:569;34080:626;34753:7;34749:2;-1:-1:-1;;;;;34734:27:0;34743:4;-1:-1:-1;;;;;34734:27:0;;;;;;;;;;;32384:2438;;;32260:2562;;;:::o;30255:1596::-;30343:13;;30320:20;30442:13;;;30438:44;;30464:18;;-1:-1:-1;;;30464:18:0;;;;;;;;;;;30438:44;-1:-1:-1;;;;;30959:22:0;;;;;;:18;:22;;;;18122:2;30959:22;;;:70;;30997:31;30985:44;;30959:70;;;31272:31;;;:17;:31;;;;;31365:15;18639:3;31365:41;31323:84;;-1:-1:-1;31443:13:0;;18898:3;31428:56;31323:162;31272:213;;:31;31566:23;;;31606:111;31633:40;;31658:14;;;;;-1:-1:-1;;;;;31633:40:0;;;31650:1;;31633:40;;31650:1;;31633:40;31712:3;31697:12;:18;31606:111;;-1:-1:-1;31733:13:0;:28;28803:190;;;:::o;36482:1882::-;36953:4;36947:11;;36960:3;36943:21;;37034:17;;;;37706:11;;;37583:5;37840:2;37854;37844:13;;37836:22;37706:11;37823:36;37896:2;37886:13;;37480:661;37912:4;37480:661;;;38080:1;38075:3;38071:11;38064:18;;38124:2;38118:4;38114:13;38110:2;38106:22;38101:3;38093:36;37997:2;37987:13;;37480:661;;;-1:-1:-1;38164:13:0;;;-1:-1:-1;;38273:12:0;;;38327:19;;;38273:12;36482:1882;-1:-1:-1;36482: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:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:226::-;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:52;;;1048:1;1045;1038:12;1000:52;-1:-1:-1;1093:23:1;;920:226;-1:-1:-1;920:226:1:o;1359:173::-;1427:20;;-1:-1:-1;;;;;1476:31:1;;1466:42;;1456:70;;1522:1;1519;1512:12;1456:70;1359:173;;;:::o;1537:300::-;1605:6;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1705:29;1724:9;1705:29;:::i;:::-;1695:39;1803:2;1788:18;;;;1775:32;;-1:-1:-1;;;1537:300:1:o;2024:374::-;2101:6;2109;2117;2170:2;2158:9;2149:7;2145:23;2141:32;2138:52;;;2186:1;2183;2176:12;2138:52;2209:29;2228:9;2209:29;:::i;:::-;2199:39;;2257:38;2291:2;2280:9;2276:18;2257:38;:::i;:::-;2024:374;;2247:48;;-1:-1:-1;;;2364:2:1;2349:18;;;;2336:32;;2024:374::o;2403:346::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;-1:-1:-1;;2593:23:1;;;2713:2;2698:18;;;2685:32;;-1:-1:-1;2403:346:1:o;3033:127::-;3094:10;3089:3;3085:20;3082:1;3075:31;3125:4;3122:1;3115:15;3149:4;3146:1;3139:15;3165:716;3230:5;3262:1;3286:18;3278:6;3275:30;3272:56;;;3308:18;;:::i;:::-;-1:-1:-1;3463:2:1;3457:9;-1:-1:-1;;3376:2:1;3355:15;;3351:29;;3521:2;3509:15;3505:29;3493:42;;3586:22;;;3565:18;3550:34;;3547:62;3544:88;;;3612:18;;:::i;:::-;3648:2;3641:22;3696;;;3681:6;-1:-1:-1;3681:6:1;3733:16;;;3730:25;-1:-1:-1;3727:45:1;;;3768:1;3765;3758:12;3727:45;3818:6;3813:3;3806:4;3798:6;3794:17;3781:44;3873:1;3866:4;3857:6;3849;3845:19;3841:30;3834:41;;3165:716;;;;;:::o;3886:451::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;4064:9;4051:23;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152:22;;4205:4;4197:13;;4193:27;-1:-1:-1;4183:55:1;;4234:1;4231;4224:12;4183:55;4257:74;4323:7;4318:2;4305:16;4300:2;4296;4292:11;4257:74;:::i;:::-;4247:84;3886:451;-1:-1:-1;;;;3886:451:1:o;4342:186::-;4401:6;4454:2;4442:9;4433:7;4429:23;4425:32;4422:52;;;4470:1;4467;4460:12;4422:52;4493:29;4512:9;4493:29;:::i;4533:347::-;4598:6;4606;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4698:29;4717:9;4698:29;:::i;:::-;4688:39;;4777:2;4766:9;4762:18;4749:32;4824:5;4817:13;4810:21;4803:5;4800:32;4790:60;;4846:1;4843;4836:12;4790:60;4869:5;4859:15;;;4533:347;;;;;:::o;4885:713::-;4980:6;4988;4996;5004;5057:3;5045:9;5036:7;5032:23;5028:33;5025:53;;;5074:1;5071;5064:12;5025:53;5097:29;5116:9;5097:29;:::i;:::-;5087:39;;5145:38;5179:2;5168:9;5164:18;5145:38;:::i;:::-;5135:48;-1:-1:-1;5252:2:1;5237:18;;5224:32;;-1:-1:-1;5331:2:1;5316:18;;5303:32;5358:18;5347:30;;5344:50;;;5390:1;5387;5380:12;5344:50;5413:22;;5466:4;5458:13;;5454:27;-1:-1:-1;5444:55:1;;5495:1;5492;5485:12;5444:55;5518:74;5584:7;5579:2;5566:16;5561:2;5557;5553:11;5518:74;:::i;:::-;5508:84;;;4885:713;;;;;;;:::o;5603:260::-;5671:6;5679;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5771:29;5790:9;5771:29;:::i;:::-;5761:39;;5819:38;5853:2;5842:9;5838:18;5819:38;:::i;5868:332::-;6070:2;6052:21;;;6109:1;6089:18;;;6082:29;-1:-1:-1;;;6142:2:1;6127:18;;6120:39;6191:2;6176:18;;5868:332::o;6205:127::-;6266:10;6261:3;6257:20;6254:1;6247:31;6297:4;6294:1;6287:15;6321:4;6318:1;6311:15;6337:168;6410:9;;;6441;;6458:15;;;6452:22;;6438:37;6428:71;;6479:18;;:::i;6510:127::-;6571:10;6566:3;6562:20;6559:1;6552:31;6602:4;6599:1;6592:15;6626:4;6623:1;6616:15;6642:120;6682:1;6708;6698:35;;6713:18;;:::i;:::-;-1:-1:-1;6747:9:1;;6642:120::o;6767:125::-;6832:9;;;6853:10;;;6850:36;;;6866:18;;:::i;7240:380::-;7319:1;7315:12;;;;7362;;;7383:61;;7437:4;7429:6;7425:17;7415:27;;7383:61;7490:2;7482:6;7479:14;7459:18;7456:38;7453:161;;7536:10;7531:3;7527:20;7524:1;7517:31;7571:4;7568:1;7561:15;7599:4;7596:1;7589:15;7453:161;;7240:380;;;:::o;7751:518::-;7853:2;7848:3;7845:11;7842:421;;;7889:5;7886:1;7879:16;7933:4;7930:1;7920:18;8003:2;7991:10;7987:19;7984:1;7980:27;7974:4;7970:38;8039:4;8027:10;8024:20;8021:47;;;-1:-1:-1;8062:4:1;8021:47;8117:2;8112:3;8108:12;8105:1;8101:20;8095:4;8091:31;8081:41;;8172:81;8190:2;8183:5;8180:13;8172:81;;;8249:1;8235:16;;8216:1;8205:13;8172:81;;;8176:3;;7751:518;;;:::o;8445:1299::-;8571:3;8565:10;8598:18;8590:6;8587:30;8584:56;;;8620:18;;:::i;:::-;8649:97;8739:6;8699:38;8731:4;8725:11;8699:38;:::i;:::-;8693:4;8649:97;:::i;:::-;8795:4;8826:2;8815:14;;8843:1;8838:649;;;;9531:1;9548:6;9545:89;;;-1:-1:-1;9600:19:1;;;9594:26;9545:89;-1:-1:-1;;8402:1:1;8398:11;;;8394:24;8390:29;8380:40;8426:1;8422:11;;;8377:57;9647:81;;8808:930;;8838:649;7698:1;7691:14;;;7735:4;7722:18;;-1:-1:-1;;8874:20:1;;;8992:222;9006:7;9003:1;9000:14;8992:222;;;9088:19;;;9082:26;9067:42;;9195:4;9180:20;;;;9148:1;9136:14;;;;9022:12;8992:222;;;8996:3;9242:6;9233:7;9230:19;9227:201;;;9303:19;;;9297:26;-1:-1:-1;;9386:1:1;9382:14;;;9398:3;9378:24;9374:37;9370:42;9355:58;9340:74;;9227:201;-1:-1:-1;;;;9474:1:1;9458:14;;;9454:22;9441:36;;-1:-1:-1;8445:1299:1:o;9749:128::-;9816:9;;;9837:11;;;9834:37;;;9851:18;;:::i;10232:112::-;10264:1;10290;10280:35;;10295:18;;:::i;:::-;-1:-1:-1;10329:9:1;;10232:112::o;11026:212::-;11068:3;11106:5;11100:12;11150:6;11143:4;11136:5;11132:16;11127:3;11121:36;11212:1;11176:16;;11201:13;;;-1:-1:-1;11176:16:1;;11026:212;-1:-1:-1;11026:212:1:o;11243:719::-;-1:-1:-1;;;11750:3:1;11743:22;11725:3;11784:38;11819:1;11814:3;11810:11;11802:6;11784:38;:::i;:::-;-1:-1:-1;;;11838:2:1;11831:15;11865:37;11899:1;11895:2;11891:10;11883:6;11865:37;:::i;:::-;-1:-1:-1;;;11911:19:1;;11954:1;11946:10;;11243:719;-1:-1:-1;;;;;11243:719:1:o
Swarm Source
ipfs://9815d7a5c85e764c2549d3f5803feb43d5cebf5b3d4d3e3a1e45848b4df6caef
[ 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.