ERC-721
Overview
Max Total Supply
4,444 EVE
Holders
1,270
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EVELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
thecollecteve
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // ERC721A Smart Contract & Web3 Technology x NFTElite.com for TheCollectEVE pragma solidity ^0.8.4; pragma abicoder v2; import "./ERC721A.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; contract thecollecteve is ERC721A, Ownable, DefaultOperatorFilterer { using SafeMath for uint256; using Strings for uint256; bytes32 public merkleRoot; bytes32 public vipMerkleRoot; uint256 public MAX_SUPPLY= 4444; uint256 public MAX_WL_SUPPLY = 4000; uint256 public MAX_VIPWL_SUPPLY = 4000; uint256 public WL_PRICE = 0 ether; uint256 public VIPWL_PRICE = 0 ether; uint256 public PRICE = 0 ether; uint256 public giveawayLimit = 4444; string public baseTokenURI; bool public whitelistSaleIsActive; bool public saleIsActive; address private wallet1 = 0xDbD10Ff27EA8c4d8ea6795397996361862091410; // Wallet 1 - Project address public Authorized = 0x7a29d9a21A45E269F1bFFFa15a84c16BA0050E27; // Dev Wallet for Testing (no percentage) uint256 public maxPurchase = 2; uint256 public maxWLPurchase = 1; uint256 public maxVIPPurchase = 2; uint256 public maxTxWL = 2; uint256 public maxTxVIP = 2; uint256 public maxTx = 2; constructor() ERC721A("EVE", "EVE") {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier onlyAuthorized { require(msg.sender == owner() || msg.sender == Authorized , "Not authorized"); _; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function flipWhitelistSaleState() external onlyOwner { whitelistSaleIsActive = !whitelistSaleIsActive; } function updateMerkleRoot(bytes32 newMerkleRoot) external onlyOwner { merkleRoot = newMerkleRoot; } function updateVIPMerkleRoot(bytes32 newMerkleRoot) external onlyOwner { vipMerkleRoot = newMerkleRoot; } 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(),".json")) : ""; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function whitelistMint(uint256 numberOfTokens, bytes32[] calldata merkleProof ) payable external callerIsUser { require(whitelistSaleIsActive, "Whitelist Sale must be active to mint"); require(totalSupply().add(numberOfTokens) <= MAX_WL_SUPPLY, "Total WL Supply has been minted"); require(numberOfTokens > 0 && numberOfTokens <= maxTxWL, "Can only mint upto 1 NFTs in a transaction"); require(msg.value == WL_PRICE.mul(numberOfTokens), "Ether value sent is not correct"); require(numberMinted(msg.sender).add(numberOfTokens) <= maxWLPurchase,"Exceeds Max mints allowed per whitelisted wallet"); // Verify the merkle proof require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender)) ), "Invalid proof"); _safeMint(msg.sender, numberOfTokens); } function vipMint(uint256 numberOfTokens, bytes32[] calldata merkleProof ) payable external callerIsUser { require(whitelistSaleIsActive, "Whitelist Sale must be active to mint"); require(totalSupply().add(numberOfTokens) <= MAX_VIPWL_SUPPLY, "Total VIPWL Supply has been minted"); require(numberOfTokens > 0 && numberOfTokens <= maxTxVIP, "Can only mint max NFTs in a transaction"); require(msg.value == VIPWL_PRICE.mul(numberOfTokens), "Ether value sent is not correct"); require(numberMinted(msg.sender).add(numberOfTokens) <= maxVIPPurchase,"Exceeds Max mints allowed per whitelisted wallet"); // Verify the merkle proof require(MerkleProof.verify(merkleProof, vipMerkleRoot, keccak256(abi.encodePacked(msg.sender)) ), "Invalid proof"); _safeMint(msg.sender, numberOfTokens); } function mint(uint256 numberOfTokens) external payable callerIsUser { require(saleIsActive, "Sale must be active to mint"); require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Total Supply has been minted"); require(msg.value == PRICE.mul(numberOfTokens), "Ether value sent is not correct"); require(numberOfTokens > 0 && numberOfTokens <= maxTx, "1 pTX allowed"); require(numberMinted(msg.sender).add(numberOfTokens) <= maxPurchase,"Exceeds Max mints allowed per wallet"); _safeMint(msg.sender, numberOfTokens); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawAll() external onlyOwner { require(address(this).balance > 0, "No balance"); uint256 _amount = address(this).balance; (bool wallet1Success, ) = wallet1.call{value: _amount.mul(100).div(100)}(""); require(wallet1Success,"Withdrawal failed."); } function giveAway(uint256 numberOfTokens, address to) external onlyOwner { require(giveawayLimit.sub(numberOfTokens) >= 0,"Giveaways exhausted"); _safeMint(to, numberOfTokens); giveawayLimit = giveawayLimit.sub(numberOfTokens); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setMaxSupply(uint256 _mxSupply) public onlyAuthorized { MAX_SUPPLY = _mxSupply; } function setWLMaxSupply(uint256 _mxWLSupply) public onlyAuthorized { MAX_WL_SUPPLY = _mxWLSupply; } function setVIPMaxSupply(uint256 _mxVIPSupply) public onlyAuthorized { MAX_VIPWL_SUPPLY = _mxVIPSupply; } function setPriceWL(uint256 _wlPrice) public onlyAuthorized { WL_PRICE = _wlPrice; } function setPriceVIPWL(uint256 _vipwlPrice) public onlyAuthorized { VIPWL_PRICE = _vipwlPrice; } function setPrice(uint256 _price) public onlyAuthorized { PRICE = _price; } function setMaxTxLimit(uint256 _txLimit) public onlyAuthorized { maxTx = _txLimit; } function setMaxTxWL(uint256 _txLimit) public onlyAuthorized { maxTxWL = _txLimit; } function setMaxTxVIP(uint256 _txLimit) public onlyAuthorized { maxTxVIP = _txLimit; } function setMaxPurchaseLimit(uint256 _limit) public onlyAuthorized { maxPurchase = _limit; } function setMaxWLPurchaseLimit(uint256 _limit) public onlyAuthorized { maxWLPurchase = _limit; } function setMaxVIPPurchaseLimit(uint256 _limit) public onlyAuthorized { maxVIPPurchase = _limit; } /* --Opensea Filterer-- */ function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"Authorized","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VIPWL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIPWL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxVIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVIPPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":"_limit","type":"uint256"}],"name":"setMaxPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxVIP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxVIPPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxWLPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vipwlPrice","type":"uint256"}],"name":"setPriceVIPWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxVIPSupply","type":"uint256"}],"name":"setVIPMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxWLSupply","type":"uint256"}],"name":"setWLMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateVIPMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261115c600b55610fa0600c55610fa0600d556000600e556000600f55600060105561115c60115573dbd10ff27ea8c4d8ea6795397996361862091410601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a29d9a21a45e269f1bfffa15a84c16ba0050e27601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600260155560016016556002601755600260185560026019556002601a553480156200010057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600381526020017f45564500000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f455645000000000000000000000000000000000000000000000000000000000081525081600290816200019591906200072e565b508060039081620001a791906200072e565b50620001b8620003dd60201b60201c565b6000819055505050620001e0620001d4620003e660201b60201c565b620003ee60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d55780156200029b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002619291906200085a565b600060405180830381600087803b1580156200027c57600080fd5b505af115801562000291573d6000803e3d6000fd5b50505050620003d4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000355576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031b9291906200085a565b600060405180830381600087803b1580156200033657600080fd5b505af11580156200034b573d6000803e3d6000fd5b50505050620003d3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039e919062000887565b600060405180830381600087803b158015620003b957600080fd5b505af1158015620003ce573d6000803e3d6000fd5b505050505b5b5b5050620008a4565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053657607f821691505b6020821081036200054c576200054b620004ee565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000577565b620005c2868362000577565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060f620006096200060384620005da565b620005e4565b620005da565b9050919050565b6000819050919050565b6200062b83620005ee565b620006436200063a8262000616565b84845462000584565b825550505050565b600090565b6200065a6200064b565b6200066781848462000620565b505050565b5b818110156200068f576200068360008262000650565b6001810190506200066d565b5050565b601f821115620006de57620006a88162000552565b620006b38462000567565b81016020851015620006c3578190505b620006db620006d28562000567565b8301826200066c565b50505b505050565b600082821c905092915050565b60006200070360001984600802620006e3565b1980831691505092915050565b60006200071e8383620006f0565b9150826002028217905092915050565b6200073982620004b4565b67ffffffffffffffff811115620007555762000754620004bf565b5b6200076182546200051d565b6200076e82828562000693565b600060209050601f831160018114620007a6576000841562000791578287015190505b6200079d858262000710565b8655506200080d565b601f198416620007b68662000552565b60005b82811015620007e057848901518255600182019150602085019450602081019050620007b9565b86831015620008005784890151620007fc601f891682620006f0565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008428262000815565b9050919050565b620008548162000835565b82525050565b600060408201905062000871600083018562000849565b62000880602083018462000849565b9392505050565b60006020820190506200089e600083018462000849565b92915050565b615e6880620008b46000396000f3fe6080604052600436106103975760003560e01c8063853828b6116101dc578063b53cff0f11610102578063d547cfb7116100a0578063ea64f7dd1161006f578063ea64f7dd14610cc9578063eacfc0ae14610cf2578063eb8d244414610d1d578063f2fde38b14610d4857610397565b8063d547cfb714610bf9578063db37faaf14610c24578063dc33e68114610c4f578063e985e9c514610c8c57610397565b8063c87b56dd116100dc578063c87b56dd14610b60578063c9d9b9f514610b9d578063d1beca6414610bc6578063d2cab05614610bdd57610397565b8063b53cff0f14610ae3578063b88d4fde14610b0c578063c56acc8f14610b3557610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a3d578063a29f1f6414610a66578063a64a281a14610a91578063adc5636f14610aba57610397565b806395d89b41146109a0578063977b055b146109cb5780639db7863f146109f6578063a0712d6814610a2157610397565b80638d859f3e116101b65780638d859f3e146108f85780638da5cb5b146109235780638f3a89cf1461094e57806391b7f5ed1461097757610397565b8063853828b61461089c57806387ea9f21146108b357806388ef0018146108dc57610397565b806345e313aa116102c15780636895f1ca1161025f578063715018a61161022e578063715018a61461080657806372a1056c1461081d5780637437681e1461084857806381d8488f1461087357610397565b80636895f1ca1461074c5780636d181fe6146107755780636f8b44b0146107a057806370a08231146107c957610397565b806355f804b31161029b57806355f804b31461069257806358ae3c54146106bb5780636352211e146106e657806364f5a5bb1461072357610397565b806345e313aa146106155780634783f0ef1461063e5780634f8f591b1461066757610397565b8063261d3b211161033957806334918dfd1161030857806334918dfd146105935780633ccfd60b146105aa5780633f676c50146105c157806342842e0e146105ec57610397565b8063261d3b21146104e95780632eb4a7ab1461051257806331c3c7a01461053d57806332cb6b0c1461056857610397565b8063095ea7b311610375578063095ea7b31461044157806310b5454d1461046a57806318160ddd1461049557806323b872dd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614623565b610d71565b6040516103d0919061466b565b60405180910390f35b3480156103e557600080fd5b506103ee610e53565b6040516103fb9190614716565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061476e565b610ee5565b60405161043891906147dc565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190614823565b610f61565b005b34801561047657600080fd5b5061047f61106b565b60405161048c919061466b565b60405180910390f35b3480156104a157600080fd5b506104aa61107e565b6040516104b79190614872565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061488d565b611095565b005b3480156104f557600080fd5b50610510600480360381019061050b91906148e0565b611277565b005b34801561051e57600080fd5b50610527611300565b6040516105349190614939565b60405180910390f35b34801561054957600080fd5b50610552611306565b60405161055f9190614872565b60405180910390f35b34801561057457600080fd5b5061057d61130c565b60405161058a9190614872565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b005b3480156105b657600080fd5b506105bf611346565b005b3480156105cd57600080fd5b506105d661139d565b6040516105e39190614872565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061488d565b6113a3565b005b34801561062157600080fd5b5061063c6004803603810190610637919061476e565b611585565b005b34801561064a57600080fd5b5061066560048036038101906106609190614980565b61165c565b005b34801561067357600080fd5b5061067c61166e565b6040516106899190614872565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614ae2565b611674565b005b3480156106c757600080fd5b506106d061168f565b6040516106dd9190614872565b60405180910390f35b3480156106f257600080fd5b5061070d6004803603810190610708919061476e565b611695565b60405161071a91906147dc565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061476e565b6116ab565b005b34801561075857600080fd5b50610773600480360381019061076e919061476e565b611782565b005b34801561078157600080fd5b5061078a611859565b6040516107979190614872565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c2919061476e565b61185f565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614b2b565b611936565b6040516107fd9190614872565b60405180910390f35b34801561081257600080fd5b5061081b611a05565b005b34801561082957600080fd5b50610832611a19565b60405161083f9190614939565b60405180910390f35b34801561085457600080fd5b5061085d611a1f565b60405161086a9190614872565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061476e565b611a25565b005b3480156108a857600080fd5b506108b1611afc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061476e565b611c44565b005b6108f660048036038101906108f19190614bb8565b611d1b565b005b34801561090457600080fd5b5061090d611ffe565b60405161091a9190614872565b60405180910390f35b34801561092f57600080fd5b50610938612004565b60405161094591906147dc565b60405180910390f35b34801561095a57600080fd5b506109756004803603810190610970919061476e565b61202e565b005b34801561098357600080fd5b5061099e6004803603810190610999919061476e565b612105565b005b3480156109ac57600080fd5b506109b56121dc565b6040516109c29190614716565b60405180910390f35b3480156109d757600080fd5b506109e061226e565b6040516109ed9190614872565b60405180910390f35b348015610a0257600080fd5b50610a0b612274565b604051610a189190614872565b60405180910390f35b610a3b6004803603810190610a36919061476e565b61227a565b005b348015610a4957600080fd5b50610a646004803603810190610a5f9190614c44565b6124a8565b005b348015610a7257600080fd5b50610a7b61261f565b604051610a889190614872565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061476e565b612625565b005b348015610ac657600080fd5b50610ae16004803603810190610adc919061476e565b6126fc565b005b348015610aef57600080fd5b50610b0a6004803603810190610b05919061476e565b6127d3565b005b348015610b1857600080fd5b50610b336004803603810190610b2e9190614d25565b6128aa565b005b348015610b4157600080fd5b50610b4a612a8f565b604051610b579190614872565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b82919061476e565b612a95565b604051610b949190614716565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614980565b612b33565b005b348015610bd257600080fd5b50610bdb612b45565b005b610bf76004803603810190610bf29190614bb8565b612b79565b005b348015610c0557600080fd5b50610c0e612e5c565b604051610c1b9190614716565b60405180910390f35b348015610c3057600080fd5b50610c39612eea565b604051610c469190614872565b60405180910390f35b348015610c5b57600080fd5b50610c766004803603810190610c719190614b2b565b612ef0565b604051610c839190614872565b60405180910390f35b348015610c9857600080fd5b50610cb36004803603810190610cae9190614da8565b612f02565b604051610cc0919061466b565b60405180910390f35b348015610cd557600080fd5b50610cf06004803603810190610ceb919061476e565b612f96565b005b348015610cfe57600080fd5b50610d0761306d565b604051610d1491906147dc565b60405180910390f35b348015610d2957600080fd5b50610d32613093565b604051610d3f919061466b565b60405180910390f35b348015610d5457600080fd5b50610d6f6004803603810190610d6a9190614b2b565b6130a6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4c5750610e4b82613129565b5b9050919050565b606060028054610e6290614e17565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90614e17565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b6000610ef082613193565b610f26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6c82611695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff26131e1565b73ffffffffffffffffffffffffffffffffffffffff161415801561102457506110228161101d6131e1565b612f02565b155b1561105b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110668383836131e9565b505050565b601360009054906101000a900460ff1681565b600061108861329b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611265573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611107576111028484846132a4565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611150929190614e48565b602060405180830381865afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190614e86565b801561122357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e1929190614e48565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190614e86565b5b61126457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125b91906147dc565b60405180910390fd5b5b6112708484846132a4565b5b50505050565b61127f6132b4565b60006112968360115461333290919063ffffffff16565b10156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614eff565b60405180910390fd5b6112e18183613348565b6112f68260115461333290919063ffffffff16565b6011819055505050565b60095481565b600e5481565b600b5481565b61131a6132b4565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61134e6132b4565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611399573d6000803e3d6000fd5b5050565b600d5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611573573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141557611410848484613366565b61157f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161145e929190614e48565b602060405180830381865afa15801561147b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149f9190614e86565b801561153157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114ef929190614e48565b602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190614e86565b5b61157257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161156991906147dc565b60405180910390fd5b5b61157e848484613366565b5b50505050565b61158d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116135750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614f6b565b60405180910390fd5b8060158190555050565b6116646132b4565b8060098190555050565b60195481565b61167c6132b4565b806012908161168b9190615137565b5050565b60115481565b60006116a082613386565b600001519050919050565b6116b3612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117395750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614f6b565b60405180910390fd5b80601a8190555050565b61178a612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118105750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690614f6b565b60405180910390fd5b8060178190555050565b60175481565b611867612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ed5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390614f6b565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a0d6132b4565b611a176000613615565b565b600a5481565b601a5481565b611a2d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ab35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614f6b565b60405180910390fd5b80600e8190555050565b611b046132b4565b60004711611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90615255565b60405180910390fd5b60004790506000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bae6064611ba06064866136db90919063ffffffff16565b6136f190919063ffffffff16565b604051611bba906152a6565b60006040518083038185875af1925050503d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b5050905080611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790615307565b60405180910390fd5b5050565b611c4c612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611cd25750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614f6b565b60405180910390fd5b8060188190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090615373565b60405180910390fd5b601360009054906101000a900460ff16611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90615405565b60405180910390fd5b600d54611df584611de761107e565b61370790919063ffffffff16565b1115611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90615497565b60405180910390fd5b600083118015611e4857506019548311155b611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90615529565b60405180910390fd5b611e9c83600f546136db90919063ffffffff16565b3414611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490615595565b60405180910390fd5b601754611efb84611eed33612ef0565b61370790919063ffffffff16565b1115611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390615627565b60405180910390fd5b611fb0828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001611f95919061568f565b6040516020818303038152906040528051906020012061371d565b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe6906156f6565b60405180910390fd5b611ff93384613348565b505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612036612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120bc5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614f6b565b60405180910390fd5b8060168190555050565b61210d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806121935750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990614f6b565b60405180910390fd5b8060108190555050565b6060600380546121eb90614e17565b80601f016020809104026020016040519081016040528092919081815260200182805461221790614e17565b80156122645780601f1061223957610100808354040283529160200191612264565b820191906000526020600020905b81548152906001019060200180831161224757829003601f168201915b5050505050905090565b60155481565b60185481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90615373565b60405180910390fd5b601360019054906101000a900460ff16612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90615762565b60405180910390fd5b600b546123548261234661107e565b61370790919063ffffffff16565b1115612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c906157ce565b60405180910390fd5b6123aa816010546136db90919063ffffffff16565b34146123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290615595565b60405180910390fd5b6000811180156123fd5750601a548111155b61243c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124339061583a565b60405180910390fd5b60155461245a8261244c33612ef0565b61370790919063ffffffff16565b111561249b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612492906158cc565b60405180910390fd5b6124a53382613348565b50565b6124b06131e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612514576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125216131e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ce6131e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612613919061466b565b60405180910390a35050565b600f5481565b61262d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806126b35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990614f6b565b60405180910390fd5b8060198190555050565b612704612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061278a5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c090614f6b565b60405180910390fd5b80600d8190555050565b6127db612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128615750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614f6b565b60405180910390fd5b80600c8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612a7b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361291d5761291885858585613734565b612a88565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612966929190614e48565b602060405180830381865afa158015612983573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a79190614e86565b8015612a3957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016129f7929190614e48565b602060405180830381865afa158015612a14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a389190614e86565b5b612a7a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612a7191906147dc565b60405180910390fd5b5b612a8785858585613734565b5b5050505050565b600c5481565b6060612aa082613193565b612ad6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612ae06137b0565b90506000815111612b005760405180602001604052806000815250612b2b565b80612b0a84613842565b604051602001612b1b929190615974565b6040516020818303038152906040525b915050919050565b612b3b6132b4565b80600a8190555050565b612b4d6132b4565b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde90615373565b60405180910390fd5b601360009054906101000a900460ff16612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90615405565b60405180910390fd5b600c54612c5384612c4561107e565b61370790919063ffffffff16565b1115612c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8b906159ef565b60405180910390fd5b600083118015612ca657506018548311155b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90615a81565b60405180910390fd5b612cfa83600e546136db90919063ffffffff16565b3414612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290615595565b60405180910390fd5b601654612d5984612d4b33612ef0565b61370790919063ffffffff16565b1115612d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9190615627565b60405180910390fd5b612e0e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095433604051602001612df3919061568f565b6040516020818303038152906040528051906020012061371d565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906156f6565b60405180910390fd5b612e573384613348565b505050565b60128054612e6990614e17565b80601f0160208091040260200160405190810160405280929190818152602001828054612e9590614e17565b8015612ee25780601f10612eb757610100808354040283529160200191612ee2565b820191906000526020600020905b815481529060010190602001808311612ec557829003601f168201915b505050505081565b60165481565b6000612efb82613910565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612f9e612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806130245750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305a90614f6b565b60405180910390fd5b80600f8190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b6130ae6132b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490615b13565b60405180910390fd5b61312681613615565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161319e61329b565b111580156131ad575060005482105b80156131da575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6132af83838361397a565b505050565b6132bc6131e1565b73ffffffffffffffffffffffffffffffffffffffff166132da612004565b73ffffffffffffffffffffffffffffffffffffffff1614613330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332790615b7f565b60405180910390fd5b565b600081836133409190615bce565b905092915050565b613362828260405180602001604052806000815250613e2e565b5050565b613381838383604051806020016040528060008152506128aa565b505050565b61338e614574565b60008290508061339c61329b565b111580156133ab575060005481105b156135de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134c0578092505050613610565b5b6001156135db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135d6578092505050613610565b6134c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836136e99190615c02565b905092915050565b600081836136ff9190615c73565b905092915050565b600081836137159190615ca4565b905092915050565b60008261372a8584613e40565b1490509392505050565b61373f84848461397a565b61375e8373ffffffffffffffffffffffffffffffffffffffff16613e96565b8015613773575061377184848484613eb9565b155b156137aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060601280546137bf90614e17565b80601f01602080910402602001604051908101604052809291908181526020018280546137eb90614e17565b80156138385780601f1061380d57610100808354040283529160200191613838565b820191906000526020600020905b81548152906001019060200180831161381b57829003601f168201915b5050505050905090565b60606000600161385184614009565b01905060008167ffffffffffffffff8111156138705761386f6149b7565b5b6040519080825280601f01601f1916602001820160405280156138a25781602001600182028036833780820191505090505b509050600082602001820190505b600115613905578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816138f9576138f8615c44565b5b049450600085036138b0575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061398582613386565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146139f0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613a116131e1565b73ffffffffffffffffffffffffffffffffffffffff161480613a405750613a3f85613a3a6131e1565b612f02565b5b80613a855750613a4e6131e1565b73ffffffffffffffffffffffffffffffffffffffff16613a6d84610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613abe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613b24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b31858585600161415c565b613b3d600084876131e9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613dbc576000548214613dbb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e278585856001614162565b5050505050565b613e3b8383836001614168565b505050565b60008082905060005b8451811015613e8b57613e7682868381518110613e6957613e68615cd8565b5b6020026020010151614532565b91508080613e8390615d07565b915050613e49565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613edf6131e1565b8786866040518563ffffffff1660e01b8152600401613f019493929190615da4565b6020604051808303816000875af1925050508015613f3d57506040513d601f19601f82011682018060405250810190613f3a9190615e05565b60015b613fb6573d8060008114613f6d576040519150601f19603f3d011682016040523d82523d6000602084013e613f72565b606091505b506000815103613fae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614067577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161405d5761405c615c44565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106140a4576d04ee2d6d415b85acef8100000000838161409a57614099615c44565b5b0492506020810190505b662386f26fc1000083106140d357662386f26fc1000083816140c9576140c8615c44565b5b0492506010810190505b6305f5e10083106140fc576305f5e10083816140f2576140f1615c44565b5b0492506008810190505b612710831061412157612710838161411757614116615c44565b5b0492506004810190505b60648310614144576064838161413a57614139615c44565b5b0492506002810190505b600a8310614153576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036141d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361420e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61421b600086838761415c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156143e557506143e48773ffffffffffffffffffffffffffffffffffffffff16613e96565b5b156144aa575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461445a6000888480600101955088613eb9565b614490576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036143eb5782600054146144a557600080fd5b614515565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036144ab575b81600081905550505061452b6000868387614162565b5050505050565b600081831061454a57614545828461455d565b614555565b614554838361455d565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614600816145cb565b811461460b57600080fd5b50565b60008135905061461d816145f7565b92915050565b600060208284031215614639576146386145c1565b5b60006146478482850161460e565b91505092915050565b60008115159050919050565b61466581614650565b82525050565b6000602082019050614680600083018461465c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146c05780820151818401526020810190506146a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e882614686565b6146f28185614691565b93506147028185602086016146a2565b61470b816146cc565b840191505092915050565b6000602082019050818103600083015261473081846146dd565b905092915050565b6000819050919050565b61474b81614738565b811461475657600080fd5b50565b60008135905061476881614742565b92915050565b600060208284031215614784576147836145c1565b5b600061479284828501614759565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006147c68261479b565b9050919050565b6147d6816147bb565b82525050565b60006020820190506147f160008301846147cd565b92915050565b614800816147bb565b811461480b57600080fd5b50565b60008135905061481d816147f7565b92915050565b6000806040838503121561483a576148396145c1565b5b60006148488582860161480e565b925050602061485985828601614759565b9150509250929050565b61486c81614738565b82525050565b60006020820190506148876000830184614863565b92915050565b6000806000606084860312156148a6576148a56145c1565b5b60006148b48682870161480e565b93505060206148c58682870161480e565b92505060406148d686828701614759565b9150509250925092565b600080604083850312156148f7576148f66145c1565b5b600061490585828601614759565b92505060206149168582860161480e565b9150509250929050565b6000819050919050565b61493381614920565b82525050565b600060208201905061494e600083018461492a565b92915050565b61495d81614920565b811461496857600080fd5b50565b60008135905061497a81614954565b92915050565b600060208284031215614996576149956145c1565b5b60006149a48482850161496b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6149ef826146cc565b810181811067ffffffffffffffff82111715614a0e57614a0d6149b7565b5b80604052505050565b6000614a216145b7565b9050614a2d82826149e6565b919050565b600067ffffffffffffffff821115614a4d57614a4c6149b7565b5b614a56826146cc565b9050602081019050919050565b82818337600083830152505050565b6000614a85614a8084614a32565b614a17565b905082815260208101848484011115614aa157614aa06149b2565b5b614aac848285614a63565b509392505050565b600082601f830112614ac957614ac86149ad565b5b8135614ad9848260208601614a72565b91505092915050565b600060208284031215614af857614af76145c1565b5b600082013567ffffffffffffffff811115614b1657614b156145c6565b5b614b2284828501614ab4565b91505092915050565b600060208284031215614b4157614b406145c1565b5b6000614b4f8482850161480e565b91505092915050565b600080fd5b600080fd5b60008083601f840112614b7857614b776149ad565b5b8235905067ffffffffffffffff811115614b9557614b94614b58565b5b602083019150836020820283011115614bb157614bb0614b5d565b5b9250929050565b600080600060408486031215614bd157614bd06145c1565b5b6000614bdf86828701614759565b935050602084013567ffffffffffffffff811115614c0057614bff6145c6565b5b614c0c86828701614b62565b92509250509250925092565b614c2181614650565b8114614c2c57600080fd5b50565b600081359050614c3e81614c18565b92915050565b60008060408385031215614c5b57614c5a6145c1565b5b6000614c698582860161480e565b9250506020614c7a85828601614c2f565b9150509250929050565b600067ffffffffffffffff821115614c9f57614c9e6149b7565b5b614ca8826146cc565b9050602081019050919050565b6000614cc8614cc384614c84565b614a17565b905082815260208101848484011115614ce457614ce36149b2565b5b614cef848285614a63565b509392505050565b600082601f830112614d0c57614d0b6149ad565b5b8135614d1c848260208601614cb5565b91505092915050565b60008060008060808587031215614d3f57614d3e6145c1565b5b6000614d4d8782880161480e565b9450506020614d5e8782880161480e565b9350506040614d6f87828801614759565b925050606085013567ffffffffffffffff811115614d9057614d8f6145c6565b5b614d9c87828801614cf7565b91505092959194509250565b60008060408385031215614dbf57614dbe6145c1565b5b6000614dcd8582860161480e565b9250506020614dde8582860161480e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614e2f57607f821691505b602082108103614e4257614e41614de8565b5b50919050565b6000604082019050614e5d60008301856147cd565b614e6a60208301846147cd565b9392505050565b600081519050614e8081614c18565b92915050565b600060208284031215614e9c57614e9b6145c1565b5b6000614eaa84828501614e71565b91505092915050565b7f4769766561776179732065786861757374656400000000000000000000000000600082015250565b6000614ee9601383614691565b9150614ef482614eb3565b602082019050919050565b60006020820190508181036000830152614f1881614edc565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000614f55600e83614691565b9150614f6082614f1f565b602082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614fed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614fb0565b614ff78683614fb0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061503461502f61502a84614738565b61500f565b614738565b9050919050565b6000819050919050565b61504e83615019565b61506261505a8261503b565b848454614fbd565b825550505050565b600090565b61507761506a565b615082818484615045565b505050565b5b818110156150a65761509b60008261506f565b600181019050615088565b5050565b601f8211156150eb576150bc81614f8b565b6150c584614fa0565b810160208510156150d4578190505b6150e86150e085614fa0565b830182615087565b50505b505050565b600082821c905092915050565b600061510e600019846008026150f0565b1980831691505092915050565b600061512783836150fd565b9150826002028217905092915050565b61514082614686565b67ffffffffffffffff811115615159576151586149b7565b5b6151638254614e17565b61516e8282856150aa565b600060209050601f8311600181146151a1576000841561518f578287015190505b615199858261511b565b865550615201565b601f1984166151af86614f8b565b60005b828110156151d7578489015182556001820191506020850194506020810190506151b2565b868310156151f457848901516151f0601f8916826150fd565b8355505b6001600288020188555050505b505050505050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b600061523f600a83614691565b915061524a82615209565b602082019050919050565b6000602082019050818103600083015261526e81615232565b9050919050565b600081905092915050565b50565b6000615290600083615275565b915061529b82615280565b600082019050919050565b60006152b182615283565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b60006152f1601283614691565b91506152fc826152bb565b602082019050919050565b60006020820190508181036000830152615320816152e4565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061535d601e83614691565b915061536882615327565b602082019050919050565b6000602082019050818103600083015261538c81615350565b9050919050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b60006153ef602583614691565b91506153fa82615393565b604082019050919050565b6000602082019050818103600083015261541e816153e2565b9050919050565b7f546f74616c20564950574c20537570706c7920686173206265656e206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000615481602283614691565b915061548c82615425565b604082019050919050565b600060208201905081810360008301526154b081615474565b9050919050565b7f43616e206f6e6c79206d696e74206d6178204e46547320696e2061207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b6000615513602783614691565b915061551e826154b7565b604082019050919050565b6000602082019050818103600083015261554281615506565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061557f601f83614691565b915061558a82615549565b602082019050919050565b600060208201905081810360008301526155ae81615572565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776860008201527f6974656c69737465642077616c6c657400000000000000000000000000000000602082015250565b6000615611603083614691565b915061561c826155b5565b604082019050919050565b6000602082019050818103600083015261564081615604565b9050919050565b60008160601b9050919050565b600061565f82615647565b9050919050565b600061567182615654565b9050919050565b615689615684826147bb565b615666565b82525050565b600061569b8284615678565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006156e0600d83614691565b91506156eb826156aa565b602082019050919050565b6000602082019050818103600083015261570f816156d3565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061574c601b83614691565b915061575782615716565b602082019050919050565b6000602082019050818103600083015261577b8161573f565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b60006157b8601c83614691565b91506157c382615782565b602082019050919050565b600060208201905081810360008301526157e7816157ab565b9050919050565b7f312070545820616c6c6f77656400000000000000000000000000000000000000600082015250565b6000615824600d83614691565b915061582f826157ee565b602082019050919050565b6000602082019050818103600083015261585381615817565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b60006158b6602483614691565b91506158c18261585a565b604082019050919050565b600060208201905081810360008301526158e5816158a9565b9050919050565b600081905092915050565b600061590282614686565b61590c81856158ec565b935061591c8185602086016146a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061595e6005836158ec565b915061596982615928565b600582019050919050565b600061598082856158f7565b915061598c82846158f7565b915061599782615951565b91508190509392505050565b7f546f74616c20574c20537570706c7920686173206265656e206d696e74656400600082015250565b60006159d9601f83614691565b91506159e4826159a3565b602082019050919050565b60006020820190508181036000830152615a08816159cc565b9050919050565b7f43616e206f6e6c79206d696e74207570746f2031204e46547320696e2061207460008201527f72616e73616374696f6e00000000000000000000000000000000000000000000602082015250565b6000615a6b602a83614691565b9150615a7682615a0f565b604082019050919050565b60006020820190508181036000830152615a9a81615a5e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615afd602683614691565b9150615b0882615aa1565b604082019050919050565b60006020820190508181036000830152615b2c81615af0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b69602083614691565b9150615b7482615b33565b602082019050919050565b60006020820190508181036000830152615b9881615b5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615bd982614738565b9150615be483614738565b9250828203905081811115615bfc57615bfb615b9f565b5b92915050565b6000615c0d82614738565b9150615c1883614738565b9250828202615c2681614738565b91508282048414831517615c3d57615c3c615b9f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c7e82614738565b9150615c8983614738565b925082615c9957615c98615c44565b5b828204905092915050565b6000615caf82614738565b9150615cba83614738565b9250828201905080821115615cd257615cd1615b9f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615d1282614738565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615d4457615d43615b9f565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000615d7682615d4f565b615d808185615d5a565b9350615d908185602086016146a2565b615d99816146cc565b840191505092915050565b6000608082019050615db960008301876147cd565b615dc660208301866147cd565b615dd36040830185614863565b8181036060830152615de58184615d6b565b905095945050505050565b600081519050615dff816145f7565b92915050565b600060208284031215615e1b57615e1a6145c1565b5b6000615e2984828501615df0565b9150509291505056fea2646970667358221220ef76ae65f1bdd3a0a0c167f024a7156f52b704b12f572a669284d3948719b7db64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106103975760003560e01c8063853828b6116101dc578063b53cff0f11610102578063d547cfb7116100a0578063ea64f7dd1161006f578063ea64f7dd14610cc9578063eacfc0ae14610cf2578063eb8d244414610d1d578063f2fde38b14610d4857610397565b8063d547cfb714610bf9578063db37faaf14610c24578063dc33e68114610c4f578063e985e9c514610c8c57610397565b8063c87b56dd116100dc578063c87b56dd14610b60578063c9d9b9f514610b9d578063d1beca6414610bc6578063d2cab05614610bdd57610397565b8063b53cff0f14610ae3578063b88d4fde14610b0c578063c56acc8f14610b3557610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a3d578063a29f1f6414610a66578063a64a281a14610a91578063adc5636f14610aba57610397565b806395d89b41146109a0578063977b055b146109cb5780639db7863f146109f6578063a0712d6814610a2157610397565b80638d859f3e116101b65780638d859f3e146108f85780638da5cb5b146109235780638f3a89cf1461094e57806391b7f5ed1461097757610397565b8063853828b61461089c57806387ea9f21146108b357806388ef0018146108dc57610397565b806345e313aa116102c15780636895f1ca1161025f578063715018a61161022e578063715018a61461080657806372a1056c1461081d5780637437681e1461084857806381d8488f1461087357610397565b80636895f1ca1461074c5780636d181fe6146107755780636f8b44b0146107a057806370a08231146107c957610397565b806355f804b31161029b57806355f804b31461069257806358ae3c54146106bb5780636352211e146106e657806364f5a5bb1461072357610397565b806345e313aa146106155780634783f0ef1461063e5780634f8f591b1461066757610397565b8063261d3b211161033957806334918dfd1161030857806334918dfd146105935780633ccfd60b146105aa5780633f676c50146105c157806342842e0e146105ec57610397565b8063261d3b21146104e95780632eb4a7ab1461051257806331c3c7a01461053d57806332cb6b0c1461056857610397565b8063095ea7b311610375578063095ea7b31461044157806310b5454d1461046a57806318160ddd1461049557806323b872dd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614623565b610d71565b6040516103d0919061466b565b60405180910390f35b3480156103e557600080fd5b506103ee610e53565b6040516103fb9190614716565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061476e565b610ee5565b60405161043891906147dc565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190614823565b610f61565b005b34801561047657600080fd5b5061047f61106b565b60405161048c919061466b565b60405180910390f35b3480156104a157600080fd5b506104aa61107e565b6040516104b79190614872565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061488d565b611095565b005b3480156104f557600080fd5b50610510600480360381019061050b91906148e0565b611277565b005b34801561051e57600080fd5b50610527611300565b6040516105349190614939565b60405180910390f35b34801561054957600080fd5b50610552611306565b60405161055f9190614872565b60405180910390f35b34801561057457600080fd5b5061057d61130c565b60405161058a9190614872565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b005b3480156105b657600080fd5b506105bf611346565b005b3480156105cd57600080fd5b506105d661139d565b6040516105e39190614872565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061488d565b6113a3565b005b34801561062157600080fd5b5061063c6004803603810190610637919061476e565b611585565b005b34801561064a57600080fd5b5061066560048036038101906106609190614980565b61165c565b005b34801561067357600080fd5b5061067c61166e565b6040516106899190614872565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614ae2565b611674565b005b3480156106c757600080fd5b506106d061168f565b6040516106dd9190614872565b60405180910390f35b3480156106f257600080fd5b5061070d6004803603810190610708919061476e565b611695565b60405161071a91906147dc565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061476e565b6116ab565b005b34801561075857600080fd5b50610773600480360381019061076e919061476e565b611782565b005b34801561078157600080fd5b5061078a611859565b6040516107979190614872565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c2919061476e565b61185f565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614b2b565b611936565b6040516107fd9190614872565b60405180910390f35b34801561081257600080fd5b5061081b611a05565b005b34801561082957600080fd5b50610832611a19565b60405161083f9190614939565b60405180910390f35b34801561085457600080fd5b5061085d611a1f565b60405161086a9190614872565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061476e565b611a25565b005b3480156108a857600080fd5b506108b1611afc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061476e565b611c44565b005b6108f660048036038101906108f19190614bb8565b611d1b565b005b34801561090457600080fd5b5061090d611ffe565b60405161091a9190614872565b60405180910390f35b34801561092f57600080fd5b50610938612004565b60405161094591906147dc565b60405180910390f35b34801561095a57600080fd5b506109756004803603810190610970919061476e565b61202e565b005b34801561098357600080fd5b5061099e6004803603810190610999919061476e565b612105565b005b3480156109ac57600080fd5b506109b56121dc565b6040516109c29190614716565b60405180910390f35b3480156109d757600080fd5b506109e061226e565b6040516109ed9190614872565b60405180910390f35b348015610a0257600080fd5b50610a0b612274565b604051610a189190614872565b60405180910390f35b610a3b6004803603810190610a36919061476e565b61227a565b005b348015610a4957600080fd5b50610a646004803603810190610a5f9190614c44565b6124a8565b005b348015610a7257600080fd5b50610a7b61261f565b604051610a889190614872565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061476e565b612625565b005b348015610ac657600080fd5b50610ae16004803603810190610adc919061476e565b6126fc565b005b348015610aef57600080fd5b50610b0a6004803603810190610b05919061476e565b6127d3565b005b348015610b1857600080fd5b50610b336004803603810190610b2e9190614d25565b6128aa565b005b348015610b4157600080fd5b50610b4a612a8f565b604051610b579190614872565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b82919061476e565b612a95565b604051610b949190614716565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614980565b612b33565b005b348015610bd257600080fd5b50610bdb612b45565b005b610bf76004803603810190610bf29190614bb8565b612b79565b005b348015610c0557600080fd5b50610c0e612e5c565b604051610c1b9190614716565b60405180910390f35b348015610c3057600080fd5b50610c39612eea565b604051610c469190614872565b60405180910390f35b348015610c5b57600080fd5b50610c766004803603810190610c719190614b2b565b612ef0565b604051610c839190614872565b60405180910390f35b348015610c9857600080fd5b50610cb36004803603810190610cae9190614da8565b612f02565b604051610cc0919061466b565b60405180910390f35b348015610cd557600080fd5b50610cf06004803603810190610ceb919061476e565b612f96565b005b348015610cfe57600080fd5b50610d0761306d565b604051610d1491906147dc565b60405180910390f35b348015610d2957600080fd5b50610d32613093565b604051610d3f919061466b565b60405180910390f35b348015610d5457600080fd5b50610d6f6004803603810190610d6a9190614b2b565b6130a6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4c5750610e4b82613129565b5b9050919050565b606060028054610e6290614e17565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90614e17565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b6000610ef082613193565b610f26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6c82611695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff26131e1565b73ffffffffffffffffffffffffffffffffffffffff161415801561102457506110228161101d6131e1565b612f02565b155b1561105b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110668383836131e9565b505050565b601360009054906101000a900460ff1681565b600061108861329b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611265573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611107576111028484846132a4565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611150929190614e48565b602060405180830381865afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190614e86565b801561122357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e1929190614e48565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190614e86565b5b61126457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125b91906147dc565b60405180910390fd5b5b6112708484846132a4565b5b50505050565b61127f6132b4565b60006112968360115461333290919063ffffffff16565b10156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614eff565b60405180910390fd5b6112e18183613348565b6112f68260115461333290919063ffffffff16565b6011819055505050565b60095481565b600e5481565b600b5481565b61131a6132b4565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61134e6132b4565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611399573d6000803e3d6000fd5b5050565b600d5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611573573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141557611410848484613366565b61157f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161145e929190614e48565b602060405180830381865afa15801561147b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149f9190614e86565b801561153157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114ef929190614e48565b602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190614e86565b5b61157257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161156991906147dc565b60405180910390fd5b5b61157e848484613366565b5b50505050565b61158d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116135750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614f6b565b60405180910390fd5b8060158190555050565b6116646132b4565b8060098190555050565b60195481565b61167c6132b4565b806012908161168b9190615137565b5050565b60115481565b60006116a082613386565b600001519050919050565b6116b3612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117395750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614f6b565b60405180910390fd5b80601a8190555050565b61178a612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118105750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690614f6b565b60405180910390fd5b8060178190555050565b60175481565b611867612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ed5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390614f6b565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a0d6132b4565b611a176000613615565b565b600a5481565b601a5481565b611a2d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ab35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614f6b565b60405180910390fd5b80600e8190555050565b611b046132b4565b60004711611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90615255565b60405180910390fd5b60004790506000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bae6064611ba06064866136db90919063ffffffff16565b6136f190919063ffffffff16565b604051611bba906152a6565b60006040518083038185875af1925050503d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b5050905080611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790615307565b60405180910390fd5b5050565b611c4c612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611cd25750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614f6b565b60405180910390fd5b8060188190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090615373565b60405180910390fd5b601360009054906101000a900460ff16611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90615405565b60405180910390fd5b600d54611df584611de761107e565b61370790919063ffffffff16565b1115611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90615497565b60405180910390fd5b600083118015611e4857506019548311155b611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90615529565b60405180910390fd5b611e9c83600f546136db90919063ffffffff16565b3414611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490615595565b60405180910390fd5b601754611efb84611eed33612ef0565b61370790919063ffffffff16565b1115611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390615627565b60405180910390fd5b611fb0828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001611f95919061568f565b6040516020818303038152906040528051906020012061371d565b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe6906156f6565b60405180910390fd5b611ff93384613348565b505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612036612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120bc5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614f6b565b60405180910390fd5b8060168190555050565b61210d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806121935750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990614f6b565b60405180910390fd5b8060108190555050565b6060600380546121eb90614e17565b80601f016020809104026020016040519081016040528092919081815260200182805461221790614e17565b80156122645780601f1061223957610100808354040283529160200191612264565b820191906000526020600020905b81548152906001019060200180831161224757829003601f168201915b5050505050905090565b60155481565b60185481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90615373565b60405180910390fd5b601360019054906101000a900460ff16612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90615762565b60405180910390fd5b600b546123548261234661107e565b61370790919063ffffffff16565b1115612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c906157ce565b60405180910390fd5b6123aa816010546136db90919063ffffffff16565b34146123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290615595565b60405180910390fd5b6000811180156123fd5750601a548111155b61243c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124339061583a565b60405180910390fd5b60155461245a8261244c33612ef0565b61370790919063ffffffff16565b111561249b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612492906158cc565b60405180910390fd5b6124a53382613348565b50565b6124b06131e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612514576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125216131e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ce6131e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612613919061466b565b60405180910390a35050565b600f5481565b61262d612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806126b35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990614f6b565b60405180910390fd5b8060198190555050565b612704612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061278a5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c090614f6b565b60405180910390fd5b80600d8190555050565b6127db612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128615750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614f6b565b60405180910390fd5b80600c8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612a7b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361291d5761291885858585613734565b612a88565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612966929190614e48565b602060405180830381865afa158015612983573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a79190614e86565b8015612a3957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016129f7929190614e48565b602060405180830381865afa158015612a14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a389190614e86565b5b612a7a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612a7191906147dc565b60405180910390fd5b5b612a8785858585613734565b5b5050505050565b600c5481565b6060612aa082613193565b612ad6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612ae06137b0565b90506000815111612b005760405180602001604052806000815250612b2b565b80612b0a84613842565b604051602001612b1b929190615974565b6040516020818303038152906040525b915050919050565b612b3b6132b4565b80600a8190555050565b612b4d6132b4565b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde90615373565b60405180910390fd5b601360009054906101000a900460ff16612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90615405565b60405180910390fd5b600c54612c5384612c4561107e565b61370790919063ffffffff16565b1115612c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8b906159ef565b60405180910390fd5b600083118015612ca657506018548311155b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90615a81565b60405180910390fd5b612cfa83600e546136db90919063ffffffff16565b3414612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290615595565b60405180910390fd5b601654612d5984612d4b33612ef0565b61370790919063ffffffff16565b1115612d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9190615627565b60405180910390fd5b612e0e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095433604051602001612df3919061568f565b6040516020818303038152906040528051906020012061371d565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906156f6565b60405180910390fd5b612e573384613348565b505050565b60128054612e6990614e17565b80601f0160208091040260200160405190810160405280929190818152602001828054612e9590614e17565b8015612ee25780601f10612eb757610100808354040283529160200191612ee2565b820191906000526020600020905b815481529060010190602001808311612ec557829003601f168201915b505050505081565b60165481565b6000612efb82613910565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612f9e612004565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806130245750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305a90614f6b565b60405180910390fd5b80600f8190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b6130ae6132b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490615b13565b60405180910390fd5b61312681613615565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161319e61329b565b111580156131ad575060005482105b80156131da575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6132af83838361397a565b505050565b6132bc6131e1565b73ffffffffffffffffffffffffffffffffffffffff166132da612004565b73ffffffffffffffffffffffffffffffffffffffff1614613330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332790615b7f565b60405180910390fd5b565b600081836133409190615bce565b905092915050565b613362828260405180602001604052806000815250613e2e565b5050565b613381838383604051806020016040528060008152506128aa565b505050565b61338e614574565b60008290508061339c61329b565b111580156133ab575060005481105b156135de576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134c0578092505050613610565b5b6001156135db57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135d6578092505050613610565b6134c1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836136e99190615c02565b905092915050565b600081836136ff9190615c73565b905092915050565b600081836137159190615ca4565b905092915050565b60008261372a8584613e40565b1490509392505050565b61373f84848461397a565b61375e8373ffffffffffffffffffffffffffffffffffffffff16613e96565b8015613773575061377184848484613eb9565b155b156137aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060601280546137bf90614e17565b80601f01602080910402602001604051908101604052809291908181526020018280546137eb90614e17565b80156138385780601f1061380d57610100808354040283529160200191613838565b820191906000526020600020905b81548152906001019060200180831161381b57829003601f168201915b5050505050905090565b60606000600161385184614009565b01905060008167ffffffffffffffff8111156138705761386f6149b7565b5b6040519080825280601f01601f1916602001820160405280156138a25781602001600182028036833780820191505090505b509050600082602001820190505b600115613905578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816138f9576138f8615c44565b5b049450600085036138b0575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061398582613386565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146139f0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613a116131e1565b73ffffffffffffffffffffffffffffffffffffffff161480613a405750613a3f85613a3a6131e1565b612f02565b5b80613a855750613a4e6131e1565b73ffffffffffffffffffffffffffffffffffffffff16613a6d84610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613abe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613b24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b31858585600161415c565b613b3d600084876131e9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613dbc576000548214613dbb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e278585856001614162565b5050505050565b613e3b8383836001614168565b505050565b60008082905060005b8451811015613e8b57613e7682868381518110613e6957613e68615cd8565b5b6020026020010151614532565b91508080613e8390615d07565b915050613e49565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613edf6131e1565b8786866040518563ffffffff1660e01b8152600401613f019493929190615da4565b6020604051808303816000875af1925050508015613f3d57506040513d601f19601f82011682018060405250810190613f3a9190615e05565b60015b613fb6573d8060008114613f6d576040519150601f19603f3d011682016040523d82523d6000602084013e613f72565b606091505b506000815103613fae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614067577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161405d5761405c615c44565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106140a4576d04ee2d6d415b85acef8100000000838161409a57614099615c44565b5b0492506020810190505b662386f26fc1000083106140d357662386f26fc1000083816140c9576140c8615c44565b5b0492506010810190505b6305f5e10083106140fc576305f5e10083816140f2576140f1615c44565b5b0492506008810190505b612710831061412157612710838161411757614116615c44565b5b0492506004810190505b60648310614144576064838161413a57614139615c44565b5b0492506002810190505b600a8310614153576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036141d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361420e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61421b600086838761415c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156143e557506143e48773ffffffffffffffffffffffffffffffffffffffff16613e96565b5b156144aa575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461445a6000888480600101955088613eb9565b614490576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036143eb5782600054146144a557600080fd5b614515565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036144ab575b81600081905550505061452b6000868387614162565b5050505050565b600081831061454a57614545828461455d565b614555565b614554838361455d565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614600816145cb565b811461460b57600080fd5b50565b60008135905061461d816145f7565b92915050565b600060208284031215614639576146386145c1565b5b60006146478482850161460e565b91505092915050565b60008115159050919050565b61466581614650565b82525050565b6000602082019050614680600083018461465c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146c05780820151818401526020810190506146a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e882614686565b6146f28185614691565b93506147028185602086016146a2565b61470b816146cc565b840191505092915050565b6000602082019050818103600083015261473081846146dd565b905092915050565b6000819050919050565b61474b81614738565b811461475657600080fd5b50565b60008135905061476881614742565b92915050565b600060208284031215614784576147836145c1565b5b600061479284828501614759565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006147c68261479b565b9050919050565b6147d6816147bb565b82525050565b60006020820190506147f160008301846147cd565b92915050565b614800816147bb565b811461480b57600080fd5b50565b60008135905061481d816147f7565b92915050565b6000806040838503121561483a576148396145c1565b5b60006148488582860161480e565b925050602061485985828601614759565b9150509250929050565b61486c81614738565b82525050565b60006020820190506148876000830184614863565b92915050565b6000806000606084860312156148a6576148a56145c1565b5b60006148b48682870161480e565b93505060206148c58682870161480e565b92505060406148d686828701614759565b9150509250925092565b600080604083850312156148f7576148f66145c1565b5b600061490585828601614759565b92505060206149168582860161480e565b9150509250929050565b6000819050919050565b61493381614920565b82525050565b600060208201905061494e600083018461492a565b92915050565b61495d81614920565b811461496857600080fd5b50565b60008135905061497a81614954565b92915050565b600060208284031215614996576149956145c1565b5b60006149a48482850161496b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6149ef826146cc565b810181811067ffffffffffffffff82111715614a0e57614a0d6149b7565b5b80604052505050565b6000614a216145b7565b9050614a2d82826149e6565b919050565b600067ffffffffffffffff821115614a4d57614a4c6149b7565b5b614a56826146cc565b9050602081019050919050565b82818337600083830152505050565b6000614a85614a8084614a32565b614a17565b905082815260208101848484011115614aa157614aa06149b2565b5b614aac848285614a63565b509392505050565b600082601f830112614ac957614ac86149ad565b5b8135614ad9848260208601614a72565b91505092915050565b600060208284031215614af857614af76145c1565b5b600082013567ffffffffffffffff811115614b1657614b156145c6565b5b614b2284828501614ab4565b91505092915050565b600060208284031215614b4157614b406145c1565b5b6000614b4f8482850161480e565b91505092915050565b600080fd5b600080fd5b60008083601f840112614b7857614b776149ad565b5b8235905067ffffffffffffffff811115614b9557614b94614b58565b5b602083019150836020820283011115614bb157614bb0614b5d565b5b9250929050565b600080600060408486031215614bd157614bd06145c1565b5b6000614bdf86828701614759565b935050602084013567ffffffffffffffff811115614c0057614bff6145c6565b5b614c0c86828701614b62565b92509250509250925092565b614c2181614650565b8114614c2c57600080fd5b50565b600081359050614c3e81614c18565b92915050565b60008060408385031215614c5b57614c5a6145c1565b5b6000614c698582860161480e565b9250506020614c7a85828601614c2f565b9150509250929050565b600067ffffffffffffffff821115614c9f57614c9e6149b7565b5b614ca8826146cc565b9050602081019050919050565b6000614cc8614cc384614c84565b614a17565b905082815260208101848484011115614ce457614ce36149b2565b5b614cef848285614a63565b509392505050565b600082601f830112614d0c57614d0b6149ad565b5b8135614d1c848260208601614cb5565b91505092915050565b60008060008060808587031215614d3f57614d3e6145c1565b5b6000614d4d8782880161480e565b9450506020614d5e8782880161480e565b9350506040614d6f87828801614759565b925050606085013567ffffffffffffffff811115614d9057614d8f6145c6565b5b614d9c87828801614cf7565b91505092959194509250565b60008060408385031215614dbf57614dbe6145c1565b5b6000614dcd8582860161480e565b9250506020614dde8582860161480e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614e2f57607f821691505b602082108103614e4257614e41614de8565b5b50919050565b6000604082019050614e5d60008301856147cd565b614e6a60208301846147cd565b9392505050565b600081519050614e8081614c18565b92915050565b600060208284031215614e9c57614e9b6145c1565b5b6000614eaa84828501614e71565b91505092915050565b7f4769766561776179732065786861757374656400000000000000000000000000600082015250565b6000614ee9601383614691565b9150614ef482614eb3565b602082019050919050565b60006020820190508181036000830152614f1881614edc565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000614f55600e83614691565b9150614f6082614f1f565b602082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614fed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614fb0565b614ff78683614fb0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061503461502f61502a84614738565b61500f565b614738565b9050919050565b6000819050919050565b61504e83615019565b61506261505a8261503b565b848454614fbd565b825550505050565b600090565b61507761506a565b615082818484615045565b505050565b5b818110156150a65761509b60008261506f565b600181019050615088565b5050565b601f8211156150eb576150bc81614f8b565b6150c584614fa0565b810160208510156150d4578190505b6150e86150e085614fa0565b830182615087565b50505b505050565b600082821c905092915050565b600061510e600019846008026150f0565b1980831691505092915050565b600061512783836150fd565b9150826002028217905092915050565b61514082614686565b67ffffffffffffffff811115615159576151586149b7565b5b6151638254614e17565b61516e8282856150aa565b600060209050601f8311600181146151a1576000841561518f578287015190505b615199858261511b565b865550615201565b601f1984166151af86614f8b565b60005b828110156151d7578489015182556001820191506020850194506020810190506151b2565b868310156151f457848901516151f0601f8916826150fd565b8355505b6001600288020188555050505b505050505050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b600061523f600a83614691565b915061524a82615209565b602082019050919050565b6000602082019050818103600083015261526e81615232565b9050919050565b600081905092915050565b50565b6000615290600083615275565b915061529b82615280565b600082019050919050565b60006152b182615283565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b60006152f1601283614691565b91506152fc826152bb565b602082019050919050565b60006020820190508181036000830152615320816152e4565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061535d601e83614691565b915061536882615327565b602082019050919050565b6000602082019050818103600083015261538c81615350565b9050919050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b60006153ef602583614691565b91506153fa82615393565b604082019050919050565b6000602082019050818103600083015261541e816153e2565b9050919050565b7f546f74616c20564950574c20537570706c7920686173206265656e206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000615481602283614691565b915061548c82615425565b604082019050919050565b600060208201905081810360008301526154b081615474565b9050919050565b7f43616e206f6e6c79206d696e74206d6178204e46547320696e2061207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b6000615513602783614691565b915061551e826154b7565b604082019050919050565b6000602082019050818103600083015261554281615506565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061557f601f83614691565b915061558a82615549565b602082019050919050565b600060208201905081810360008301526155ae81615572565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776860008201527f6974656c69737465642077616c6c657400000000000000000000000000000000602082015250565b6000615611603083614691565b915061561c826155b5565b604082019050919050565b6000602082019050818103600083015261564081615604565b9050919050565b60008160601b9050919050565b600061565f82615647565b9050919050565b600061567182615654565b9050919050565b615689615684826147bb565b615666565b82525050565b600061569b8284615678565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006156e0600d83614691565b91506156eb826156aa565b602082019050919050565b6000602082019050818103600083015261570f816156d3565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061574c601b83614691565b915061575782615716565b602082019050919050565b6000602082019050818103600083015261577b8161573f565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b60006157b8601c83614691565b91506157c382615782565b602082019050919050565b600060208201905081810360008301526157e7816157ab565b9050919050565b7f312070545820616c6c6f77656400000000000000000000000000000000000000600082015250565b6000615824600d83614691565b915061582f826157ee565b602082019050919050565b6000602082019050818103600083015261585381615817565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b60006158b6602483614691565b91506158c18261585a565b604082019050919050565b600060208201905081810360008301526158e5816158a9565b9050919050565b600081905092915050565b600061590282614686565b61590c81856158ec565b935061591c8185602086016146a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061595e6005836158ec565b915061596982615928565b600582019050919050565b600061598082856158f7565b915061598c82846158f7565b915061599782615951565b91508190509392505050565b7f546f74616c20574c20537570706c7920686173206265656e206d696e74656400600082015250565b60006159d9601f83614691565b91506159e4826159a3565b602082019050919050565b60006020820190508181036000830152615a08816159cc565b9050919050565b7f43616e206f6e6c79206d696e74207570746f2031204e46547320696e2061207460008201527f72616e73616374696f6e00000000000000000000000000000000000000000000602082015250565b6000615a6b602a83614691565b9150615a7682615a0f565b604082019050919050565b60006020820190508181036000830152615a9a81615a5e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615afd602683614691565b9150615b0882615aa1565b604082019050919050565b60006020820190508181036000830152615b2c81615af0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b69602083614691565b9150615b7482615b33565b602082019050919050565b60006020820190508181036000830152615b9881615b5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615bd982614738565b9150615be483614738565b9250828203905081811115615bfc57615bfb615b9f565b5b92915050565b6000615c0d82614738565b9150615c1883614738565b9250828202615c2681614738565b91508282048414831517615c3d57615c3c615b9f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c7e82614738565b9150615c8983614738565b925082615c9957615c98615c44565b5b828204905092915050565b6000615caf82614738565b9150615cba83614738565b9250828201905080821115615cd257615cd1615b9f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615d1282614738565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615d4457615d43615b9f565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000615d7682615d4f565b615d808185615d5a565b9350615d908185602086016146a2565b615d99816146cc565b840191505092915050565b6000608082019050615db960008301876147cd565b615dc660208301866147cd565b615dd36040830185614863565b8181036060830152615de58184615d6b565b905095945050505050565b600081519050615dff816145f7565b92915050565b600060208284031215615e1b57615e1a6145c1565b5b6000615e2984828501615df0565b9150509291505056fea2646970667358221220ef76ae65f1bdd3a0a0c167f024a7156f52b704b12f572a669284d3948719b7db64736f6c63430008120033
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.