ERC-721
Overview
Max Total Supply
1,001 Y00TSUKI
Holders
454
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 Y00TSUKILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
y00tsuki
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/[email protected]/utils/cryptography/MerkleProof.sol"; contract y00tsuki is ERC721A, Ownable { using Strings for uint256; uint256 public constant maxSupply = 2002; uint256 public cost = 0.0033 ether; uint256 public allowQ; bytes32 private merkleRoot; bytes32 private merkleRoot2; bool public premintActive; bool public pubActive; string private baseURI; bool public appendedID; mapping(address => uint256) public _mintedFreeAmountHolders; mapping(address => uint256) public _mintedFreeAmountWL; mapping(address => uint256) public _pubFreeMintAmount; constructor() ERC721A("y00tsuki Yacht Club", "Y00TSUKI") { } function mintFreeHolder(uint256 _quantity, bytes32[] memory _merkleProof) external payable { require(_quantity > 0); uint256 supply = totalSupply(); allowQ = getWL(msg.sender); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!'); require(supply + _quantity <= maxSupply, "Cant go over supply"); require(premintActive, "PREMINTSALE_INACTIVE"); require(_mintedFreeAmountHolders[msg.sender] + _quantity <= allowQ, "HOLDERSALEFREE_MAXED"); unchecked { _mintedFreeAmountHolders[msg.sender] += _quantity; } _safeMint(msg.sender, _quantity); } function mintPaidHolder(uint256 _quantity, bytes32[] memory _merkleProof) external payable { require(_quantity > 0); uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!'); require(supply + _quantity <= maxSupply, "Cant go over supply"); require(premintActive, "PREMINTSALE_INACTIVE"); require(msg.value >= cost * _quantity, "INCORRECT_ETH"); _safeMint(msg.sender, _quantity); } function mintFreePublic() external payable { uint256 s = totalSupply(); require(s + 1 <= maxSupply, "Cant go over supply"); require(pubActive, "PUBLIC_INACTIVE"); require(_pubFreeMintAmount[msg.sender] + 1 <= 1, "PUBLICPAID_MAXED"); unchecked { _pubFreeMintAmount[msg.sender] += 1; } _safeMint(msg.sender, 1); } function mintPaidPublic(uint256 _quantity) external payable { require(_quantity > 0); uint256 s = totalSupply(); require(s + _quantity <= maxSupply, "Cant go over supply"); require(pubActive, "PUBLIC_INACTIVE"); require(msg.value >= cost * _quantity, "INCORRECT_ETH"); _safeMint(msg.sender, _quantity); } function gift(address _account, uint256 _quantity) external onlyOwner { uint256 s = totalSupply(); require(s + _quantity <= maxSupply, "Over Supply"); require(_quantity > 0, "QUANTITY_INVALID"); _safeMint(_account, _quantity); } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function activatePremintSale() external onlyOwner { !premintActive ? premintActive = true : premintActive = false; } function activatePublicSale() external onlyOwner { !pubActive ? pubActive = true : pubActive = false; } function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata _baseURI, bool appendID) external onlyOwner { if (!appendedID && appendID) appendedID = appendID; baseURI = _baseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "Cannot query non-existent token"); if (appendedID) { return string(abi.encodePacked(baseURI, _tokenId.toString())); } else { return baseURI; } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 // 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); } function getWL(address owner) public view returns (uint256) { uint256 count = 1; uint256 cosmic = IERC721(0xb5596D75c727559463836eb67aA5CD574A43c7f0).balanceOf(owner); uint256 y00tsyc = IERC721(0x705B9DBD0D5607BEAFe12E2fB74d64268d3bA35F).balanceOf(owner); uint256 degenapepe = IERC721(0x87E7A2d41c7a0D041E158266f50291e4E3dFd7B3).balanceOf(owner); uint256 world = IERC721(0xBA12F0041DD2543749EC7f00c996A9D488Aa5a21).balanceOf(owner); uint256 rareapepeyc = IERC721(0x31d45de84fdE2fB36575085e05754a4932DD5170).balanceOf(owner); count = count + cosmic + y00tsyc + degenapepe + world + rareapepeyc; if (count > 2) count = 2; if (y00tsyc > 0) count = 4; return count; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// 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 (last updated v4.7.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 /// @solidity memory-safe-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 (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.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmountHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmountWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_pubFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePremintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowQ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"appendedID","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintFreeHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFreePublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPaidHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPaidPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"appendID","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052660bb9551fc240006009553480156200001c57600080fd5b506040518060400160405280601381526020017f7930307473756b6920596163687420436c7562000000000000000000000000008152506040518060400160405280600881526020017f5930305453554b490000000000000000000000000000000000000000000000008152508160029080519060200190620000a1929190620001cc565b508060039080519060200190620000ba929190620001cc565b50620000cb620000f960201b60201c565b6000819055505050620000f3620000e7620000fe60201b60201c565b6200010660201b60201c565b620002e1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001da90620002ab565b90600052602060002090601f016020900481019282620001fe57600085556200024a565b82601f106200021957805160ff19168380011785556200024a565b828001600101855582156200024a579182015b82811115620002495782518255916020019190600101906200022c565b5b5090506200025991906200025d565b5090565b5b80821115620002785760008160009055506001016200025e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c457607f821691505b60208210811415620002db57620002da6200027c565b5b50919050565b61453b80620002f16000396000f3fe60806040526004361061023b5760003560e01c80638b5cd0ec1161012e578063cbb8056b116100ab578063dc33e6811161006f578063dc33e68114610806578063e985e9c514610843578063ee2944da14610880578063f183f2f3146108ab578063f2fde38b146108c75761023b565b8063cbb8056b14610754578063cbce4c971461076b578063d03cad1514610794578063d40e72dd146107b0578063d5abeb01146107db5761023b565b8063a22cb465116100f2578063a22cb46514610680578063b3b1cc7a146106a9578063b64b21ca146106c5578063b88d4fde146106ee578063c87b56dd146107175761023b565b80638b5cd0ec146105855780638da5cb5b146105c257806394593765146105ed57806395d89b41146106185780639fa2a40a146106435761023b565b80633ccfd60b116101bc57806370a082311161018057806370a08231146104af578063715018a6146104ec57806377ad99f0146105035780637cb647591461051f5780638b254d44146105485761023b565b80633ccfd60b146103d957806342842e0e146103e357806344a0d68a1461040c5780634df91f37146104355780636352211e146104725761023b565b806311eb30471161020357806311eb30471461031857806313faede61461032f57806318160ddd1461035a57806323b872dd146103855780632d27beea146103ae5761023b565b806301ffc9a71461024057806303aa03911461027d57806306fdde0314610287578063081812fc146102b2578063095ea7b3146102ef575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132f7565b6108f0565b604051610274919061333f565b60405180910390f35b6102856109d2565b005b34801561029357600080fd5b5061029c610b68565b6040516102a991906133f3565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061344b565b610bfa565b6040516102e691906134b9565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613500565b610c76565b005b34801561032457600080fd5b5061032d610d81565b005b34801561033b57600080fd5b50610344610ddb565b604051610351919061354f565b60405180910390f35b34801561036657600080fd5b5061036f610de1565b60405161037c919061354f565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061356a565b610df8565b005b3480156103ba57600080fd5b506103c3610e08565b6040516103d0919061354f565b60405180910390f35b6103e1610e0e565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061356a565b610e8f565b005b34801561041857600080fd5b50610433600480360381019061042e919061344b565b610eaf565b005b34801561044157600080fd5b5061045c600480360381019061045791906135bd565b610ec1565b604051610469919061354f565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061344b565b610ed9565b6040516104a691906134b9565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906135bd565b610eef565b6040516104e3919061354f565b60405180910390f35b3480156104f857600080fd5b50610501610fbf565b005b61051d6004803603810190610518919061344b565b610fd3565b005b34801561052b57600080fd5b5061054660048036038101906105419190613620565b611055565b005b34801561055457600080fd5b5061056f600480360381019061056a91906135bd565b611067565b60405161057c919061354f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906135bd565b61107f565b6040516105b9919061354f565b60405180910390f35b3480156105ce57600080fd5b506105d7611097565b6040516105e491906134b9565b60405180910390f35b3480156105f957600080fd5b506106026110c1565b60405161060f919061333f565b60405180910390f35b34801561062457600080fd5b5061062d6110d4565b60405161063a91906133f3565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906135bd565b611166565b604051610677919061354f565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190613679565b6114f6565b005b6106c360048036038101906106be9190613801565b61166e565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906138b8565b611804565b005b3480156106fa57600080fd5b50610715600480360381019061071091906139cd565b61185d565b005b34801561072357600080fd5b5061073e6004803603810190610739919061344b565b6118d9565b60405161074b91906133f3565b60405180910390f35b34801561076057600080fd5b506107696119fd565b005b34801561077757600080fd5b50610792600480360381019061078d9190613500565b611a57565b005b6107ae60048036038101906107a99190613801565b611b0d565b005b3480156107bc57600080fd5b506107c5611d3e565b6040516107d2919061333f565b60405180910390f35b3480156107e757600080fd5b506107f0611d51565b6040516107fd919061354f565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906135bd565b611d57565b60405161083a919061354f565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613a50565b611d69565b604051610877919061333f565b60405180910390f35b34801561088c57600080fd5b50610895611dfd565b6040516108a2919061333f565b60405180910390f35b6108c560048036038101906108c0919061344b565b611e10565b005b3480156108d357600080fd5b506108ee60048036038101906108e991906135bd565b611f26565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cb57506109ca82611faa565b5b9050919050565b60006109dc610de1565b90506107d26001826109ee9190613abf565b1115610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613b61565b60405180910390fd5b600d60019054906101000a900460ff16610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613bcd565b60405180910390fd5b600180601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610acb9190613abf565b1115610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390613c39565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610b65336001612014565b50565b606060028054610b7790613c88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390613c88565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612032565b610c3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8182610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08612080565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d3a5750610d3881610d33612080565b611d69565b155b15610d71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7c838383612088565b505050565b610d8961213a565b600d60019054906101000a900460ff1615610dbd576000600d60016101000a81548160ff0219169083151502179055610dd8565b6001600d60016101000a81548160ff02191690831515021790555b50565b60095481565b6000610deb6121b8565b6001546000540303905090565b610e038383836121bd565b505050565b600a5481565b610e1661213a565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e3c90613ceb565b60006040518083038185875af1925050503d8060008114610e79576040519150601f19603f3d011682016040523d82523d6000602084013e610e7e565b606091505b5050905080610e8c57600080fd5b50565b610eaa8383836040518060200160405280600081525061185d565b505050565b610eb761213a565b8060098190555050565b60116020528060005260406000206000915090505481565b6000610ee482612673565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc761213a565b610fd16000612902565b565b610fdb61213a565b60003373ffffffffffffffffffffffffffffffffffffffff168260405161100190613ceb565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b5050565b61105d61213a565b80600b8190555050565b60126020528060005260406000206000915090505481565b60106020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900460ff1681565b6060600380546110e390613c88565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613c88565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b60008060019050600073b5596d75c727559463836eb67aa5cd574a43c7f073ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016111bc91906134b9565b60206040518083038186803b1580156111d457600080fd5b505afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c9190613d15565b9050600073705b9dbd0d5607beafe12e2fb74d64268d3ba35f73ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161125d91906134b9565b60206040518083038186803b15801561127557600080fd5b505afa158015611289573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ad9190613d15565b905060007387e7a2d41c7a0d041e158266f50291e4e3dfd7b373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016112fe91906134b9565b60206040518083038186803b15801561131657600080fd5b505afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190613d15565b9050600073ba12f0041dd2543749ec7f00c996a9d488aa5a2173ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b815260040161139f91906134b9565b60206040518083038186803b1580156113b757600080fd5b505afa1580156113cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ef9190613d15565b905060007331d45de84fde2fb36575085e05754a4932dd517073ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b815260040161144091906134b9565b60206040518083038186803b15801561145857600080fd5b505afa15801561146c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114909190613d15565b905080828486888a6114a29190613abf565b6114ac9190613abf565b6114b69190613abf565b6114c09190613abf565b6114ca9190613abf565b955060028611156114da57600295505b60008411156114e857600495505b859650505050505050919050565b6114fe612080565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611563576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611570612080565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161d612080565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611662919061333f565b60405180910390a35050565b6000821161167b57600080fd5b6000611685610de1565b90506000611691612080565b6040516020016116a19190613d8a565b6040516020818303038152906040528051906020012090506116c683600b54836129c8565b611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90613df1565b60405180910390fd5b6107d284836117149190613abf565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613b61565b60405180910390fd5b600d60009054906101000a900460ff166117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613e5d565b60405180910390fd5b836009546117b29190613e7d565b3410156117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90613f23565b60405180910390fd5b6117fe3385612014565b50505050565b61180c61213a565b600f60009054906101000a900460ff161580156118265750805b156118465780600f60006101000a81548160ff0219169083151502179055505b8282600e91906118579291906131a5565b50505050565b6118688484846121bd565b6118878373ffffffffffffffffffffffffffffffffffffffff166129df565b801561189c575061189a84848484612a02565b155b156118d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118e482612032565b611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613f8f565b60405180910390fd5b600f60009054906101000a900460ff161561196a57600e61194383612b62565b60405160200161195492919061407f565b60405160208183030381529060405290506119f8565b600e805461197790613c88565b80601f01602080910402602001604051908101604052809291908181526020018280546119a390613c88565b80156119f05780601f106119c5576101008083540402835291602001916119f0565b820191906000526020600020905b8154815290600101906020018083116119d357829003601f168201915b505050505090505b919050565b611a0561213a565b600d60009054906101000a900460ff1615611a39576000600d60006101000a81548160ff0219169083151502179055611a54565b6001600d60006101000a81548160ff02191690831515021790555b50565b611a5f61213a565b6000611a69610de1565b90506107d28282611a7a9190613abf565b1115611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906140ef565b60405180910390fd5b60008211611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061415b565b60405180910390fd5b611b088383612014565b505050565b60008211611b1a57600080fd5b6000611b24610de1565b9050611b2f33611166565b600a819055506000611b3f612080565b604051602001611b4f9190613d8a565b604051602081830303815290604052805190602001209050611b7483600b54836129c8565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613df1565b60405180910390fd5b6107d28483611bc29190613abf565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613b61565b60405180910390fd5b600d60009054906101000a900460ff16611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990613e5d565b60405180910390fd5b600a5484601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca09190613abf565b1115611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd8906141c7565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d383385612014565b50505050565b600d60009054906101000a900460ff1681565b6107d281565b6000611d6282612cc3565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b60008111611e1d57600080fd5b6000611e27610de1565b90506107d28282611e389190613abf565b1115611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613b61565b60405180910390fd5b600d60019054906101000a900460ff16611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613bcd565b60405180910390fd5b81600954611ed69190613e7d565b341015611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613f23565b60405180910390fd5b611f223383612014565b5050565b611f2e61213a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590614259565b60405180910390fd5b611fa781612902565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61202e828260405180602001604052806000815250612d2d565b5050565b60008161203d6121b8565b1115801561204c575060005482105b8015612079575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612142612080565b73ffffffffffffffffffffffffffffffffffffffff16612160611097565b73ffffffffffffffffffffffffffffffffffffffff16146121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad906142c5565b60405180910390fd5b565b600090565b60006121c882612673565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612233576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612254612080565b73ffffffffffffffffffffffffffffffffffffffff16148061228357506122828561227d612080565b611d69565b5b806122c85750612291612080565b73ffffffffffffffffffffffffffffffffffffffff166122b084610bfa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612301576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612368576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123758585856001612d3f565b61238160008487612088565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561260157600054821461260057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266c8585856001612d45565b5050505050565b61267b61322b565b6000829050806126896121b8565b11158015612698575060005481105b156128cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506128fd565b5b6001156128c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c35780925050506128fd565b6127ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129d58584612d4b565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a28612080565b8786866040518563ffffffff1660e01b8152600401612a4a949392919061433a565b602060405180830381600087803b158015612a6457600080fd5b505af1925050508015612a9557506040513d601f19601f82011682018060405250810190612a92919061439b565b60015b612b0f573d8060008114612ac5576040519150601f19603f3d011682016040523d82523d6000602084013e612aca565b606091505b50600081511415612b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612baa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cbe565b600082905060005b60008214612bdc578080612bc5906143c8565b915050600a82612bd59190614440565b9150612bb2565b60008167ffffffffffffffff811115612bf857612bf76136be565b5b6040519080825280601f01601f191660200182016040528015612c2a5781602001600182028036833780820191505090505b5090505b60008514612cb757600182612c439190614471565b9150600a85612c5291906144a5565b6030612c5e9190613abf565b60f81b818381518110612c7457612c736144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cb09190614440565b9450612c2e565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612d3a8383836001612dc0565b505050565b50505050565b50505050565b60008082905060005b8451811015612db5576000858281518110612d7257612d716144d6565b5b60200260200101519050808311612d9457612d8d838261318e565b9250612da1565b612d9e818461318e565b92505b508080612dad906143c8565b915050612d54565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e68576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e756000868387612d3f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561303f575061303e8773ffffffffffffffffffffffffffffffffffffffff166129df565b5b15613105575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b46000888480600101955088612a02565b6130ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561304557826000541461310057600080fd5b613171565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613106575b8160008190555050506131876000868387612d45565b5050505050565b600082600052816020526040600020905092915050565b8280546131b190613c88565b90600052602060002090601f0160209004810192826131d3576000855561321a565b82601f106131ec57803560ff191683800117855561321a565b8280016001018555821561321a579182015b828111156132195782358255916020019190600101906131fe565b5b509050613227919061326e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561328757600081600090555060010161326f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132d48161329f565b81146132df57600080fd5b50565b6000813590506132f1816132cb565b92915050565b60006020828403121561330d5761330c613295565b5b600061331b848285016132e2565b91505092915050565b60008115159050919050565b61333981613324565b82525050565b60006020820190506133546000830184613330565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613394578082015181840152602081019050613379565b838111156133a3576000848401525b50505050565b6000601f19601f8301169050919050565b60006133c58261335a565b6133cf8185613365565b93506133df818560208601613376565b6133e8816133a9565b840191505092915050565b6000602082019050818103600083015261340d81846133ba565b905092915050565b6000819050919050565b61342881613415565b811461343357600080fd5b50565b6000813590506134458161341f565b92915050565b60006020828403121561346157613460613295565b5b600061346f84828501613436565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134a382613478565b9050919050565b6134b381613498565b82525050565b60006020820190506134ce60008301846134aa565b92915050565b6134dd81613498565b81146134e857600080fd5b50565b6000813590506134fa816134d4565b92915050565b6000806040838503121561351757613516613295565b5b6000613525858286016134eb565b925050602061353685828601613436565b9150509250929050565b61354981613415565b82525050565b60006020820190506135646000830184613540565b92915050565b60008060006060848603121561358357613582613295565b5b6000613591868287016134eb565b93505060206135a2868287016134eb565b92505060406135b386828701613436565b9150509250925092565b6000602082840312156135d3576135d2613295565b5b60006135e1848285016134eb565b91505092915050565b6000819050919050565b6135fd816135ea565b811461360857600080fd5b50565b60008135905061361a816135f4565b92915050565b60006020828403121561363657613635613295565b5b60006136448482850161360b565b91505092915050565b61365681613324565b811461366157600080fd5b50565b6000813590506136738161364d565b92915050565b600080604083850312156136905761368f613295565b5b600061369e858286016134eb565b92505060206136af85828601613664565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136f6826133a9565b810181811067ffffffffffffffff82111715613715576137146136be565b5b80604052505050565b600061372861328b565b905061373482826136ed565b919050565b600067ffffffffffffffff821115613754576137536136be565b5b602082029050602081019050919050565b600080fd5b600061377d61377884613739565b61371e565b905080838252602082019050602084028301858111156137a05761379f613765565b5b835b818110156137c957806137b5888261360b565b8452602084019350506020810190506137a2565b5050509392505050565b600082601f8301126137e8576137e76136b9565b5b81356137f884826020860161376a565b91505092915050565b6000806040838503121561381857613817613295565b5b600061382685828601613436565b925050602083013567ffffffffffffffff8111156138475761384661329a565b5b613853858286016137d3565b9150509250929050565b600080fd5b60008083601f840112613878576138776136b9565b5b8235905067ffffffffffffffff8111156138955761389461385d565b5b6020830191508360018202830111156138b1576138b0613765565b5b9250929050565b6000806000604084860312156138d1576138d0613295565b5b600084013567ffffffffffffffff8111156138ef576138ee61329a565b5b6138fb86828701613862565b9350935050602061390e86828701613664565b9150509250925092565b600080fd5b600067ffffffffffffffff821115613938576139376136be565b5b613941826133a9565b9050602081019050919050565b82818337600083830152505050565b600061397061396b8461391d565b61371e565b90508281526020810184848401111561398c5761398b613918565b5b61399784828561394e565b509392505050565b600082601f8301126139b4576139b36136b9565b5b81356139c484826020860161395d565b91505092915050565b600080600080608085870312156139e7576139e6613295565b5b60006139f5878288016134eb565b9450506020613a06878288016134eb565b9350506040613a1787828801613436565b925050606085013567ffffffffffffffff811115613a3857613a3761329a565b5b613a448782880161399f565b91505092959194509250565b60008060408385031215613a6757613a66613295565b5b6000613a75858286016134eb565b9250506020613a86858286016134eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aca82613415565b9150613ad583613415565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0a57613b09613a90565b5b828201905092915050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613b4b601383613365565b9150613b5682613b15565b602082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b6000613bb7600f83613365565b9150613bc282613b81565b602082019050919050565b60006020820190508181036000830152613be681613baa565b9050919050565b7f5055424c4943504149445f4d4158454400000000000000000000000000000000600082015250565b6000613c23601083613365565b9150613c2e82613bed565b602082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ca057607f821691505b60208210811415613cb457613cb3613c59565b5b50919050565b600081905092915050565b50565b6000613cd5600083613cba565b9150613ce082613cc5565b600082019050919050565b6000613cf682613cc8565b9150819050919050565b600081519050613d0f8161341f565b92915050565b600060208284031215613d2b57613d2a613295565b5b6000613d3984828501613d00565b91505092915050565b60008160601b9050919050565b6000613d5a82613d42565b9050919050565b6000613d6c82613d4f565b9050919050565b613d84613d7f82613498565b613d61565b82525050565b6000613d968284613d73565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000613ddb600e83613365565b9150613de682613da5565b602082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f5052454d494e5453414c455f494e414354495645000000000000000000000000600082015250565b6000613e47601483613365565b9150613e5282613e11565b602082019050919050565b60006020820190508181036000830152613e7681613e3a565b9050919050565b6000613e8882613415565b9150613e9383613415565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecc57613ecb613a90565b5b828202905092915050565b7f494e434f52524543545f45544800000000000000000000000000000000000000600082015250565b6000613f0d600d83613365565b9150613f1882613ed7565b602082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000613f79601f83613365565b9150613f8482613f43565b602082019050919050565b60006020820190508181036000830152613fa881613f6c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fdc81613c88565b613fe68186613faf565b94506001821660008114614001576001811461401257614045565b60ff19831686528186019350614045565b61401b85613fba565b60005b8381101561403d5781548189015260018201915060208101905061401e565b838801955050505b50505092915050565b60006140598261335a565b6140638185613faf565b9350614073818560208601613376565b80840191505092915050565b600061408b8285613fcf565b9150614097828461404e565b91508190509392505050565b7f4f76657220537570706c79000000000000000000000000000000000000000000600082015250565b60006140d9600b83613365565b91506140e4826140a3565b602082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f5155414e544954595f494e56414c494400000000000000000000000000000000600082015250565b6000614145601083613365565b91506141508261410f565b602082019050919050565b6000602082019050818103600083015261417481614138565b9050919050565b7f484f4c44455253414c45465245455f4d41584544000000000000000000000000600082015250565b60006141b1601483613365565b91506141bc8261417b565b602082019050919050565b600060208201905081810360008301526141e0816141a4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614243602683613365565b915061424e826141e7565b604082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142af602083613365565b91506142ba82614279565b602082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061430c826142e5565b61431681856142f0565b9350614326818560208601613376565b61432f816133a9565b840191505092915050565b600060808201905061434f60008301876134aa565b61435c60208301866134aa565b6143696040830185613540565b818103606083015261437b8184614301565b905095945050505050565b600081519050614395816132cb565b92915050565b6000602082840312156143b1576143b0613295565b5b60006143bf84828501614386565b91505092915050565b60006143d382613415565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440657614405613a90565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444b82613415565b915061445683613415565b92508261446657614465614411565b5b828204905092915050565b600061447c82613415565b915061448783613415565b92508282101561449a57614499613a90565b5b828203905092915050565b60006144b082613415565b91506144bb83613415565b9250826144cb576144ca614411565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122079e845b5e7ef0abe0e8b48188501e977580af763fe35c346fee25ce878bdc63e64736f6c63430008090033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80638b5cd0ec1161012e578063cbb8056b116100ab578063dc33e6811161006f578063dc33e68114610806578063e985e9c514610843578063ee2944da14610880578063f183f2f3146108ab578063f2fde38b146108c75761023b565b8063cbb8056b14610754578063cbce4c971461076b578063d03cad1514610794578063d40e72dd146107b0578063d5abeb01146107db5761023b565b8063a22cb465116100f2578063a22cb46514610680578063b3b1cc7a146106a9578063b64b21ca146106c5578063b88d4fde146106ee578063c87b56dd146107175761023b565b80638b5cd0ec146105855780638da5cb5b146105c257806394593765146105ed57806395d89b41146106185780639fa2a40a146106435761023b565b80633ccfd60b116101bc57806370a082311161018057806370a08231146104af578063715018a6146104ec57806377ad99f0146105035780637cb647591461051f5780638b254d44146105485761023b565b80633ccfd60b146103d957806342842e0e146103e357806344a0d68a1461040c5780634df91f37146104355780636352211e146104725761023b565b806311eb30471161020357806311eb30471461031857806313faede61461032f57806318160ddd1461035a57806323b872dd146103855780632d27beea146103ae5761023b565b806301ffc9a71461024057806303aa03911461027d57806306fdde0314610287578063081812fc146102b2578063095ea7b3146102ef575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132f7565b6108f0565b604051610274919061333f565b60405180910390f35b6102856109d2565b005b34801561029357600080fd5b5061029c610b68565b6040516102a991906133f3565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061344b565b610bfa565b6040516102e691906134b9565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613500565b610c76565b005b34801561032457600080fd5b5061032d610d81565b005b34801561033b57600080fd5b50610344610ddb565b604051610351919061354f565b60405180910390f35b34801561036657600080fd5b5061036f610de1565b60405161037c919061354f565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061356a565b610df8565b005b3480156103ba57600080fd5b506103c3610e08565b6040516103d0919061354f565b60405180910390f35b6103e1610e0e565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061356a565b610e8f565b005b34801561041857600080fd5b50610433600480360381019061042e919061344b565b610eaf565b005b34801561044157600080fd5b5061045c600480360381019061045791906135bd565b610ec1565b604051610469919061354f565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061344b565b610ed9565b6040516104a691906134b9565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906135bd565b610eef565b6040516104e3919061354f565b60405180910390f35b3480156104f857600080fd5b50610501610fbf565b005b61051d6004803603810190610518919061344b565b610fd3565b005b34801561052b57600080fd5b5061054660048036038101906105419190613620565b611055565b005b34801561055457600080fd5b5061056f600480360381019061056a91906135bd565b611067565b60405161057c919061354f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906135bd565b61107f565b6040516105b9919061354f565b60405180910390f35b3480156105ce57600080fd5b506105d7611097565b6040516105e491906134b9565b60405180910390f35b3480156105f957600080fd5b506106026110c1565b60405161060f919061333f565b60405180910390f35b34801561062457600080fd5b5061062d6110d4565b60405161063a91906133f3565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906135bd565b611166565b604051610677919061354f565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190613679565b6114f6565b005b6106c360048036038101906106be9190613801565b61166e565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906138b8565b611804565b005b3480156106fa57600080fd5b50610715600480360381019061071091906139cd565b61185d565b005b34801561072357600080fd5b5061073e6004803603810190610739919061344b565b6118d9565b60405161074b91906133f3565b60405180910390f35b34801561076057600080fd5b506107696119fd565b005b34801561077757600080fd5b50610792600480360381019061078d9190613500565b611a57565b005b6107ae60048036038101906107a99190613801565b611b0d565b005b3480156107bc57600080fd5b506107c5611d3e565b6040516107d2919061333f565b60405180910390f35b3480156107e757600080fd5b506107f0611d51565b6040516107fd919061354f565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906135bd565b611d57565b60405161083a919061354f565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613a50565b611d69565b604051610877919061333f565b60405180910390f35b34801561088c57600080fd5b50610895611dfd565b6040516108a2919061333f565b60405180910390f35b6108c560048036038101906108c0919061344b565b611e10565b005b3480156108d357600080fd5b506108ee60048036038101906108e991906135bd565b611f26565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cb57506109ca82611faa565b5b9050919050565b60006109dc610de1565b90506107d26001826109ee9190613abf565b1115610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613b61565b60405180910390fd5b600d60019054906101000a900460ff16610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613bcd565b60405180910390fd5b600180601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610acb9190613abf565b1115610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390613c39565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610b65336001612014565b50565b606060028054610b7790613c88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390613c88565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612032565b610c3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8182610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08612080565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d3a5750610d3881610d33612080565b611d69565b155b15610d71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7c838383612088565b505050565b610d8961213a565b600d60019054906101000a900460ff1615610dbd576000600d60016101000a81548160ff0219169083151502179055610dd8565b6001600d60016101000a81548160ff02191690831515021790555b50565b60095481565b6000610deb6121b8565b6001546000540303905090565b610e038383836121bd565b505050565b600a5481565b610e1661213a565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e3c90613ceb565b60006040518083038185875af1925050503d8060008114610e79576040519150601f19603f3d011682016040523d82523d6000602084013e610e7e565b606091505b5050905080610e8c57600080fd5b50565b610eaa8383836040518060200160405280600081525061185d565b505050565b610eb761213a565b8060098190555050565b60116020528060005260406000206000915090505481565b6000610ee482612673565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc761213a565b610fd16000612902565b565b610fdb61213a565b60003373ffffffffffffffffffffffffffffffffffffffff168260405161100190613ceb565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b5050565b61105d61213a565b80600b8190555050565b60126020528060005260406000206000915090505481565b60106020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900460ff1681565b6060600380546110e390613c88565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613c88565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b60008060019050600073b5596d75c727559463836eb67aa5cd574a43c7f073ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016111bc91906134b9565b60206040518083038186803b1580156111d457600080fd5b505afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c9190613d15565b9050600073705b9dbd0d5607beafe12e2fb74d64268d3ba35f73ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161125d91906134b9565b60206040518083038186803b15801561127557600080fd5b505afa158015611289573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ad9190613d15565b905060007387e7a2d41c7a0d041e158266f50291e4e3dfd7b373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016112fe91906134b9565b60206040518083038186803b15801561131657600080fd5b505afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190613d15565b9050600073ba12f0041dd2543749ec7f00c996a9d488aa5a2173ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b815260040161139f91906134b9565b60206040518083038186803b1580156113b757600080fd5b505afa1580156113cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ef9190613d15565b905060007331d45de84fde2fb36575085e05754a4932dd517073ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b815260040161144091906134b9565b60206040518083038186803b15801561145857600080fd5b505afa15801561146c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114909190613d15565b905080828486888a6114a29190613abf565b6114ac9190613abf565b6114b69190613abf565b6114c09190613abf565b6114ca9190613abf565b955060028611156114da57600295505b60008411156114e857600495505b859650505050505050919050565b6114fe612080565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611563576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611570612080565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161d612080565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611662919061333f565b60405180910390a35050565b6000821161167b57600080fd5b6000611685610de1565b90506000611691612080565b6040516020016116a19190613d8a565b6040516020818303038152906040528051906020012090506116c683600b54836129c8565b611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90613df1565b60405180910390fd5b6107d284836117149190613abf565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613b61565b60405180910390fd5b600d60009054906101000a900460ff166117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613e5d565b60405180910390fd5b836009546117b29190613e7d565b3410156117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90613f23565b60405180910390fd5b6117fe3385612014565b50505050565b61180c61213a565b600f60009054906101000a900460ff161580156118265750805b156118465780600f60006101000a81548160ff0219169083151502179055505b8282600e91906118579291906131a5565b50505050565b6118688484846121bd565b6118878373ffffffffffffffffffffffffffffffffffffffff166129df565b801561189c575061189a84848484612a02565b155b156118d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118e482612032565b611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613f8f565b60405180910390fd5b600f60009054906101000a900460ff161561196a57600e61194383612b62565b60405160200161195492919061407f565b60405160208183030381529060405290506119f8565b600e805461197790613c88565b80601f01602080910402602001604051908101604052809291908181526020018280546119a390613c88565b80156119f05780601f106119c5576101008083540402835291602001916119f0565b820191906000526020600020905b8154815290600101906020018083116119d357829003601f168201915b505050505090505b919050565b611a0561213a565b600d60009054906101000a900460ff1615611a39576000600d60006101000a81548160ff0219169083151502179055611a54565b6001600d60006101000a81548160ff02191690831515021790555b50565b611a5f61213a565b6000611a69610de1565b90506107d28282611a7a9190613abf565b1115611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906140ef565b60405180910390fd5b60008211611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061415b565b60405180910390fd5b611b088383612014565b505050565b60008211611b1a57600080fd5b6000611b24610de1565b9050611b2f33611166565b600a819055506000611b3f612080565b604051602001611b4f9190613d8a565b604051602081830303815290604052805190602001209050611b7483600b54836129c8565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613df1565b60405180910390fd5b6107d28483611bc29190613abf565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613b61565b60405180910390fd5b600d60009054906101000a900460ff16611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990613e5d565b60405180910390fd5b600a5484601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca09190613abf565b1115611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd8906141c7565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d383385612014565b50505050565b600d60009054906101000a900460ff1681565b6107d281565b6000611d6282612cc3565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b60008111611e1d57600080fd5b6000611e27610de1565b90506107d28282611e389190613abf565b1115611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613b61565b60405180910390fd5b600d60019054906101000a900460ff16611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613bcd565b60405180910390fd5b81600954611ed69190613e7d565b341015611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613f23565b60405180910390fd5b611f223383612014565b5050565b611f2e61213a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590614259565b60405180910390fd5b611fa781612902565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61202e828260405180602001604052806000815250612d2d565b5050565b60008161203d6121b8565b1115801561204c575060005482105b8015612079575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612142612080565b73ffffffffffffffffffffffffffffffffffffffff16612160611097565b73ffffffffffffffffffffffffffffffffffffffff16146121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad906142c5565b60405180910390fd5b565b600090565b60006121c882612673565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612233576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612254612080565b73ffffffffffffffffffffffffffffffffffffffff16148061228357506122828561227d612080565b611d69565b5b806122c85750612291612080565b73ffffffffffffffffffffffffffffffffffffffff166122b084610bfa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612301576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612368576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123758585856001612d3f565b61238160008487612088565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561260157600054821461260057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266c8585856001612d45565b5050505050565b61267b61322b565b6000829050806126896121b8565b11158015612698575060005481105b156128cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506128fd565b5b6001156128c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c35780925050506128fd565b6127ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129d58584612d4b565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a28612080565b8786866040518563ffffffff1660e01b8152600401612a4a949392919061433a565b602060405180830381600087803b158015612a6457600080fd5b505af1925050508015612a9557506040513d601f19601f82011682018060405250810190612a92919061439b565b60015b612b0f573d8060008114612ac5576040519150601f19603f3d011682016040523d82523d6000602084013e612aca565b606091505b50600081511415612b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612baa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cbe565b600082905060005b60008214612bdc578080612bc5906143c8565b915050600a82612bd59190614440565b9150612bb2565b60008167ffffffffffffffff811115612bf857612bf76136be565b5b6040519080825280601f01601f191660200182016040528015612c2a5781602001600182028036833780820191505090505b5090505b60008514612cb757600182612c439190614471565b9150600a85612c5291906144a5565b6030612c5e9190613abf565b60f81b818381518110612c7457612c736144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cb09190614440565b9450612c2e565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612d3a8383836001612dc0565b505050565b50505050565b50505050565b60008082905060005b8451811015612db5576000858281518110612d7257612d716144d6565b5b60200260200101519050808311612d9457612d8d838261318e565b9250612da1565b612d9e818461318e565b92505b508080612dad906143c8565b915050612d54565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e68576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e756000868387612d3f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561303f575061303e8773ffffffffffffffffffffffffffffffffffffffff166129df565b5b15613105575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b46000888480600101955088612a02565b6130ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561304557826000541461310057600080fd5b613171565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613106575b8160008190555050506131876000868387612d45565b5050505050565b600082600052816020526040600020905092915050565b8280546131b190613c88565b90600052602060002090601f0160209004810192826131d3576000855561321a565b82601f106131ec57803560ff191683800117855561321a565b8280016001018555821561321a579182015b828111156132195782358255916020019190600101906131fe565b5b509050613227919061326e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561328757600081600090555060010161326f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132d48161329f565b81146132df57600080fd5b50565b6000813590506132f1816132cb565b92915050565b60006020828403121561330d5761330c613295565b5b600061331b848285016132e2565b91505092915050565b60008115159050919050565b61333981613324565b82525050565b60006020820190506133546000830184613330565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613394578082015181840152602081019050613379565b838111156133a3576000848401525b50505050565b6000601f19601f8301169050919050565b60006133c58261335a565b6133cf8185613365565b93506133df818560208601613376565b6133e8816133a9565b840191505092915050565b6000602082019050818103600083015261340d81846133ba565b905092915050565b6000819050919050565b61342881613415565b811461343357600080fd5b50565b6000813590506134458161341f565b92915050565b60006020828403121561346157613460613295565b5b600061346f84828501613436565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134a382613478565b9050919050565b6134b381613498565b82525050565b60006020820190506134ce60008301846134aa565b92915050565b6134dd81613498565b81146134e857600080fd5b50565b6000813590506134fa816134d4565b92915050565b6000806040838503121561351757613516613295565b5b6000613525858286016134eb565b925050602061353685828601613436565b9150509250929050565b61354981613415565b82525050565b60006020820190506135646000830184613540565b92915050565b60008060006060848603121561358357613582613295565b5b6000613591868287016134eb565b93505060206135a2868287016134eb565b92505060406135b386828701613436565b9150509250925092565b6000602082840312156135d3576135d2613295565b5b60006135e1848285016134eb565b91505092915050565b6000819050919050565b6135fd816135ea565b811461360857600080fd5b50565b60008135905061361a816135f4565b92915050565b60006020828403121561363657613635613295565b5b60006136448482850161360b565b91505092915050565b61365681613324565b811461366157600080fd5b50565b6000813590506136738161364d565b92915050565b600080604083850312156136905761368f613295565b5b600061369e858286016134eb565b92505060206136af85828601613664565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136f6826133a9565b810181811067ffffffffffffffff82111715613715576137146136be565b5b80604052505050565b600061372861328b565b905061373482826136ed565b919050565b600067ffffffffffffffff821115613754576137536136be565b5b602082029050602081019050919050565b600080fd5b600061377d61377884613739565b61371e565b905080838252602082019050602084028301858111156137a05761379f613765565b5b835b818110156137c957806137b5888261360b565b8452602084019350506020810190506137a2565b5050509392505050565b600082601f8301126137e8576137e76136b9565b5b81356137f884826020860161376a565b91505092915050565b6000806040838503121561381857613817613295565b5b600061382685828601613436565b925050602083013567ffffffffffffffff8111156138475761384661329a565b5b613853858286016137d3565b9150509250929050565b600080fd5b60008083601f840112613878576138776136b9565b5b8235905067ffffffffffffffff8111156138955761389461385d565b5b6020830191508360018202830111156138b1576138b0613765565b5b9250929050565b6000806000604084860312156138d1576138d0613295565b5b600084013567ffffffffffffffff8111156138ef576138ee61329a565b5b6138fb86828701613862565b9350935050602061390e86828701613664565b9150509250925092565b600080fd5b600067ffffffffffffffff821115613938576139376136be565b5b613941826133a9565b9050602081019050919050565b82818337600083830152505050565b600061397061396b8461391d565b61371e565b90508281526020810184848401111561398c5761398b613918565b5b61399784828561394e565b509392505050565b600082601f8301126139b4576139b36136b9565b5b81356139c484826020860161395d565b91505092915050565b600080600080608085870312156139e7576139e6613295565b5b60006139f5878288016134eb565b9450506020613a06878288016134eb565b9350506040613a1787828801613436565b925050606085013567ffffffffffffffff811115613a3857613a3761329a565b5b613a448782880161399f565b91505092959194509250565b60008060408385031215613a6757613a66613295565b5b6000613a75858286016134eb565b9250506020613a86858286016134eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aca82613415565b9150613ad583613415565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0a57613b09613a90565b5b828201905092915050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613b4b601383613365565b9150613b5682613b15565b602082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b6000613bb7600f83613365565b9150613bc282613b81565b602082019050919050565b60006020820190508181036000830152613be681613baa565b9050919050565b7f5055424c4943504149445f4d4158454400000000000000000000000000000000600082015250565b6000613c23601083613365565b9150613c2e82613bed565b602082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ca057607f821691505b60208210811415613cb457613cb3613c59565b5b50919050565b600081905092915050565b50565b6000613cd5600083613cba565b9150613ce082613cc5565b600082019050919050565b6000613cf682613cc8565b9150819050919050565b600081519050613d0f8161341f565b92915050565b600060208284031215613d2b57613d2a613295565b5b6000613d3984828501613d00565b91505092915050565b60008160601b9050919050565b6000613d5a82613d42565b9050919050565b6000613d6c82613d4f565b9050919050565b613d84613d7f82613498565b613d61565b82525050565b6000613d968284613d73565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000613ddb600e83613365565b9150613de682613da5565b602082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f5052454d494e5453414c455f494e414354495645000000000000000000000000600082015250565b6000613e47601483613365565b9150613e5282613e11565b602082019050919050565b60006020820190508181036000830152613e7681613e3a565b9050919050565b6000613e8882613415565b9150613e9383613415565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecc57613ecb613a90565b5b828202905092915050565b7f494e434f52524543545f45544800000000000000000000000000000000000000600082015250565b6000613f0d600d83613365565b9150613f1882613ed7565b602082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000613f79601f83613365565b9150613f8482613f43565b602082019050919050565b60006020820190508181036000830152613fa881613f6c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613fdc81613c88565b613fe68186613faf565b94506001821660008114614001576001811461401257614045565b60ff19831686528186019350614045565b61401b85613fba565b60005b8381101561403d5781548189015260018201915060208101905061401e565b838801955050505b50505092915050565b60006140598261335a565b6140638185613faf565b9350614073818560208601613376565b80840191505092915050565b600061408b8285613fcf565b9150614097828461404e565b91508190509392505050565b7f4f76657220537570706c79000000000000000000000000000000000000000000600082015250565b60006140d9600b83613365565b91506140e4826140a3565b602082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f5155414e544954595f494e56414c494400000000000000000000000000000000600082015250565b6000614145601083613365565b91506141508261410f565b602082019050919050565b6000602082019050818103600083015261417481614138565b9050919050565b7f484f4c44455253414c45465245455f4d41584544000000000000000000000000600082015250565b60006141b1601483613365565b91506141bc8261417b565b602082019050919050565b600060208201905081810360008301526141e0816141a4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614243602683613365565b915061424e826141e7565b604082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142af602083613365565b91506142ba82614279565b602082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061430c826142e5565b61431681856142f0565b9350614326818560208601613376565b61432f816133a9565b840191505092915050565b600060808201905061434f60008301876134aa565b61435c60208301866134aa565b6143696040830185613540565b818103606083015261437b8184614301565b905095945050505050565b600081519050614395816132cb565b92915050565b6000602082840312156143b1576143b0613295565b5b60006143bf84828501614386565b91505092915050565b60006143d382613415565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440657614405613a90565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444b82613415565b915061445683613415565b92508261446657614465614411565b5b828204905092915050565b600061447c82613415565b915061448783613415565b92508282101561449a57614499613a90565b5b828203905092915050565b60006144b082613415565b91506144bb83613415565b9250826144cb576144ca614411565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122079e845b5e7ef0abe0e8b48188501e977580af763fe35c346fee25ce878bdc63e64736f6c63430008090033
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.