ERC-721
Overview
Max Total Supply
83 HGM
Holders
26
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 HGMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SimpleNftLowerGas
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract SimpleNftLowerGas is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; bytes32 public RootMerkle = 0xc7305f4e74a898a4b4acd147c5e5d030df2cf4ff8f54f7a9afab36dcf1f98a21; uint256 public cost = 0.1 ether; uint256 public privateCost = 0.09 ether; uint256 public maxSupply = 7777; uint public Steps = 0; uint256 public costCapsuleHolder=0 ether; uint256 public maxMintAmountPerTx = 10; uint indexHolders = 0; bool public paused = false; bool public revealed = true; address public CapsuleAddress = 0x31E2B813E3EAc9B96746771Ed975D9bCc671fd27; mapping(uint => address ) public Holders; constructor() ERC721("Agent", "HGM") { setHiddenMetadataUri("ipfs://__CID__/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 ,"Invalid mint amount!" ); require(_mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mintOwner(uint256 _mintAmount) public payable onlyOwner mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); _mintLoop(msg.sender, _mintAmount); } function updatemerkleRoot (bytes32 _RootMerkle) public onlyOwner { RootMerkle = _RootMerkle; } function mintWL(uint256 _mintAmount,bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) { require(!paused, "the contract is paused"); require(Steps == 1,"is not a whitelist phase"); bytes32 leafToCheck = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, RootMerkle, leafToCheck), "Incorrect proof"); require(msg.value >= privateCost * _mintAmount, "insufficient funds"); _mintLoop(msg.sender, _mintAmount); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(Steps != 1,"is a whitelist phase"); if (Steps == 0) { require(ERC721(CapsuleAddress).balanceOf(msg.sender) > 0 , "you are not capsule holder"); require(ERC721(CapsuleAddress).balanceOf(msg.sender) >= balanceOf(msg.sender) + _mintAmount, "you had exceeded the number of nft on free mint "); require(msg.value == costCapsuleHolder , "It is a free mint"); } else if (Steps == 2) { require(msg.value == cost * _mintAmount, "insufficient funds"); } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function capsuleAddress(address _capsule) public onlyOwner { CapsuleAddress = _capsule; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setSteps(uint Step) public onlyOwner { Steps = Step; } function withdraw() public onlyOwner { // This will pay HashLips 5% of the initial sale. // You can remove this if you want, or keep it in to support HashLips and his channel. // ============================================================================= //Address wallet to get //(bool hs, ) = payable(0x89Daa64181A921c1E7d8677B9C1BdBb72350630F).call{value: address(this).balance * 9 / 100}(""); //require(hs); // ============================================================================= // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function printHolders() public view returns (address[] memory) { address[] memory _holders= new address[](indexHolders); uint index = 0; for (uint256 i = 0; i < indexHolders; i++) { if (balanceOf(Holders[i]) > 0) { _holders[index] = Holders[i]; index ++; } } return (_holders); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * 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. */ 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 proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _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} * * _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 the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _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} * * _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 v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"CapsuleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RootMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Steps","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":[{"internalType":"address","name":"_capsule","type":"address"}],"name":"capsuleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costCapsuleHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"printHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Step","type":"uint256"}],"name":"setSteps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_RootMerkle","type":"bytes32"}],"name":"updatemerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b9291906200041b565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200041b565b507fc7305f4e74a898a4b4acd147c5e5d030df2cf4ff8f54f7a9afab36dcf1f98a2160001b600b5567016345785d8a0000600c5567013fbe85edc90000600d55611e61600e556000600f556000601055600a60115560006012556000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055507331e2b813e3eac9b96746771ed975d9bcc671fd27601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016b57600080fd5b506040518060400160405280600581526020017f4167656e740000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48474d00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001f09291906200041b565b508060019080519060200190620002099291906200041b565b5050506200022c620002206200027860201b60201c565b6200028060201b60201c565b620002726040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200034660201b60201c565b620005b3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003566200027860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200037c620003f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cc90620004f2565b60405180910390fd5b80600a9080519060200190620003ed9291906200041b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004299062000525565b90600052602060002090601f0160209004810192826200044d576000855562000499565b82601f106200046857805160ff191683800117855562000499565b8280016001018555821562000499579182015b82811115620004985782518255916020019190600101906200047b565b5b509050620004a89190620004ac565b5090565b5b80821115620004c7576000816000905550600101620004ad565b5090565b6000620004da60208362000514565b9150620004e7826200058a565b602082019050919050565b600060208201905081810360008301526200050d81620004cb565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200053e57607f821691505b602082108114156200055557620005546200055b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6155e580620005c36000396000f3fe6080604052600436106102935760003560e01c80636cdefe7d1161015a578063a45ba8e7116100c1578063d0bfb8101161007a578063d0bfb810146109c2578063d5abeb01146109de578063e0a8085314610a09578063e985e9c514610a32578063efbd73f414610a6f578063f2fde38b14610a9857610293565b8063a45ba8e7146108b4578063ae9d04fe146108df578063b071401b1461090a578063b88d4fde14610933578063c61b9eec1461095c578063c87b56dd1461098557610293565b80638da5cb5b116101135780638da5cb5b146107c5578063937c82e7146107f057806394354fd01461081957806395d89b4114610844578063a0712d681461086f578063a22cb4651461088b57610293565b80636cdefe7d146106c75780636d2833d3146106f257806370a082311461071d578063715018a61461075a5780637ec4a659146107715780638c17f1ac1461079a57610293565b806333f88d22116101fe5780634fdd43cb116101b75780634fdd43cb146105b557806351830227146105de5780635503a0e8146106095780635c975abb1461063457806362b99ad41461065f5780636352211e1461068a57610293565b806333f88d22146104b65780633ccfd60b146104d257806342842e0e146104e95780634309c21414610512578063438b63001461054f57806344a0d68a1461058c57610293565b806313faede61161025057806313faede6146103ba57806316ba10e0146103e557806316c38b3c1461040e57806318160ddd14610437578063184578fe1461046257806323b872dd1461048d57610293565b806301ffc9a7146102985780630209e4cb146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780631377f9eb1461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613cd0565b610ac1565b6040516102cc91906145cc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613ab3565b610ba3565b005b34801561030a57600080fd5b50610313610c63565b6040516103209190614602565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613d73565b610cf5565b60405161035d9190614521565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190613c36565b610d7a565b005b34801561039b57600080fd5b506103a4610e92565b6040516103b19190614984565b60405180910390f35b3480156103c657600080fd5b506103cf610e98565b6040516103dc9190614984565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613d2a565b610e9e565b005b34801561041a57600080fd5b5061043560048036038101906104309190613c76565b610f34565b005b34801561044357600080fd5b5061044c610fcd565b6040516104599190614984565b60405180910390f35b34801561046e57600080fd5b50610477610fde565b6040516104849190614984565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613b20565b610fe4565b005b6104d060048036038101906104cb9190613d73565b611044565b005b3480156104de57600080fd5b506104e7611200565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613b20565b6112fc565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d73565b61131c565b6040516105469190614521565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613ab3565b61134f565b60405161058391906145aa565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613d73565b61145a565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190613d2a565b6114e0565b005b3480156105ea57600080fd5b506105f3611576565b60405161060091906145cc565b60405180910390f35b34801561061557600080fd5b5061061e611589565b60405161062b9190614602565b60405180910390f35b34801561064057600080fd5b50610649611617565b60405161065691906145cc565b60405180910390f35b34801561066b57600080fd5b5061067461162a565b6040516106819190614602565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613d73565b6116b8565b6040516106be9190614521565b60405180910390f35b3480156106d357600080fd5b506106dc61176a565b6040516106e99190614588565b60405180910390f35b3480156106fe57600080fd5b506107076118b9565b6040516107149190614984565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613ab3565b6118bf565b6040516107519190614984565b60405180910390f35b34801561076657600080fd5b5061076f611977565b005b34801561077d57600080fd5b5061079860048036038101906107939190613d2a565b6119ff565b005b3480156107a657600080fd5b506107af611a95565b6040516107bc91906145e7565b60405180910390f35b3480156107d157600080fd5b506107da611a9b565b6040516107e79190614521565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613d73565b611ac5565b005b34801561082557600080fd5b5061082e611b4b565b60405161083b9190614984565b60405180910390f35b34801561085057600080fd5b50610859611b51565b6040516108669190614602565b60405180910390f35b61088960048036038101906108849190613d73565b611be3565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613bf6565b612006565b005b3480156108c057600080fd5b506108c961201c565b6040516108d69190614602565b60405180910390f35b3480156108eb57600080fd5b506108f46120aa565b6040516109019190614521565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613d73565b6120d0565b005b34801561093f57600080fd5b5061095a60048036038101906109559190613b73565b612156565b005b34801561096857600080fd5b50610983600480360381019061097e9190613ca3565b6121b8565b005b34801561099157600080fd5b506109ac60048036038101906109a79190613d73565b61223e565b6040516109b99190614602565b60405180910390f35b6109dc60048036038101906109d79190613e0d565b612397565b005b3480156109ea57600080fd5b506109f3612627565b604051610a009190614984565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613c76565b61262d565b005b348015610a3e57600080fd5b50610a596004803603810190610a549190613ae0565b6126c6565b604051610a6691906145cc565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a919190613dcd565b61275a565b005b348015610aa457600080fd5b50610abf6004803603810190610aba9190613ab3565b6128c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9c5750610b9b826129bf565b5b9050919050565b610bab612a29565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690614864565b60405180910390fd5b80601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610c7290614cd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90614cd0565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d0082612a31565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690614844565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d85826116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614904565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e15612a29565b73ffffffffffffffffffffffffffffffffffffffff161480610e445750610e4381610e3e612a29565b6126c6565b5b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90614784565b60405180910390fd5b610e8d8383612a9d565b505050565b600d5481565b600c5481565b610ea6612a29565b73ffffffffffffffffffffffffffffffffffffffff16610ec4611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190614864565b60405180910390fd5b8060099080519060200190610f30929190613847565b5050565b610f3c612a29565b73ffffffffffffffffffffffffffffffffffffffff16610f5a611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790614864565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610fd96007612b56565b905090565b60105481565b610ff5610fef612a29565b82612b64565b611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614964565b60405180910390fd5b61103f838383612c42565b505050565b61104c612a29565b73ffffffffffffffffffffffffffffffffffffffff1661106a611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614864565b60405180910390fd5b8060008111611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906146c4565b60405180910390fd5b601154811115611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140906146c4565b60405180910390fd5b600e54816111576007612b56565b6111619190614afb565b11156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614924565b60405180910390fd5b601360009054906101000a900460ff16156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906148a4565b60405180910390fd5b6111fc3383612ea9565b5050565b611208612a29565b73ffffffffffffffffffffffffffffffffffffffff16611226611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390614864565b60405180910390fd5b6000611286611a9b565b73ffffffffffffffffffffffffffffffffffffffff16476040516112a99061450c565b60006040518083038185875af1925050503d80600081146112e6576040519150601f19603f3d011682016040523d82523d6000602084013e6112eb565b606091505b50509050806112f957600080fd5b50565b61131783838360405180602001604052806000815250612156565b505050565b60146020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600061135c836118bf565b905060008167ffffffffffffffff81111561137a57611379614e8d565b5b6040519080825280602002602001820160405280156113a85781602001602082028036833780820191505090505b50905060006001905060005b83811080156113c55750600e548211155b1561144e5760006113d5836116b8565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143a578284838151811061141f5761141e614e5e565b5b602002602001018181525050818061143690614d33565b9250505b828061144590614d33565b935050506113b4565b82945050505050919050565b611462612a29565b73ffffffffffffffffffffffffffffffffffffffff16611480611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90614864565b60405180910390fd5b80600c8190555050565b6114e8612a29565b73ffffffffffffffffffffffffffffffffffffffff16611506611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614864565b60405180910390fd5b80600a9080519060200190611572929190613847565b5050565b601360019054906101000a900460ff1681565b6009805461159690614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c290614cd0565b801561160f5780601f106115e45761010080835404028352916020019161160f565b820191906000526020600020905b8154815290600101906020018083116115f257829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b6008805461163790614cd0565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614cd0565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611758906147c4565b60405180910390fd5b80915050919050565b6060600060125467ffffffffffffffff81111561178a57611789614e8d565b5b6040519080825280602002602001820160405280156117b85781602001602082028036833780820191505090505b5090506000805b6012548110156118b05760006118076014600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166118bf565b111561189d576014600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061185457611853614e5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050818061189990614d33565b9250505b80806118a890614d33565b9150506117bf565b50819250505090565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906147a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61197f612a29565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614864565b60405180910390fd5b6119fd6000612ee9565b565b611a07612a29565b73ffffffffffffffffffffffffffffffffffffffff16611a25611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614864565b60405180910390fd5b8060089080519060200190611a91929190613847565b5050565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611acd612a29565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614864565b60405180910390fd5b80600f8190555050565b60115481565b606060018054611b6090614cd0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8c90614cd0565b8015611bd95780601f10611bae57610100808354040283529160200191611bd9565b820191906000526020600020905b815481529060010190602001808311611bbc57829003601f168201915b5050505050905090565b8060008111611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906146c4565b60405180910390fd5b601154811115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906146c4565b60405180910390fd5b600e5481611c7a6007612b56565b611c849190614afb565b1115611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90614924565b60405180910390fd5b601360009054906101000a900460ff1615611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906148a4565b60405180910390fd5b6001600f541415611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614624565b60405180910390fd5b6000600f541415611f9c576000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611dc39190614521565b60206040518083038186803b158015611ddb57600080fd5b505afa158015611def573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e139190613da0565b11611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614764565b60405180910390fd5b81611e5d336118bf565b611e679190614afb565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ec29190614521565b60206040518083038186803b158015611eda57600080fd5b505afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190613da0565b1015611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90614724565b60405180910390fd5b6010543414611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906147e4565b60405180910390fd5b611ff8565b6002600f541415611ff75781600c54611fb59190614b82565b3414611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed90614944565b60405180910390fd5b5b5b6120023383612ea9565b5050565b612018612011612a29565b8383612faf565b5050565b600a805461202990614cd0565b80601f016020809104026020016040519081016040528092919081815260200182805461205590614cd0565b80156120a25780601f10612077576101008083540402835291602001916120a2565b820191906000526020600020905b81548152906001019060200180831161208557829003601f168201915b505050505081565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120d8612a29565b73ffffffffffffffffffffffffffffffffffffffff166120f6611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614864565b60405180910390fd5b8060118190555050565b612167612161612a29565b83612b64565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614964565b60405180910390fd5b6121b28484848461311c565b50505050565b6121c0612a29565b73ffffffffffffffffffffffffffffffffffffffff166121de611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614864565b60405180910390fd5b80600b8190555050565b606061224982612a31565b612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906148c4565b60405180910390fd5b60001515601360019054906101000a900460ff161515141561233657600a80546122b190614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546122dd90614cd0565b801561232a5780601f106122ff5761010080835404028352916020019161232a565b820191906000526020600020905b81548152906001019060200180831161230d57829003601f168201915b50505050509050612392565b6000612340613178565b90506000815111612360576040518060200160405280600081525061238e565b8061236a8461320a565b600960405160200161237e939291906144db565b6040516020818303038152906040525b9150505b919050565b82600081116123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d2906146c4565b60405180910390fd5b601154811115612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906146c4565b60405180910390fd5b600e548161242e6007612b56565b6124389190614afb565b1115612479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247090614924565b60405180910390fd5b601360009054906101000a900460ff16156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614884565b60405180910390fd5b6001600f541461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614824565b60405180910390fd5b60003360405160200161252191906144c0565b604051602081830303815290604052805190602001209050612587848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548361336b565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906148e4565b60405180910390fd5b84600d546125d49190614b82565b341015612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d90614944565b60405180910390fd5b6126203386612ea9565b5050505050565b600e5481565b612635612a29565b73ffffffffffffffffffffffffffffffffffffffff16612653611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090614864565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811161279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906146c4565b60405180910390fd5b6011548111156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da906146c4565b60405180910390fd5b600e54816127f16007612b56565b6127fb9190614afb565b111561283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614924565b60405180910390fd5b612844612a29565b73ffffffffffffffffffffffffffffffffffffffff16612862611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af90614864565b60405180910390fd5b6128c28284612ea9565b505050565b6128cf612a29565b73ffffffffffffffffffffffffffffffffffffffff166128ed611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614864565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90614664565b60405180910390fd5b6129bc81612ee9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b10836116b8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612b6f82612a31565b612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590614744565b60405180910390fd5b6000612bb9836116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bfb5750612bfa81856126c6565b5b80612c3957508373ffffffffffffffffffffffffffffffffffffffff16612c2184610cf5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c62826116b8565b73ffffffffffffffffffffffffffffffffffffffff1614612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f906146e4565b60405180910390fd5b612d33838383613382565b612d3e600082612a9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8e9190614bdc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de59190614afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ea4838383613387565b505050565b60005b81811015612ee457612ebe600761338c565b612ed183612ecc6007612b56565b6133a2565b8080612edc90614d33565b915050612eac565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561301e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301590614704565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161310f91906145cc565b60405180910390a3505050565b613127848484612c42565b613133848484846133c0565b613172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316990614644565b60405180910390fd5b50505050565b60606008805461318790614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546131b390614cd0565b80156132005780601f106131d557610100808354040283529160200191613200565b820191906000526020600020905b8154815290600101906020018083116131e357829003601f168201915b5050505050905090565b60606000821415613252576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613366565b600082905060005b6000821461328457808061326d90614d33565b915050600a8261327d9190614b51565b915061325a565b60008167ffffffffffffffff8111156132a05761329f614e8d565b5b6040519080825280601f01601f1916602001820160405280156132d25781602001600182028036833780820191505090505b5090505b6000851461335f576001826132eb9190614bdc565b9150600a856132fa9190614da0565b60306133069190614afb565b60f81b81838151811061331c5761331b614e5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133589190614b51565b94506132d6565b8093505050505b919050565b6000826133788584613557565b1490509392505050565b505050565b505050565b6001816000016000828254019250508190555050565b6133bc8282604051806020016040528060008152506135ad565b5050565b60006133e18473ffffffffffffffffffffffffffffffffffffffff16613608565b1561354a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261340a612a29565b8786866040518563ffffffff1660e01b815260040161342c949392919061453c565b602060405180830381600087803b15801561344657600080fd5b505af192505050801561347757506040513d601f19601f820116820180604052508101906134749190613cfd565b60015b6134fa573d80600081146134a7576040519150601f19603f3d011682016040523d82523d6000602084013e6134ac565b606091505b506000815114156134f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e990614644565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061354f565b600190505b949350505050565b60008082905060005b84518110156135a25761358d828683815181106135805761357f614e5e565b5b602002602001015161362b565b9150808061359a90614d33565b915050613560565b508091505092915050565b6135b78383613656565b6135c460008484846133c0565b613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fa90614644565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106136435761363e8284613830565b61364e565b61364d8383613830565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd90614804565b60405180910390fd5b6136cf81612a31565b1561370f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613706906146a4565b60405180910390fd5b61371b60008383613382565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461376b9190614afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461382c60008383613387565b5050565b600082600052816020526040600020905092915050565b82805461385390614cd0565b90600052602060002090601f01602090048101928261387557600085556138bc565b82601f1061388e57805160ff19168380011785556138bc565b828001600101855582156138bc579182015b828111156138bb5782518255916020019190600101906138a0565b5b5090506138c991906138cd565b5090565b5b808211156138e65760008160009055506001016138ce565b5090565b60006138fd6138f8846149c4565b61499f565b90508281526020810184848401111561391957613918614ecb565b5b613924848285614c8e565b509392505050565b600061393f61393a846149f5565b61499f565b90508281526020810184848401111561395b5761395a614ecb565b5b613966848285614c8e565b509392505050565b60008135905061397d8161553c565b92915050565b60008083601f84011261399957613998614ec1565b5b8235905067ffffffffffffffff8111156139b6576139b5614ebc565b5b6020830191508360208202830111156139d2576139d1614ec6565b5b9250929050565b6000813590506139e881615553565b92915050565b6000813590506139fd8161556a565b92915050565b600081359050613a1281615581565b92915050565b600081519050613a2781615581565b92915050565b600082601f830112613a4257613a41614ec1565b5b8135613a528482602086016138ea565b91505092915050565b600082601f830112613a7057613a6f614ec1565b5b8135613a8084826020860161392c565b91505092915050565b600081359050613a9881615598565b92915050565b600081519050613aad81615598565b92915050565b600060208284031215613ac957613ac8614ed5565b5b6000613ad78482850161396e565b91505092915050565b60008060408385031215613af757613af6614ed5565b5b6000613b058582860161396e565b9250506020613b168582860161396e565b9150509250929050565b600080600060608486031215613b3957613b38614ed5565b5b6000613b478682870161396e565b9350506020613b588682870161396e565b9250506040613b6986828701613a89565b9150509250925092565b60008060008060808587031215613b8d57613b8c614ed5565b5b6000613b9b8782880161396e565b9450506020613bac8782880161396e565b9350506040613bbd87828801613a89565b925050606085013567ffffffffffffffff811115613bde57613bdd614ed0565b5b613bea87828801613a2d565b91505092959194509250565b60008060408385031215613c0d57613c0c614ed5565b5b6000613c1b8582860161396e565b9250506020613c2c858286016139d9565b9150509250929050565b60008060408385031215613c4d57613c4c614ed5565b5b6000613c5b8582860161396e565b9250506020613c6c85828601613a89565b9150509250929050565b600060208284031215613c8c57613c8b614ed5565b5b6000613c9a848285016139d9565b91505092915050565b600060208284031215613cb957613cb8614ed5565b5b6000613cc7848285016139ee565b91505092915050565b600060208284031215613ce657613ce5614ed5565b5b6000613cf484828501613a03565b91505092915050565b600060208284031215613d1357613d12614ed5565b5b6000613d2184828501613a18565b91505092915050565b600060208284031215613d4057613d3f614ed5565b5b600082013567ffffffffffffffff811115613d5e57613d5d614ed0565b5b613d6a84828501613a5b565b91505092915050565b600060208284031215613d8957613d88614ed5565b5b6000613d9784828501613a89565b91505092915050565b600060208284031215613db657613db5614ed5565b5b6000613dc484828501613a9e565b91505092915050565b60008060408385031215613de457613de3614ed5565b5b6000613df285828601613a89565b9250506020613e038582860161396e565b9150509250929050565b600080600060408486031215613e2657613e25614ed5565b5b6000613e3486828701613a89565b935050602084013567ffffffffffffffff811115613e5557613e54614ed0565b5b613e6186828701613983565b92509250509250925092565b6000613e798383613e9d565b60208301905092915050565b6000613e9183836144a2565b60208301905092915050565b613ea681614c10565b82525050565b613eb581614c10565b82525050565b613ecc613ec782614c10565b614d7c565b82525050565b6000613edd82614a5b565b613ee78185614aa1565b9350613ef283614a26565b8060005b83811015613f23578151613f0a8882613e6d565b9750613f1583614a87565b925050600181019050613ef6565b5085935050505092915050565b6000613f3b82614a66565b613f458185614ab2565b9350613f5083614a36565b8060005b83811015613f81578151613f688882613e85565b9750613f7383614a94565b925050600181019050613f54565b5085935050505092915050565b613f9781614c22565b82525050565b613fa681614c2e565b82525050565b6000613fb782614a71565b613fc18185614ac3565b9350613fd1818560208601614c9d565b613fda81614eda565b840191505092915050565b6000613ff082614a7c565b613ffa8185614adf565b935061400a818560208601614c9d565b61401381614eda565b840191505092915050565b600061402982614a7c565b6140338185614af0565b9350614043818560208601614c9d565b80840191505092915050565b6000815461405c81614cd0565b6140668186614af0565b945060018216600081146140815760018114614092576140c5565b60ff198316865281860193506140c5565b61409b85614a46565b60005b838110156140bd5781548189015260018201915060208101905061409e565b838801955050505b50505092915050565b60006140db601483614adf565b91506140e682614ef8565b602082019050919050565b60006140fe603283614adf565b915061410982614f21565b604082019050919050565b6000614121602683614adf565b915061412c82614f70565b604082019050919050565b6000614144602583614adf565b915061414f82614fbf565b604082019050919050565b6000614167601c83614adf565b91506141728261500e565b602082019050919050565b600061418a601483614adf565b915061419582615037565b602082019050919050565b60006141ad602483614adf565b91506141b882615060565b604082019050919050565b60006141d0601983614adf565b91506141db826150af565b602082019050919050565b60006141f3603083614adf565b91506141fe826150d8565b604082019050919050565b6000614216602c83614adf565b915061422182615127565b604082019050919050565b6000614239601a83614adf565b915061424482615176565b602082019050919050565b600061425c603883614adf565b91506142678261519f565b604082019050919050565b600061427f602a83614adf565b915061428a826151ee565b604082019050919050565b60006142a2602983614adf565b91506142ad8261523d565b604082019050919050565b60006142c5601183614adf565b91506142d08261528c565b602082019050919050565b60006142e8602083614adf565b91506142f3826152b5565b602082019050919050565b600061430b601883614adf565b9150614316826152de565b602082019050919050565b600061432e602c83614adf565b915061433982615307565b604082019050919050565b6000614351602083614adf565b915061435c82615356565b602082019050919050565b6000614374601683614adf565b915061437f8261537f565b602082019050919050565b6000614397601783614adf565b91506143a2826153a8565b602082019050919050565b60006143ba602f83614adf565b91506143c5826153d1565b604082019050919050565b60006143dd600f83614adf565b91506143e882615420565b602082019050919050565b6000614400602183614adf565b915061440b82615449565b604082019050919050565b6000614423600083614ad4565b915061442e82615498565b600082019050919050565b6000614446601483614adf565b91506144518261549b565b602082019050919050565b6000614469601283614adf565b9150614474826154c4565b602082019050919050565b600061448c603183614adf565b9150614497826154ed565b604082019050919050565b6144ab81614c84565b82525050565b6144ba81614c84565b82525050565b60006144cc8284613ebb565b60148201915081905092915050565b60006144e7828661401e565b91506144f3828561401e565b91506144ff828461404f565b9150819050949350505050565b600061451782614416565b9150819050919050565b60006020820190506145366000830184613eac565b92915050565b60006080820190506145516000830187613eac565b61455e6020830186613eac565b61456b60408301856144b1565b818103606083015261457d8184613fac565b905095945050505050565b600060208201905081810360008301526145a28184613ed2565b905092915050565b600060208201905081810360008301526145c48184613f30565b905092915050565b60006020820190506145e16000830184613f8e565b92915050565b60006020820190506145fc6000830184613f9d565b92915050565b6000602082019050818103600083015261461c8184613fe5565b905092915050565b6000602082019050818103600083015261463d816140ce565b9050919050565b6000602082019050818103600083015261465d816140f1565b9050919050565b6000602082019050818103600083015261467d81614114565b9050919050565b6000602082019050818103600083015261469d81614137565b9050919050565b600060208201905081810360008301526146bd8161415a565b9050919050565b600060208201905081810360008301526146dd8161417d565b9050919050565b600060208201905081810360008301526146fd816141a0565b9050919050565b6000602082019050818103600083015261471d816141c3565b9050919050565b6000602082019050818103600083015261473d816141e6565b9050919050565b6000602082019050818103600083015261475d81614209565b9050919050565b6000602082019050818103600083015261477d8161422c565b9050919050565b6000602082019050818103600083015261479d8161424f565b9050919050565b600060208201905081810360008301526147bd81614272565b9050919050565b600060208201905081810360008301526147dd81614295565b9050919050565b600060208201905081810360008301526147fd816142b8565b9050919050565b6000602082019050818103600083015261481d816142db565b9050919050565b6000602082019050818103600083015261483d816142fe565b9050919050565b6000602082019050818103600083015261485d81614321565b9050919050565b6000602082019050818103600083015261487d81614344565b9050919050565b6000602082019050818103600083015261489d81614367565b9050919050565b600060208201905081810360008301526148bd8161438a565b9050919050565b600060208201905081810360008301526148dd816143ad565b9050919050565b600060208201905081810360008301526148fd816143d0565b9050919050565b6000602082019050818103600083015261491d816143f3565b9050919050565b6000602082019050818103600083015261493d81614439565b9050919050565b6000602082019050818103600083015261495d8161445c565b9050919050565b6000602082019050818103600083015261497d8161447f565b9050919050565b600060208201905061499960008301846144b1565b92915050565b60006149a96149ba565b90506149b58282614d02565b919050565b6000604051905090565b600067ffffffffffffffff8211156149df576149de614e8d565b5b6149e882614eda565b9050602081019050919050565b600067ffffffffffffffff821115614a1057614a0f614e8d565b5b614a1982614eda565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0682614c84565b9150614b1183614c84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4657614b45614dd1565b5b828201905092915050565b6000614b5c82614c84565b9150614b6783614c84565b925082614b7757614b76614e00565b5b828204905092915050565b6000614b8d82614c84565b9150614b9883614c84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd157614bd0614dd1565b5b828202905092915050565b6000614be782614c84565b9150614bf283614c84565b925082821015614c0557614c04614dd1565b5b828203905092915050565b6000614c1b82614c64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cbb578082015181840152602081019050614ca0565b83811115614cca576000848401525b50505050565b60006002820490506001821680614ce857607f821691505b60208210811415614cfc57614cfb614e2f565b5b50919050565b614d0b82614eda565b810181811067ffffffffffffffff82111715614d2a57614d29614e8d565b5b80604052505050565b6000614d3e82614c84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7157614d70614dd1565b5b600182019050919050565b6000614d8782614d8e565b9050919050565b6000614d9982614eeb565b9050919050565b6000614dab82614c84565b9150614db683614c84565b925082614dc657614dc5614e00565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f697320612077686974656c697374207068617365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f796f752068616420657863656564656420746865206e756d626572206f66206e60008201527f6674206f6e2066726565206d696e742000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f796f7520617265206e6f742063617073756c6520686f6c646572000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f497420697320612066726565206d696e74000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6973206e6f7420612077686974656c6973742070686173650000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61554581614c10565b811461555057600080fd5b50565b61555c81614c22565b811461556757600080fd5b50565b61557381614c2e565b811461557e57600080fd5b50565b61558a81614c38565b811461559557600080fd5b50565b6155a181614c84565b81146155ac57600080fd5b5056fea264697066735822122017466a0bf516e8770530d55df079e084bf701de663df7855ff3db46205f04ef964736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102935760003560e01c80636cdefe7d1161015a578063a45ba8e7116100c1578063d0bfb8101161007a578063d0bfb810146109c2578063d5abeb01146109de578063e0a8085314610a09578063e985e9c514610a32578063efbd73f414610a6f578063f2fde38b14610a9857610293565b8063a45ba8e7146108b4578063ae9d04fe146108df578063b071401b1461090a578063b88d4fde14610933578063c61b9eec1461095c578063c87b56dd1461098557610293565b80638da5cb5b116101135780638da5cb5b146107c5578063937c82e7146107f057806394354fd01461081957806395d89b4114610844578063a0712d681461086f578063a22cb4651461088b57610293565b80636cdefe7d146106c75780636d2833d3146106f257806370a082311461071d578063715018a61461075a5780637ec4a659146107715780638c17f1ac1461079a57610293565b806333f88d22116101fe5780634fdd43cb116101b75780634fdd43cb146105b557806351830227146105de5780635503a0e8146106095780635c975abb1461063457806362b99ad41461065f5780636352211e1461068a57610293565b806333f88d22146104b65780633ccfd60b146104d257806342842e0e146104e95780634309c21414610512578063438b63001461054f57806344a0d68a1461058c57610293565b806313faede61161025057806313faede6146103ba57806316ba10e0146103e557806316c38b3c1461040e57806318160ddd14610437578063184578fe1461046257806323b872dd1461048d57610293565b806301ffc9a7146102985780630209e4cb146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780631377f9eb1461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613cd0565b610ac1565b6040516102cc91906145cc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613ab3565b610ba3565b005b34801561030a57600080fd5b50610313610c63565b6040516103209190614602565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613d73565b610cf5565b60405161035d9190614521565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190613c36565b610d7a565b005b34801561039b57600080fd5b506103a4610e92565b6040516103b19190614984565b60405180910390f35b3480156103c657600080fd5b506103cf610e98565b6040516103dc9190614984565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613d2a565b610e9e565b005b34801561041a57600080fd5b5061043560048036038101906104309190613c76565b610f34565b005b34801561044357600080fd5b5061044c610fcd565b6040516104599190614984565b60405180910390f35b34801561046e57600080fd5b50610477610fde565b6040516104849190614984565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613b20565b610fe4565b005b6104d060048036038101906104cb9190613d73565b611044565b005b3480156104de57600080fd5b506104e7611200565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613b20565b6112fc565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d73565b61131c565b6040516105469190614521565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613ab3565b61134f565b60405161058391906145aa565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613d73565b61145a565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190613d2a565b6114e0565b005b3480156105ea57600080fd5b506105f3611576565b60405161060091906145cc565b60405180910390f35b34801561061557600080fd5b5061061e611589565b60405161062b9190614602565b60405180910390f35b34801561064057600080fd5b50610649611617565b60405161065691906145cc565b60405180910390f35b34801561066b57600080fd5b5061067461162a565b6040516106819190614602565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613d73565b6116b8565b6040516106be9190614521565b60405180910390f35b3480156106d357600080fd5b506106dc61176a565b6040516106e99190614588565b60405180910390f35b3480156106fe57600080fd5b506107076118b9565b6040516107149190614984565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613ab3565b6118bf565b6040516107519190614984565b60405180910390f35b34801561076657600080fd5b5061076f611977565b005b34801561077d57600080fd5b5061079860048036038101906107939190613d2a565b6119ff565b005b3480156107a657600080fd5b506107af611a95565b6040516107bc91906145e7565b60405180910390f35b3480156107d157600080fd5b506107da611a9b565b6040516107e79190614521565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613d73565b611ac5565b005b34801561082557600080fd5b5061082e611b4b565b60405161083b9190614984565b60405180910390f35b34801561085057600080fd5b50610859611b51565b6040516108669190614602565b60405180910390f35b61088960048036038101906108849190613d73565b611be3565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613bf6565b612006565b005b3480156108c057600080fd5b506108c961201c565b6040516108d69190614602565b60405180910390f35b3480156108eb57600080fd5b506108f46120aa565b6040516109019190614521565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613d73565b6120d0565b005b34801561093f57600080fd5b5061095a60048036038101906109559190613b73565b612156565b005b34801561096857600080fd5b50610983600480360381019061097e9190613ca3565b6121b8565b005b34801561099157600080fd5b506109ac60048036038101906109a79190613d73565b61223e565b6040516109b99190614602565b60405180910390f35b6109dc60048036038101906109d79190613e0d565b612397565b005b3480156109ea57600080fd5b506109f3612627565b604051610a009190614984565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613c76565b61262d565b005b348015610a3e57600080fd5b50610a596004803603810190610a549190613ae0565b6126c6565b604051610a6691906145cc565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a919190613dcd565b61275a565b005b348015610aa457600080fd5b50610abf6004803603810190610aba9190613ab3565b6128c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9c5750610b9b826129bf565b5b9050919050565b610bab612a29565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690614864565b60405180910390fd5b80601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610c7290614cd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90614cd0565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d0082612a31565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690614844565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d85826116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614904565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e15612a29565b73ffffffffffffffffffffffffffffffffffffffff161480610e445750610e4381610e3e612a29565b6126c6565b5b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90614784565b60405180910390fd5b610e8d8383612a9d565b505050565b600d5481565b600c5481565b610ea6612a29565b73ffffffffffffffffffffffffffffffffffffffff16610ec4611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190614864565b60405180910390fd5b8060099080519060200190610f30929190613847565b5050565b610f3c612a29565b73ffffffffffffffffffffffffffffffffffffffff16610f5a611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790614864565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610fd96007612b56565b905090565b60105481565b610ff5610fef612a29565b82612b64565b611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614964565b60405180910390fd5b61103f838383612c42565b505050565b61104c612a29565b73ffffffffffffffffffffffffffffffffffffffff1661106a611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614864565b60405180910390fd5b8060008111611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906146c4565b60405180910390fd5b601154811115611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140906146c4565b60405180910390fd5b600e54816111576007612b56565b6111619190614afb565b11156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614924565b60405180910390fd5b601360009054906101000a900460ff16156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906148a4565b60405180910390fd5b6111fc3383612ea9565b5050565b611208612a29565b73ffffffffffffffffffffffffffffffffffffffff16611226611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390614864565b60405180910390fd5b6000611286611a9b565b73ffffffffffffffffffffffffffffffffffffffff16476040516112a99061450c565b60006040518083038185875af1925050503d80600081146112e6576040519150601f19603f3d011682016040523d82523d6000602084013e6112eb565b606091505b50509050806112f957600080fd5b50565b61131783838360405180602001604052806000815250612156565b505050565b60146020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600061135c836118bf565b905060008167ffffffffffffffff81111561137a57611379614e8d565b5b6040519080825280602002602001820160405280156113a85781602001602082028036833780820191505090505b50905060006001905060005b83811080156113c55750600e548211155b1561144e5760006113d5836116b8565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143a578284838151811061141f5761141e614e5e565b5b602002602001018181525050818061143690614d33565b9250505b828061144590614d33565b935050506113b4565b82945050505050919050565b611462612a29565b73ffffffffffffffffffffffffffffffffffffffff16611480611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90614864565b60405180910390fd5b80600c8190555050565b6114e8612a29565b73ffffffffffffffffffffffffffffffffffffffff16611506611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614864565b60405180910390fd5b80600a9080519060200190611572929190613847565b5050565b601360019054906101000a900460ff1681565b6009805461159690614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c290614cd0565b801561160f5780601f106115e45761010080835404028352916020019161160f565b820191906000526020600020905b8154815290600101906020018083116115f257829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b6008805461163790614cd0565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614cd0565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611758906147c4565b60405180910390fd5b80915050919050565b6060600060125467ffffffffffffffff81111561178a57611789614e8d565b5b6040519080825280602002602001820160405280156117b85781602001602082028036833780820191505090505b5090506000805b6012548110156118b05760006118076014600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166118bf565b111561189d576014600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061185457611853614e5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050818061189990614d33565b9250505b80806118a890614d33565b9150506117bf565b50819250505090565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906147a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61197f612a29565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614864565b60405180910390fd5b6119fd6000612ee9565b565b611a07612a29565b73ffffffffffffffffffffffffffffffffffffffff16611a25611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614864565b60405180910390fd5b8060089080519060200190611a91929190613847565b5050565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611acd612a29565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614864565b60405180910390fd5b80600f8190555050565b60115481565b606060018054611b6090614cd0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8c90614cd0565b8015611bd95780601f10611bae57610100808354040283529160200191611bd9565b820191906000526020600020905b815481529060010190602001808311611bbc57829003601f168201915b5050505050905090565b8060008111611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906146c4565b60405180910390fd5b601154811115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906146c4565b60405180910390fd5b600e5481611c7a6007612b56565b611c849190614afb565b1115611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90614924565b60405180910390fd5b601360009054906101000a900460ff1615611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906148a4565b60405180910390fd5b6001600f541415611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614624565b60405180910390fd5b6000600f541415611f9c576000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611dc39190614521565b60206040518083038186803b158015611ddb57600080fd5b505afa158015611def573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e139190613da0565b11611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614764565b60405180910390fd5b81611e5d336118bf565b611e679190614afb565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ec29190614521565b60206040518083038186803b158015611eda57600080fd5b505afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190613da0565b1015611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90614724565b60405180910390fd5b6010543414611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906147e4565b60405180910390fd5b611ff8565b6002600f541415611ff75781600c54611fb59190614b82565b3414611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed90614944565b60405180910390fd5b5b5b6120023383612ea9565b5050565b612018612011612a29565b8383612faf565b5050565b600a805461202990614cd0565b80601f016020809104026020016040519081016040528092919081815260200182805461205590614cd0565b80156120a25780601f10612077576101008083540402835291602001916120a2565b820191906000526020600020905b81548152906001019060200180831161208557829003601f168201915b505050505081565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120d8612a29565b73ffffffffffffffffffffffffffffffffffffffff166120f6611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614864565b60405180910390fd5b8060118190555050565b612167612161612a29565b83612b64565b6121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614964565b60405180910390fd5b6121b28484848461311c565b50505050565b6121c0612a29565b73ffffffffffffffffffffffffffffffffffffffff166121de611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614864565b60405180910390fd5b80600b8190555050565b606061224982612a31565b612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906148c4565b60405180910390fd5b60001515601360019054906101000a900460ff161515141561233657600a80546122b190614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546122dd90614cd0565b801561232a5780601f106122ff5761010080835404028352916020019161232a565b820191906000526020600020905b81548152906001019060200180831161230d57829003601f168201915b50505050509050612392565b6000612340613178565b90506000815111612360576040518060200160405280600081525061238e565b8061236a8461320a565b600960405160200161237e939291906144db565b6040516020818303038152906040525b9150505b919050565b82600081116123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d2906146c4565b60405180910390fd5b601154811115612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906146c4565b60405180910390fd5b600e548161242e6007612b56565b6124389190614afb565b1115612479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247090614924565b60405180910390fd5b601360009054906101000a900460ff16156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614884565b60405180910390fd5b6001600f541461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614824565b60405180910390fd5b60003360405160200161252191906144c0565b604051602081830303815290604052805190602001209050612587848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548361336b565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906148e4565b60405180910390fd5b84600d546125d49190614b82565b341015612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d90614944565b60405180910390fd5b6126203386612ea9565b5050505050565b600e5481565b612635612a29565b73ffffffffffffffffffffffffffffffffffffffff16612653611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090614864565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811161279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906146c4565b60405180910390fd5b6011548111156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da906146c4565b60405180910390fd5b600e54816127f16007612b56565b6127fb9190614afb565b111561283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614924565b60405180910390fd5b612844612a29565b73ffffffffffffffffffffffffffffffffffffffff16612862611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af90614864565b60405180910390fd5b6128c28284612ea9565b505050565b6128cf612a29565b73ffffffffffffffffffffffffffffffffffffffff166128ed611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614864565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90614664565b60405180910390fd5b6129bc81612ee9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b10836116b8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612b6f82612a31565b612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590614744565b60405180910390fd5b6000612bb9836116b8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bfb5750612bfa81856126c6565b5b80612c3957508373ffffffffffffffffffffffffffffffffffffffff16612c2184610cf5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c62826116b8565b73ffffffffffffffffffffffffffffffffffffffff1614612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f906146e4565b60405180910390fd5b612d33838383613382565b612d3e600082612a9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8e9190614bdc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de59190614afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ea4838383613387565b505050565b60005b81811015612ee457612ebe600761338c565b612ed183612ecc6007612b56565b6133a2565b8080612edc90614d33565b915050612eac565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561301e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301590614704565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161310f91906145cc565b60405180910390a3505050565b613127848484612c42565b613133848484846133c0565b613172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316990614644565b60405180910390fd5b50505050565b60606008805461318790614cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546131b390614cd0565b80156132005780601f106131d557610100808354040283529160200191613200565b820191906000526020600020905b8154815290600101906020018083116131e357829003601f168201915b5050505050905090565b60606000821415613252576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613366565b600082905060005b6000821461328457808061326d90614d33565b915050600a8261327d9190614b51565b915061325a565b60008167ffffffffffffffff8111156132a05761329f614e8d565b5b6040519080825280601f01601f1916602001820160405280156132d25781602001600182028036833780820191505090505b5090505b6000851461335f576001826132eb9190614bdc565b9150600a856132fa9190614da0565b60306133069190614afb565b60f81b81838151811061331c5761331b614e5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133589190614b51565b94506132d6565b8093505050505b919050565b6000826133788584613557565b1490509392505050565b505050565b505050565b6001816000016000828254019250508190555050565b6133bc8282604051806020016040528060008152506135ad565b5050565b60006133e18473ffffffffffffffffffffffffffffffffffffffff16613608565b1561354a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261340a612a29565b8786866040518563ffffffff1660e01b815260040161342c949392919061453c565b602060405180830381600087803b15801561344657600080fd5b505af192505050801561347757506040513d601f19601f820116820180604052508101906134749190613cfd565b60015b6134fa573d80600081146134a7576040519150601f19603f3d011682016040523d82523d6000602084013e6134ac565b606091505b506000815114156134f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e990614644565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061354f565b600190505b949350505050565b60008082905060005b84518110156135a25761358d828683815181106135805761357f614e5e565b5b602002602001015161362b565b9150808061359a90614d33565b915050613560565b508091505092915050565b6135b78383613656565b6135c460008484846133c0565b613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fa90614644565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106136435761363e8284613830565b61364e565b61364d8383613830565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd90614804565b60405180910390fd5b6136cf81612a31565b1561370f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613706906146a4565b60405180910390fd5b61371b60008383613382565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461376b9190614afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461382c60008383613387565b5050565b600082600052816020526040600020905092915050565b82805461385390614cd0565b90600052602060002090601f01602090048101928261387557600085556138bc565b82601f1061388e57805160ff19168380011785556138bc565b828001600101855582156138bc579182015b828111156138bb5782518255916020019190600101906138a0565b5b5090506138c991906138cd565b5090565b5b808211156138e65760008160009055506001016138ce565b5090565b60006138fd6138f8846149c4565b61499f565b90508281526020810184848401111561391957613918614ecb565b5b613924848285614c8e565b509392505050565b600061393f61393a846149f5565b61499f565b90508281526020810184848401111561395b5761395a614ecb565b5b613966848285614c8e565b509392505050565b60008135905061397d8161553c565b92915050565b60008083601f84011261399957613998614ec1565b5b8235905067ffffffffffffffff8111156139b6576139b5614ebc565b5b6020830191508360208202830111156139d2576139d1614ec6565b5b9250929050565b6000813590506139e881615553565b92915050565b6000813590506139fd8161556a565b92915050565b600081359050613a1281615581565b92915050565b600081519050613a2781615581565b92915050565b600082601f830112613a4257613a41614ec1565b5b8135613a528482602086016138ea565b91505092915050565b600082601f830112613a7057613a6f614ec1565b5b8135613a8084826020860161392c565b91505092915050565b600081359050613a9881615598565b92915050565b600081519050613aad81615598565b92915050565b600060208284031215613ac957613ac8614ed5565b5b6000613ad78482850161396e565b91505092915050565b60008060408385031215613af757613af6614ed5565b5b6000613b058582860161396e565b9250506020613b168582860161396e565b9150509250929050565b600080600060608486031215613b3957613b38614ed5565b5b6000613b478682870161396e565b9350506020613b588682870161396e565b9250506040613b6986828701613a89565b9150509250925092565b60008060008060808587031215613b8d57613b8c614ed5565b5b6000613b9b8782880161396e565b9450506020613bac8782880161396e565b9350506040613bbd87828801613a89565b925050606085013567ffffffffffffffff811115613bde57613bdd614ed0565b5b613bea87828801613a2d565b91505092959194509250565b60008060408385031215613c0d57613c0c614ed5565b5b6000613c1b8582860161396e565b9250506020613c2c858286016139d9565b9150509250929050565b60008060408385031215613c4d57613c4c614ed5565b5b6000613c5b8582860161396e565b9250506020613c6c85828601613a89565b9150509250929050565b600060208284031215613c8c57613c8b614ed5565b5b6000613c9a848285016139d9565b91505092915050565b600060208284031215613cb957613cb8614ed5565b5b6000613cc7848285016139ee565b91505092915050565b600060208284031215613ce657613ce5614ed5565b5b6000613cf484828501613a03565b91505092915050565b600060208284031215613d1357613d12614ed5565b5b6000613d2184828501613a18565b91505092915050565b600060208284031215613d4057613d3f614ed5565b5b600082013567ffffffffffffffff811115613d5e57613d5d614ed0565b5b613d6a84828501613a5b565b91505092915050565b600060208284031215613d8957613d88614ed5565b5b6000613d9784828501613a89565b91505092915050565b600060208284031215613db657613db5614ed5565b5b6000613dc484828501613a9e565b91505092915050565b60008060408385031215613de457613de3614ed5565b5b6000613df285828601613a89565b9250506020613e038582860161396e565b9150509250929050565b600080600060408486031215613e2657613e25614ed5565b5b6000613e3486828701613a89565b935050602084013567ffffffffffffffff811115613e5557613e54614ed0565b5b613e6186828701613983565b92509250509250925092565b6000613e798383613e9d565b60208301905092915050565b6000613e9183836144a2565b60208301905092915050565b613ea681614c10565b82525050565b613eb581614c10565b82525050565b613ecc613ec782614c10565b614d7c565b82525050565b6000613edd82614a5b565b613ee78185614aa1565b9350613ef283614a26565b8060005b83811015613f23578151613f0a8882613e6d565b9750613f1583614a87565b925050600181019050613ef6565b5085935050505092915050565b6000613f3b82614a66565b613f458185614ab2565b9350613f5083614a36565b8060005b83811015613f81578151613f688882613e85565b9750613f7383614a94565b925050600181019050613f54565b5085935050505092915050565b613f9781614c22565b82525050565b613fa681614c2e565b82525050565b6000613fb782614a71565b613fc18185614ac3565b9350613fd1818560208601614c9d565b613fda81614eda565b840191505092915050565b6000613ff082614a7c565b613ffa8185614adf565b935061400a818560208601614c9d565b61401381614eda565b840191505092915050565b600061402982614a7c565b6140338185614af0565b9350614043818560208601614c9d565b80840191505092915050565b6000815461405c81614cd0565b6140668186614af0565b945060018216600081146140815760018114614092576140c5565b60ff198316865281860193506140c5565b61409b85614a46565b60005b838110156140bd5781548189015260018201915060208101905061409e565b838801955050505b50505092915050565b60006140db601483614adf565b91506140e682614ef8565b602082019050919050565b60006140fe603283614adf565b915061410982614f21565b604082019050919050565b6000614121602683614adf565b915061412c82614f70565b604082019050919050565b6000614144602583614adf565b915061414f82614fbf565b604082019050919050565b6000614167601c83614adf565b91506141728261500e565b602082019050919050565b600061418a601483614adf565b915061419582615037565b602082019050919050565b60006141ad602483614adf565b91506141b882615060565b604082019050919050565b60006141d0601983614adf565b91506141db826150af565b602082019050919050565b60006141f3603083614adf565b91506141fe826150d8565b604082019050919050565b6000614216602c83614adf565b915061422182615127565b604082019050919050565b6000614239601a83614adf565b915061424482615176565b602082019050919050565b600061425c603883614adf565b91506142678261519f565b604082019050919050565b600061427f602a83614adf565b915061428a826151ee565b604082019050919050565b60006142a2602983614adf565b91506142ad8261523d565b604082019050919050565b60006142c5601183614adf565b91506142d08261528c565b602082019050919050565b60006142e8602083614adf565b91506142f3826152b5565b602082019050919050565b600061430b601883614adf565b9150614316826152de565b602082019050919050565b600061432e602c83614adf565b915061433982615307565b604082019050919050565b6000614351602083614adf565b915061435c82615356565b602082019050919050565b6000614374601683614adf565b915061437f8261537f565b602082019050919050565b6000614397601783614adf565b91506143a2826153a8565b602082019050919050565b60006143ba602f83614adf565b91506143c5826153d1565b604082019050919050565b60006143dd600f83614adf565b91506143e882615420565b602082019050919050565b6000614400602183614adf565b915061440b82615449565b604082019050919050565b6000614423600083614ad4565b915061442e82615498565b600082019050919050565b6000614446601483614adf565b91506144518261549b565b602082019050919050565b6000614469601283614adf565b9150614474826154c4565b602082019050919050565b600061448c603183614adf565b9150614497826154ed565b604082019050919050565b6144ab81614c84565b82525050565b6144ba81614c84565b82525050565b60006144cc8284613ebb565b60148201915081905092915050565b60006144e7828661401e565b91506144f3828561401e565b91506144ff828461404f565b9150819050949350505050565b600061451782614416565b9150819050919050565b60006020820190506145366000830184613eac565b92915050565b60006080820190506145516000830187613eac565b61455e6020830186613eac565b61456b60408301856144b1565b818103606083015261457d8184613fac565b905095945050505050565b600060208201905081810360008301526145a28184613ed2565b905092915050565b600060208201905081810360008301526145c48184613f30565b905092915050565b60006020820190506145e16000830184613f8e565b92915050565b60006020820190506145fc6000830184613f9d565b92915050565b6000602082019050818103600083015261461c8184613fe5565b905092915050565b6000602082019050818103600083015261463d816140ce565b9050919050565b6000602082019050818103600083015261465d816140f1565b9050919050565b6000602082019050818103600083015261467d81614114565b9050919050565b6000602082019050818103600083015261469d81614137565b9050919050565b600060208201905081810360008301526146bd8161415a565b9050919050565b600060208201905081810360008301526146dd8161417d565b9050919050565b600060208201905081810360008301526146fd816141a0565b9050919050565b6000602082019050818103600083015261471d816141c3565b9050919050565b6000602082019050818103600083015261473d816141e6565b9050919050565b6000602082019050818103600083015261475d81614209565b9050919050565b6000602082019050818103600083015261477d8161422c565b9050919050565b6000602082019050818103600083015261479d8161424f565b9050919050565b600060208201905081810360008301526147bd81614272565b9050919050565b600060208201905081810360008301526147dd81614295565b9050919050565b600060208201905081810360008301526147fd816142b8565b9050919050565b6000602082019050818103600083015261481d816142db565b9050919050565b6000602082019050818103600083015261483d816142fe565b9050919050565b6000602082019050818103600083015261485d81614321565b9050919050565b6000602082019050818103600083015261487d81614344565b9050919050565b6000602082019050818103600083015261489d81614367565b9050919050565b600060208201905081810360008301526148bd8161438a565b9050919050565b600060208201905081810360008301526148dd816143ad565b9050919050565b600060208201905081810360008301526148fd816143d0565b9050919050565b6000602082019050818103600083015261491d816143f3565b9050919050565b6000602082019050818103600083015261493d81614439565b9050919050565b6000602082019050818103600083015261495d8161445c565b9050919050565b6000602082019050818103600083015261497d8161447f565b9050919050565b600060208201905061499960008301846144b1565b92915050565b60006149a96149ba565b90506149b58282614d02565b919050565b6000604051905090565b600067ffffffffffffffff8211156149df576149de614e8d565b5b6149e882614eda565b9050602081019050919050565b600067ffffffffffffffff821115614a1057614a0f614e8d565b5b614a1982614eda565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0682614c84565b9150614b1183614c84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4657614b45614dd1565b5b828201905092915050565b6000614b5c82614c84565b9150614b6783614c84565b925082614b7757614b76614e00565b5b828204905092915050565b6000614b8d82614c84565b9150614b9883614c84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd157614bd0614dd1565b5b828202905092915050565b6000614be782614c84565b9150614bf283614c84565b925082821015614c0557614c04614dd1565b5b828203905092915050565b6000614c1b82614c64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cbb578082015181840152602081019050614ca0565b83811115614cca576000848401525b50505050565b60006002820490506001821680614ce857607f821691505b60208210811415614cfc57614cfb614e2f565b5b50919050565b614d0b82614eda565b810181811067ffffffffffffffff82111715614d2a57614d29614e8d565b5b80604052505050565b6000614d3e82614c84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7157614d70614dd1565b5b600182019050919050565b6000614d8782614d8e565b9050919050565b6000614d9982614eeb565b9050919050565b6000614dab82614c84565b9150614db683614c84565b925082614dc657614dc5614e00565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f697320612077686974656c697374207068617365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f796f752068616420657863656564656420746865206e756d626572206f66206e60008201527f6674206f6e2066726565206d696e742000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f796f7520617265206e6f742063617073756c6520686f6c646572000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f497420697320612066726565206d696e74000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6973206e6f7420612077686974656c6973742070686173650000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61554581614c10565b811461555057600080fd5b50565b61555c81614c22565b811461556757600080fd5b50565b61557381614c2e565b811461557e57600080fd5b50565b61558a81614c38565b811461559557600080fd5b50565b6155a181614c84565b81146155ac57600080fd5b5056fea264697066735822122017466a0bf516e8770530d55df079e084bf701de663df7855ff3db46205f04ef964736f6c63430008070033
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.