ERC-721
Overview
Max Total Supply
6,428 TA
Holders
405
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 TALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TattooArtists
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)
// // /$$$$$$$$ /$$ /$$ // |__ $$__/ | $$ | $$ // | $$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ // | $$ |____ $$|_ $$_/|_ $$_/ /$$__ $$ /$$__ $$ // | $$ /$$$$$$$ | $$ | $$ | $$ \ $$| $$ \ $$ // | $$ /$$__ $$ | $$ /$$| $$ /$$| $$ | $$| $$ | $$ // | $$| $$$$$$$ | $$$$/| $$$$/| $$$$$$/| $$$$$$/ // |__/ \_______/ \___/ \___/ \______/ \______/ // // // // /$$$$$$ /$$ /$$ /$$ // /$$__ $$ | $$ |__/ | $$ // | $$ \ $$ /$$$$$$ /$$$$$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ // | $$$$$$$$ /$$__ $$|_ $$_/ | $$ /$$_____/|_ $$_/ /$$_____/ // | $$__ $$| $$ \__/ | $$ | $$| $$$$$$ | $$ | $$$$$$ // | $$ | $$| $$ | $$ /$$| $$ \____ $$ | $$ /$$\____ $$ // | $$ | $$| $$ | $$$$/| $$ /$$$$$$$/ | $$$$//$$$$$$$/ // |__/ |__/|__/ \___/ |__/|_______/ \___/ |_______/ // // Author: Olive pragma solidity >=0.8.0 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract TattooArtists is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.027 ether; uint256 public freemint_supply = 6428; uint256 public maxSupply = 6428; uint256 public maxMintAmountPerTx = 20; bool public paused = true; bool public revealed; bool public isSignature = true; constructor(string memory _hiddenMetadataUri) ERC721A("Tattoo Artists", "TA") { setHiddenMetadataUri(_hiddenMetadataUri); } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function mint( uint256 _mintAmount, uint256 _timestamp, bytes memory _signature ) public payable nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); address wallet = _msgSender(); if (isSignature) { address signerOwner = signatureWallet( wallet, _mintAmount, _timestamp, _signature ); require(signerOwner == owner(), "Not authorized to mint"); require(block.timestamp >= _timestamp - 30, "Out of time"); _safeMint(wallet, _mintAmount); } else { _safeMint(wallet, _mintAmount); } } function setSignature(bool _isSignature) public onlyOwner { isSignature = _isSignature; } function signatureWallet( address wallet, uint256 _tokenAmount, uint256 _timestamp, bytes memory _signature ) public pure returns (address) { return ECDSA.recover( keccak256(abi.encode(wallet, _tokenAmount, _timestamp)), _signature ); } function freemint( uint256 _mintAmount, uint256 _timestamp, bytes memory _signature ) public nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( totalSupply() + _mintAmount <= freemint_supply, "Freemint Max supply exceeded!" ); require(!paused, "The contract is paused!"); // require(msg.value >= cost * _mintAmount, "Insufficient funds!"); address wallet = _msgSender(); if (isSignature) { address signerOwner = signatureWallet( wallet, _mintAmount, _timestamp, _signature ); require(signerOwner == owner(), "Not authorized to mint"); require(block.timestamp >= _timestamp - 30, "Out of time"); _safeMint(wallet, _mintAmount); } else { _safeMint(wallet, _mintAmount); } } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setFreemintSupply(uint256 _freemintSupply) public onlyOwner { freemint_supply = _freemintSupply; } function withdrawAll(address _withdrawAddress) public onlyOwner { (bool os, ) = payable(_withdrawAddress).call{ value: address(this).balance }(""); require(os); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return string( abi.encodePacked(_baseURI(), _tokenId.toString(), ".json") ); } else { return hiddenMetadataUri; } } }
// 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// 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/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); }
{ "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":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freemintSupply","type":"uint256"}],"name":"setFreemintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSignature","type":"bool"}],"name":"setSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"signatureWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","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":"address","name":"_withdrawAddress","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052665fec5b60ef8000600c5561191c600d5561191c600e556014600f556001601060006101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055503480156200006357600080fd5b50604051620053593803806200535983398181016040528101906200008991906200044d565b6040518060400160405280600e81526020017f546174746f6f20417274697374730000000000000000000000000000000000008152506040518060400160405280600281526020017f544100000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010d9291906200032b565b508060039080519060200190620001269291906200032b565b50620001376200017f60201b60201c565b60008190555050506200015f620001536200018860201b60201c565b6200019060201b60201c565b600160098190555062000178816200025660201b60201c565b5062000685565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002666200018860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028c6200030160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dc90620004b9565b60405180910390fd5b80600b9080519060200190620002fd9291906200032b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003399062000581565b90600052602060002090601f0160209004810192826200035d5760008555620003a9565b82601f106200037857805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a85782518255916020019190600101906200038b565b5b509050620003b89190620003bc565b5090565b5b80821115620003d7576000816000905550600101620003bd565b5090565b6000620003f2620003ec8462000504565b620004db565b9050828152602081018484840111156200040b57600080fd5b620004188482856200054b565b509392505050565b600082601f8301126200043257600080fd5b815162000444848260208601620003db565b91505092915050565b6000602082840312156200046057600080fd5b600082015167ffffffffffffffff8111156200047b57600080fd5b620004898482850162000420565b91505092915050565b6000620004a16020836200053a565b9150620004ae826200065c565b602082019050919050565b60006020820190508181036000830152620004d48162000492565b9050919050565b6000620004e7620004fa565b9050620004f58282620005b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052257620005216200061c565b5b6200052d826200064b565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056b5780820151818401526020810190506200054e565b838111156200057b576000848401525b50505050565b600060028204905060018216806200059a57607f821691505b60208210811415620005b157620005b0620005ed565b5b50919050565b620005c2826200064b565b810181811067ffffffffffffffff82111715620005e457620005e36200061c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614cc480620006956000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461083a578063efbd73f414610877578063f2320568146108a0578063f2fde38b146108dd578063fa09e630146109065761023b565b8063c87b56dd14610753578063ce4a74f214610790578063cfc86f7b146107bb578063d5abeb01146107e6578063e0a80853146108115761023b565b8063a22cb465116100f2578063a22cb46514610684578063a45ba8e7146106ad578063b071401b146106d8578063b88d4fde14610701578063c195e44e1461072a5761023b565b806370a08231146105af578063715018a6146105ec5780638da5cb5b1461060357806394354fd01461062e57806395d89b41146106595761023b565b8063295871c3116101bc578063518302271161018057806351830227146104ca57806355f804b3146104f55780635c975abb1461051e5780636352211e146105495780636f8b44b0146105865761023b565b8063295871c3146103fd5780633995940e1461042657806342842e0e1461044f57806344a0d68a146104785780634fdd43cb146104a15761023b565b806313faede61161020357806313faede61461032a57806316c38b3c1461035557806318160ddd1461037e5780631df0d2d0146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a857806308dc9f42146102e5578063095ea7b314610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613c88565b61092f565b604051610274919061424f565b60405180910390f35b34801561028957600080fd5b50610292610a11565b60405161029f91906142af565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613d60565b610aa3565b6040516102dc91906141b1565b60405180910390f35b6102ff60048036038101906102fa9190613dc5565b610b1f565b005b34801561030d57600080fd5b5061032860048036038101906103239190613ba8565b610dd3565b005b34801561033657600080fd5b5061033f610ede565b60405161034c91906144b1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613c5f565b610ee4565b005b34801561038a57600080fd5b50610393610f7d565b6040516103a091906144b1565b60405180910390f35b3480156103b557600080fd5b506103be610f94565b6040516103cb91906144b1565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613aa2565b610f9a565b005b34801561040957600080fd5b50610424600480360381019061041f9190613d60565b610faa565b005b34801561043257600080fd5b5061044d60048036038101906104489190613dc5565b611030565b005b34801561045b57600080fd5b5061047660048036038101906104719190613aa2565b611294565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d60565b6112b4565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d1f565b61133a565b005b3480156104d657600080fd5b506104df6113d0565b6040516104ec919061424f565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613cda565b6113e3565b005b34801561052a57600080fd5b50610533611475565b604051610540919061424f565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613d60565b611488565b60405161057d91906141b1565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613d60565b61149e565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613a3d565b611524565b6040516105e391906144b1565b60405180910390f35b3480156105f857600080fd5b506106016115f4565b005b34801561060f57600080fd5b5061061861167c565b60405161062591906141b1565b60405180910390f35b34801561063a57600080fd5b506106436116a6565b60405161065091906144b1565b60405180910390f35b34801561066557600080fd5b5061066e6116ac565b60405161067b91906142af565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613b6c565b61173e565b005b3480156106b957600080fd5b506106c26118b6565b6040516106cf91906142af565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613d60565b611944565b005b34801561070d57600080fd5b5061072860048036038101906107239190613af1565b6119ca565b005b34801561073657600080fd5b50610751600480360381019061074c9190613c5f565b611a46565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613d60565b611adf565b60405161078791906142af565b60405180910390f35b34801561079c57600080fd5b506107a5611c09565b6040516107b2919061424f565b60405180910390f35b3480156107c757600080fd5b506107d0611c1c565b6040516107dd91906142af565b60405180910390f35b3480156107f257600080fd5b506107fb611caa565b60405161080891906144b1565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613c5f565b611cb0565b005b34801561084657600080fd5b50610861600480360381019061085c9190613a66565b611d49565b60405161086e919061424f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613d89565b611ddd565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613be4565b611e67565b6040516108d491906141b1565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613a3d565b611ea7565b005b34801561091257600080fd5b5061092d60048036038101906109289190613a3d565b611f9f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a5750610a0982612095565b5b9050919050565b606060028054610a2090614783565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90614783565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae826120ff565b610ae4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60026009541415610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614431565b60405180910390fd5b6002600981905550600083118015610b7f5750600f548311155b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590614331565b60405180910390fd5b600e5483610bca610f7d565b610bd491906145a1565b1115610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90614411565b60405180910390fd5b601060009054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c906143d1565b60405180910390fd5b82600c54610c739190614628565b341015610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90614471565b60405180910390fd5b6000610cbf61214d565b9050601060029054906101000a900460ff1615610dba576000610ce482868686611e67565b9050610cee61167c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290614371565b60405180910390fd5b601e84610d689190614682565b421015610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906143f1565b60405180910390fd5b610db48286612155565b50610dc5565b610dc48185612155565b5b506001600981905550505050565b6000610dde82611488565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6561214d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e975750610e9581610e9061214d565b611d49565b155b15610ece576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed9838383612173565b505050565b600c5481565b610eec61214d565b73ffffffffffffffffffffffffffffffffffffffff16610f0a61167c565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906143b1565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f87612225565b6001546000540303905090565b600d5481565b610fa583838361222e565b505050565b610fb261214d565b73ffffffffffffffffffffffffffffffffffffffff16610fd061167c565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906143b1565b60405180910390fd5b80600d8190555050565b60026009541415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614431565b60405180910390fd5b60026009819055506000831180156110905750600f548311155b6110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690614331565b60405180910390fd5b600d54836110db610f7d565b6110e591906145a1565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90614491565b60405180910390fd5b601060009054906101000a900460ff1615611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906143d1565b60405180910390fd5b600061118061214d565b9050601060029054906101000a900460ff161561127b5760006111a582868686611e67565b90506111af61167c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614371565b60405180910390fd5b601e846112299190614682565b42101561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906143f1565b60405180910390fd5b6112758286612155565b50611286565b6112858185612155565b5b506001600981905550505050565b6112af838383604051806020016040528060008152506119ca565b505050565b6112bc61214d565b73ffffffffffffffffffffffffffffffffffffffff166112da61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611327906143b1565b60405180910390fd5b80600c8190555050565b61134261214d565b73ffffffffffffffffffffffffffffffffffffffff1661136061167c565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906143b1565b60405180910390fd5b80600b90805190602001906113cc92919061374e565b5050565b601060019054906101000a900460ff1681565b6113eb61214d565b73ffffffffffffffffffffffffffffffffffffffff1661140961167c565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611456906143b1565b60405180910390fd5b8181600a91906114709291906137d4565b505050565b601060009054906101000a900460ff1681565b6000611493826126e4565b600001519050919050565b6114a661214d565b73ffffffffffffffffffffffffffffffffffffffff166114c461167c565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906143b1565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fc61214d565b73ffffffffffffffffffffffffffffffffffffffff1661161a61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611667906143b1565b60405180910390fd5b61167a6000612973565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546116bb90614783565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790614783565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b5050505050905090565b61174661214d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b861214d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186561214d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa919061424f565b60405180910390a35050565b600b80546118c390614783565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90614783565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b61194c61214d565b73ffffffffffffffffffffffffffffffffffffffff1661196a61167c565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143b1565b60405180910390fd5b80600f8190555050565b6119d584848461222e565b6119f48373ffffffffffffffffffffffffffffffffffffffff16612a39565b8015611a095750611a0784848484612a5c565b155b15611a40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a4e61214d565b73ffffffffffffffffffffffffffffffffffffffff16611a6c61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906143b1565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6060611aea826120ff565b611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614451565b60405180910390fd5b601060019054906101000a900460ff1615611b7657611b46612bbc565b611b4f83612c4e565b604051602001611b6092919061416d565b6040516020818303038152906040529050611c04565b600b8054611b8390614783565b80601f0160208091040260200160405190810160405280929190818152602001828054611baf90614783565b8015611bfc5780601f10611bd157610100808354040283529160200191611bfc565b820191906000526020600020905b815481529060010190602001808311611bdf57829003601f168201915b505050505090505b919050565b601060029054906101000a900460ff1681565b600a8054611c2990614783565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5590614783565b8015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b505050505081565b600e5481565b611cb861214d565b73ffffffffffffffffffffffffffffffffffffffff16611cd661167c565b73ffffffffffffffffffffffffffffffffffffffff1614611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d23906143b1565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de561214d565b73ffffffffffffffffffffffffffffffffffffffff16611e0361167c565b73ffffffffffffffffffffffffffffffffffffffff1614611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906143b1565b60405180910390fd5b611e638183612155565b5050565b6000611e9d858585604051602001611e8193929190614218565b6040516020818303038152906040528051906020012083612dfb565b9050949350505050565b611eaf61214d565b73ffffffffffffffffffffffffffffffffffffffff16611ecd61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906143b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614311565b60405180910390fd5b611f9c81612973565b50565b611fa761214d565b73ffffffffffffffffffffffffffffffffffffffff16611fc561167c565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906143b1565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516120419061419c565b60006040518083038185875af1925050503d806000811461207e576040519150601f19603f3d011682016040523d82523d6000602084013e612083565b606091505b505090508061209157600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161210a612225565b11158015612119575060005482105b8015612146575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b61216f828260405180602001604052806000815250612e22565b5050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612239826126e4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122c561214d565b73ffffffffffffffffffffffffffffffffffffffff1614806122f457506122f3856122ee61214d565b611d49565b5b80612339575061230261214d565b73ffffffffffffffffffffffffffffffffffffffff1661232184610aa3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612372576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123e68585856001612e34565b6123f260008487612173565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561267257600054821461267157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126dd8585856001612e3a565b5050505050565b6126ec61385a565b6000829050806126fa612225565b11158015612709575060005481105b1561293c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461281e57809250505061296e565b5b60011561293957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293457809250505061296e565b61281f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8261214d565b8786866040518563ffffffff1660e01b8152600401612aa494939291906141cc565b602060405180830381600087803b158015612abe57600080fd5b505af1925050508015612aef57506040513d601f19601f82011682018060405250810190612aec9190613cb1565b60015b612b69573d8060008114612b1f576040519150601f19603f3d011682016040523d82523d6000602084013e612b24565b606091505b50600081511415612b61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612bcb90614783565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf790614783565b8015612c445780601f10612c1957610100808354040283529160200191612c44565b820191906000526020600020905b815481529060010190602001808311612c2757829003601f168201915b5050505050905090565b60606000821415612c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df6565b600082905060005b60008214612cc8578080612cb1906147e6565b915050600a82612cc191906145f7565b9150612c9e565b60008167ffffffffffffffff811115612d0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d3c5781602001600182028036833780820191505090505b5090505b60008514612def57600182612d559190614682565b9150600a85612d64919061482f565b6030612d7091906145a1565b60f81b818381518110612dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de891906145f7565b9450612d40565b8093505050505b919050565b6000806000612e0a8585612e40565b91509150612e1781612ec3565b819250505092915050565b612e2f8383836001613214565b505050565b50505050565b50505050565b600080604183511415612e825760008060006020860151925060408601519150606086015160001a9050612e76878285856135e2565b94509450505050612ebc565b604083511415612eb3576000806020850151915060408501519050612ea88683836136ef565b935093505050612ebc565b60006002915091505b9250929050565b60006004811115612efd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612f36577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612f4157613211565b60016004811115612f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612fb4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec906142d1565b60405180910390fd5b6002600481111561302f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613068577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156130a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a0906142f1565b60405180910390fd5b600360048111156130e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561311c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561315d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315490614351565b60405180910390fd5b600480811115613196577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156131cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320790614391565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613281576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132bc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132c96000868387612e34565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561349357506134928773ffffffffffffffffffffffffffffffffffffffff16612a39565b5b15613559575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135086000888480600101955088612a5c565b61353e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561349957826000541461355457600080fd5b6135c5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561355a575b8160008190555050506135db6000868387612e3a565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561361d5760006003915091506136e6565b601b8560ff16141580156136355750601c8560ff1614155b156136475760006004915091506136e6565b60006001878787876040516000815260200160405260405161366c949392919061426a565b6020604051602081039080840390855afa15801561368e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136dd576000600192509250506136e6565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61373291906145a1565b9050613740878288856135e2565b935093505050935093915050565b82805461375a90614783565b90600052602060002090601f01602090048101928261377c57600085556137c3565b82601f1061379557805160ff19168380011785556137c3565b828001600101855582156137c3579182015b828111156137c25782518255916020019190600101906137a7565b5b5090506137d0919061389d565b5090565b8280546137e090614783565b90600052602060002090601f0160209004810192826138025760008555613849565b82601f1061381b57803560ff1916838001178555613849565b82800160010185558215613849579182015b8281111561384857823582559160200191906001019061382d565b5b509050613856919061389d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138b657600081600090555060010161389e565b5090565b60006138cd6138c8846144f1565b6144cc565b9050828152602081018484840111156138e557600080fd5b6138f0848285614741565b509392505050565b600061390b61390684614522565b6144cc565b90508281526020810184848401111561392357600080fd5b61392e848285614741565b509392505050565b60008135905061394581614c32565b92915050565b60008135905061395a81614c49565b92915050565b60008135905061396f81614c60565b92915050565b60008151905061398481614c60565b92915050565b600082601f83011261399b57600080fd5b81356139ab8482602086016138ba565b91505092915050565b60008083601f8401126139c657600080fd5b8235905067ffffffffffffffff8111156139df57600080fd5b6020830191508360018202830111156139f757600080fd5b9250929050565b600082601f830112613a0f57600080fd5b8135613a1f8482602086016138f8565b91505092915050565b600081359050613a3781614c77565b92915050565b600060208284031215613a4f57600080fd5b6000613a5d84828501613936565b91505092915050565b60008060408385031215613a7957600080fd5b6000613a8785828601613936565b9250506020613a9885828601613936565b9150509250929050565b600080600060608486031215613ab757600080fd5b6000613ac586828701613936565b9350506020613ad686828701613936565b9250506040613ae786828701613a28565b9150509250925092565b60008060008060808587031215613b0757600080fd5b6000613b1587828801613936565b9450506020613b2687828801613936565b9350506040613b3787828801613a28565b925050606085013567ffffffffffffffff811115613b5457600080fd5b613b608782880161398a565b91505092959194509250565b60008060408385031215613b7f57600080fd5b6000613b8d85828601613936565b9250506020613b9e8582860161394b565b9150509250929050565b60008060408385031215613bbb57600080fd5b6000613bc985828601613936565b9250506020613bda85828601613a28565b9150509250929050565b60008060008060808587031215613bfa57600080fd5b6000613c0887828801613936565b9450506020613c1987828801613a28565b9350506040613c2a87828801613a28565b925050606085013567ffffffffffffffff811115613c4757600080fd5b613c538782880161398a565b91505092959194509250565b600060208284031215613c7157600080fd5b6000613c7f8482850161394b565b91505092915050565b600060208284031215613c9a57600080fd5b6000613ca884828501613960565b91505092915050565b600060208284031215613cc357600080fd5b6000613cd184828501613975565b91505092915050565b60008060208385031215613ced57600080fd5b600083013567ffffffffffffffff811115613d0757600080fd5b613d13858286016139b4565b92509250509250929050565b600060208284031215613d3157600080fd5b600082013567ffffffffffffffff811115613d4b57600080fd5b613d57848285016139fe565b91505092915050565b600060208284031215613d7257600080fd5b6000613d8084828501613a28565b91505092915050565b60008060408385031215613d9c57600080fd5b6000613daa85828601613a28565b9250506020613dbb85828601613936565b9150509250929050565b600080600060608486031215613dda57600080fd5b6000613de886828701613a28565b9350506020613df986828701613a28565b925050604084013567ffffffffffffffff811115613e1657600080fd5b613e228682870161398a565b9150509250925092565b613e35816146b6565b82525050565b613e44816146c8565b82525050565b613e53816146d4565b82525050565b6000613e6482614553565b613e6e8185614569565b9350613e7e818560208601614750565b613e878161491c565b840191505092915050565b6000613e9d8261455e565b613ea78185614585565b9350613eb7818560208601614750565b613ec08161491c565b840191505092915050565b6000613ed68261455e565b613ee08185614596565b9350613ef0818560208601614750565b80840191505092915050565b6000613f09601883614585565b9150613f148261492d565b602082019050919050565b6000613f2c601f83614585565b9150613f3782614956565b602082019050919050565b6000613f4f602683614585565b9150613f5a8261497f565b604082019050919050565b6000613f72601483614585565b9150613f7d826149ce565b602082019050919050565b6000613f95602283614585565b9150613fa0826149f7565b604082019050919050565b6000613fb8601683614585565b9150613fc382614a46565b602082019050919050565b6000613fdb602283614585565b9150613fe682614a6f565b604082019050919050565b6000613ffe600583614596565b915061400982614abe565b600582019050919050565b6000614021602083614585565b915061402c82614ae7565b602082019050919050565b6000614044601783614585565b915061404f82614b10565b602082019050919050565b6000614067600b83614585565b915061407282614b39565b602082019050919050565b600061408a60008361457a565b915061409582614b62565b600082019050919050565b60006140ad601483614585565b91506140b882614b65565b602082019050919050565b60006140d0601f83614585565b91506140db82614b8e565b602082019050919050565b60006140f3601383614585565b91506140fe82614bb7565b602082019050919050565b6000614116601383614585565b915061412182614be0565b602082019050919050565b6000614139601d83614585565b915061414482614c09565b602082019050919050565b6141588161472a565b82525050565b61416781614734565b82525050565b60006141798285613ecb565b91506141858284613ecb565b915061419082613ff1565b91508190509392505050565b60006141a78261407d565b9150819050919050565b60006020820190506141c66000830184613e2c565b92915050565b60006080820190506141e16000830187613e2c565b6141ee6020830186613e2c565b6141fb604083018561414f565b818103606083015261420d8184613e59565b905095945050505050565b600060608201905061422d6000830186613e2c565b61423a602083018561414f565b614247604083018461414f565b949350505050565b60006020820190506142646000830184613e3b565b92915050565b600060808201905061427f6000830187613e4a565b61428c602083018661415e565b6142996040830185613e4a565b6142a66060830184613e4a565b95945050505050565b600060208201905081810360008301526142c98184613e92565b905092915050565b600060208201905081810360008301526142ea81613efc565b9050919050565b6000602082019050818103600083015261430a81613f1f565b9050919050565b6000602082019050818103600083015261432a81613f42565b9050919050565b6000602082019050818103600083015261434a81613f65565b9050919050565b6000602082019050818103600083015261436a81613f88565b9050919050565b6000602082019050818103600083015261438a81613fab565b9050919050565b600060208201905081810360008301526143aa81613fce565b9050919050565b600060208201905081810360008301526143ca81614014565b9050919050565b600060208201905081810360008301526143ea81614037565b9050919050565b6000602082019050818103600083015261440a8161405a565b9050919050565b6000602082019050818103600083015261442a816140a0565b9050919050565b6000602082019050818103600083015261444a816140c3565b9050919050565b6000602082019050818103600083015261446a816140e6565b9050919050565b6000602082019050818103600083015261448a81614109565b9050919050565b600060208201905081810360008301526144aa8161412c565b9050919050565b60006020820190506144c6600083018461414f565b92915050565b60006144d66144e7565b90506144e282826147b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561450c5761450b6148ed565b5b6145158261491c565b9050602081019050919050565b600067ffffffffffffffff82111561453d5761453c6148ed565b5b6145468261491c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ac8261472a565b91506145b78361472a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ec576145eb614860565b5b828201905092915050565b60006146028261472a565b915061460d8361472a565b92508261461d5761461c61488f565b5b828204905092915050565b60006146338261472a565b915061463e8361472a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467757614676614860565b5b828202905092915050565b600061468d8261472a565b91506146988361472a565b9250828210156146ab576146aa614860565b5b828203905092915050565b60006146c18261470a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561476e578082015181840152602081019050614753565b8381111561477d576000848401525b50505050565b6000600282049050600182168061479b57607f821691505b602082108114156147af576147ae6148be565b5b50919050565b6147be8261491c565b810181811067ffffffffffffffff821117156147dd576147dc6148ed565b5b80604052505050565b60006147f18261472a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482457614823614860565b5b600182019050919050565b600061483a8261472a565b91506148458361472a565b9250826148555761485461488f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420746f206d696e7400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4f7574206f662074696d65000000000000000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b7f467265656d696e74204d617820737570706c7920657863656564656421000000600082015250565b614c3b816146b6565b8114614c4657600080fd5b50565b614c52816146c8565b8114614c5d57600080fd5b50565b614c69816146de565b8114614c7457600080fd5b50565b614c808161472a565b8114614c8b57600080fd5b5056fea264697066735822122024801540a1c619234d630be5665dbf5363eeccf25312695d32d2e8c5968b8b6464736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f697066732e696f2f697066732f4e65775552492f00000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806370a082311161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461083a578063efbd73f414610877578063f2320568146108a0578063f2fde38b146108dd578063fa09e630146109065761023b565b8063c87b56dd14610753578063ce4a74f214610790578063cfc86f7b146107bb578063d5abeb01146107e6578063e0a80853146108115761023b565b8063a22cb465116100f2578063a22cb46514610684578063a45ba8e7146106ad578063b071401b146106d8578063b88d4fde14610701578063c195e44e1461072a5761023b565b806370a08231146105af578063715018a6146105ec5780638da5cb5b1461060357806394354fd01461062e57806395d89b41146106595761023b565b8063295871c3116101bc578063518302271161018057806351830227146104ca57806355f804b3146104f55780635c975abb1461051e5780636352211e146105495780636f8b44b0146105865761023b565b8063295871c3146103fd5780633995940e1461042657806342842e0e1461044f57806344a0d68a146104785780634fdd43cb146104a15761023b565b806313faede61161020357806313faede61461032a57806316c38b3c1461035557806318160ddd1461037e5780631df0d2d0146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a857806308dc9f42146102e5578063095ea7b314610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613c88565b61092f565b604051610274919061424f565b60405180910390f35b34801561028957600080fd5b50610292610a11565b60405161029f91906142af565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613d60565b610aa3565b6040516102dc91906141b1565b60405180910390f35b6102ff60048036038101906102fa9190613dc5565b610b1f565b005b34801561030d57600080fd5b5061032860048036038101906103239190613ba8565b610dd3565b005b34801561033657600080fd5b5061033f610ede565b60405161034c91906144b1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613c5f565b610ee4565b005b34801561038a57600080fd5b50610393610f7d565b6040516103a091906144b1565b60405180910390f35b3480156103b557600080fd5b506103be610f94565b6040516103cb91906144b1565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613aa2565b610f9a565b005b34801561040957600080fd5b50610424600480360381019061041f9190613d60565b610faa565b005b34801561043257600080fd5b5061044d60048036038101906104489190613dc5565b611030565b005b34801561045b57600080fd5b5061047660048036038101906104719190613aa2565b611294565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d60565b6112b4565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d1f565b61133a565b005b3480156104d657600080fd5b506104df6113d0565b6040516104ec919061424f565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613cda565b6113e3565b005b34801561052a57600080fd5b50610533611475565b604051610540919061424f565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613d60565b611488565b60405161057d91906141b1565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613d60565b61149e565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613a3d565b611524565b6040516105e391906144b1565b60405180910390f35b3480156105f857600080fd5b506106016115f4565b005b34801561060f57600080fd5b5061061861167c565b60405161062591906141b1565b60405180910390f35b34801561063a57600080fd5b506106436116a6565b60405161065091906144b1565b60405180910390f35b34801561066557600080fd5b5061066e6116ac565b60405161067b91906142af565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613b6c565b61173e565b005b3480156106b957600080fd5b506106c26118b6565b6040516106cf91906142af565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613d60565b611944565b005b34801561070d57600080fd5b5061072860048036038101906107239190613af1565b6119ca565b005b34801561073657600080fd5b50610751600480360381019061074c9190613c5f565b611a46565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613d60565b611adf565b60405161078791906142af565b60405180910390f35b34801561079c57600080fd5b506107a5611c09565b6040516107b2919061424f565b60405180910390f35b3480156107c757600080fd5b506107d0611c1c565b6040516107dd91906142af565b60405180910390f35b3480156107f257600080fd5b506107fb611caa565b60405161080891906144b1565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190613c5f565b611cb0565b005b34801561084657600080fd5b50610861600480360381019061085c9190613a66565b611d49565b60405161086e919061424f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613d89565b611ddd565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613be4565b611e67565b6040516108d491906141b1565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613a3d565b611ea7565b005b34801561091257600080fd5b5061092d60048036038101906109289190613a3d565b611f9f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a5750610a0982612095565b5b9050919050565b606060028054610a2090614783565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90614783565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae826120ff565b610ae4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60026009541415610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614431565b60405180910390fd5b6002600981905550600083118015610b7f5750600f548311155b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590614331565b60405180910390fd5b600e5483610bca610f7d565b610bd491906145a1565b1115610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90614411565b60405180910390fd5b601060009054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c906143d1565b60405180910390fd5b82600c54610c739190614628565b341015610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90614471565b60405180910390fd5b6000610cbf61214d565b9050601060029054906101000a900460ff1615610dba576000610ce482868686611e67565b9050610cee61167c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290614371565b60405180910390fd5b601e84610d689190614682565b421015610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906143f1565b60405180910390fd5b610db48286612155565b50610dc5565b610dc48185612155565b5b506001600981905550505050565b6000610dde82611488565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6561214d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e975750610e9581610e9061214d565b611d49565b155b15610ece576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed9838383612173565b505050565b600c5481565b610eec61214d565b73ffffffffffffffffffffffffffffffffffffffff16610f0a61167c565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906143b1565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f87612225565b6001546000540303905090565b600d5481565b610fa583838361222e565b505050565b610fb261214d565b73ffffffffffffffffffffffffffffffffffffffff16610fd061167c565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906143b1565b60405180910390fd5b80600d8190555050565b60026009541415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614431565b60405180910390fd5b60026009819055506000831180156110905750600f548311155b6110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690614331565b60405180910390fd5b600d54836110db610f7d565b6110e591906145a1565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90614491565b60405180910390fd5b601060009054906101000a900460ff1615611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906143d1565b60405180910390fd5b600061118061214d565b9050601060029054906101000a900460ff161561127b5760006111a582868686611e67565b90506111af61167c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614371565b60405180910390fd5b601e846112299190614682565b42101561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906143f1565b60405180910390fd5b6112758286612155565b50611286565b6112858185612155565b5b506001600981905550505050565b6112af838383604051806020016040528060008152506119ca565b505050565b6112bc61214d565b73ffffffffffffffffffffffffffffffffffffffff166112da61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611327906143b1565b60405180910390fd5b80600c8190555050565b61134261214d565b73ffffffffffffffffffffffffffffffffffffffff1661136061167c565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906143b1565b60405180910390fd5b80600b90805190602001906113cc92919061374e565b5050565b601060019054906101000a900460ff1681565b6113eb61214d565b73ffffffffffffffffffffffffffffffffffffffff1661140961167c565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611456906143b1565b60405180910390fd5b8181600a91906114709291906137d4565b505050565b601060009054906101000a900460ff1681565b6000611493826126e4565b600001519050919050565b6114a661214d565b73ffffffffffffffffffffffffffffffffffffffff166114c461167c565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906143b1565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fc61214d565b73ffffffffffffffffffffffffffffffffffffffff1661161a61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611667906143b1565b60405180910390fd5b61167a6000612973565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546116bb90614783565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790614783565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b5050505050905090565b61174661214d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b861214d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186561214d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa919061424f565b60405180910390a35050565b600b80546118c390614783565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90614783565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b61194c61214d565b73ffffffffffffffffffffffffffffffffffffffff1661196a61167c565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143b1565b60405180910390fd5b80600f8190555050565b6119d584848461222e565b6119f48373ffffffffffffffffffffffffffffffffffffffff16612a39565b8015611a095750611a0784848484612a5c565b155b15611a40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a4e61214d565b73ffffffffffffffffffffffffffffffffffffffff16611a6c61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906143b1565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6060611aea826120ff565b611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614451565b60405180910390fd5b601060019054906101000a900460ff1615611b7657611b46612bbc565b611b4f83612c4e565b604051602001611b6092919061416d565b6040516020818303038152906040529050611c04565b600b8054611b8390614783565b80601f0160208091040260200160405190810160405280929190818152602001828054611baf90614783565b8015611bfc5780601f10611bd157610100808354040283529160200191611bfc565b820191906000526020600020905b815481529060010190602001808311611bdf57829003601f168201915b505050505090505b919050565b601060029054906101000a900460ff1681565b600a8054611c2990614783565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5590614783565b8015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b505050505081565b600e5481565b611cb861214d565b73ffffffffffffffffffffffffffffffffffffffff16611cd661167c565b73ffffffffffffffffffffffffffffffffffffffff1614611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d23906143b1565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de561214d565b73ffffffffffffffffffffffffffffffffffffffff16611e0361167c565b73ffffffffffffffffffffffffffffffffffffffff1614611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906143b1565b60405180910390fd5b611e638183612155565b5050565b6000611e9d858585604051602001611e8193929190614218565b6040516020818303038152906040528051906020012083612dfb565b9050949350505050565b611eaf61214d565b73ffffffffffffffffffffffffffffffffffffffff16611ecd61167c565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906143b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614311565b60405180910390fd5b611f9c81612973565b50565b611fa761214d565b73ffffffffffffffffffffffffffffffffffffffff16611fc561167c565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906143b1565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516120419061419c565b60006040518083038185875af1925050503d806000811461207e576040519150601f19603f3d011682016040523d82523d6000602084013e612083565b606091505b505090508061209157600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161210a612225565b11158015612119575060005482105b8015612146575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b61216f828260405180602001604052806000815250612e22565b5050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612239826126e4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122c561214d565b73ffffffffffffffffffffffffffffffffffffffff1614806122f457506122f3856122ee61214d565b611d49565b5b80612339575061230261214d565b73ffffffffffffffffffffffffffffffffffffffff1661232184610aa3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612372576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123e68585856001612e34565b6123f260008487612173565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561267257600054821461267157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126dd8585856001612e3a565b5050505050565b6126ec61385a565b6000829050806126fa612225565b11158015612709575060005481105b1561293c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461281e57809250505061296e565b5b60011561293957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293457809250505061296e565b61281f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8261214d565b8786866040518563ffffffff1660e01b8152600401612aa494939291906141cc565b602060405180830381600087803b158015612abe57600080fd5b505af1925050508015612aef57506040513d601f19601f82011682018060405250810190612aec9190613cb1565b60015b612b69573d8060008114612b1f576040519150601f19603f3d011682016040523d82523d6000602084013e612b24565b606091505b50600081511415612b61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612bcb90614783565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf790614783565b8015612c445780601f10612c1957610100808354040283529160200191612c44565b820191906000526020600020905b815481529060010190602001808311612c2757829003601f168201915b5050505050905090565b60606000821415612c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df6565b600082905060005b60008214612cc8578080612cb1906147e6565b915050600a82612cc191906145f7565b9150612c9e565b60008167ffffffffffffffff811115612d0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d3c5781602001600182028036833780820191505090505b5090505b60008514612def57600182612d559190614682565b9150600a85612d64919061482f565b6030612d7091906145a1565b60f81b818381518110612dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de891906145f7565b9450612d40565b8093505050505b919050565b6000806000612e0a8585612e40565b91509150612e1781612ec3565b819250505092915050565b612e2f8383836001613214565b505050565b50505050565b50505050565b600080604183511415612e825760008060006020860151925060408601519150606086015160001a9050612e76878285856135e2565b94509450505050612ebc565b604083511415612eb3576000806020850151915060408501519050612ea88683836136ef565b935093505050612ebc565b60006002915091505b9250929050565b60006004811115612efd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612f36577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612f4157613211565b60016004811115612f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612fb4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec906142d1565b60405180910390fd5b6002600481111561302f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613068577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156130a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a0906142f1565b60405180910390fd5b600360048111156130e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561311c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561315d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315490614351565b60405180910390fd5b600480811115613196577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156131cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320790614391565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613281576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132bc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132c96000868387612e34565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561349357506134928773ffffffffffffffffffffffffffffffffffffffff16612a39565b5b15613559575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135086000888480600101955088612a5c565b61353e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561349957826000541461355457600080fd5b6135c5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561355a575b8160008190555050506135db6000868387612e3a565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561361d5760006003915091506136e6565b601b8560ff16141580156136355750601c8560ff1614155b156136475760006004915091506136e6565b60006001878787876040516000815260200160405260405161366c949392919061426a565b6020604051602081039080840390855afa15801561368e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136dd576000600192509250506136e6565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61373291906145a1565b9050613740878288856135e2565b935093505050935093915050565b82805461375a90614783565b90600052602060002090601f01602090048101928261377c57600085556137c3565b82601f1061379557805160ff19168380011785556137c3565b828001600101855582156137c3579182015b828111156137c25782518255916020019190600101906137a7565b5b5090506137d0919061389d565b5090565b8280546137e090614783565b90600052602060002090601f0160209004810192826138025760008555613849565b82601f1061381b57803560ff1916838001178555613849565b82800160010185558215613849579182015b8281111561384857823582559160200191906001019061382d565b5b509050613856919061389d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138b657600081600090555060010161389e565b5090565b60006138cd6138c8846144f1565b6144cc565b9050828152602081018484840111156138e557600080fd5b6138f0848285614741565b509392505050565b600061390b61390684614522565b6144cc565b90508281526020810184848401111561392357600080fd5b61392e848285614741565b509392505050565b60008135905061394581614c32565b92915050565b60008135905061395a81614c49565b92915050565b60008135905061396f81614c60565b92915050565b60008151905061398481614c60565b92915050565b600082601f83011261399b57600080fd5b81356139ab8482602086016138ba565b91505092915050565b60008083601f8401126139c657600080fd5b8235905067ffffffffffffffff8111156139df57600080fd5b6020830191508360018202830111156139f757600080fd5b9250929050565b600082601f830112613a0f57600080fd5b8135613a1f8482602086016138f8565b91505092915050565b600081359050613a3781614c77565b92915050565b600060208284031215613a4f57600080fd5b6000613a5d84828501613936565b91505092915050565b60008060408385031215613a7957600080fd5b6000613a8785828601613936565b9250506020613a9885828601613936565b9150509250929050565b600080600060608486031215613ab757600080fd5b6000613ac586828701613936565b9350506020613ad686828701613936565b9250506040613ae786828701613a28565b9150509250925092565b60008060008060808587031215613b0757600080fd5b6000613b1587828801613936565b9450506020613b2687828801613936565b9350506040613b3787828801613a28565b925050606085013567ffffffffffffffff811115613b5457600080fd5b613b608782880161398a565b91505092959194509250565b60008060408385031215613b7f57600080fd5b6000613b8d85828601613936565b9250506020613b9e8582860161394b565b9150509250929050565b60008060408385031215613bbb57600080fd5b6000613bc985828601613936565b9250506020613bda85828601613a28565b9150509250929050565b60008060008060808587031215613bfa57600080fd5b6000613c0887828801613936565b9450506020613c1987828801613a28565b9350506040613c2a87828801613a28565b925050606085013567ffffffffffffffff811115613c4757600080fd5b613c538782880161398a565b91505092959194509250565b600060208284031215613c7157600080fd5b6000613c7f8482850161394b565b91505092915050565b600060208284031215613c9a57600080fd5b6000613ca884828501613960565b91505092915050565b600060208284031215613cc357600080fd5b6000613cd184828501613975565b91505092915050565b60008060208385031215613ced57600080fd5b600083013567ffffffffffffffff811115613d0757600080fd5b613d13858286016139b4565b92509250509250929050565b600060208284031215613d3157600080fd5b600082013567ffffffffffffffff811115613d4b57600080fd5b613d57848285016139fe565b91505092915050565b600060208284031215613d7257600080fd5b6000613d8084828501613a28565b91505092915050565b60008060408385031215613d9c57600080fd5b6000613daa85828601613a28565b9250506020613dbb85828601613936565b9150509250929050565b600080600060608486031215613dda57600080fd5b6000613de886828701613a28565b9350506020613df986828701613a28565b925050604084013567ffffffffffffffff811115613e1657600080fd5b613e228682870161398a565b9150509250925092565b613e35816146b6565b82525050565b613e44816146c8565b82525050565b613e53816146d4565b82525050565b6000613e6482614553565b613e6e8185614569565b9350613e7e818560208601614750565b613e878161491c565b840191505092915050565b6000613e9d8261455e565b613ea78185614585565b9350613eb7818560208601614750565b613ec08161491c565b840191505092915050565b6000613ed68261455e565b613ee08185614596565b9350613ef0818560208601614750565b80840191505092915050565b6000613f09601883614585565b9150613f148261492d565b602082019050919050565b6000613f2c601f83614585565b9150613f3782614956565b602082019050919050565b6000613f4f602683614585565b9150613f5a8261497f565b604082019050919050565b6000613f72601483614585565b9150613f7d826149ce565b602082019050919050565b6000613f95602283614585565b9150613fa0826149f7565b604082019050919050565b6000613fb8601683614585565b9150613fc382614a46565b602082019050919050565b6000613fdb602283614585565b9150613fe682614a6f565b604082019050919050565b6000613ffe600583614596565b915061400982614abe565b600582019050919050565b6000614021602083614585565b915061402c82614ae7565b602082019050919050565b6000614044601783614585565b915061404f82614b10565b602082019050919050565b6000614067600b83614585565b915061407282614b39565b602082019050919050565b600061408a60008361457a565b915061409582614b62565b600082019050919050565b60006140ad601483614585565b91506140b882614b65565b602082019050919050565b60006140d0601f83614585565b91506140db82614b8e565b602082019050919050565b60006140f3601383614585565b91506140fe82614bb7565b602082019050919050565b6000614116601383614585565b915061412182614be0565b602082019050919050565b6000614139601d83614585565b915061414482614c09565b602082019050919050565b6141588161472a565b82525050565b61416781614734565b82525050565b60006141798285613ecb565b91506141858284613ecb565b915061419082613ff1565b91508190509392505050565b60006141a78261407d565b9150819050919050565b60006020820190506141c66000830184613e2c565b92915050565b60006080820190506141e16000830187613e2c565b6141ee6020830186613e2c565b6141fb604083018561414f565b818103606083015261420d8184613e59565b905095945050505050565b600060608201905061422d6000830186613e2c565b61423a602083018561414f565b614247604083018461414f565b949350505050565b60006020820190506142646000830184613e3b565b92915050565b600060808201905061427f6000830187613e4a565b61428c602083018661415e565b6142996040830185613e4a565b6142a66060830184613e4a565b95945050505050565b600060208201905081810360008301526142c98184613e92565b905092915050565b600060208201905081810360008301526142ea81613efc565b9050919050565b6000602082019050818103600083015261430a81613f1f565b9050919050565b6000602082019050818103600083015261432a81613f42565b9050919050565b6000602082019050818103600083015261434a81613f65565b9050919050565b6000602082019050818103600083015261436a81613f88565b9050919050565b6000602082019050818103600083015261438a81613fab565b9050919050565b600060208201905081810360008301526143aa81613fce565b9050919050565b600060208201905081810360008301526143ca81614014565b9050919050565b600060208201905081810360008301526143ea81614037565b9050919050565b6000602082019050818103600083015261440a8161405a565b9050919050565b6000602082019050818103600083015261442a816140a0565b9050919050565b6000602082019050818103600083015261444a816140c3565b9050919050565b6000602082019050818103600083015261446a816140e6565b9050919050565b6000602082019050818103600083015261448a81614109565b9050919050565b600060208201905081810360008301526144aa8161412c565b9050919050565b60006020820190506144c6600083018461414f565b92915050565b60006144d66144e7565b90506144e282826147b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561450c5761450b6148ed565b5b6145158261491c565b9050602081019050919050565b600067ffffffffffffffff82111561453d5761453c6148ed565b5b6145468261491c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ac8261472a565b91506145b78361472a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ec576145eb614860565b5b828201905092915050565b60006146028261472a565b915061460d8361472a565b92508261461d5761461c61488f565b5b828204905092915050565b60006146338261472a565b915061463e8361472a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467757614676614860565b5b828202905092915050565b600061468d8261472a565b91506146988361472a565b9250828210156146ab576146aa614860565b5b828203905092915050565b60006146c18261470a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561476e578082015181840152602081019050614753565b8381111561477d576000848401525b50505050565b6000600282049050600182168061479b57607f821691505b602082108114156147af576147ae6148be565b5b50919050565b6147be8261491c565b810181811067ffffffffffffffff821117156147dd576147dc6148ed565b5b80604052505050565b60006147f18261472a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482457614823614860565b5b600182019050919050565b600061483a8261472a565b91506148458361472a565b9250826148555761485461488f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a656420746f206d696e7400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4f7574206f662074696d65000000000000000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b7f467265656d696e74204d617820737570706c7920657863656564656421000000600082015250565b614c3b816146b6565b8114614c4657600080fd5b50565b614c52816146c8565b8114614c5d57600080fd5b50565b614c69816146de565b8114614c7457600080fd5b50565b614c808161472a565b8114614c8b57600080fd5b5056fea264697066735822122024801540a1c619234d630be5665dbf5363eeccf25312695d32d2e8c5968b8b6464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f697066732e696f2f697066732f4e65775552492f00000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): https://ipfs.io/ipfs/NewURI/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f4e65775552492f00000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.