Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,111 FDF
Holders
267
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FDFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FeverDreamFriends
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ······························xxxxxxxx························xxxxxxxx······························ // ····························xxxxxxxxxxxx····················xxxxxxxxxxxx···························· // ··························xxxxxxxxxxxxxxxx················xxxxxxxxxxxxxxxx·························· // ··························xxxxxxxxxxxxxxxxxx············xxxxxxxxxxxxxxxxxx·························· // ··························xxxxxxxxxxxxxxxxxxxx········xxxxxxxxxxxxxxxxxxxx·························· // ···························xxxxxxxxxxxxxxxxxxxxx····xxxxxxxxxxxxxxxxxxxxx··························· // ······························xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx······························ // ································xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx································ // ··································xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx·································· // ····································xxxxxxxxxxxxxxxxxxxxxxxxxxxx···································· // ······································xxxxxxxxxxxxxxxxxxxxxxxx······································ // ······································xxxxxxxxxxxxxxxxxxxxxxxx······································ // ····································xxxxxxxxxxxxxxxxxxxxxxxxxxxx···································· // ··································xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx·································· // ································xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx································ // ·····························xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx····························· // ···························xxxxxxxxxxxxxxxxxxxxx····xxxxxxxxxxxxxxxxxxxxx··························· // ··························xxxxxxxxxxxxxxxxxxxx········xxxxxxxxxxxxxxxxxxxx·························· // ··························xxxxxxxxxxxxxxxxxx············xxxxxxxxxxxxxxxxxx·························· // ···························xxxxxxxxxxxxxxx················xxxxxxxxxxxxxxxx·························· // ····························xxxxxxxxxxxx····················xxxxxxxxxxxxx··························· // ······························xxxxxxx························xxxxxxxxxx····························· // ·····························································xxxxxxxxxx····························· // ·····························································xxxx··xxx······························ // ·····························································xxxx··xxx······························ // ·····························································xxxx··xxx······························ // ···································································xxxx····························· // ··································································xxxxx····························· // ··································································xxxxx····························· // ··································································xxxxx····························· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· // ···································································································· pragma solidity ^0.8.10; //SPDX-License-Identifier: MIT import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract FeverDreamFriends is ERC721A, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 private _maxTokens = 1111; uint256 public _price = 80000000000000000; // 0.08 ETH uint256 public _presale_price = 70000000000000000; // 0.07 ETH uint256 public _OG_price = 60000000000000000; // 0.06 ETH bool private _saleActive = false; bool private _presaleActive = false; bool private _OGSaleActive = false; address _developer = 0xD54a775a1e4d55B111f83920d885D278aE633373; address _marketer = 0x49b1836deb054707a6656107E55fB499a569E0bc; string public _prefixURI = "ipfs://QmXRRGRWADaMfYkcumYQWJx8c4XCwp6pWZk8qA1hmzLHME/"; //pre-reveal json mapping(address => bool) private _whitelist; mapping(address => bool) private _OGList; constructor() ERC721A("FeverDreamFriends", "FDF") { } //view functions function _baseURI() internal view override returns (string memory) { return _prefixURI; } function Sale() public view returns (bool) { return _saleActive; } function preSale() public view returns (bool) { return _presaleActive; } function OGSale() public view returns (bool) { return _OGSaleActive; } function numSold() public view returns (uint256) { return totalSupply(); } function displayMax() public view returns (uint256) { return _maxTokens; } function isWhitelisted(address _addr) public view returns (bool) { return _whitelist[_addr]; } function isOGListed(address _addr) public view returns (bool) { return _OGList[_addr]; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId)); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(tokenId), ".json" ) ) : ""; } //variable changing functions function changeMax(uint256 _newMax) public onlyOwner { _maxTokens = _newMax; } function toggleSale() public onlyOwner { _saleActive = !_saleActive; } function togglePreSale() public onlyOwner { _presaleActive = !_presaleActive; } function toggleOGSale() public onlyOwner { _OGSaleActive = !_OGSaleActive; } function setBaseURI(string memory _uri) public onlyOwner { _prefixURI = _uri; } function changePrice(uint256 _newPrice) public onlyOwner { _price = _newPrice; } function changePresalePrice(uint256 _newPrice) public onlyOwner { _presale_price = _newPrice; } function change_OG_price(uint256 _newPrice) public onlyOwner { _OG_price = _newPrice; } function whiteListMany(address[] memory accounts) external onlyOwner { for (uint256 i; i < accounts.length; i++) { _whitelist[accounts[i]] = true; } } function OGListMany(address[] memory accounts) external onlyOwner { for (uint256 i; i < accounts.length; i++) { _OGList[accounts[i]] = true; } } //onlyOwner contract interactions function mintTo(uint256 quantity, address _addr) public onlyOwner { _safeMint(_addr, quantity); } function withdraw_all() external onlyOwner { uint256 balance = address(this).balance; payable(_developer).transfer(balance * 15 / 100); payable(_marketer).transfer(balance * 10 / 100); payable(msg.sender).transfer(balance * 75 / 100); } //minting functionality function mintItems(uint256 amount) public payable { require(_saleActive); uint256 totalMinted = totalSupply(); require(totalMinted + amount <= _maxTokens); require(msg.value >= amount * _price); _safeMint(_msgSender(), amount); } function presaleMintItems(uint256 amount) public payable { require(_presaleActive); require(_whitelist[_msgSender()], "Mint: Unauthorized Access"); uint256 totalMinted = totalSupply(); require(totalMinted + amount <= _maxTokens); require(msg.value >= amount * _presale_price); _safeMint(_msgSender(), amount); //_whitelist[_msgSender()] = false; Unlimited TXN allowed for WL } function OGMintItems(uint256 amount) public payable { require(_OGSaleActive); require(_OGList[_msgSender()], "Mint: Unauthorized Access"); uint256 totalMinted = totalSupply(); require(totalMinted + amount <= _maxTokens); require(msg.value >= amount * _OG_price); _safeMint(_msgSender(), amount); //_whitelist[_msgSender()] = false; Unlimited TXN allowed for WL } function crossMint(address _to) public payable { require(_saleActive, "sale is closed"); require(msg.sender == 0xdAb1a1854214684acE522439684a145E62505233, "This function is for Crossmint only." ); uint256 totalMinted = totalSupply(); require(totalMinted + 1 <= _maxTokens, "we are maxed out"); require(msg.value >= _price, "price is wrong"); _safeMint(_to, 1); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 - _burnCounter - _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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @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 (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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 ApprovalToCurrentOwner(); 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); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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 Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | 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, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev 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) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"OGListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OGMintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OGSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_OG_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","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":"_newMax","type":"uint256"}],"name":"changeMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"change_OG_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"crossMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"displayMax","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":"_addr","type":"address"}],"name":"isOGListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_uri","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleOGSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_all","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610457600a5567011c37937e080000600b5566f8b0a10e470000600c5566d529ae9e860000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff02191690831515021790555073d54a775a1e4d55b111f83920d885d278ae633373600e60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507349b1836deb054707a6656107e55fb499a569e0bc600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200424e60369139601090805190602001906200015892919062000316565b503480156200016657600080fd5b506040518060400160405280601181526020017f4665766572447265616d467269656e64730000000000000000000000000000008152506040518060400160405280600381526020017f46444600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001eb92919062000316565b5080600390805190602001906200020492919062000316565b50620002156200024360201b60201c565b60008190555050506200023d620002316200024860201b60201c565b6200025060201b60201c565b6200042b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032490620003f5565b90600052602060002090601f01602090048101928262000348576000855562000394565b82601f106200036357805160ff191683800117855562000394565b8280016001018555821562000394579182015b828111156200039357825182559160200191906001019062000376565b5b509050620003a39190620003a7565b5090565b5b80821115620003c2576000816000905550600101620003a8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040e57607f821691505b60208210811415620004255762000424620003c6565b5b50919050565b613e13806200043b6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b723b34e116100b6578063ca3cb5221161007a578063ca3cb522146108a8578063dd473d2b146108bf578063e67a1d3b146108d6578063e985e9c514610913578063f2fde38b14610950578063f309455a1461097957610267565b8063b723b34e146107c3578063b78f9de7146107ec578063b88d4fde14610817578063c1bde40414610840578063c87b56dd1461086b57610267565b806391860f781161010857806391860f78146106e857806395d89b4114610713578063998001851461073e578063a22cb46514610755578063a2b40d191461077e578063a960eabe146107a757610267565b8063715018a61461063b5780637d8966e41461065257806382060f50146106695780638606d938146106945780638da5cb5b146106bd57610267565b806323b872dd116101dd57806355f804b3116101a157806355f804b3146105195780635a7adf7f146105425780635c909bf41461056d5780636352211e1461059857806366444453146105d557806370a08231146105fe57610267565b806323b872dd146104455780633af32abf1461046e57806342842e0e146104ab57806343d67565146104d45780635367de6a146104fd57610267565b8063121dbc311161022f578063121dbc311461035657806315e569521461037f57806318160ddd146103aa5780631cbb5bf2146103d55780632358ac84146103fe578063235b6ea11461041a57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630b4b98781461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612ef4565b6109a4565b6040516102a09190612f3c565b60405180910390f35b3480156102b557600080fd5b506102be610a36565b6040516102cb9190612ff0565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613048565b610ac8565b60405161030891906130b6565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906130fd565b610b44565b005b610354600480360381019061034f9190613048565b610ceb565b005b34801561036257600080fd5b5061037d60048036038101906103789190613048565b610dec565b005b34801561038b57600080fd5b50610394610e72565b6040516103a1919061314c565b60405180910390f35b3480156103b657600080fd5b506103bf610e7c565b6040516103cc919061314c565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613048565b610e93565b005b61041860048036038101906104139190613048565b610f19565b005b34801561042657600080fd5b5061042f61101a565b60405161043c919061314c565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613167565b611020565b005b34801561047a57600080fd5b50610495600480360381019061049091906131ba565b611030565b6040516104a29190612f3c565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613167565b611086565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061332f565b6110a6565b005b61051760048036038101906105129190613048565b6111b7565b005b34801561052557600080fd5b50610540600480360381019061053b919061342d565b611225565b005b34801561054e57600080fd5b506105576112bb565b6040516105649190612f3c565b60405180910390f35b34801561057957600080fd5b506105826112d2565b60405161058f919061314c565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613048565b6112d8565b6040516105cc91906130b6565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061332f565b6112ea565b005b34801561060a57600080fd5b50610625600480360381019061062091906131ba565b6113fb565b604051610632919061314c565b60405180910390f35b34801561064757600080fd5b506106506114b4565b005b34801561065e57600080fd5b5061066761153c565b005b34801561067557600080fd5b5061067e6115e4565b60405161068b919061314c565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613048565b6115ea565b005b3480156106c957600080fd5b506106d2611670565b6040516106df91906130b6565b60405180910390f35b3480156106f457600080fd5b506106fd61169a565b60405161070a9190612ff0565b60405180910390f35b34801561071f57600080fd5b50610728611728565b6040516107359190612ff0565b60405180910390f35b34801561074a57600080fd5b506107536117ba565b005b34801561076157600080fd5b5061077c600480360381019061077791906134a2565b611862565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613048565b6119da565b005b6107c160048036038101906107bc91906131ba565b611a60565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906134e2565b611be2565b005b3480156107f857600080fd5b50610801611c6c565b60405161080e9190612f3c565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906135c3565b611c83565b005b34801561084c57600080fd5b50610855611cf6565b6040516108629190612f3c565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613048565b611d0d565b60405161089f9190612ff0565b60405180910390f35b3480156108b457600080fd5b506108bd611d7e565b005b3480156108cb57600080fd5b506108d4611e26565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906131ba565b61200b565b60405161090a9190612f3c565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613646565b612061565b6040516109479190612f3c565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906131ba565b6120f5565b005b34801561098557600080fd5b5061098e6121ed565b60405161099b919061314c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ff57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a45906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a71906136b5565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000610ad3826121fc565b610b09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f8261225b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6612329565b73ffffffffffffffffffffffffffffffffffffffff1614610c3957610c0281610bfd612329565b612061565b610c38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e60019054906101000a900460ff16610d0457600080fd5b60116000610d10612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613733565b60405180910390fd5b6000610da1610e7c565b9050600a548282610db29190613782565b1115610dbd57600080fd5b600c5482610dcb91906137d8565b341015610dd757600080fd5b610de8610de2612331565b83612339565b5050565b610df4612331565b73ffffffffffffffffffffffffffffffffffffffff16610e12611670565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f9061387e565b60405180910390fd5b80600a8190555050565b6000600a54905090565b6000610e86612357565b6001546000540303905090565b610e9b612331565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611670565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061387e565b60405180910390fd5b80600d8190555050565b600e60029054906101000a900460ff16610f3257600080fd5b60126000610f3e612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613733565b60405180910390fd5b6000610fcf610e7c565b9050600a548282610fe09190613782565b1115610feb57600080fd5b600d5482610ff991906137d8565b34101561100557600080fd5b611016611010612331565b83612339565b5050565b600b5481565b61102b83838361235c565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110a183838360405180602001604052806000815250611c83565b505050565b6110ae612331565b73ffffffffffffffffffffffffffffffffffffffff166110cc611670565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111199061387e565b60405180910390fd5b60005b81518110156111b3576001601160008484815181106111475761114661389e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111ab906138cd565b915050611125565b5050565b600e60009054906101000a900460ff166111d057600080fd5b60006111da610e7c565b9050600a5482826111eb9190613782565b11156111f657600080fd5b600b548261120491906137d8565b34101561121057600080fd5b61122161121b612331565b83612339565b5050565b61122d612331565b73ffffffffffffffffffffffffffffffffffffffff1661124b611670565b73ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112989061387e565b60405180910390fd5b80601090805190602001906112b7929190612de5565b5050565b6000600e60019054906101000a900460ff16905090565b600c5481565b60006112e38261225b565b9050919050565b6112f2612331565b73ffffffffffffffffffffffffffffffffffffffff16611310611670565b73ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d9061387e565b60405180910390fd5b60005b81518110156113f75760016012600084848151811061138b5761138a61389e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113ef906138cd565b915050611369565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bc612331565b73ffffffffffffffffffffffffffffffffffffffff166114da611670565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115279061387e565b60405180910390fd5b61153a6000612706565b565b611544612331565b73ffffffffffffffffffffffffffffffffffffffff16611562611670565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af9061387e565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600d5481565b6115f2612331565b73ffffffffffffffffffffffffffffffffffffffff16611610611670565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061387e565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601080546116a7906136b5565b80601f01602080910402602001604051908101604052809291908181526020018280546116d3906136b5565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b505050505081565b606060038054611737906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611763906136b5565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b5050505050905090565b6117c2612331565b73ffffffffffffffffffffffffffffffffffffffff166117e0611670565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061387e565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b61186a612329565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118dc612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611989612329565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ce9190612f3c565b60405180910390a35050565b6119e2612331565b73ffffffffffffffffffffffffffffffffffffffff16611a00611670565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061387e565b60405180910390fd5b80600b8190555050565b600e60009054906101000a900460ff16611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690613962565b60405180910390fd5b73dab1a1854214684ace522439684a145e6250523373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b28906139f4565b60405180910390fd5b6000611b3b610e7c565b9050600a54600182611b4d9190613782565b1115611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613a60565b60405180910390fd5b600b54341015611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613acc565b60405180910390fd5b611bde826001612339565b5050565b611bea612331565b73ffffffffffffffffffffffffffffffffffffffff16611c08611670565b73ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061387e565b60405180910390fd5b611c688183612339565b5050565b6000600e60009054906101000a900460ff16905090565b611c8e84848461235c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf057611cb9848484846127cc565b611cef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600e60029054906101000a900460ff16905090565b6060611d18826121fc565b611d2157600080fd5b6000611d2b61291d565b90506000815111611d4b5760405180602001604052806000815250611d76565b80611d55846129af565b604051602001611d66929190613b74565b6040516020818303038152906040525b915050919050565b611d86612331565b73ffffffffffffffffffffffffffffffffffffffff16611da4611670565b73ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df19061387e565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b611e2e612331565b73ffffffffffffffffffffffffffffffffffffffff16611e4c611670565b73ffffffffffffffffffffffffffffffffffffffff1614611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e999061387e565b60405180910390fd5b6000479050600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611ef291906137d8565b611efc9190613bd2565b9081150290604051600060405180830381858888f19350505050158015611f27573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611f7391906137d8565b611f7d9190613bd2565b9081150290604051600060405180830381858888f19350505050158015611fa8573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6064604b84611fd291906137d8565b611fdc9190613bd2565b9081150290604051600060405180830381858888f19350505050158015612007573d6000803e3d6000fd5b5050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120fd612331565b73ffffffffffffffffffffffffffffffffffffffff1661211b611670565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061387e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613c75565b60405180910390fd5b6121ea81612706565b50565b60006121f7610e7c565b905090565b600081612207612357565b11158015612216575060005482105b8015612254575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061226a612357565b116122f2576000548110156122f15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ef575b60008114156122e55760046000836001900393508381526020019081526020016000205490506122ba565b8092505050612324565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b612353828260405180602001604052806000815250612b10565b5050565b600090565b60006123678261225b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123ef612329565b73ffffffffffffffffffffffffffffffffffffffff16148061241e575061241d85612418612329565b612061565b5b80612463575061242c612329565b73ffffffffffffffffffffffffffffffffffffffff1661244b84610ac8565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061249c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612503576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125108585856001612dc5565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61260d86612dcb565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612697576000600184019050600060046000838152602001908152602001600020541415612695576000548114612694578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ff8585856001612dd5565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f2612329565b8786866040518563ffffffff1660e01b81526004016128149493929190613cea565b6020604051808303816000875af192505050801561285057506040513d601f19601f8201168201806040525081019061284d9190613d4b565b60015b6128ca573d8060008114612880576040519150601f19603f3d011682016040523d82523d6000602084013e612885565b606091505b506000815114156128c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461292c906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612958906136b5565b80156129a55780601f1061297a576101008083540402835291602001916129a5565b820191906000526020600020905b81548152906001019060200180831161298857829003601f168201915b5050505050905090565b606060008214156129f7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0b565b600082905060005b60008214612a29578080612a12906138cd565b915050600a82612a229190613bd2565b91506129ff565b60008167ffffffffffffffff811115612a4557612a446131ec565b5b6040519080825280601f01601f191660200182016040528015612a775781602001600182028036833780820191505090505b5090505b60008514612b0457600182612a909190613d78565b9150600a85612a9f9190613dac565b6030612aab9190613782565b60f81b818381518110612ac157612ac061389e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612afd9190613bd2565b9450612a7b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612bb8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bc56000858386612dc5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c2a60018514612ddb565b901b60a042901b612c3a86612dcb565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612d3e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cee60008784806001019550876127cc565b612d24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c7f578260005414612d3957600080fd5b612da9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d3f575b816000819055505050612dbf6000858386612dd5565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612df1906136b5565b90600052602060002090601f016020900481019282612e135760008555612e5a565b82601f10612e2c57805160ff1916838001178555612e5a565b82800160010185558215612e5a579182015b82811115612e59578251825591602001919060010190612e3e565b5b509050612e679190612e6b565b5090565b5b80821115612e84576000816000905550600101612e6c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ed181612e9c565b8114612edc57600080fd5b50565b600081359050612eee81612ec8565b92915050565b600060208284031215612f0a57612f09612e92565b5b6000612f1884828501612edf565b91505092915050565b60008115159050919050565b612f3681612f21565b82525050565b6000602082019050612f516000830184612f2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f91578082015181840152602081019050612f76565b83811115612fa0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fc282612f57565b612fcc8185612f62565b9350612fdc818560208601612f73565b612fe581612fa6565b840191505092915050565b6000602082019050818103600083015261300a8184612fb7565b905092915050565b6000819050919050565b61302581613012565b811461303057600080fd5b50565b6000813590506130428161301c565b92915050565b60006020828403121561305e5761305d612e92565b5b600061306c84828501613033565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130a082613075565b9050919050565b6130b081613095565b82525050565b60006020820190506130cb60008301846130a7565b92915050565b6130da81613095565b81146130e557600080fd5b50565b6000813590506130f7816130d1565b92915050565b6000806040838503121561311457613113612e92565b5b6000613122858286016130e8565b925050602061313385828601613033565b9150509250929050565b61314681613012565b82525050565b6000602082019050613161600083018461313d565b92915050565b6000806000606084860312156131805761317f612e92565b5b600061318e868287016130e8565b935050602061319f868287016130e8565b92505060406131b086828701613033565b9150509250925092565b6000602082840312156131d0576131cf612e92565b5b60006131de848285016130e8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61322482612fa6565b810181811067ffffffffffffffff82111715613243576132426131ec565b5b80604052505050565b6000613256612e88565b9050613262828261321b565b919050565b600067ffffffffffffffff821115613282576132816131ec565b5b602082029050602081019050919050565b600080fd5b60006132ab6132a684613267565b61324c565b905080838252602082019050602084028301858111156132ce576132cd613293565b5b835b818110156132f757806132e388826130e8565b8452602084019350506020810190506132d0565b5050509392505050565b600082601f830112613316576133156131e7565b5b8135613326848260208601613298565b91505092915050565b60006020828403121561334557613344612e92565b5b600082013567ffffffffffffffff81111561336357613362612e97565b5b61336f84828501613301565b91505092915050565b600080fd5b600067ffffffffffffffff821115613398576133976131ec565b5b6133a182612fa6565b9050602081019050919050565b82818337600083830152505050565b60006133d06133cb8461337d565b61324c565b9050828152602081018484840111156133ec576133eb613378565b5b6133f78482856133ae565b509392505050565b600082601f830112613414576134136131e7565b5b81356134248482602086016133bd565b91505092915050565b60006020828403121561344357613442612e92565b5b600082013567ffffffffffffffff81111561346157613460612e97565b5b61346d848285016133ff565b91505092915050565b61347f81612f21565b811461348a57600080fd5b50565b60008135905061349c81613476565b92915050565b600080604083850312156134b9576134b8612e92565b5b60006134c7858286016130e8565b92505060206134d88582860161348d565b9150509250929050565b600080604083850312156134f9576134f8612e92565b5b600061350785828601613033565b9250506020613518858286016130e8565b9150509250929050565b600067ffffffffffffffff82111561353d5761353c6131ec565b5b61354682612fa6565b9050602081019050919050565b600061356661356184613522565b61324c565b90508281526020810184848401111561358257613581613378565b5b61358d8482856133ae565b509392505050565b600082601f8301126135aa576135a96131e7565b5b81356135ba848260208601613553565b91505092915050565b600080600080608085870312156135dd576135dc612e92565b5b60006135eb878288016130e8565b94505060206135fc878288016130e8565b935050604061360d87828801613033565b925050606085013567ffffffffffffffff81111561362e5761362d612e97565b5b61363a87828801613595565b91505092959194509250565b6000806040838503121561365d5761365c612e92565b5b600061366b858286016130e8565b925050602061367c858286016130e8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136cd57607f821691505b602082108114156136e1576136e0613686565b5b50919050565b7f4d696e743a20556e617574686f72697a65642041636365737300000000000000600082015250565b600061371d601983612f62565b9150613728826136e7565b602082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378d82613012565b915061379883613012565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137cd576137cc613753565b5b828201905092915050565b60006137e382613012565b91506137ee83613012565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561382757613826613753565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613868602083612f62565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138d882613012565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390b5761390a613753565b5b600182019050919050565b7f73616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b600061394c600e83612f62565b915061395782613916565b602082019050919050565b6000602082019050818103600083015261397b8161393f565b9050919050565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b60006139de602483612f62565b91506139e982613982565b604082019050919050565b60006020820190508181036000830152613a0d816139d1565b9050919050565b7f776520617265206d61786564206f757400000000000000000000000000000000600082015250565b6000613a4a601083612f62565b9150613a5582613a14565b602082019050919050565b60006020820190508181036000830152613a7981613a3d565b9050919050565b7f70726963652069732077726f6e67000000000000000000000000000000000000600082015250565b6000613ab6600e83612f62565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b600081905092915050565b6000613b0282612f57565b613b0c8185613aec565b9350613b1c818560208601612f73565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b5e600583613aec565b9150613b6982613b28565b600582019050919050565b6000613b808285613af7565b9150613b8c8284613af7565b9150613b9782613b51565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bdd82613012565b9150613be883613012565b925082613bf857613bf7613ba3565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612f62565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612f73565b613cdf81612fa6565b840191505092915050565b6000608082019050613cff60008301876130a7565b613d0c60208301866130a7565b613d19604083018561313d565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612ec8565b92915050565b600060208284031215613d6157613d60612e92565b5b6000613d6f84828501613d36565b91505092915050565b6000613d8382613012565b9150613d8e83613012565b925082821015613da157613da0613753565b5b828203905092915050565b6000613db782613012565b9150613dc283613012565b925082613dd257613dd1613ba3565b5b82820690509291505056fea264697066735822122002278caddb17a472da9970db07c115ef3616b8b9f40344927e98642e6be411b764736f6c634300080a0033697066733a2f2f516d5852524752574144614d66596b63756d5951574a78386334584377703670575a6b38714131686d7a4c484d452f
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063715018a611610144578063b723b34e116100b6578063ca3cb5221161007a578063ca3cb522146108a8578063dd473d2b146108bf578063e67a1d3b146108d6578063e985e9c514610913578063f2fde38b14610950578063f309455a1461097957610267565b8063b723b34e146107c3578063b78f9de7146107ec578063b88d4fde14610817578063c1bde40414610840578063c87b56dd1461086b57610267565b806391860f781161010857806391860f78146106e857806395d89b4114610713578063998001851461073e578063a22cb46514610755578063a2b40d191461077e578063a960eabe146107a757610267565b8063715018a61461063b5780637d8966e41461065257806382060f50146106695780638606d938146106945780638da5cb5b146106bd57610267565b806323b872dd116101dd57806355f804b3116101a157806355f804b3146105195780635a7adf7f146105425780635c909bf41461056d5780636352211e1461059857806366444453146105d557806370a08231146105fe57610267565b806323b872dd146104455780633af32abf1461046e57806342842e0e146104ab57806343d67565146104d45780635367de6a146104fd57610267565b8063121dbc311161022f578063121dbc311461035657806315e569521461037f57806318160ddd146103aa5780631cbb5bf2146103d55780632358ac84146103fe578063235b6ea11461041a57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630b4b98781461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612ef4565b6109a4565b6040516102a09190612f3c565b60405180910390f35b3480156102b557600080fd5b506102be610a36565b6040516102cb9190612ff0565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613048565b610ac8565b60405161030891906130b6565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906130fd565b610b44565b005b610354600480360381019061034f9190613048565b610ceb565b005b34801561036257600080fd5b5061037d60048036038101906103789190613048565b610dec565b005b34801561038b57600080fd5b50610394610e72565b6040516103a1919061314c565b60405180910390f35b3480156103b657600080fd5b506103bf610e7c565b6040516103cc919061314c565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613048565b610e93565b005b61041860048036038101906104139190613048565b610f19565b005b34801561042657600080fd5b5061042f61101a565b60405161043c919061314c565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613167565b611020565b005b34801561047a57600080fd5b50610495600480360381019061049091906131ba565b611030565b6040516104a29190612f3c565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613167565b611086565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061332f565b6110a6565b005b61051760048036038101906105129190613048565b6111b7565b005b34801561052557600080fd5b50610540600480360381019061053b919061342d565b611225565b005b34801561054e57600080fd5b506105576112bb565b6040516105649190612f3c565b60405180910390f35b34801561057957600080fd5b506105826112d2565b60405161058f919061314c565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613048565b6112d8565b6040516105cc91906130b6565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061332f565b6112ea565b005b34801561060a57600080fd5b50610625600480360381019061062091906131ba565b6113fb565b604051610632919061314c565b60405180910390f35b34801561064757600080fd5b506106506114b4565b005b34801561065e57600080fd5b5061066761153c565b005b34801561067557600080fd5b5061067e6115e4565b60405161068b919061314c565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613048565b6115ea565b005b3480156106c957600080fd5b506106d2611670565b6040516106df91906130b6565b60405180910390f35b3480156106f457600080fd5b506106fd61169a565b60405161070a9190612ff0565b60405180910390f35b34801561071f57600080fd5b50610728611728565b6040516107359190612ff0565b60405180910390f35b34801561074a57600080fd5b506107536117ba565b005b34801561076157600080fd5b5061077c600480360381019061077791906134a2565b611862565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613048565b6119da565b005b6107c160048036038101906107bc91906131ba565b611a60565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906134e2565b611be2565b005b3480156107f857600080fd5b50610801611c6c565b60405161080e9190612f3c565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906135c3565b611c83565b005b34801561084c57600080fd5b50610855611cf6565b6040516108629190612f3c565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613048565b611d0d565b60405161089f9190612ff0565b60405180910390f35b3480156108b457600080fd5b506108bd611d7e565b005b3480156108cb57600080fd5b506108d4611e26565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906131ba565b61200b565b60405161090a9190612f3c565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613646565b612061565b6040516109479190612f3c565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906131ba565b6120f5565b005b34801561098557600080fd5b5061098e6121ed565b60405161099b919061314c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ff57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a45906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a71906136b5565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000610ad3826121fc565b610b09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f8261225b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6612329565b73ffffffffffffffffffffffffffffffffffffffff1614610c3957610c0281610bfd612329565b612061565b610c38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e60019054906101000a900460ff16610d0457600080fd5b60116000610d10612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613733565b60405180910390fd5b6000610da1610e7c565b9050600a548282610db29190613782565b1115610dbd57600080fd5b600c5482610dcb91906137d8565b341015610dd757600080fd5b610de8610de2612331565b83612339565b5050565b610df4612331565b73ffffffffffffffffffffffffffffffffffffffff16610e12611670565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f9061387e565b60405180910390fd5b80600a8190555050565b6000600a54905090565b6000610e86612357565b6001546000540303905090565b610e9b612331565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611670565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061387e565b60405180910390fd5b80600d8190555050565b600e60029054906101000a900460ff16610f3257600080fd5b60126000610f3e612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613733565b60405180910390fd5b6000610fcf610e7c565b9050600a548282610fe09190613782565b1115610feb57600080fd5b600d5482610ff991906137d8565b34101561100557600080fd5b611016611010612331565b83612339565b5050565b600b5481565b61102b83838361235c565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110a183838360405180602001604052806000815250611c83565b505050565b6110ae612331565b73ffffffffffffffffffffffffffffffffffffffff166110cc611670565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111199061387e565b60405180910390fd5b60005b81518110156111b3576001601160008484815181106111475761114661389e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111ab906138cd565b915050611125565b5050565b600e60009054906101000a900460ff166111d057600080fd5b60006111da610e7c565b9050600a5482826111eb9190613782565b11156111f657600080fd5b600b548261120491906137d8565b34101561121057600080fd5b61122161121b612331565b83612339565b5050565b61122d612331565b73ffffffffffffffffffffffffffffffffffffffff1661124b611670565b73ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112989061387e565b60405180910390fd5b80601090805190602001906112b7929190612de5565b5050565b6000600e60019054906101000a900460ff16905090565b600c5481565b60006112e38261225b565b9050919050565b6112f2612331565b73ffffffffffffffffffffffffffffffffffffffff16611310611670565b73ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d9061387e565b60405180910390fd5b60005b81518110156113f75760016012600084848151811061138b5761138a61389e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113ef906138cd565b915050611369565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bc612331565b73ffffffffffffffffffffffffffffffffffffffff166114da611670565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115279061387e565b60405180910390fd5b61153a6000612706565b565b611544612331565b73ffffffffffffffffffffffffffffffffffffffff16611562611670565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af9061387e565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600d5481565b6115f2612331565b73ffffffffffffffffffffffffffffffffffffffff16611610611670565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061387e565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601080546116a7906136b5565b80601f01602080910402602001604051908101604052809291908181526020018280546116d3906136b5565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b505050505081565b606060038054611737906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611763906136b5565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b5050505050905090565b6117c2612331565b73ffffffffffffffffffffffffffffffffffffffff166117e0611670565b73ffffffffffffffffffffffffffffffffffffffff1614611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061387e565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b61186a612329565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118dc612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611989612329565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ce9190612f3c565b60405180910390a35050565b6119e2612331565b73ffffffffffffffffffffffffffffffffffffffff16611a00611670565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061387e565b60405180910390fd5b80600b8190555050565b600e60009054906101000a900460ff16611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690613962565b60405180910390fd5b73dab1a1854214684ace522439684a145e6250523373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b28906139f4565b60405180910390fd5b6000611b3b610e7c565b9050600a54600182611b4d9190613782565b1115611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613a60565b60405180910390fd5b600b54341015611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613acc565b60405180910390fd5b611bde826001612339565b5050565b611bea612331565b73ffffffffffffffffffffffffffffffffffffffff16611c08611670565b73ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061387e565b60405180910390fd5b611c688183612339565b5050565b6000600e60009054906101000a900460ff16905090565b611c8e84848461235c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf057611cb9848484846127cc565b611cef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600e60029054906101000a900460ff16905090565b6060611d18826121fc565b611d2157600080fd5b6000611d2b61291d565b90506000815111611d4b5760405180602001604052806000815250611d76565b80611d55846129af565b604051602001611d66929190613b74565b6040516020818303038152906040525b915050919050565b611d86612331565b73ffffffffffffffffffffffffffffffffffffffff16611da4611670565b73ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df19061387e565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b611e2e612331565b73ffffffffffffffffffffffffffffffffffffffff16611e4c611670565b73ffffffffffffffffffffffffffffffffffffffff1614611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e999061387e565b60405180910390fd5b6000479050600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611ef291906137d8565b611efc9190613bd2565b9081150290604051600060405180830381858888f19350505050158015611f27573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611f7391906137d8565b611f7d9190613bd2565b9081150290604051600060405180830381858888f19350505050158015611fa8573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc6064604b84611fd291906137d8565b611fdc9190613bd2565b9081150290604051600060405180830381858888f19350505050158015612007573d6000803e3d6000fd5b5050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120fd612331565b73ffffffffffffffffffffffffffffffffffffffff1661211b611670565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061387e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613c75565b60405180910390fd5b6121ea81612706565b50565b60006121f7610e7c565b905090565b600081612207612357565b11158015612216575060005482105b8015612254575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061226a612357565b116122f2576000548110156122f15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ef575b60008114156122e55760046000836001900393508381526020019081526020016000205490506122ba565b8092505050612324565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b612353828260405180602001604052806000815250612b10565b5050565b600090565b60006123678261225b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123ef612329565b73ffffffffffffffffffffffffffffffffffffffff16148061241e575061241d85612418612329565b612061565b5b80612463575061242c612329565b73ffffffffffffffffffffffffffffffffffffffff1661244b84610ac8565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061249c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612503576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125108585856001612dc5565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61260d86612dcb565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612697576000600184019050600060046000838152602001908152602001600020541415612695576000548114612694578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ff8585856001612dd5565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f2612329565b8786866040518563ffffffff1660e01b81526004016128149493929190613cea565b6020604051808303816000875af192505050801561285057506040513d601f19601f8201168201806040525081019061284d9190613d4b565b60015b6128ca573d8060008114612880576040519150601f19603f3d011682016040523d82523d6000602084013e612885565b606091505b506000815114156128c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461292c906136b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612958906136b5565b80156129a55780601f1061297a576101008083540402835291602001916129a5565b820191906000526020600020905b81548152906001019060200180831161298857829003601f168201915b5050505050905090565b606060008214156129f7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0b565b600082905060005b60008214612a29578080612a12906138cd565b915050600a82612a229190613bd2565b91506129ff565b60008167ffffffffffffffff811115612a4557612a446131ec565b5b6040519080825280601f01601f191660200182016040528015612a775781602001600182028036833780820191505090505b5090505b60008514612b0457600182612a909190613d78565b9150600a85612a9f9190613dac565b6030612aab9190613782565b60f81b818381518110612ac157612ac061389e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612afd9190613bd2565b9450612a7b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612bb8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bc56000858386612dc5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c2a60018514612ddb565b901b60a042901b612c3a86612dcb565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612d3e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cee60008784806001019550876127cc565b612d24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c7f578260005414612d3957600080fd5b612da9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d3f575b816000819055505050612dbf6000858386612dd5565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612df1906136b5565b90600052602060002090601f016020900481019282612e135760008555612e5a565b82601f10612e2c57805160ff1916838001178555612e5a565b82800160010185558215612e5a579182015b82811115612e59578251825591602001919060010190612e3e565b5b509050612e679190612e6b565b5090565b5b80821115612e84576000816000905550600101612e6c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ed181612e9c565b8114612edc57600080fd5b50565b600081359050612eee81612ec8565b92915050565b600060208284031215612f0a57612f09612e92565b5b6000612f1884828501612edf565b91505092915050565b60008115159050919050565b612f3681612f21565b82525050565b6000602082019050612f516000830184612f2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f91578082015181840152602081019050612f76565b83811115612fa0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fc282612f57565b612fcc8185612f62565b9350612fdc818560208601612f73565b612fe581612fa6565b840191505092915050565b6000602082019050818103600083015261300a8184612fb7565b905092915050565b6000819050919050565b61302581613012565b811461303057600080fd5b50565b6000813590506130428161301c565b92915050565b60006020828403121561305e5761305d612e92565b5b600061306c84828501613033565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130a082613075565b9050919050565b6130b081613095565b82525050565b60006020820190506130cb60008301846130a7565b92915050565b6130da81613095565b81146130e557600080fd5b50565b6000813590506130f7816130d1565b92915050565b6000806040838503121561311457613113612e92565b5b6000613122858286016130e8565b925050602061313385828601613033565b9150509250929050565b61314681613012565b82525050565b6000602082019050613161600083018461313d565b92915050565b6000806000606084860312156131805761317f612e92565b5b600061318e868287016130e8565b935050602061319f868287016130e8565b92505060406131b086828701613033565b9150509250925092565b6000602082840312156131d0576131cf612e92565b5b60006131de848285016130e8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61322482612fa6565b810181811067ffffffffffffffff82111715613243576132426131ec565b5b80604052505050565b6000613256612e88565b9050613262828261321b565b919050565b600067ffffffffffffffff821115613282576132816131ec565b5b602082029050602081019050919050565b600080fd5b60006132ab6132a684613267565b61324c565b905080838252602082019050602084028301858111156132ce576132cd613293565b5b835b818110156132f757806132e388826130e8565b8452602084019350506020810190506132d0565b5050509392505050565b600082601f830112613316576133156131e7565b5b8135613326848260208601613298565b91505092915050565b60006020828403121561334557613344612e92565b5b600082013567ffffffffffffffff81111561336357613362612e97565b5b61336f84828501613301565b91505092915050565b600080fd5b600067ffffffffffffffff821115613398576133976131ec565b5b6133a182612fa6565b9050602081019050919050565b82818337600083830152505050565b60006133d06133cb8461337d565b61324c565b9050828152602081018484840111156133ec576133eb613378565b5b6133f78482856133ae565b509392505050565b600082601f830112613414576134136131e7565b5b81356134248482602086016133bd565b91505092915050565b60006020828403121561344357613442612e92565b5b600082013567ffffffffffffffff81111561346157613460612e97565b5b61346d848285016133ff565b91505092915050565b61347f81612f21565b811461348a57600080fd5b50565b60008135905061349c81613476565b92915050565b600080604083850312156134b9576134b8612e92565b5b60006134c7858286016130e8565b92505060206134d88582860161348d565b9150509250929050565b600080604083850312156134f9576134f8612e92565b5b600061350785828601613033565b9250506020613518858286016130e8565b9150509250929050565b600067ffffffffffffffff82111561353d5761353c6131ec565b5b61354682612fa6565b9050602081019050919050565b600061356661356184613522565b61324c565b90508281526020810184848401111561358257613581613378565b5b61358d8482856133ae565b509392505050565b600082601f8301126135aa576135a96131e7565b5b81356135ba848260208601613553565b91505092915050565b600080600080608085870312156135dd576135dc612e92565b5b60006135eb878288016130e8565b94505060206135fc878288016130e8565b935050604061360d87828801613033565b925050606085013567ffffffffffffffff81111561362e5761362d612e97565b5b61363a87828801613595565b91505092959194509250565b6000806040838503121561365d5761365c612e92565b5b600061366b858286016130e8565b925050602061367c858286016130e8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136cd57607f821691505b602082108114156136e1576136e0613686565b5b50919050565b7f4d696e743a20556e617574686f72697a65642041636365737300000000000000600082015250565b600061371d601983612f62565b9150613728826136e7565b602082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378d82613012565b915061379883613012565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137cd576137cc613753565b5b828201905092915050565b60006137e382613012565b91506137ee83613012565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561382757613826613753565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613868602083612f62565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138d882613012565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390b5761390a613753565b5b600182019050919050565b7f73616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b600061394c600e83612f62565b915061395782613916565b602082019050919050565b6000602082019050818103600083015261397b8161393f565b9050919050565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b60006139de602483612f62565b91506139e982613982565b604082019050919050565b60006020820190508181036000830152613a0d816139d1565b9050919050565b7f776520617265206d61786564206f757400000000000000000000000000000000600082015250565b6000613a4a601083612f62565b9150613a5582613a14565b602082019050919050565b60006020820190508181036000830152613a7981613a3d565b9050919050565b7f70726963652069732077726f6e67000000000000000000000000000000000000600082015250565b6000613ab6600e83612f62565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b600081905092915050565b6000613b0282612f57565b613b0c8185613aec565b9350613b1c818560208601612f73565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b5e600583613aec565b9150613b6982613b28565b600582019050919050565b6000613b808285613af7565b9150613b8c8284613af7565b9150613b9782613b51565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bdd82613012565b9150613be883613012565b925082613bf857613bf7613ba3565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612f62565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612f73565b613cdf81612fa6565b840191505092915050565b6000608082019050613cff60008301876130a7565b613d0c60208301866130a7565b613d19604083018561313d565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612ec8565b92915050565b600060208284031215613d6157613d60612e92565b5b6000613d6f84828501613d36565b91505092915050565b6000613d8382613012565b9150613d8e83613012565b925082821015613da157613da0613753565b5b828203905092915050565b6000613db782613012565b9150613dc283613012565b925082613dd257613dd1613ba3565b5b82820690509291505056fea264697066735822122002278caddb17a472da9970db07c115ef3616b8b9f40344927e98642e6be411b764736f6c634300080a0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.