ERC-721
Overview
Max Total Supply
11 TwinZFP
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TwinZFPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Twinz
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Crafted with love by Fueled on Bacon https://fueledonbacon.com */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; contract Twinz is ERC721A, Ownable { using Strings for uint256; uint256 private constant _MAX_SUPPLY = 100; uint256 public price; uint256 public startSaleTime; uint256 public endSaleTime; string private _baseUri; bytes32 public whitelistMerkleRoot; bool public whitelistFinished; bool public salePeriodOverride; mapping(address => bool) public userHasMinted; modifier canMint { require(saleIsActive(), "SALE_NOT_ACTIVE"); require(msg.value == price, "WRONG_PRICE"); require(!userHasMinted[_msgSender()], "ALREADY_MINTED"); require(totalSupply() + 1 <= _MAX_SUPPLY, "MAX_SUPPLY_REACHED"); _; } constructor( uint256 price_, uint256 _startSaleTime, uint256 _endSaleTime, bytes32 _whitelistMerkleRoot, string memory name, string memory symbol, string memory baseUri ) ERC721A(name, symbol) { whitelistMerkleRoot = _whitelistMerkleRoot; _baseUri = baseUri; price = price_; startSaleTime = _startSaleTime; endSaleTime = _endSaleTime; } function airdrop(address[] memory addresses) external onlyOwner { uint256 length = addresses.length; require(length + totalSupply() <= _MAX_SUPPLY, "MAX_SUPPLY_REACHED"); for (uint i = 0; i < length; i++) { _safeMint(addresses[i], 1); } } function setStartTime(uint startTime) external onlyOwner { startSaleTime = startTime; } function setEndTime(uint endTime) external onlyOwner { require(endTime > startSaleTime, "END_LESS_THAN_START"); endSaleTime = endTime; } function saleIsActive() public view returns (bool) { if(salePeriodOverride) { return true; } return block.timestamp >= startSaleTime && block.timestamp <= endSaleTime; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function withdrawBalance(address payable to) external onlyOwner { to.transfer(address(this).balance); } function setMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function setBaseURI(string memory baseUri) external onlyOwner { _baseUri = baseUri; } function toggleWhitelist() external onlyOwner { whitelistFinished = !whitelistFinished; } function toggleSalePeriodOverride() external onlyOwner { salePeriodOverride = !salePeriodOverride; } /// @dev override base uri. It will be combined with token ID function _baseURI() internal view override returns (string memory) { return _baseUri; } function _verifyWhitelist(bytes32[] calldata _merkleProof, address addr) private view returns(bool) { return (MerkleProof.verify(_merkleProof, whitelistMerkleRoot, keccak256(abi.encodePacked(addr))) == true); } function whitelistMint(bytes32[] calldata _merkleProof) external payable canMint { require(!whitelistFinished, "WHITELIST_FINISHED"); address account = _msgSender(); require(_verifyWhitelist(_merkleProof, account), "WHITELIST_NOT_VERIFIED"); _mint(account); } function publicMint() external payable canMint { require(whitelistFinished, "WHITELIST_NOT_YET_FINISHED"); _mint(_msgSender()); } function _mint(address account) private { userHasMinted[account] = true; _safeMint(account, 1); } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) { return super.supportsInterface(interfaceId); } receive() external payable { } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs // Fork of ERC721A.sol (it's not the same one as on npm package erc721a because this one has extension methods removed) 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/token/ERC721/extensions/IERC721Enumerable.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 MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 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; } // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @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 _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * 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 (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 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 { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, "")) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(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 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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 address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"uint256","name":"_startSaleTime","type":"uint256"},{"internalType":"uint256","name":"_endSaleTime","type":"uint256"},{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"endSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePeriodOverride","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"setEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSalePeriodOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200479438038062004794833981810160405281019062000037919062000460565b82828160029080519060200190620000519291906200019d565b5080600390805190602001906200006a9291906200019d565b5050506200008d62000081620000cf60201b60201c565b620000d760201b60201c565b83600d8190555080600c9080519060200190620000ac9291906200019d565b508660098190555085600a8190555084600b8190555050505050505050620005d4565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ab906200059f565b90600052602060002090601f016020900481019282620001cf57600085556200021b565b82601f10620001ea57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021a578251825591602001919060010190620001fd565b5b5090506200022a91906200022e565b5090565b5b80821115620002495760008160009055506001016200022f565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620002768162000261565b81146200028257600080fd5b50565b60008151905062000296816200026b565b92915050565b6000819050919050565b620002b1816200029c565b8114620002bd57600080fd5b50565b600081519050620002d181620002a6565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200032c82620002e1565b810181811067ffffffffffffffff821117156200034e576200034d620002f2565b5b80604052505050565b6000620003636200024d565b905062000371828262000321565b919050565b600067ffffffffffffffff821115620003945762000393620002f2565b5b6200039f82620002e1565b9050602081019050919050565b60005b83811015620003cc578082015181840152602081019050620003af565b83811115620003dc576000848401525b50505050565b6000620003f9620003f38462000376565b62000357565b905082815260208101848484011115620004185762000417620002dc565b5b62000425848285620003ac565b509392505050565b600082601f830112620004455762000444620002d7565b5b815162000457848260208601620003e2565b91505092915050565b600080600080600080600060e0888a03121562000482576200048162000257565b5b6000620004928a828b0162000285565b9750506020620004a58a828b0162000285565b9650506040620004b88a828b0162000285565b9550506060620004cb8a828b01620002c0565b945050608088015167ffffffffffffffff811115620004ef57620004ee6200025c565b5b620004fd8a828b016200042d565b93505060a088015167ffffffffffffffff8111156200052157620005206200025c565b5b6200052f8a828b016200042d565b92505060c088015167ffffffffffffffff8111156200055357620005526200025c565b5b620005618a828b016200042d565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005b857607f821691505b602082108103620005ce57620005cd62000570565b5b50919050565b6141b080620005e46000396000f3fe6080604052600436106102135760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461072c578063ccb98ffc14610769578063e985e9c514610792578063eb8d2444146107cf578063f2fde38b146107fa5761021a565b8063a22cb46514610684578063a961e9e8146106ad578063aa98e0c6146106d8578063b88d4fde146107035761021a565b80637e15144b116100e75780637e15144b146105c35780638da5cb5b146105da57806391b7f5ed1461060557806395d89b411461062e578063a035b1fe146106595761021a565b8063715018a614610531578063729ad39e14610548578063756af45f146105715780637cb647591461059a5761021a565b806326092b831161019b57806342842e0e1161016a57806342842e0e1461043a57806355f804b31461046357806358371ccd1461048c5780636352211e146104b757806370a08231146104f45761021a565b806326092b83146103c0578063372f657c146103ca5780633889342b146103e65780633e0a322d146104115761021a565b80631115aff5116101e25780631115aff5146102ed57806318160ddd146103045780631d9857781461032f57806321de6b1d1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613016565b610823565b604051610253919061305e565b60405180910390f35b34801561026857600080fd5b50610271610835565b60405161027e9190613112565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061316a565b6108c7565b6040516102bb91906131d8565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061321f565b610943565b005b3480156102f957600080fd5b50610302610a4d565b005b34801561031057600080fd5b50610319610af5565b604051610326919061326e565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613289565b610b03565b604051610363919061305e565b60405180910390f35b34801561037857600080fd5b50610381610b23565b60405161038e919061305e565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906132b6565b610b36565b005b6103c8610b46565b005b6103e460048036038101906103df919061336e565b610d1d565b005b3480156103f257600080fd5b506103fb610f47565b604051610408919061305e565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061316a565b610f5a565b005b34801561044657600080fd5b50610461600480360381019061045c91906132b6565b610fe0565b005b34801561046f57600080fd5b5061048a600480360381019061048591906134eb565b611041565b005b34801561049857600080fd5b506104a16110d7565b6040516104ae919061326e565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061316a565b6110dd565b6040516104eb91906131d8565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613289565b6110f3565b604051610528919061326e565b60405180910390f35b34801561053d57600080fd5b506105466111c2565b005b34801561055457600080fd5b5061056f600480360381019061056a91906135f7565b61124a565b005b34801561057d57600080fd5b506105986004803603810190610593919061367e565b61136a565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906136e1565b611430565b005b3480156105cf57600080fd5b506105d86114b6565b005b3480156105e657600080fd5b506105ef61155e565b6040516105fc91906131d8565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061316a565b611588565b005b34801561063a57600080fd5b5061064361160e565b6040516106509190613112565b60405180910390f35b34801561066557600080fd5b5061066e6116a0565b60405161067b919061326e565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061373a565b6116a6565b005b3480156106b957600080fd5b506106c261181d565b6040516106cf919061326e565b60405180910390f35b3480156106e457600080fd5b506106ed611823565b6040516106fa9190613789565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613845565b611829565b005b34801561073857600080fd5b50610753600480360381019061074e919061316a565b61187c565b6040516107609190613112565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b919061316a565b61191a565b005b34801561079e57600080fd5b506107b960048036038101906107b491906138c8565b6119e4565b6040516107c6919061305e565b60405180910390f35b3480156107db57600080fd5b506107e4611a78565b6040516107f1919061305e565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613289565b611ab2565b005b600061082e82611ba9565b9050919050565b60606002805461084490613937565b80601f016020809104026020016040519081016040528092919081815260200182805461087090613937565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d282611c8b565b610908576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d4611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a065750610a04816109ff611cc5565b6119e4565b155b15610a3d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a48838383611ccd565b505050565b610a55611cc5565b73ffffffffffffffffffffffffffffffffffffffff16610a7361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906139b4565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600060015460005403905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b610b41838383611d7f565b505050565b610b4e611a78565b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613a20565b60405180910390fd5b6009543414610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613a8c565b60405180910390fd5b600f6000610bdd611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613af8565b60405180910390fd5b60646001610c71610af5565b610c7b9190613b47565b1115610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613be9565b60405180910390fd5b600e60009054906101000a900460ff16610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613c55565b60405180910390fd5b610d1b610d16611cc5565b61226e565b565b610d25611a78565b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613a20565b60405180910390fd5b6009543414610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613a8c565b60405180910390fd5b600f6000610db4611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613af8565b60405180910390fd5b60646001610e48610af5565b610e529190613b47565b1115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613be9565b60405180910390fd5b600e60009054906101000a900460ff1615610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90613cc1565b60405180910390fd5b6000610eed611cc5565b9050610efa8383836122d4565b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613d2d565b60405180910390fd5b610f428161226e565b505050565b600e60009054906101000a900460ff1681565b610f62611cc5565b73ffffffffffffffffffffffffffffffffffffffff16610f8061155e565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906139b4565b60405180910390fd5b80600a8190555050565b610feb838383611d7f565b6110068383836040518060200160405280600081525061235a565b61103c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b611049611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661106761155e565b73ffffffffffffffffffffffffffffffffffffffff16146110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b4906139b4565b60405180910390fd5b80600c90805190602001906110d3929190612ec4565b5050565b600b5481565b60006110e8826124d8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111ca611cc5565b73ffffffffffffffffffffffffffffffffffffffff166111e861155e565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906139b4565b60405180910390fd5b6112486000612754565b565b611252611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661127061155e565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906139b4565b60405180910390fd5b60008151905060646112d6610af5565b826112e19190613b47565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613be9565b60405180910390fd5b60005b818110156113655761135283828151811061134357611342613d4d565b5b6020026020010151600161281a565b808061135d90613d7c565b915050611325565b505050565b611372611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661139061155e565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906139b4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561142c573d6000803e3d6000fd5b5050565b611438611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661145661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906139b4565b60405180910390fd5b80600d8190555050565b6114be611cc5565b73ffffffffffffffffffffffffffffffffffffffff166114dc61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611529906139b4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611590611cc5565b73ffffffffffffffffffffffffffffffffffffffff166115ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906139b4565b60405180910390fd5b8060098190555050565b60606003805461161d90613937565b80601f016020809104026020016040519081016040528092919081815260200182805461164990613937565b80156116965780601f1061166b57610100808354040283529160200191611696565b820191906000526020600020905b81548152906001019060200180831161167957829003601f168201915b5050505050905090565b60095481565b6116ae611cc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611712576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061171f611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cc611cc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611811919061305e565b60405180910390a35050565b600a5481565b600d5481565b611834848484611d7f565b6118408484848461235a565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061188782611c8b565b6118bd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118c7612838565b905060008151036118e75760405180602001604052806000815250611912565b806118f1846128ca565b604051602001611902929190613e00565b6040516020818303038152906040525b915050919050565b611922611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661194061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d906139b4565b60405180910390fd5b600a5481116119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613e70565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60019054906101000a900460ff1615611a985760019050611aaf565b600a544210158015611aac5750600b544211155b90505b90565b611aba611cc5565b73ffffffffffffffffffffffffffffffffffffffff16611ad861155e565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b25906139b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490613f02565b60405180910390fd5b611ba681612754565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c845750611c8382612a2a565b5b9050919050565b6000805482108015611cbe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d8a826124d8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611db1611cc5565b73ffffffffffffffffffffffffffffffffffffffff161480611de45750611de38260000151611dde611cc5565b6119e4565b5b80611e295750611df2611cc5565b73ffffffffffffffffffffffffffffffffffffffff16611e11846108c7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ecb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f31576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3e8585856001612a94565b611f4e6000848460000151611ccd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121fe576000548110156121fd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122678585856001612a9a565b5050505050565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122d181600161281a565b50565b60006001151561234e858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54856040516020016123339190613f6a565b60405160208183030381529060405280519060200120612aa0565b15151490509392505050565b600061237b8473ffffffffffffffffffffffffffffffffffffffff16612ab7565b156124cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a4611cc5565b8786866040518563ffffffff1660e01b81526004016123c69493929190613fda565b6020604051808303816000875af192505050801561240257506040513d601f19601f820116820180604052508101906123ff919061403b565b60015b61247b573d8060008114612432576040519150601f19603f3d011682016040523d82523d6000602084013e612437565b606091505b506000815103612473576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d0565b600190505b949350505050565b6124e0612f4a565b600082905060005481101561271d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ff57809250505061274f565b5b60011561271a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271557809250505061274f565b612600565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612834828260405180602001604052806000815250612aca565b5050565b6060600c805461284790613937565b80601f016020809104026020016040519081016040528092919081815260200182805461287390613937565b80156128c05780601f10612895576101008083540402835291602001916128c0565b820191906000526020600020905b8154815290600101906020018083116128a357829003601f168201915b5050505050905090565b606060008203612911576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a25565b600082905060005b6000821461294357808061292c90613d7c565b915050600a8261293c9190614097565b9150612919565b60008167ffffffffffffffff81111561295f5761295e6133c0565b5b6040519080825280601f01601f1916602001820160405280156129915781602001600182028036833780820191505090505b5090505b60008514612a1e576001826129aa91906140c8565b9150600a856129b991906140fc565b60306129c59190613b47565b60f81b8183815181106129db576129da613d4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a179190614097565b9450612995565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600082612aad8584612adc565b1490509392505050565b600080823b905060008111915050919050565b612ad78383836001612b8f565b505050565b60008082905060005b8451811015612b84576000858281518110612b0357612b02613d4d565b5b60200260200101519050808311612b44578281604051602001612b2792919061414e565b604051602081830303815290604052805190602001209250612b70565b8083604051602001612b5792919061414e565b6040516020818303038152906040528051906020012092505b508080612b7c90613d7c565b915050612ae5565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c426000868387612a94565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ea757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e5b5750612e59600088848861235a565b155b15612e92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612de0565b508060008190555050612ebd6000868387612a9a565b5050505050565b828054612ed090613937565b90600052602060002090601f016020900481019282612ef25760008555612f39565b82601f10612f0b57805160ff1916838001178555612f39565b82800160010185558215612f39579182015b82811115612f38578251825591602001919060010190612f1d565b5b509050612f469190612f8d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fa6576000816000905550600101612f8e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff381612fbe565b8114612ffe57600080fd5b50565b60008135905061301081612fea565b92915050565b60006020828403121561302c5761302b612fb4565b5b600061303a84828501613001565b91505092915050565b60008115159050919050565b61305881613043565b82525050565b6000602082019050613073600083018461304f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b3578082015181840152602081019050613098565b838111156130c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006130e482613079565b6130ee8185613084565b93506130fe818560208601613095565b613107816130c8565b840191505092915050565b6000602082019050818103600083015261312c81846130d9565b905092915050565b6000819050919050565b61314781613134565b811461315257600080fd5b50565b6000813590506131648161313e565b92915050565b6000602082840312156131805761317f612fb4565b5b600061318e84828501613155565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131c282613197565b9050919050565b6131d2816131b7565b82525050565b60006020820190506131ed60008301846131c9565b92915050565b6131fc816131b7565b811461320757600080fd5b50565b600081359050613219816131f3565b92915050565b6000806040838503121561323657613235612fb4565b5b60006132448582860161320a565b925050602061325585828601613155565b9150509250929050565b61326881613134565b82525050565b6000602082019050613283600083018461325f565b92915050565b60006020828403121561329f5761329e612fb4565b5b60006132ad8482850161320a565b91505092915050565b6000806000606084860312156132cf576132ce612fb4565b5b60006132dd8682870161320a565b93505060206132ee8682870161320a565b92505060406132ff86828701613155565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261332e5761332d613309565b5b8235905067ffffffffffffffff81111561334b5761334a61330e565b5b60208301915083602082028301111561336757613366613313565b5b9250929050565b6000806020838503121561338557613384612fb4565b5b600083013567ffffffffffffffff8111156133a3576133a2612fb9565b5b6133af85828601613318565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133f8826130c8565b810181811067ffffffffffffffff82111715613417576134166133c0565b5b80604052505050565b600061342a612faa565b905061343682826133ef565b919050565b600067ffffffffffffffff821115613456576134556133c0565b5b61345f826130c8565b9050602081019050919050565b82818337600083830152505050565b600061348e6134898461343b565b613420565b9050828152602081018484840111156134aa576134a96133bb565b5b6134b584828561346c565b509392505050565b600082601f8301126134d2576134d1613309565b5b81356134e284826020860161347b565b91505092915050565b60006020828403121561350157613500612fb4565b5b600082013567ffffffffffffffff81111561351f5761351e612fb9565b5b61352b848285016134bd565b91505092915050565b600067ffffffffffffffff82111561354f5761354e6133c0565b5b602082029050602081019050919050565b600061357361356e84613534565b613420565b9050808382526020820190506020840283018581111561359657613595613313565b5b835b818110156135bf57806135ab888261320a565b845260208401935050602081019050613598565b5050509392505050565b600082601f8301126135de576135dd613309565b5b81356135ee848260208601613560565b91505092915050565b60006020828403121561360d5761360c612fb4565b5b600082013567ffffffffffffffff81111561362b5761362a612fb9565b5b613637848285016135c9565b91505092915050565b600061364b82613197565b9050919050565b61365b81613640565b811461366657600080fd5b50565b60008135905061367881613652565b92915050565b60006020828403121561369457613693612fb4565b5b60006136a284828501613669565b91505092915050565b6000819050919050565b6136be816136ab565b81146136c957600080fd5b50565b6000813590506136db816136b5565b92915050565b6000602082840312156136f7576136f6612fb4565b5b6000613705848285016136cc565b91505092915050565b61371781613043565b811461372257600080fd5b50565b6000813590506137348161370e565b92915050565b6000806040838503121561375157613750612fb4565b5b600061375f8582860161320a565b925050602061377085828601613725565b9150509250929050565b613783816136ab565b82525050565b600060208201905061379e600083018461377a565b92915050565b600067ffffffffffffffff8211156137bf576137be6133c0565b5b6137c8826130c8565b9050602081019050919050565b60006137e86137e3846137a4565b613420565b905082815260208101848484011115613804576138036133bb565b5b61380f84828561346c565b509392505050565b600082601f83011261382c5761382b613309565b5b813561383c8482602086016137d5565b91505092915050565b6000806000806080858703121561385f5761385e612fb4565b5b600061386d8782880161320a565b945050602061387e8782880161320a565b935050604061388f87828801613155565b925050606085013567ffffffffffffffff8111156138b0576138af612fb9565b5b6138bc87828801613817565b91505092959194509250565b600080604083850312156138df576138de612fb4565b5b60006138ed8582860161320a565b92505060206138fe8582860161320a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394f57607f821691505b60208210810361396257613961613908565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061399e602083613084565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f53414c455f4e4f545f4143544956450000000000000000000000000000000000600082015250565b6000613a0a600f83613084565b9150613a15826139d4565b602082019050919050565b60006020820190508181036000830152613a39816139fd565b9050919050565b7f57524f4e475f5052494345000000000000000000000000000000000000000000600082015250565b6000613a76600b83613084565b9150613a8182613a40565b602082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b6000613ae2600e83613084565b9150613aed82613aac565b602082019050919050565b60006020820190508181036000830152613b1181613ad5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b5282613134565b9150613b5d83613134565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9257613b91613b18565b5b828201905092915050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b6000613bd3601283613084565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f57484954454c4953545f4e4f545f5945545f46494e4953484544000000000000600082015250565b6000613c3f601a83613084565b9150613c4a82613c09565b602082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b7f57484954454c4953545f46494e49534845440000000000000000000000000000600082015250565b6000613cab601283613084565b9150613cb682613c75565b602082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f57484954454c4953545f4e4f545f564552494649454400000000000000000000600082015250565b6000613d17601683613084565b9150613d2282613ce1565b602082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d8782613134565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613db957613db8613b18565b5b600182019050919050565b600081905092915050565b6000613dda82613079565b613de48185613dc4565b9350613df4818560208601613095565b80840191505092915050565b6000613e0c8285613dcf565b9150613e188284613dcf565b91508190509392505050565b7f454e445f4c4553535f5448414e5f535441525400000000000000000000000000600082015250565b6000613e5a601383613084565b9150613e6582613e24565b602082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683613084565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b60008160601b9050919050565b6000613f3a82613f22565b9050919050565b6000613f4c82613f2f565b9050919050565b613f64613f5f826131b7565b613f41565b82525050565b6000613f768284613f53565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613fac82613f85565b613fb68185613f90565b9350613fc6818560208601613095565b613fcf816130c8565b840191505092915050565b6000608082019050613fef60008301876131c9565b613ffc60208301866131c9565b614009604083018561325f565b818103606083015261401b8184613fa1565b905095945050505050565b60008151905061403581612fea565b92915050565b60006020828403121561405157614050612fb4565b5b600061405f84828501614026565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a282613134565b91506140ad83613134565b9250826140bd576140bc614068565b5b828204905092915050565b60006140d382613134565b91506140de83613134565b9250828210156140f1576140f0613b18565b5b828203905092915050565b600061410782613134565b915061411283613134565b92508261412257614121614068565b5b828206905092915050565b6000819050919050565b614148614143826136ab565b61412d565b82525050565b600061415a8285614137565b60208201915061416a8284614137565b602082019150819050939250505056fea2646970667358221220ab153cf67be59b1d6ccff495d149fca5210e40dae5bc6cdae828d9e83e7b083164736f6c634300080d00330000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000000000633c74a0000000000000000000000000000000000000000000000000000000006345af20e74eabd991ca4826aada1ee1f8ef9cddd02565d9a30945672545d3c47d981d0200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000175477696e5a204e465420466f756e64657273205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000075477696e5a465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7477696e7a6e66742e636f6d2f2e6e65746c6966792f66756e6374696f6e732f6d657461646174612f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102135760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461072c578063ccb98ffc14610769578063e985e9c514610792578063eb8d2444146107cf578063f2fde38b146107fa5761021a565b8063a22cb46514610684578063a961e9e8146106ad578063aa98e0c6146106d8578063b88d4fde146107035761021a565b80637e15144b116100e75780637e15144b146105c35780638da5cb5b146105da57806391b7f5ed1461060557806395d89b411461062e578063a035b1fe146106595761021a565b8063715018a614610531578063729ad39e14610548578063756af45f146105715780637cb647591461059a5761021a565b806326092b831161019b57806342842e0e1161016a57806342842e0e1461043a57806355f804b31461046357806358371ccd1461048c5780636352211e146104b757806370a08231146104f45761021a565b806326092b83146103c0578063372f657c146103ca5780633889342b146103e65780633e0a322d146104115761021a565b80631115aff5116101e25780631115aff5146102ed57806318160ddd146103045780631d9857781461032f57806321de6b1d1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613016565b610823565b604051610253919061305e565b60405180910390f35b34801561026857600080fd5b50610271610835565b60405161027e9190613112565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061316a565b6108c7565b6040516102bb91906131d8565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061321f565b610943565b005b3480156102f957600080fd5b50610302610a4d565b005b34801561031057600080fd5b50610319610af5565b604051610326919061326e565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613289565b610b03565b604051610363919061305e565b60405180910390f35b34801561037857600080fd5b50610381610b23565b60405161038e919061305e565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906132b6565b610b36565b005b6103c8610b46565b005b6103e460048036038101906103df919061336e565b610d1d565b005b3480156103f257600080fd5b506103fb610f47565b604051610408919061305e565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061316a565b610f5a565b005b34801561044657600080fd5b50610461600480360381019061045c91906132b6565b610fe0565b005b34801561046f57600080fd5b5061048a600480360381019061048591906134eb565b611041565b005b34801561049857600080fd5b506104a16110d7565b6040516104ae919061326e565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061316a565b6110dd565b6040516104eb91906131d8565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613289565b6110f3565b604051610528919061326e565b60405180910390f35b34801561053d57600080fd5b506105466111c2565b005b34801561055457600080fd5b5061056f600480360381019061056a91906135f7565b61124a565b005b34801561057d57600080fd5b506105986004803603810190610593919061367e565b61136a565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906136e1565b611430565b005b3480156105cf57600080fd5b506105d86114b6565b005b3480156105e657600080fd5b506105ef61155e565b6040516105fc91906131d8565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061316a565b611588565b005b34801561063a57600080fd5b5061064361160e565b6040516106509190613112565b60405180910390f35b34801561066557600080fd5b5061066e6116a0565b60405161067b919061326e565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061373a565b6116a6565b005b3480156106b957600080fd5b506106c261181d565b6040516106cf919061326e565b60405180910390f35b3480156106e457600080fd5b506106ed611823565b6040516106fa9190613789565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613845565b611829565b005b34801561073857600080fd5b50610753600480360381019061074e919061316a565b61187c565b6040516107609190613112565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b919061316a565b61191a565b005b34801561079e57600080fd5b506107b960048036038101906107b491906138c8565b6119e4565b6040516107c6919061305e565b60405180910390f35b3480156107db57600080fd5b506107e4611a78565b6040516107f1919061305e565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613289565b611ab2565b005b600061082e82611ba9565b9050919050565b60606002805461084490613937565b80601f016020809104026020016040519081016040528092919081815260200182805461087090613937565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d282611c8b565b610908576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d4611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a065750610a04816109ff611cc5565b6119e4565b155b15610a3d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a48838383611ccd565b505050565b610a55611cc5565b73ffffffffffffffffffffffffffffffffffffffff16610a7361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906139b4565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600060015460005403905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b610b41838383611d7f565b505050565b610b4e611a78565b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613a20565b60405180910390fd5b6009543414610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613a8c565b60405180910390fd5b600f6000610bdd611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613af8565b60405180910390fd5b60646001610c71610af5565b610c7b9190613b47565b1115610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613be9565b60405180910390fd5b600e60009054906101000a900460ff16610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613c55565b60405180910390fd5b610d1b610d16611cc5565b61226e565b565b610d25611a78565b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613a20565b60405180910390fd5b6009543414610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613a8c565b60405180910390fd5b600f6000610db4611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613af8565b60405180910390fd5b60646001610e48610af5565b610e529190613b47565b1115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613be9565b60405180910390fd5b600e60009054906101000a900460ff1615610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90613cc1565b60405180910390fd5b6000610eed611cc5565b9050610efa8383836122d4565b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613d2d565b60405180910390fd5b610f428161226e565b505050565b600e60009054906101000a900460ff1681565b610f62611cc5565b73ffffffffffffffffffffffffffffffffffffffff16610f8061155e565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906139b4565b60405180910390fd5b80600a8190555050565b610feb838383611d7f565b6110068383836040518060200160405280600081525061235a565b61103c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b611049611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661106761155e565b73ffffffffffffffffffffffffffffffffffffffff16146110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b4906139b4565b60405180910390fd5b80600c90805190602001906110d3929190612ec4565b5050565b600b5481565b60006110e8826124d8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111ca611cc5565b73ffffffffffffffffffffffffffffffffffffffff166111e861155e565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906139b4565b60405180910390fd5b6112486000612754565b565b611252611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661127061155e565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906139b4565b60405180910390fd5b60008151905060646112d6610af5565b826112e19190613b47565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613be9565b60405180910390fd5b60005b818110156113655761135283828151811061134357611342613d4d565b5b6020026020010151600161281a565b808061135d90613d7c565b915050611325565b505050565b611372611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661139061155e565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906139b4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561142c573d6000803e3d6000fd5b5050565b611438611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661145661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906139b4565b60405180910390fd5b80600d8190555050565b6114be611cc5565b73ffffffffffffffffffffffffffffffffffffffff166114dc61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611529906139b4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611590611cc5565b73ffffffffffffffffffffffffffffffffffffffff166115ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906139b4565b60405180910390fd5b8060098190555050565b60606003805461161d90613937565b80601f016020809104026020016040519081016040528092919081815260200182805461164990613937565b80156116965780601f1061166b57610100808354040283529160200191611696565b820191906000526020600020905b81548152906001019060200180831161167957829003601f168201915b5050505050905090565b60095481565b6116ae611cc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611712576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061171f611cc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cc611cc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611811919061305e565b60405180910390a35050565b600a5481565b600d5481565b611834848484611d7f565b6118408484848461235a565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061188782611c8b565b6118bd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118c7612838565b905060008151036118e75760405180602001604052806000815250611912565b806118f1846128ca565b604051602001611902929190613e00565b6040516020818303038152906040525b915050919050565b611922611cc5565b73ffffffffffffffffffffffffffffffffffffffff1661194061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d906139b4565b60405180910390fd5b600a5481116119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613e70565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60019054906101000a900460ff1615611a985760019050611aaf565b600a544210158015611aac5750600b544211155b90505b90565b611aba611cc5565b73ffffffffffffffffffffffffffffffffffffffff16611ad861155e565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b25906139b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490613f02565b60405180910390fd5b611ba681612754565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c845750611c8382612a2a565b5b9050919050565b6000805482108015611cbe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d8a826124d8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611db1611cc5565b73ffffffffffffffffffffffffffffffffffffffff161480611de45750611de38260000151611dde611cc5565b6119e4565b5b80611e295750611df2611cc5565b73ffffffffffffffffffffffffffffffffffffffff16611e11846108c7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ecb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f31576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3e8585856001612a94565b611f4e6000848460000151611ccd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121fe576000548110156121fd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122678585856001612a9a565b5050505050565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122d181600161281a565b50565b60006001151561234e858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54856040516020016123339190613f6a565b60405160208183030381529060405280519060200120612aa0565b15151490509392505050565b600061237b8473ffffffffffffffffffffffffffffffffffffffff16612ab7565b156124cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a4611cc5565b8786866040518563ffffffff1660e01b81526004016123c69493929190613fda565b6020604051808303816000875af192505050801561240257506040513d601f19601f820116820180604052508101906123ff919061403b565b60015b61247b573d8060008114612432576040519150601f19603f3d011682016040523d82523d6000602084013e612437565b606091505b506000815103612473576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d0565b600190505b949350505050565b6124e0612f4a565b600082905060005481101561271d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ff57809250505061274f565b5b60011561271a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271557809250505061274f565b612600565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612834828260405180602001604052806000815250612aca565b5050565b6060600c805461284790613937565b80601f016020809104026020016040519081016040528092919081815260200182805461287390613937565b80156128c05780601f10612895576101008083540402835291602001916128c0565b820191906000526020600020905b8154815290600101906020018083116128a357829003601f168201915b5050505050905090565b606060008203612911576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a25565b600082905060005b6000821461294357808061292c90613d7c565b915050600a8261293c9190614097565b9150612919565b60008167ffffffffffffffff81111561295f5761295e6133c0565b5b6040519080825280601f01601f1916602001820160405280156129915781602001600182028036833780820191505090505b5090505b60008514612a1e576001826129aa91906140c8565b9150600a856129b991906140fc565b60306129c59190613b47565b60f81b8183815181106129db576129da613d4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a179190614097565b9450612995565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600082612aad8584612adc565b1490509392505050565b600080823b905060008111915050919050565b612ad78383836001612b8f565b505050565b60008082905060005b8451811015612b84576000858281518110612b0357612b02613d4d565b5b60200260200101519050808311612b44578281604051602001612b2792919061414e565b604051602081830303815290604052805190602001209250612b70565b8083604051602001612b5792919061414e565b6040516020818303038152906040528051906020012092505b508080612b7c90613d7c565b915050612ae5565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c426000868387612a94565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ea757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e5b5750612e59600088848861235a565b155b15612e92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612de0565b508060008190555050612ebd6000868387612a9a565b5050505050565b828054612ed090613937565b90600052602060002090601f016020900481019282612ef25760008555612f39565b82601f10612f0b57805160ff1916838001178555612f39565b82800160010185558215612f39579182015b82811115612f38578251825591602001919060010190612f1d565b5b509050612f469190612f8d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fa6576000816000905550600101612f8e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff381612fbe565b8114612ffe57600080fd5b50565b60008135905061301081612fea565b92915050565b60006020828403121561302c5761302b612fb4565b5b600061303a84828501613001565b91505092915050565b60008115159050919050565b61305881613043565b82525050565b6000602082019050613073600083018461304f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b3578082015181840152602081019050613098565b838111156130c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006130e482613079565b6130ee8185613084565b93506130fe818560208601613095565b613107816130c8565b840191505092915050565b6000602082019050818103600083015261312c81846130d9565b905092915050565b6000819050919050565b61314781613134565b811461315257600080fd5b50565b6000813590506131648161313e565b92915050565b6000602082840312156131805761317f612fb4565b5b600061318e84828501613155565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131c282613197565b9050919050565b6131d2816131b7565b82525050565b60006020820190506131ed60008301846131c9565b92915050565b6131fc816131b7565b811461320757600080fd5b50565b600081359050613219816131f3565b92915050565b6000806040838503121561323657613235612fb4565b5b60006132448582860161320a565b925050602061325585828601613155565b9150509250929050565b61326881613134565b82525050565b6000602082019050613283600083018461325f565b92915050565b60006020828403121561329f5761329e612fb4565b5b60006132ad8482850161320a565b91505092915050565b6000806000606084860312156132cf576132ce612fb4565b5b60006132dd8682870161320a565b93505060206132ee8682870161320a565b92505060406132ff86828701613155565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261332e5761332d613309565b5b8235905067ffffffffffffffff81111561334b5761334a61330e565b5b60208301915083602082028301111561336757613366613313565b5b9250929050565b6000806020838503121561338557613384612fb4565b5b600083013567ffffffffffffffff8111156133a3576133a2612fb9565b5b6133af85828601613318565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133f8826130c8565b810181811067ffffffffffffffff82111715613417576134166133c0565b5b80604052505050565b600061342a612faa565b905061343682826133ef565b919050565b600067ffffffffffffffff821115613456576134556133c0565b5b61345f826130c8565b9050602081019050919050565b82818337600083830152505050565b600061348e6134898461343b565b613420565b9050828152602081018484840111156134aa576134a96133bb565b5b6134b584828561346c565b509392505050565b600082601f8301126134d2576134d1613309565b5b81356134e284826020860161347b565b91505092915050565b60006020828403121561350157613500612fb4565b5b600082013567ffffffffffffffff81111561351f5761351e612fb9565b5b61352b848285016134bd565b91505092915050565b600067ffffffffffffffff82111561354f5761354e6133c0565b5b602082029050602081019050919050565b600061357361356e84613534565b613420565b9050808382526020820190506020840283018581111561359657613595613313565b5b835b818110156135bf57806135ab888261320a565b845260208401935050602081019050613598565b5050509392505050565b600082601f8301126135de576135dd613309565b5b81356135ee848260208601613560565b91505092915050565b60006020828403121561360d5761360c612fb4565b5b600082013567ffffffffffffffff81111561362b5761362a612fb9565b5b613637848285016135c9565b91505092915050565b600061364b82613197565b9050919050565b61365b81613640565b811461366657600080fd5b50565b60008135905061367881613652565b92915050565b60006020828403121561369457613693612fb4565b5b60006136a284828501613669565b91505092915050565b6000819050919050565b6136be816136ab565b81146136c957600080fd5b50565b6000813590506136db816136b5565b92915050565b6000602082840312156136f7576136f6612fb4565b5b6000613705848285016136cc565b91505092915050565b61371781613043565b811461372257600080fd5b50565b6000813590506137348161370e565b92915050565b6000806040838503121561375157613750612fb4565b5b600061375f8582860161320a565b925050602061377085828601613725565b9150509250929050565b613783816136ab565b82525050565b600060208201905061379e600083018461377a565b92915050565b600067ffffffffffffffff8211156137bf576137be6133c0565b5b6137c8826130c8565b9050602081019050919050565b60006137e86137e3846137a4565b613420565b905082815260208101848484011115613804576138036133bb565b5b61380f84828561346c565b509392505050565b600082601f83011261382c5761382b613309565b5b813561383c8482602086016137d5565b91505092915050565b6000806000806080858703121561385f5761385e612fb4565b5b600061386d8782880161320a565b945050602061387e8782880161320a565b935050604061388f87828801613155565b925050606085013567ffffffffffffffff8111156138b0576138af612fb9565b5b6138bc87828801613817565b91505092959194509250565b600080604083850312156138df576138de612fb4565b5b60006138ed8582860161320a565b92505060206138fe8582860161320a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394f57607f821691505b60208210810361396257613961613908565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061399e602083613084565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f53414c455f4e4f545f4143544956450000000000000000000000000000000000600082015250565b6000613a0a600f83613084565b9150613a15826139d4565b602082019050919050565b60006020820190508181036000830152613a39816139fd565b9050919050565b7f57524f4e475f5052494345000000000000000000000000000000000000000000600082015250565b6000613a76600b83613084565b9150613a8182613a40565b602082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b6000613ae2600e83613084565b9150613aed82613aac565b602082019050919050565b60006020820190508181036000830152613b1181613ad5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b5282613134565b9150613b5d83613134565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9257613b91613b18565b5b828201905092915050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b6000613bd3601283613084565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f57484954454c4953545f4e4f545f5945545f46494e4953484544000000000000600082015250565b6000613c3f601a83613084565b9150613c4a82613c09565b602082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b7f57484954454c4953545f46494e49534845440000000000000000000000000000600082015250565b6000613cab601283613084565b9150613cb682613c75565b602082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f57484954454c4953545f4e4f545f564552494649454400000000000000000000600082015250565b6000613d17601683613084565b9150613d2282613ce1565b602082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d8782613134565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613db957613db8613b18565b5b600182019050919050565b600081905092915050565b6000613dda82613079565b613de48185613dc4565b9350613df4818560208601613095565b80840191505092915050565b6000613e0c8285613dcf565b9150613e188284613dcf565b91508190509392505050565b7f454e445f4c4553535f5448414e5f535441525400000000000000000000000000600082015250565b6000613e5a601383613084565b9150613e6582613e24565b602082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683613084565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b60008160601b9050919050565b6000613f3a82613f22565b9050919050565b6000613f4c82613f2f565b9050919050565b613f64613f5f826131b7565b613f41565b82525050565b6000613f768284613f53565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613fac82613f85565b613fb68185613f90565b9350613fc6818560208601613095565b613fcf816130c8565b840191505092915050565b6000608082019050613fef60008301876131c9565b613ffc60208301866131c9565b614009604083018561325f565b818103606083015261401b8184613fa1565b905095945050505050565b60008151905061403581612fea565b92915050565b60006020828403121561405157614050612fb4565b5b600061405f84828501614026565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a282613134565b91506140ad83613134565b9250826140bd576140bc614068565b5b828204905092915050565b60006140d382613134565b91506140de83613134565b9250828210156140f1576140f0613b18565b5b828203905092915050565b600061410782613134565b915061411283613134565b92508261412257614121614068565b5b828206905092915050565b6000819050919050565b614148614143826136ab565b61412d565b82525050565b600061415a8285614137565b60208201915061416a8284614137565b602082019150819050939250505056fea2646970667358221220ab153cf67be59b1d6ccff495d149fca5210e40dae5bc6cdae828d9e83e7b083164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000000000633c74a0000000000000000000000000000000000000000000000000000000006345af20e74eabd991ca4826aada1ee1f8ef9cddd02565d9a30945672545d3c47d981d0200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000175477696e5a204e465420466f756e64657273205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000075477696e5a465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7477696e7a6e66742e636f6d2f2e6e65746c6966792f66756e6374696f6e732f6d657461646174612f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : price_ (uint256): 150000000000000000
Arg [1] : _startSaleTime (uint256): 1664906400
Arg [2] : _endSaleTime (uint256): 1665511200
Arg [3] : _whitelistMerkleRoot (bytes32): 0xe74eabd991ca4826aada1ee1f8ef9cddd02565d9a30945672545d3c47d981d02
Arg [4] : name (string): TwinZ NFT Founders Pass
Arg [5] : symbol (string): TwinZFP
Arg [6] : baseUri (string): https://twinznft.com/.netlify/functions/metadata/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000214e8348c4f0000
Arg [1] : 00000000000000000000000000000000000000000000000000000000633c74a0
Arg [2] : 000000000000000000000000000000000000000000000000000000006345af20
Arg [3] : e74eabd991ca4826aada1ee1f8ef9cddd02565d9a30945672545d3c47d981d02
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [8] : 5477696e5a204e465420466f756e646572732050617373000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 5477696e5a465000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [12] : 68747470733a2f2f7477696e7a6e66742e636f6d2f2e6e65746c6966792f6675
Arg [13] : 6e6374696f6e732f6d657461646174612f000000000000000000000000000000
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.