Overview
TokenID
757
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MyFlickyNFT
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "hardhat/console.sol"; contract MyFlickyNFT is ERC721A, Ownable, IERC2981 { using Counters for Counters.Counter; using SafeMath for uint256; address private gateKeeper = 0x1bCcFFdb1279aA7C4985Ec45f3358A739B594404; mapping (address => uint256) private operatorCounts; mapping (uint256 => uint256) private tokenIdsToMetadataIds; mapping (uint256 => bool) private metadataIdTaken; string public baseURI = "ipfs://QmaVXsgQAmyhGMAqpQxpqZ8mCM4vihY6zMxt5SyBDmrceS/"; bool public revealed = false; bool public allowlistOnly = true; address private royaltyReciever; string private constant ALLOWLIST_MINT = "ALLOWLIST_MINT"; string private constant GENERAL_MINT = "GENERAL_MINT"; string private constant MAP_MINT = "MAP_MINT"; string private constant RESERVED_MINT = "RESERVED_MINT"; uint256 private constant RESERVED_TOTAL = 180; uint256 private constant MAP_TOTAL = 500; uint256 private constant ALLOWLIST_TOTAL = 3475; uint256 private constant PUBLIC_MINT_TOTAL = 1400; uint256 public reservedCount = 0; uint256 public mapCount = 0; uint256 public allowlistCount = 0; uint256 public publicMintCount = 0; function getCounts() public view returns (uint256, uint256, uint256, uint256) { return (reservedCount, mapCount, allowlistCount, publicMintCount); } function getCost() public view returns (uint256) { if (allowlistOnly) { return 0.07 ether; } else { return 0.075 ether; } } function setAllowlistOnly(bool _allowlistOnly) public onlyOwner { allowlistOnly = _allowlistOnly; } function getAllowlistState() public view returns (bool) { return allowlistOnly; } function getBaseURI() public view returns (string memory) { return baseURI; } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setRevealed(bool _revealed) public onlyOwner { revealed = _revealed; } function getRevealed() public view returns (bool) { return revealed; } function compareStrings(string memory a, string memory b) public pure returns (bool) { return (keccak256(bytes(a)) == keccak256(bytes(b))); } function recoverSignerAddress(uint256 _metadataIndex, string memory _nftType, uint8 v, bytes32 r, bytes32 s) public pure returns (address) { bytes memory prefix = "\x19Ethereum Signed Message:\n32"; bytes32 recreatedMessage = keccak256(abi.encodePacked(_metadataIndex, _nftType)); bytes32 prefixedHashMessage = keccak256(abi.encodePacked(prefix, recreatedMessage)); return ecrecover(prefixedHashMessage, v, r, s); } function wasSignedByGateKeeper(uint256 _metadataIndex, string memory _nftType, uint8 v, bytes32 r, bytes32 s) public view returns (bool) { return recoverSignerAddress(_metadataIndex, _nftType, v, r, s) == gateKeeper; } function getGateKeeper() public view returns (address) { return gateKeeper; } function setGateKeeper(address _gateKeeper) public onlyOwner returns (bool) { gateKeeper = _gateKeeper; return true; } mapping (uint256 => string) private tokenURIs; constructor() ERC721A("Flicky", "FLKY") {} function _setTokenURI(uint256 _tokenId, string memory _tokenURI) internal virtual { tokenURIs[_tokenId] = _tokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI_ = getBaseURI(); uint256 metadataId = tokenIdsToMetadataIds[_tokenId]; if (revealed) { return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, Strings.toString(metadataId), ".json")) : ""; } else { return baseURI_; } } function _incrementTypeCount(string memory _nftType) private { if (compareStrings(_nftType, ALLOWLIST_MINT)) { publicMintCount = publicMintCount.add(1); allowlistCount = allowlistCount.add(1); } if (compareStrings(_nftType, GENERAL_MINT)) { publicMintCount = publicMintCount.add(1); } if (compareStrings(_nftType, MAP_MINT)) { mapCount = mapCount.add(1); } if (compareStrings(_nftType, RESERVED_MINT)) { reservedCount = reservedCount.add(1); } } function _canTypeBeMinted(string memory _nftType) private view returns (bool) { if (compareStrings(_nftType, ALLOWLIST_MINT)) { if (allowlistCount < ALLOWLIST_TOTAL && publicMintCount < PUBLIC_MINT_TOTAL) { return true; } else { return false; } } require(!allowlistOnly, "Only allowlisted participants may mint"); if (compareStrings(_nftType, GENERAL_MINT)) { if (publicMintCount < PUBLIC_MINT_TOTAL) { return true; } else { return false; } } if (compareStrings(_nftType, MAP_MINT)) { if (mapCount < MAP_TOTAL) { return true; } else { return false; } } if (compareStrings(_nftType, RESERVED_MINT)) { if (reservedCount < RESERVED_TOTAL) { return true; } else { return false; } } return false; } function mint(uint256 _metadataId, string memory _nftType, uint8 v, bytes32 r, bytes32 s) public payable returns (uint256) { require(!metadataIdTaken[_metadataId], "A token with this id has already been minted"); require(wasSignedByGateKeeper(_metadataId, _nftType, v, r, s), "May only mint with approved signature from gatekeeper."); require(_canTypeBeMinted(_nftType), "The maximum amount of that type of Flicky have already been minted"); require(msg.value >= getCost(), "Insufficient eth was paid"); uint256 tokenId = _currentIndex; tokenIdsToMetadataIds[tokenId] = _metadataId; metadataIdTaken[_metadataId] = true; _safeMint(_msgSender(), 1); _incrementTypeCount(_nftType); return tokenId; } function multipleMint(uint256[] memory _metadataIds, string[] memory _nftTypes, uint256 _numToMint, uint8[] memory v_sigs, bytes32[] memory r_sigs, bytes32[] memory s_sigs) public payable { require(_numToMint <= 10 && _numToMint > 0); require(msg.value >= (getCost() * _numToMint), "Insufficient eth was paid"); uint256 tokenId = _currentIndex; for (uint i = 0; i < _numToMint; i++) { uint256 metadataId = _metadataIds[i]; string memory nftType = _nftTypes[i]; require(!metadataIdTaken[metadataId], "A token with this id has already been minted"); require(_canTypeBeMinted(nftType), "The maximum amount of that type of Flicky have already been minted"); uint8 v = v_sigs[i]; bytes32 r = r_sigs[i]; bytes32 s = s_sigs[i]; require(wasSignedByGateKeeper(metadataId, nftType, v, r, s), "May only mint with approved signature from gatekeeper."); tokenIdsToMetadataIds[tokenId] = metadataId; metadataIdTaken[metadataId] = true; tokenId.add(1); _incrementTypeCount(nftType); } _safeMint(_msgSender(), _numToMint); } function efficientBulkMintMapAndReservedNfts(address to) public onlyOwner { require(mapCount == 0); require(reservedCount == 0); reservedCount = 180; mapCount = 500; _safeMint(to, MAP_TOTAL + RESERVED_TOTAL); } function setRoyalityReciever(address _royaltyReceiver) public onlyOwner { royaltyReciever = _royaltyReceiver; } function royaltyInfo(uint256 tokenId, uint256 salePrice) override external view returns (address receiver, uint256 royaltyAmount) { uint256 basePercent = 500; uint256 fivePercent = SafeMath.div(SafeMath.mul(salePrice, basePercent), 10000); return (royaltyReciever, fivePercent); } function setApprovalForAll(address operator, bool approved) public virtual override { super.setApprovalForAll(operator, approved); operatorCounts[_msgSender()] = operatorCounts[_msgSender()].add(1); } function resetOperatorApprovals(address[] memory _operatorsToReset) public { require(operatorCounts[_msgSender()] > 0, "Operator approvals must be greater than 0"); for (uint256 i = 0; i < _operatorsToReset.length; i++) { require(super.isApprovedForAll(_msgSender(), _operatorsToReset[i]), "Operator must be approved to rest"); super.setApprovalForAll(_operatorsToReset[i], false); operatorCounts[_msgSender()] = operatorCounts[_msgSender()].sub(1); } } function getOperatorCount() public view returns (uint256) { return operatorCounts[_msgSender()]; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].burned; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { 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 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == 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 {} }
// 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 (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity >= 0.4.22 <0.9.0; library console { address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); function _sendLogPayload(bytes memory payload) private view { uint256 payloadLength = payload.length; address consoleAddress = CONSOLE_ADDRESS; assembly { let payloadStart := add(payload, 32) let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0) } } function log() internal view { _sendLogPayload(abi.encodeWithSignature("log()")); } function logInt(int p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(int)", p0)); } function logUint(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function logString(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function logBool(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function logAddress(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function logBytes(bytes memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); } function logBytes1(bytes1 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); } function logBytes2(bytes2 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); } function logBytes3(bytes3 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); } function logBytes4(bytes4 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); } function logBytes5(bytes5 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); } function logBytes6(bytes6 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); } function logBytes7(bytes7 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); } function logBytes8(bytes8 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); } function logBytes9(bytes9 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); } function logBytes10(bytes10 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); } function logBytes11(bytes11 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); } function logBytes12(bytes12 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); } function logBytes13(bytes13 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); } function logBytes14(bytes14 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); } function logBytes15(bytes15 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); } function logBytes16(bytes16 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); } function logBytes17(bytes17 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); } function logBytes18(bytes18 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); } function logBytes19(bytes19 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); } function logBytes20(bytes20 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); } function logBytes21(bytes21 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); } function logBytes22(bytes22 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); } function logBytes23(bytes23 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); } function logBytes24(bytes24 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); } function logBytes25(bytes25 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); } function logBytes26(bytes26 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); } function logBytes27(bytes27 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); } function logBytes28(bytes28 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); } function logBytes29(bytes29 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); } function logBytes30(bytes30 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); } function logBytes31(bytes31 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); } function logBytes32(bytes32 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); } function log(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function log(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function log(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function log(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function log(uint p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1)); } function log(uint p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1)); } function log(uint p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1)); } function log(uint p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1)); } function log(string memory p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1)); } function log(string memory p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); } function log(string memory p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); } function log(string memory p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); } function log(bool p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1)); } function log(bool p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); } function log(bool p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); } function log(bool p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); } function log(address p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1)); } function log(address p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); } function log(address p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); } function log(address p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); } function log(uint p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2)); } function log(uint p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2)); } function log(uint p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2)); } function log(uint p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2)); } function log(uint p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2)); } function log(uint p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2)); } function log(uint p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2)); } function log(uint p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2)); } function log(uint p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2)); } function log(uint p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2)); } function log(uint p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2)); } function log(uint p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2)); } function log(uint p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2)); } function log(uint p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2)); } function log(uint p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2)); } function log(uint p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2)); } function log(string memory p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2)); } function log(string memory p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2)); } function log(string memory p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2)); } function log(string memory p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2)); } function log(string memory p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2)); } function log(string memory p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); } function log(string memory p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); } function log(string memory p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); } function log(string memory p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2)); } function log(string memory p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); } function log(string memory p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); } function log(string memory p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); } function log(string memory p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2)); } function log(string memory p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); } function log(string memory p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); } function log(string memory p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); } function log(bool p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2)); } function log(bool p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2)); } function log(bool p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2)); } function log(bool p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2)); } function log(bool p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2)); } function log(bool p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); } function log(bool p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); } function log(bool p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); } function log(bool p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2)); } function log(bool p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); } function log(bool p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); } function log(bool p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); } function log(bool p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2)); } function log(bool p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); } function log(bool p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); } function log(bool p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); } function log(address p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2)); } function log(address p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2)); } function log(address p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2)); } function log(address p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2)); } function log(address p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2)); } function log(address p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); } function log(address p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); } function log(address p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); } function log(address p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2)); } function log(address p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); } function log(address p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); } function log(address p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); } function log(address p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2)); } function log(address p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); } function log(address p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); } function log(address p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); } function log(uint p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
// 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
{ "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"},{"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":[],"name":"allowlistCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"a","type":"string"},{"internalType":"string","name":"b","type":"string"}],"name":"compareStrings","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"efficientBulkMintMapAndReservedNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllowlistState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGateKeeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOperatorCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"mapCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metadataId","type":"uint256"},{"internalType":"string","name":"_nftType","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_metadataIds","type":"uint256[]"},{"internalType":"string[]","name":"_nftTypes","type":"string[]"},{"internalType":"uint256","name":"_numToMint","type":"uint256"},{"internalType":"uint8[]","name":"v_sigs","type":"uint8[]"},{"internalType":"bytes32[]","name":"r_sigs","type":"bytes32[]"},{"internalType":"bytes32[]","name":"s_sigs","type":"bytes32[]"}],"name":"multipleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metadataIndex","type":"uint256"},{"internalType":"string","name":"_nftType","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"recoverSignerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_operatorsToReset","type":"address[]"}],"name":"resetOperatorApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowlistOnly","type":"bool"}],"name":"setAllowlistOnly","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gateKeeper","type":"address"}],"name":"setGateKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"}],"name":"setRoyalityReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metadataIndex","type":"uint256"},{"internalType":"string","name":"_nftType","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"wasSignedByGateKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052731bccffdb1279aa7c4985ec45f3358a739b594404600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200579560369139600d90805190602001906200008a92919062000292565b506000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506000600f55600060105560006011556000601255348015620000e257600080fd5b506040518060400160405280600681526020017f466c69636b7900000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464c4b590000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016792919062000292565b5080600390805190602001906200018092919062000292565b5062000191620001bf60201b60201c565b6000819055505050620001b9620001ad620001c460201b60201c565b620001cc60201b60201c565b620003a7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a09062000342565b90600052602060002090601f016020900481019282620002c4576000855562000310565b82601f10620002df57805160ff191683800117855562000310565b8280016001018555821562000310579182015b828111156200030f578251825591602001919060010190620002f2565b5b5090506200031f919062000323565b5090565b5b808211156200033e57600081600090555060010162000324565b5090565b600060028204905060018216806200035b57607f821691505b6020821081141562000372576200037162000378565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6153de80620003b76000396000f3fe6080604052600436106102725760003560e01c80636a7d943c1161014f578063b88d4fde116100c1578063e01865521161007a578063e018655214610952578063e0a808531461098f578063e985e9c5146109b8578063f2fde38b146109f5578063f4887f1514610a1e578063f5ea3dc914610a5b57610272565b8063b88d4fde14610830578063ba91924a14610859578063bd3e19d414610882578063bed34bba146108ad578063c38f7617146108ea578063c87b56dd1461091557610272565b80638da5cb5b116101135780638da5cb5b1461072f57806394cc41401461075a57806395d89b4114610785578063a22cb465146107b0578063a5373899146107d9578063af4248b21461080757610272565b80636a7d943c1461065a5780636c0360eb1461068557806370a08231146106b0578063714c5398146106ed578063715018a61461071857610272565b806323b872dd116101e85780633d141aa3116101ac5780633d141aa31461054a57806342842e0e14610575578063518302271461059e57806355f804b3146105c95780635e2aa3e6146105f25780636352211e1461061d57610272565b806323b872dd1461045f57806329c3b843146104885780632a55205a146104b857806337682d87146104f65780633ccfd60b1461053357610272565b80630d84d1ce1161023a5780630d84d1ce1461037057806314aafdc91461039b57806318160ddd146103c457806318ac827e146103ef5780631a4a7c61146104185780631e8081e41461044357610272565b806301ffc9a71461027757806306fdde03146102b457806307687d91146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190614287565b610a86565b6040516102ab919061488f565b60405180910390f35b3480156102c057600080fd5b506102c9610b68565b6040516102d691906148ef565b60405180910390f35b3480156102eb57600080fd5b506102f4610bfa565b6040516103019190614a51565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190614386565b610c00565b60405161033e91906147ff565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906140e0565b610c7c565b005b34801561037c57600080fd5b50610385610d87565b6040516103929190614a51565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061411c565b610d8d565b005b3480156103d057600080fd5b506103d9610fb8565b6040516103e69190614a51565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061425e565b610fcf565b005b34801561042457600080fd5b5061042d611068565b60405161043a9190614a51565b60405180910390f35b61045d6004803603810190610458919061415d565b6110b6565b005b34801561046b57600080fd5b5061048660048036038101906104819190613fda565b611419565b005b6104a2600480360381019061049d91906143af565b611429565b6040516104af9190614a51565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061443e565b6115dc565b6040516104ed929190614866565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906143af565b611630565b60405161052a919061488f565b60405180910390f35b34801561053f57600080fd5b5061054861169a565b005b34801561055657600080fd5b5061055f611796565b60405161056c919061488f565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613fda565b6117a9565b005b3480156105aa57600080fd5b506105b36117c9565b6040516105c0919061488f565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906142d9565b6117dc565b005b3480156105fe57600080fd5b50610607611872565b604051610614919061488f565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190614386565b611889565b60405161065191906147ff565b60405180910390f35b34801561066657600080fd5b5061066f61189f565b60405161067c91906147ff565b60405180910390f35b34801561069157600080fd5b5061069a6118c9565b6040516106a791906148ef565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613f75565b611957565b6040516106e49190614a51565b60405180910390f35b3480156106f957600080fd5b50610702611a27565b60405161070f91906148ef565b60405180910390f35b34801561072457600080fd5b5061072d611ab9565b005b34801561073b57600080fd5b50610744611b41565b60405161075191906147ff565b60405180910390f35b34801561076657600080fd5b5061076f611b6b565b60405161077c919061488f565b60405180910390f35b34801561079157600080fd5b5061079a611b82565b6040516107a791906148ef565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906140a4565b611c14565b005b3480156107e557600080fd5b506107ee611cc6565b6040516107fe9493929190614a6c565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613f75565b611ce6565b005b34801561083c57600080fd5b5061085760048036038101906108529190614029565b611da6565b005b34801561086557600080fd5b50610880600480360381019061087b9190613f75565b611e22565b005b34801561088e57600080fd5b50610897611ee8565b6040516108a49190614a51565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061431a565b611f1d565b6040516108e1919061488f565b60405180910390f35b3480156108f657600080fd5b506108ff611f38565b60405161090c9190614a51565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614386565b611f3e565b60405161094991906148ef565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906143af565b61201e565b60405161098691906147ff565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b1919061425e565b612110565b005b3480156109c457600080fd5b506109df60048036038101906109da9190613f9e565b6121a9565b6040516109ec919061488f565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613f75565b61223d565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613f75565b612335565b604051610a52919061488f565b60405180910390f35b348015610a6757600080fd5b50610a706123fd565b604051610a7d9190614a51565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b6082612403565b5b9050919050565b606060028054610b7790614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390614e44565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b60115481565b6000610c0b8261246d565b610c41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8782611889565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0e6124bb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d405750610d3e81610d396124bb565b6121a9565b155b15610d77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828383836124c3565b505050565b60125481565b6000600a6000610d9b6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614951565b60405180910390fd5b60005b8151811015610fb457610e73610e2d6124bb565b838381518110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516121a9565b610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614991565b60405180910390fd5b610efd828281518110610eee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000612575565b610f576001600a6000610f0e6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126ed90919063ffffffff16565b600a6000610f636124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610fac90614ea7565b915050610e19565b5050565b6000610fc2612703565b6001546000540303905090565b610fd76124bb565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611b41565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906149d1565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600a60006110766124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600a84111580156110c75750600084115b6110d057600080fd5b836110d9611ee8565b6110e39190614ce9565b341015611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90614a11565b60405180910390fd5b60008054905060005b858110156113fe576000888281518110611171577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008883815181106111b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600c600083815260200190815260200160002060009054906101000a900460ff1615611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890614931565b60405180910390fd5b61122a81612708565b611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614a31565b60405180910390fd5b60008784815181106112a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008785815181106112e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600087868151811061132e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506113458585858585611630565b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614911565b60405180910390fd5b84600b6000898152602001908152602001600020819055506001600c600087815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dc6001886128fa90919063ffffffff16565b506113e684612910565b505050505080806113f690614ea7565b91505061112e565b5061141061140a6124bb565b86612ab3565b50505050505050565b611424838383612ad1565b505050565b6000600c600087815260200190815260200160002060009054906101000a900460ff161561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614931565b60405180910390fd5b6114998686868686611630565b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614911565b60405180910390fd5b6114e185612708565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790614a31565b60405180910390fd5b611528611ee8565b34101561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190614a11565b60405180910390fd5b60008054905086600b6000838152602001908152602001600020819055506001600c600089815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c66115bf6124bb565b6001612ab3565b6115cf86612910565b8091505095945050505050565b60008060006101f4905060006115fd6115f58684612f87565b612710612f9d565b9050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16819350935050509250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611678878787878761201e565b73ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6116a26124bb565b73ffffffffffffffffffffffffffffffffffffffff166116c0611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906149d1565b60405180910390fd5b6000611720611b41565b73ffffffffffffffffffffffffffffffffffffffff1647604051611743906147c2565b60006040518083038185875af1925050503d8060008114611780576040519150601f19603f3d011682016040523d82523d6000602084013e611785565b606091505b505090508061179357600080fd5b50565b600e60019054906101000a900460ff1681565b6117c483838360405180602001604052806000815250611da6565b505050565b600e60009054906101000a900460ff1681565b6117e46124bb565b73ffffffffffffffffffffffffffffffffffffffff16611802611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906149d1565b60405180910390fd5b80600d908051906020019061186e929190613a24565b5050565b6000600e60019054906101000a900460ff16905090565b600061189482612fb3565b600001519050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d80546118d690614e44565b80601f016020809104026020016040519081016040528092919081815260200182805461190290614e44565b801561194f5780601f106119245761010080835404028352916020019161194f565b820191906000526020600020905b81548152906001019060200180831161193257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600d8054611a3690614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6290614e44565b8015611aaf5780601f10611a8457610100808354040283529160200191611aaf565b820191906000526020600020905b815481529060010190602001808311611a9257829003601f168201915b5050505050905090565b611ac16124bb565b73ffffffffffffffffffffffffffffffffffffffff16611adf611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906149d1565b60405180910390fd5b611b3f6000613242565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900460ff16905090565b606060038054611b9190614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbd90614e44565b8015611c0a5780601f10611bdf57610100808354040283529160200191611c0a565b820191906000526020600020905b815481529060010190602001808311611bed57829003601f168201915b5050505050905090565b611c1e8282612575565b611c786001600a6000611c2f6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128fa90919063ffffffff16565b600a6000611c846124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600080600080600f54601054601154601254935093509350935090919293565b611cee6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611d0c611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906149d1565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611db1848484612ad1565b611dd08373ffffffffffffffffffffffffffffffffffffffff16613308565b8015611de55750611de38484848461332b565b155b15611e1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611e2a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611e48611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906149d1565b60405180910390fd5b600060105414611ead57600080fd5b6000600f5414611ebc57600080fd5b60b4600f819055506101f4601081905550611ee58160b46101f4611ee09190614c62565b612ab3565b50565b6000600e60019054906101000a900460ff1615611f0e5766f8b0a10e4700009050611f1a565b67010a741a4627800090505b90565b60008180519060200120838051906020012014905092915050565b600f5481565b6060611f498261246d565b611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906149f1565b60405180910390fd5b6000611f92611a27565b90506000600b6000858152602001908152602001600020549050600e60009054906101000a900460ff1615612013576000825111611fdf576040518060200160405280600081525061200a565b81611fe98261348b565b604051602001611ffa929190614793565b6040516020818303038152906040525b92505050612019565b81925050505b919050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090506000878760405160200161206e9291906147d7565b6040516020818303038152906040528051906020012090506000828260405160200161209b92919061476b565b604051602081830303815290604052805190602001209050600181888888604051600081526020016040526040516120d694939291906148aa565b6020604051602081039080840390855afa1580156120f8573d6000803e3d6000fd5b50505060206040510351935050505095945050505050565b6121186124bb565b73ffffffffffffffffffffffffffffffffffffffff16612136611b41565b73ffffffffffffffffffffffffffffffffffffffff161461218c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612183906149d1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122456124bb565b73ffffffffffffffffffffffffffffffffffffffff16612263611b41565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b0906149d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614971565b60405180910390fd5b61233281613242565b50565b600061233f6124bb565b73ffffffffffffffffffffffffffffffffffffffff1661235d611b41565b73ffffffffffffffffffffffffffffffffffffffff16146123b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123aa906149d1565b60405180910390fd5b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612478612703565b11158015612487575060005482105b80156124b4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61257d6124bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125ef6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661269c6124bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126e1919061488f565b60405180910390a35050565b600081836126fb9190614d43565b905092915050565b600090565b6000612749826040518060400160405280600e81526020017f414c4c4f574c4953545f4d494e54000000000000000000000000000000000000815250611f1d565b1561277b57610d936011541080156127645750610578601254105b1561277257600190506128f5565b600090506128f5565b600e60019054906101000a900460ff16156127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c2906149b1565b60405180910390fd5b61280a826040518060400160405280600c81526020017f47454e4552414c5f4d494e540000000000000000000000000000000000000000815250611f1d565b1561282d57610578601254101561282457600190506128f5565b600090506128f5565b61286c826040518060400160405280600881526020017f4d41505f4d494e54000000000000000000000000000000000000000000000000815250611f1d565b1561288f576101f4601054101561288657600190506128f5565b600090506128f5565b6128ce826040518060400160405280600d81526020017f52455345525645445f4d494e5400000000000000000000000000000000000000815250611f1d565b156128f05760b4600f5410156128e757600190506128f5565b600090506128f5565b600090505b919050565b600081836129089190614c62565b905092915050565b61294f816040518060400160405280600e81526020017f414c4c4f574c4953545f4d494e54000000000000000000000000000000000000815250611f1d565b1561298d5761296a60016012546128fa90919063ffffffff16565b60128190555061298660016011546128fa90919063ffffffff16565b6011819055505b6129cc816040518060400160405280600c81526020017f47454e4552414c5f4d494e540000000000000000000000000000000000000000815250611f1d565b156129ee576129e760016012546128fa90919063ffffffff16565b6012819055505b612a2d816040518060400160405280600881526020017f4d41505f4d494e54000000000000000000000000000000000000000000000000815250611f1d565b15612a4f57612a4860016010546128fa90919063ffffffff16565b6010819055505b612a8e816040518060400160405280600d81526020017f52455345525645445f4d494e5400000000000000000000000000000000000000815250611f1d565b15612ab057612aa96001600f546128fa90919063ffffffff16565b600f819055505b50565b612acd828260405180602001604052806000815250613638565b5050565b6000612adc82612fb3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b686124bb565b73ffffffffffffffffffffffffffffffffffffffff161480612b975750612b9685612b916124bb565b6121a9565b5b80612bdc5750612ba56124bb565b73ffffffffffffffffffffffffffffffffffffffff16612bc484610c00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c89858585600161364a565b612c95600084876124c3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f15576000548214612f1457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f808585856001613650565b5050505050565b60008183612f959190614ce9565b905092915050565b60008183612fab9190614cb8565b905092915050565b612fbb613aaa565b600082905080612fc9612703565b11158015612fd8575060005481105b1561320b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161320957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ed57809250505061323d565b5b60011561320857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461320357809250505061323d565b6130ee565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133516124bb565b8786866040518563ffffffff1660e01b8152600401613373949392919061481a565b602060405180830381600087803b15801561338d57600080fd5b505af19250505080156133be57506040513d601f19601f820116820180604052508101906133bb91906142b0565b60015b613438573d80600081146133ee576040519150601f19603f3d011682016040523d82523d6000602084013e6133f3565b606091505b50600081511415613430576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156134d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613633565b600082905060005b600082146135055780806134ee90614ea7565b915050600a826134fe9190614cb8565b91506134db565b60008167ffffffffffffffff811115613547577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b5090505b6000851461362c576001826135929190614d43565b9150600a856135a19190614f04565b60306135ad9190614c62565b60f81b8183815181106135e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136259190614cb8565b945061357d565b8093505050505b919050565b6136458383836001613656565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61370b600086838761364a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138d557506138d48773ffffffffffffffffffffffffffffffffffffffff16613308565b5b1561399b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394a600088848060010195508861332b565b613980576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138db57826000541461399657600080fd5b613a07565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561399c575b816000819055505050613a1d6000868387613650565b5050505050565b828054613a3090614e44565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57805160ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578251825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b1884614ad6565b614ab1565b90508083825260208201905082856020860282011115613b3c57600080fd5b60005b85811015613b6c5781613b528882613dbc565b845260208401935060208301925050600181019050613b3f565b5050509392505050565b6000613b89613b8484614b02565b614ab1565b90508083825260208201905082856020860282011115613ba857600080fd5b60005b85811015613bd85781613bbe8882613eb8565b845260208401935060208301925050600181019050613bab565b5050509392505050565b6000613bf5613bf084614b2e565b614ab1565b90508083825260208201905082856020860282011115613c1457600080fd5b60005b85811015613c5e57813567ffffffffffffffff811115613c3657600080fd5b808601613c438982613f21565b85526020850194506020840193505050600181019050613c17565b5050509392505050565b6000613c7b613c7684614b5a565b614ab1565b90508083825260208201905082856020860282011115613c9a57600080fd5b60005b85811015613cca5781613cb08882613f4b565b845260208401935060208301925050600181019050613c9d565b5050509392505050565b6000613ce7613ce284614b86565b614ab1565b90508083825260208201905082856020860282011115613d0657600080fd5b60005b85811015613d365781613d1c8882613f60565b845260208401935060208301925050600181019050613d09565b5050509392505050565b6000613d53613d4e84614bb2565b614ab1565b905082815260208101848484011115613d6b57600080fd5b613d76848285614e02565b509392505050565b6000613d91613d8c84614be3565b614ab1565b905082815260208101848484011115613da957600080fd5b613db4848285614e02565b509392505050565b600081359050613dcb8161531e565b92915050565b600082601f830112613de257600080fd5b8135613df2848260208601613b0a565b91505092915050565b600082601f830112613e0c57600080fd5b8135613e1c848260208601613b76565b91505092915050565b600082601f830112613e3657600080fd5b8135613e46848260208601613be2565b91505092915050565b600082601f830112613e6057600080fd5b8135613e70848260208601613c68565b91505092915050565b600082601f830112613e8a57600080fd5b8135613e9a848260208601613cd4565b91505092915050565b600081359050613eb281615335565b92915050565b600081359050613ec78161534c565b92915050565b600081359050613edc81615363565b92915050565b600081519050613ef181615363565b92915050565b600082601f830112613f0857600080fd5b8135613f18848260208601613d40565b91505092915050565b600082601f830112613f3257600080fd5b8135613f42848260208601613d7e565b91505092915050565b600081359050613f5a8161537a565b92915050565b600081359050613f6f81615391565b92915050565b600060208284031215613f8757600080fd5b6000613f9584828501613dbc565b91505092915050565b60008060408385031215613fb157600080fd5b6000613fbf85828601613dbc565b9250506020613fd085828601613dbc565b9150509250929050565b600080600060608486031215613fef57600080fd5b6000613ffd86828701613dbc565b935050602061400e86828701613dbc565b925050604061401f86828701613f4b565b9150509250925092565b6000806000806080858703121561403f57600080fd5b600061404d87828801613dbc565b945050602061405e87828801613dbc565b935050604061406f87828801613f4b565b925050606085013567ffffffffffffffff81111561408c57600080fd5b61409887828801613ef7565b91505092959194509250565b600080604083850312156140b757600080fd5b60006140c585828601613dbc565b92505060206140d685828601613ea3565b9150509250929050565b600080604083850312156140f357600080fd5b600061410185828601613dbc565b925050602061411285828601613f4b565b9150509250929050565b60006020828403121561412e57600080fd5b600082013567ffffffffffffffff81111561414857600080fd5b61415484828501613dd1565b91505092915050565b60008060008060008060c0878903121561417657600080fd5b600087013567ffffffffffffffff81111561419057600080fd5b61419c89828a01613e4f565b965050602087013567ffffffffffffffff8111156141b957600080fd5b6141c589828a01613e25565b95505060406141d689828a01613f4b565b945050606087013567ffffffffffffffff8111156141f357600080fd5b6141ff89828a01613e79565b935050608087013567ffffffffffffffff81111561421c57600080fd5b61422889828a01613dfb565b92505060a087013567ffffffffffffffff81111561424557600080fd5b61425189828a01613dfb565b9150509295509295509295565b60006020828403121561427057600080fd5b600061427e84828501613ea3565b91505092915050565b60006020828403121561429957600080fd5b60006142a784828501613ecd565b91505092915050565b6000602082840312156142c257600080fd5b60006142d084828501613ee2565b91505092915050565b6000602082840312156142eb57600080fd5b600082013567ffffffffffffffff81111561430557600080fd5b61431184828501613f21565b91505092915050565b6000806040838503121561432d57600080fd5b600083013567ffffffffffffffff81111561434757600080fd5b61435385828601613f21565b925050602083013567ffffffffffffffff81111561437057600080fd5b61437c85828601613f21565b9150509250929050565b60006020828403121561439857600080fd5b60006143a684828501613f4b565b91505092915050565b600080600080600060a086880312156143c757600080fd5b60006143d588828901613f4b565b955050602086013567ffffffffffffffff8111156143f257600080fd5b6143fe88828901613f21565b945050604061440f88828901613f60565b935050606061442088828901613eb8565b925050608061443188828901613eb8565b9150509295509295909350565b6000806040838503121561445157600080fd5b600061445f85828601613f4b565b925050602061447085828601613f4b565b9150509250929050565b61448381614d77565b82525050565b61449281614d89565b82525050565b6144a181614d95565b82525050565b6144b86144b382614d95565b614ef0565b82525050565b60006144c982614c14565b6144d38185614c2a565b93506144e3818560208601614e11565b6144ec81614ff1565b840191505092915050565b600061450282614c14565b61450c8185614c3b565b935061451c818560208601614e11565b80840191505092915050565b600061453382614c1f565b61453d8185614c46565b935061454d818560208601614e11565b61455681614ff1565b840191505092915050565b600061456c82614c1f565b6145768185614c57565b9350614586818560208601614e11565b80840191505092915050565b600061459f603683614c46565b91506145aa82615002565b604082019050919050565b60006145c2602c83614c46565b91506145cd82615051565b604082019050919050565b60006145e5602983614c46565b91506145f0826150a0565b604082019050919050565b6000614608602683614c46565b9150614613826150ef565b604082019050919050565b600061462b602183614c46565b91506146368261513e565b604082019050919050565b600061464e602683614c46565b91506146598261518d565b604082019050919050565b6000614671600583614c57565b915061467c826151dc565b600582019050919050565b6000614694602083614c46565b915061469f82615205565b602082019050919050565b60006146b7602f83614c46565b91506146c28261522e565b604082019050919050565b60006146da601983614c46565b91506146e58261527d565b602082019050919050565b60006146fd600083614c3b565b9150614708826152a6565b600082019050919050565b6000614720604283614c46565b915061472b826152a9565b606082019050919050565b61473f81614deb565b82525050565b61475661475182614deb565b614efa565b82525050565b61476581614df5565b82525050565b600061477782856144f7565b915061478382846144a7565b6020820191508190509392505050565b600061479f8285614561565b91506147ab8284614561565b91506147b682614664565b91508190509392505050565b60006147cd826146f0565b9150819050919050565b60006147e38285614745565b6020820191506147f38284614561565b91508190509392505050565b6000602082019050614814600083018461447a565b92915050565b600060808201905061482f600083018761447a565b61483c602083018661447a565b6148496040830185614736565b818103606083015261485b81846144be565b905095945050505050565b600060408201905061487b600083018561447a565b6148886020830184614736565b9392505050565b60006020820190506148a46000830184614489565b92915050565b60006080820190506148bf6000830187614498565b6148cc602083018661475c565b6148d96040830185614498565b6148e66060830184614498565b95945050505050565b600060208201905081810360008301526149098184614528565b905092915050565b6000602082019050818103600083015261492a81614592565b9050919050565b6000602082019050818103600083015261494a816145b5565b9050919050565b6000602082019050818103600083015261496a816145d8565b9050919050565b6000602082019050818103600083015261498a816145fb565b9050919050565b600060208201905081810360008301526149aa8161461e565b9050919050565b600060208201905081810360008301526149ca81614641565b9050919050565b600060208201905081810360008301526149ea81614687565b9050919050565b60006020820190508181036000830152614a0a816146aa565b9050919050565b60006020820190508181036000830152614a2a816146cd565b9050919050565b60006020820190508181036000830152614a4a81614713565b9050919050565b6000602082019050614a666000830184614736565b92915050565b6000608082019050614a816000830187614736565b614a8e6020830186614736565b614a9b6040830185614736565b614aa86060830184614736565b95945050505050565b6000614abb614acc565b9050614ac78282614e76565b919050565b6000604051905090565b600067ffffffffffffffff821115614af157614af0614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b1d57614b1c614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b4957614b48614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b7557614b74614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ba157614ba0614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bcd57614bcc614fc2565b5b614bd682614ff1565b9050602081019050919050565b600067ffffffffffffffff821115614bfe57614bfd614fc2565b5b614c0782614ff1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c6d82614deb565b9150614c7883614deb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cad57614cac614f35565b5b828201905092915050565b6000614cc382614deb565b9150614cce83614deb565b925082614cde57614cdd614f64565b5b828204905092915050565b6000614cf482614deb565b9150614cff83614deb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3857614d37614f35565b5b828202905092915050565b6000614d4e82614deb565b9150614d5983614deb565b925082821015614d6c57614d6b614f35565b5b828203905092915050565b6000614d8282614dcb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614e2f578082015181840152602081019050614e14565b83811115614e3e576000848401525b50505050565b60006002820490506001821680614e5c57607f821691505b60208210811415614e7057614e6f614f93565b5b50919050565b614e7f82614ff1565b810181811067ffffffffffffffff82111715614e9e57614e9d614fc2565b5b80604052505050565b6000614eb282614deb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ee557614ee4614f35565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000614f0f82614deb565b9150614f1a83614deb565b925082614f2a57614f29614f64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6179206f6e6c79206d696e74207769746820617070726f766564207369676e60008201527f61747572652066726f6d20676174656b65657065722e00000000000000000000602082015250565b7f4120746f6b656e207769746820746869732069642068617320616c726561647960008201527f206265656e206d696e7465640000000000000000000000000000000000000000602082015250565b7f4f70657261746f7220617070726f76616c73206d75737420626520677265617460008201527f6572207468616e20300000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f70657261746f72206d75737420626520617070726f76656420746f2072657360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920616c6c6f776c6973746564207061727469636970616e7473206d6160008201527f79206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746820776173207061696400000000000000600082015250565b50565b7f546865206d6178696d756d20616d6f756e74206f66207468617420747970652060008201527f6f6620466c69636b79206861766520616c7265616479206265656e206d696e7460208201527f6564000000000000000000000000000000000000000000000000000000000000604082015250565b61532781614d77565b811461533257600080fd5b50565b61533e81614d89565b811461534957600080fd5b50565b61535581614d95565b811461536057600080fd5b50565b61536c81614d9f565b811461537757600080fd5b50565b61538381614deb565b811461538e57600080fd5b50565b61539a81614df5565b81146153a557600080fd5b5056fea26469706673582212206b8ba20a4d46fa548cdc11c41c66233bed5c3d2ce86e4fa6c71e40d90ebc38c064736f6c63430008040033697066733a2f2f516d615658736751416d7968474d417170517870715a386d434d3476696859367a4d787435537942446d726365532f
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636a7d943c1161014f578063b88d4fde116100c1578063e01865521161007a578063e018655214610952578063e0a808531461098f578063e985e9c5146109b8578063f2fde38b146109f5578063f4887f1514610a1e578063f5ea3dc914610a5b57610272565b8063b88d4fde14610830578063ba91924a14610859578063bd3e19d414610882578063bed34bba146108ad578063c38f7617146108ea578063c87b56dd1461091557610272565b80638da5cb5b116101135780638da5cb5b1461072f57806394cc41401461075a57806395d89b4114610785578063a22cb465146107b0578063a5373899146107d9578063af4248b21461080757610272565b80636a7d943c1461065a5780636c0360eb1461068557806370a08231146106b0578063714c5398146106ed578063715018a61461071857610272565b806323b872dd116101e85780633d141aa3116101ac5780633d141aa31461054a57806342842e0e14610575578063518302271461059e57806355f804b3146105c95780635e2aa3e6146105f25780636352211e1461061d57610272565b806323b872dd1461045f57806329c3b843146104885780632a55205a146104b857806337682d87146104f65780633ccfd60b1461053357610272565b80630d84d1ce1161023a5780630d84d1ce1461037057806314aafdc91461039b57806318160ddd146103c457806318ac827e146103ef5780631a4a7c61146104185780631e8081e41461044357610272565b806301ffc9a71461027757806306fdde03146102b457806307687d91146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190614287565b610a86565b6040516102ab919061488f565b60405180910390f35b3480156102c057600080fd5b506102c9610b68565b6040516102d691906148ef565b60405180910390f35b3480156102eb57600080fd5b506102f4610bfa565b6040516103019190614a51565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190614386565b610c00565b60405161033e91906147ff565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906140e0565b610c7c565b005b34801561037c57600080fd5b50610385610d87565b6040516103929190614a51565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061411c565b610d8d565b005b3480156103d057600080fd5b506103d9610fb8565b6040516103e69190614a51565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061425e565b610fcf565b005b34801561042457600080fd5b5061042d611068565b60405161043a9190614a51565b60405180910390f35b61045d6004803603810190610458919061415d565b6110b6565b005b34801561046b57600080fd5b5061048660048036038101906104819190613fda565b611419565b005b6104a2600480360381019061049d91906143af565b611429565b6040516104af9190614a51565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061443e565b6115dc565b6040516104ed929190614866565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906143af565b611630565b60405161052a919061488f565b60405180910390f35b34801561053f57600080fd5b5061054861169a565b005b34801561055657600080fd5b5061055f611796565b60405161056c919061488f565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613fda565b6117a9565b005b3480156105aa57600080fd5b506105b36117c9565b6040516105c0919061488f565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906142d9565b6117dc565b005b3480156105fe57600080fd5b50610607611872565b604051610614919061488f565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190614386565b611889565b60405161065191906147ff565b60405180910390f35b34801561066657600080fd5b5061066f61189f565b60405161067c91906147ff565b60405180910390f35b34801561069157600080fd5b5061069a6118c9565b6040516106a791906148ef565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613f75565b611957565b6040516106e49190614a51565b60405180910390f35b3480156106f957600080fd5b50610702611a27565b60405161070f91906148ef565b60405180910390f35b34801561072457600080fd5b5061072d611ab9565b005b34801561073b57600080fd5b50610744611b41565b60405161075191906147ff565b60405180910390f35b34801561076657600080fd5b5061076f611b6b565b60405161077c919061488f565b60405180910390f35b34801561079157600080fd5b5061079a611b82565b6040516107a791906148ef565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906140a4565b611c14565b005b3480156107e557600080fd5b506107ee611cc6565b6040516107fe9493929190614a6c565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613f75565b611ce6565b005b34801561083c57600080fd5b5061085760048036038101906108529190614029565b611da6565b005b34801561086557600080fd5b50610880600480360381019061087b9190613f75565b611e22565b005b34801561088e57600080fd5b50610897611ee8565b6040516108a49190614a51565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061431a565b611f1d565b6040516108e1919061488f565b60405180910390f35b3480156108f657600080fd5b506108ff611f38565b60405161090c9190614a51565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614386565b611f3e565b60405161094991906148ef565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906143af565b61201e565b60405161098691906147ff565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b1919061425e565b612110565b005b3480156109c457600080fd5b506109df60048036038101906109da9190613f9e565b6121a9565b6040516109ec919061488f565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613f75565b61223d565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613f75565b612335565b604051610a52919061488f565b60405180910390f35b348015610a6757600080fd5b50610a706123fd565b604051610a7d9190614a51565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b6082612403565b5b9050919050565b606060028054610b7790614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390614e44565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b60115481565b6000610c0b8261246d565b610c41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8782611889565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0e6124bb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d405750610d3e81610d396124bb565b6121a9565b155b15610d77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828383836124c3565b505050565b60125481565b6000600a6000610d9b6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614951565b60405180910390fd5b60005b8151811015610fb457610e73610e2d6124bb565b838381518110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516121a9565b610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614991565b60405180910390fd5b610efd828281518110610eee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000612575565b610f576001600a6000610f0e6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126ed90919063ffffffff16565b600a6000610f636124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610fac90614ea7565b915050610e19565b5050565b6000610fc2612703565b6001546000540303905090565b610fd76124bb565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611b41565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906149d1565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600a60006110766124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600a84111580156110c75750600084115b6110d057600080fd5b836110d9611ee8565b6110e39190614ce9565b341015611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90614a11565b60405180910390fd5b60008054905060005b858110156113fe576000888281518110611171577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008883815181106111b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600c600083815260200190815260200160002060009054906101000a900460ff1615611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890614931565b60405180910390fd5b61122a81612708565b611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614a31565b60405180910390fd5b60008784815181106112a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008785815181106112e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600087868151811061132e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506113458585858585611630565b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614911565b60405180910390fd5b84600b6000898152602001908152602001600020819055506001600c600087815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dc6001886128fa90919063ffffffff16565b506113e684612910565b505050505080806113f690614ea7565b91505061112e565b5061141061140a6124bb565b86612ab3565b50505050505050565b611424838383612ad1565b505050565b6000600c600087815260200190815260200160002060009054906101000a900460ff161561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614931565b60405180910390fd5b6114998686868686611630565b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614911565b60405180910390fd5b6114e185612708565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790614a31565b60405180910390fd5b611528611ee8565b34101561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190614a11565b60405180910390fd5b60008054905086600b6000838152602001908152602001600020819055506001600c600089815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c66115bf6124bb565b6001612ab3565b6115cf86612910565b8091505095945050505050565b60008060006101f4905060006115fd6115f58684612f87565b612710612f9d565b9050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16819350935050509250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611678878787878761201e565b73ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6116a26124bb565b73ffffffffffffffffffffffffffffffffffffffff166116c0611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906149d1565b60405180910390fd5b6000611720611b41565b73ffffffffffffffffffffffffffffffffffffffff1647604051611743906147c2565b60006040518083038185875af1925050503d8060008114611780576040519150601f19603f3d011682016040523d82523d6000602084013e611785565b606091505b505090508061179357600080fd5b50565b600e60019054906101000a900460ff1681565b6117c483838360405180602001604052806000815250611da6565b505050565b600e60009054906101000a900460ff1681565b6117e46124bb565b73ffffffffffffffffffffffffffffffffffffffff16611802611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f906149d1565b60405180910390fd5b80600d908051906020019061186e929190613a24565b5050565b6000600e60019054906101000a900460ff16905090565b600061189482612fb3565b600001519050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d80546118d690614e44565b80601f016020809104026020016040519081016040528092919081815260200182805461190290614e44565b801561194f5780601f106119245761010080835404028352916020019161194f565b820191906000526020600020905b81548152906001019060200180831161193257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600d8054611a3690614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6290614e44565b8015611aaf5780601f10611a8457610100808354040283529160200191611aaf565b820191906000526020600020905b815481529060010190602001808311611a9257829003601f168201915b5050505050905090565b611ac16124bb565b73ffffffffffffffffffffffffffffffffffffffff16611adf611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906149d1565b60405180910390fd5b611b3f6000613242565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900460ff16905090565b606060038054611b9190614e44565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbd90614e44565b8015611c0a5780601f10611bdf57610100808354040283529160200191611c0a565b820191906000526020600020905b815481529060010190602001808311611bed57829003601f168201915b5050505050905090565b611c1e8282612575565b611c786001600a6000611c2f6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128fa90919063ffffffff16565b600a6000611c846124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600080600080600f54601054601154601254935093509350935090919293565b611cee6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611d0c611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906149d1565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611db1848484612ad1565b611dd08373ffffffffffffffffffffffffffffffffffffffff16613308565b8015611de55750611de38484848461332b565b155b15611e1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611e2a6124bb565b73ffffffffffffffffffffffffffffffffffffffff16611e48611b41565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906149d1565b60405180910390fd5b600060105414611ead57600080fd5b6000600f5414611ebc57600080fd5b60b4600f819055506101f4601081905550611ee58160b46101f4611ee09190614c62565b612ab3565b50565b6000600e60019054906101000a900460ff1615611f0e5766f8b0a10e4700009050611f1a565b67010a741a4627800090505b90565b60008180519060200120838051906020012014905092915050565b600f5481565b6060611f498261246d565b611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906149f1565b60405180910390fd5b6000611f92611a27565b90506000600b6000858152602001908152602001600020549050600e60009054906101000a900460ff1615612013576000825111611fdf576040518060200160405280600081525061200a565b81611fe98261348b565b604051602001611ffa929190614793565b6040516020818303038152906040525b92505050612019565b81925050505b919050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090506000878760405160200161206e9291906147d7565b6040516020818303038152906040528051906020012090506000828260405160200161209b92919061476b565b604051602081830303815290604052805190602001209050600181888888604051600081526020016040526040516120d694939291906148aa565b6020604051602081039080840390855afa1580156120f8573d6000803e3d6000fd5b50505060206040510351935050505095945050505050565b6121186124bb565b73ffffffffffffffffffffffffffffffffffffffff16612136611b41565b73ffffffffffffffffffffffffffffffffffffffff161461218c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612183906149d1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122456124bb565b73ffffffffffffffffffffffffffffffffffffffff16612263611b41565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b0906149d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614971565b60405180910390fd5b61233281613242565b50565b600061233f6124bb565b73ffffffffffffffffffffffffffffffffffffffff1661235d611b41565b73ffffffffffffffffffffffffffffffffffffffff16146123b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123aa906149d1565b60405180910390fd5b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612478612703565b11158015612487575060005482105b80156124b4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61257d6124bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125ef6124bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661269c6124bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126e1919061488f565b60405180910390a35050565b600081836126fb9190614d43565b905092915050565b600090565b6000612749826040518060400160405280600e81526020017f414c4c4f574c4953545f4d494e54000000000000000000000000000000000000815250611f1d565b1561277b57610d936011541080156127645750610578601254105b1561277257600190506128f5565b600090506128f5565b600e60019054906101000a900460ff16156127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c2906149b1565b60405180910390fd5b61280a826040518060400160405280600c81526020017f47454e4552414c5f4d494e540000000000000000000000000000000000000000815250611f1d565b1561282d57610578601254101561282457600190506128f5565b600090506128f5565b61286c826040518060400160405280600881526020017f4d41505f4d494e54000000000000000000000000000000000000000000000000815250611f1d565b1561288f576101f4601054101561288657600190506128f5565b600090506128f5565b6128ce826040518060400160405280600d81526020017f52455345525645445f4d494e5400000000000000000000000000000000000000815250611f1d565b156128f05760b4600f5410156128e757600190506128f5565b600090506128f5565b600090505b919050565b600081836129089190614c62565b905092915050565b61294f816040518060400160405280600e81526020017f414c4c4f574c4953545f4d494e54000000000000000000000000000000000000815250611f1d565b1561298d5761296a60016012546128fa90919063ffffffff16565b60128190555061298660016011546128fa90919063ffffffff16565b6011819055505b6129cc816040518060400160405280600c81526020017f47454e4552414c5f4d494e540000000000000000000000000000000000000000815250611f1d565b156129ee576129e760016012546128fa90919063ffffffff16565b6012819055505b612a2d816040518060400160405280600881526020017f4d41505f4d494e54000000000000000000000000000000000000000000000000815250611f1d565b15612a4f57612a4860016010546128fa90919063ffffffff16565b6010819055505b612a8e816040518060400160405280600d81526020017f52455345525645445f4d494e5400000000000000000000000000000000000000815250611f1d565b15612ab057612aa96001600f546128fa90919063ffffffff16565b600f819055505b50565b612acd828260405180602001604052806000815250613638565b5050565b6000612adc82612fb3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b686124bb565b73ffffffffffffffffffffffffffffffffffffffff161480612b975750612b9685612b916124bb565b6121a9565b5b80612bdc5750612ba56124bb565b73ffffffffffffffffffffffffffffffffffffffff16612bc484610c00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c89858585600161364a565b612c95600084876124c3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f15576000548214612f1457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f808585856001613650565b5050505050565b60008183612f959190614ce9565b905092915050565b60008183612fab9190614cb8565b905092915050565b612fbb613aaa565b600082905080612fc9612703565b11158015612fd8575060005481105b1561320b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161320957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ed57809250505061323d565b5b60011561320857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461320357809250505061323d565b6130ee565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133516124bb565b8786866040518563ffffffff1660e01b8152600401613373949392919061481a565b602060405180830381600087803b15801561338d57600080fd5b505af19250505080156133be57506040513d601f19601f820116820180604052508101906133bb91906142b0565b60015b613438573d80600081146133ee576040519150601f19603f3d011682016040523d82523d6000602084013e6133f3565b606091505b50600081511415613430576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156134d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613633565b600082905060005b600082146135055780806134ee90614ea7565b915050600a826134fe9190614cb8565b91506134db565b60008167ffffffffffffffff811115613547577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b5090505b6000851461362c576001826135929190614d43565b9150600a856135a19190614f04565b60306135ad9190614c62565b60f81b8183815181106135e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136259190614cb8565b945061357d565b8093505050505b919050565b6136458383836001613656565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156136fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61370b600086838761364a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138d557506138d48773ffffffffffffffffffffffffffffffffffffffff16613308565b5b1561399b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394a600088848060010195508861332b565b613980576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138db57826000541461399657600080fd5b613a07565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561399c575b816000819055505050613a1d6000868387613650565b5050505050565b828054613a3090614e44565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57805160ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578251825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b1884614ad6565b614ab1565b90508083825260208201905082856020860282011115613b3c57600080fd5b60005b85811015613b6c5781613b528882613dbc565b845260208401935060208301925050600181019050613b3f565b5050509392505050565b6000613b89613b8484614b02565b614ab1565b90508083825260208201905082856020860282011115613ba857600080fd5b60005b85811015613bd85781613bbe8882613eb8565b845260208401935060208301925050600181019050613bab565b5050509392505050565b6000613bf5613bf084614b2e565b614ab1565b90508083825260208201905082856020860282011115613c1457600080fd5b60005b85811015613c5e57813567ffffffffffffffff811115613c3657600080fd5b808601613c438982613f21565b85526020850194506020840193505050600181019050613c17565b5050509392505050565b6000613c7b613c7684614b5a565b614ab1565b90508083825260208201905082856020860282011115613c9a57600080fd5b60005b85811015613cca5781613cb08882613f4b565b845260208401935060208301925050600181019050613c9d565b5050509392505050565b6000613ce7613ce284614b86565b614ab1565b90508083825260208201905082856020860282011115613d0657600080fd5b60005b85811015613d365781613d1c8882613f60565b845260208401935060208301925050600181019050613d09565b5050509392505050565b6000613d53613d4e84614bb2565b614ab1565b905082815260208101848484011115613d6b57600080fd5b613d76848285614e02565b509392505050565b6000613d91613d8c84614be3565b614ab1565b905082815260208101848484011115613da957600080fd5b613db4848285614e02565b509392505050565b600081359050613dcb8161531e565b92915050565b600082601f830112613de257600080fd5b8135613df2848260208601613b0a565b91505092915050565b600082601f830112613e0c57600080fd5b8135613e1c848260208601613b76565b91505092915050565b600082601f830112613e3657600080fd5b8135613e46848260208601613be2565b91505092915050565b600082601f830112613e6057600080fd5b8135613e70848260208601613c68565b91505092915050565b600082601f830112613e8a57600080fd5b8135613e9a848260208601613cd4565b91505092915050565b600081359050613eb281615335565b92915050565b600081359050613ec78161534c565b92915050565b600081359050613edc81615363565b92915050565b600081519050613ef181615363565b92915050565b600082601f830112613f0857600080fd5b8135613f18848260208601613d40565b91505092915050565b600082601f830112613f3257600080fd5b8135613f42848260208601613d7e565b91505092915050565b600081359050613f5a8161537a565b92915050565b600081359050613f6f81615391565b92915050565b600060208284031215613f8757600080fd5b6000613f9584828501613dbc565b91505092915050565b60008060408385031215613fb157600080fd5b6000613fbf85828601613dbc565b9250506020613fd085828601613dbc565b9150509250929050565b600080600060608486031215613fef57600080fd5b6000613ffd86828701613dbc565b935050602061400e86828701613dbc565b925050604061401f86828701613f4b565b9150509250925092565b6000806000806080858703121561403f57600080fd5b600061404d87828801613dbc565b945050602061405e87828801613dbc565b935050604061406f87828801613f4b565b925050606085013567ffffffffffffffff81111561408c57600080fd5b61409887828801613ef7565b91505092959194509250565b600080604083850312156140b757600080fd5b60006140c585828601613dbc565b92505060206140d685828601613ea3565b9150509250929050565b600080604083850312156140f357600080fd5b600061410185828601613dbc565b925050602061411285828601613f4b565b9150509250929050565b60006020828403121561412e57600080fd5b600082013567ffffffffffffffff81111561414857600080fd5b61415484828501613dd1565b91505092915050565b60008060008060008060c0878903121561417657600080fd5b600087013567ffffffffffffffff81111561419057600080fd5b61419c89828a01613e4f565b965050602087013567ffffffffffffffff8111156141b957600080fd5b6141c589828a01613e25565b95505060406141d689828a01613f4b565b945050606087013567ffffffffffffffff8111156141f357600080fd5b6141ff89828a01613e79565b935050608087013567ffffffffffffffff81111561421c57600080fd5b61422889828a01613dfb565b92505060a087013567ffffffffffffffff81111561424557600080fd5b61425189828a01613dfb565b9150509295509295509295565b60006020828403121561427057600080fd5b600061427e84828501613ea3565b91505092915050565b60006020828403121561429957600080fd5b60006142a784828501613ecd565b91505092915050565b6000602082840312156142c257600080fd5b60006142d084828501613ee2565b91505092915050565b6000602082840312156142eb57600080fd5b600082013567ffffffffffffffff81111561430557600080fd5b61431184828501613f21565b91505092915050565b6000806040838503121561432d57600080fd5b600083013567ffffffffffffffff81111561434757600080fd5b61435385828601613f21565b925050602083013567ffffffffffffffff81111561437057600080fd5b61437c85828601613f21565b9150509250929050565b60006020828403121561439857600080fd5b60006143a684828501613f4b565b91505092915050565b600080600080600060a086880312156143c757600080fd5b60006143d588828901613f4b565b955050602086013567ffffffffffffffff8111156143f257600080fd5b6143fe88828901613f21565b945050604061440f88828901613f60565b935050606061442088828901613eb8565b925050608061443188828901613eb8565b9150509295509295909350565b6000806040838503121561445157600080fd5b600061445f85828601613f4b565b925050602061447085828601613f4b565b9150509250929050565b61448381614d77565b82525050565b61449281614d89565b82525050565b6144a181614d95565b82525050565b6144b86144b382614d95565b614ef0565b82525050565b60006144c982614c14565b6144d38185614c2a565b93506144e3818560208601614e11565b6144ec81614ff1565b840191505092915050565b600061450282614c14565b61450c8185614c3b565b935061451c818560208601614e11565b80840191505092915050565b600061453382614c1f565b61453d8185614c46565b935061454d818560208601614e11565b61455681614ff1565b840191505092915050565b600061456c82614c1f565b6145768185614c57565b9350614586818560208601614e11565b80840191505092915050565b600061459f603683614c46565b91506145aa82615002565b604082019050919050565b60006145c2602c83614c46565b91506145cd82615051565b604082019050919050565b60006145e5602983614c46565b91506145f0826150a0565b604082019050919050565b6000614608602683614c46565b9150614613826150ef565b604082019050919050565b600061462b602183614c46565b91506146368261513e565b604082019050919050565b600061464e602683614c46565b91506146598261518d565b604082019050919050565b6000614671600583614c57565b915061467c826151dc565b600582019050919050565b6000614694602083614c46565b915061469f82615205565b602082019050919050565b60006146b7602f83614c46565b91506146c28261522e565b604082019050919050565b60006146da601983614c46565b91506146e58261527d565b602082019050919050565b60006146fd600083614c3b565b9150614708826152a6565b600082019050919050565b6000614720604283614c46565b915061472b826152a9565b606082019050919050565b61473f81614deb565b82525050565b61475661475182614deb565b614efa565b82525050565b61476581614df5565b82525050565b600061477782856144f7565b915061478382846144a7565b6020820191508190509392505050565b600061479f8285614561565b91506147ab8284614561565b91506147b682614664565b91508190509392505050565b60006147cd826146f0565b9150819050919050565b60006147e38285614745565b6020820191506147f38284614561565b91508190509392505050565b6000602082019050614814600083018461447a565b92915050565b600060808201905061482f600083018761447a565b61483c602083018661447a565b6148496040830185614736565b818103606083015261485b81846144be565b905095945050505050565b600060408201905061487b600083018561447a565b6148886020830184614736565b9392505050565b60006020820190506148a46000830184614489565b92915050565b60006080820190506148bf6000830187614498565b6148cc602083018661475c565b6148d96040830185614498565b6148e66060830184614498565b95945050505050565b600060208201905081810360008301526149098184614528565b905092915050565b6000602082019050818103600083015261492a81614592565b9050919050565b6000602082019050818103600083015261494a816145b5565b9050919050565b6000602082019050818103600083015261496a816145d8565b9050919050565b6000602082019050818103600083015261498a816145fb565b9050919050565b600060208201905081810360008301526149aa8161461e565b9050919050565b600060208201905081810360008301526149ca81614641565b9050919050565b600060208201905081810360008301526149ea81614687565b9050919050565b60006020820190508181036000830152614a0a816146aa565b9050919050565b60006020820190508181036000830152614a2a816146cd565b9050919050565b60006020820190508181036000830152614a4a81614713565b9050919050565b6000602082019050614a666000830184614736565b92915050565b6000608082019050614a816000830187614736565b614a8e6020830186614736565b614a9b6040830185614736565b614aa86060830184614736565b95945050505050565b6000614abb614acc565b9050614ac78282614e76565b919050565b6000604051905090565b600067ffffffffffffffff821115614af157614af0614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b1d57614b1c614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b4957614b48614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b7557614b74614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ba157614ba0614fc2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bcd57614bcc614fc2565b5b614bd682614ff1565b9050602081019050919050565b600067ffffffffffffffff821115614bfe57614bfd614fc2565b5b614c0782614ff1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c6d82614deb565b9150614c7883614deb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cad57614cac614f35565b5b828201905092915050565b6000614cc382614deb565b9150614cce83614deb565b925082614cde57614cdd614f64565b5b828204905092915050565b6000614cf482614deb565b9150614cff83614deb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3857614d37614f35565b5b828202905092915050565b6000614d4e82614deb565b9150614d5983614deb565b925082821015614d6c57614d6b614f35565b5b828203905092915050565b6000614d8282614dcb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614e2f578082015181840152602081019050614e14565b83811115614e3e576000848401525b50505050565b60006002820490506001821680614e5c57607f821691505b60208210811415614e7057614e6f614f93565b5b50919050565b614e7f82614ff1565b810181811067ffffffffffffffff82111715614e9e57614e9d614fc2565b5b80604052505050565b6000614eb282614deb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ee557614ee4614f35565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000614f0f82614deb565b9150614f1a83614deb565b925082614f2a57614f29614f64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6179206f6e6c79206d696e74207769746820617070726f766564207369676e60008201527f61747572652066726f6d20676174656b65657065722e00000000000000000000602082015250565b7f4120746f6b656e207769746820746869732069642068617320616c726561647960008201527f206265656e206d696e7465640000000000000000000000000000000000000000602082015250565b7f4f70657261746f7220617070726f76616c73206d75737420626520677265617460008201527f6572207468616e20300000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f70657261746f72206d75737420626520617070726f76656420746f2072657360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920616c6c6f776c6973746564207061727469636970616e7473206d6160008201527f79206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746820776173207061696400000000000000600082015250565b50565b7f546865206d6178696d756d20616d6f756e74206f66207468617420747970652060008201527f6f6620466c69636b79206861766520616c7265616479206265656e206d696e7460208201527f6564000000000000000000000000000000000000000000000000000000000000604082015250565b61532781614d77565b811461533257600080fd5b50565b61533e81614d89565b811461534957600080fd5b50565b61535581614d95565b811461536057600080fd5b50565b61536c81614d9f565b811461537757600080fd5b50565b61538381614deb565b811461538e57600080fd5b50565b61539a81614df5565b81146153a557600080fd5b5056fea26469706673582212206b8ba20a4d46fa548cdc11c41c66233bed5c3d2ce86e4fa6c71e40d90ebc38c064736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.