ERC-721
Overview
Max Total Supply
1,111 BRUSHSTROKES
Holders
657
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BRUSHSTROKESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BrushStrokes
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract BrushStrokes is ERC721Enumerable, Ownable { event NewTokenHash(uint256 indexed tokenId, bytes32 indexed tokenHash); using ECDSA for bytes32; using Strings for uint256; bool public earlyMintIsActive = false; bool public mintIsActive = false; uint256 public freeMintCount = 0; uint256 public earlyMintCount = 0; uint256 constant public MAX_SUPPLY = 1111; uint256 constant public FREE_MINT_SUPPLY = 111; uint256 constant public EARLY_MINT_SUPPLY = 500; uint256 constant public BRUSHSTROKES_PRICE = 0.05 ether; mapping(bytes32 => bool) private usedHashes; mapping(address => uint256) private walletMintNumber; mapping(uint256 => bytes32) public tokenIdToHash; string public script; // base64 encoded generative script string private _tokenBaseURI; address private _signatureVerifier = 0x805c057A31B31c84F7759698298aD4dC6F8fA622; constructor() ERC721("BrushStrokes", "BRUSHSTROKES") { } // onlyOwner functions function setScript(string memory genScript) public onlyOwner { script = genScript; } function flipEarlyMintState() public onlyOwner { earlyMintIsActive = !earlyMintIsActive; } function flipMintState() public onlyOwner { mintIsActive = !mintIsActive; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } // Sets base URI for all tokens, only able to be called by contract owner function setBaseURI(string memory baseURI_) external onlyOwner { _tokenBaseURI = baseURI_; } // public functions function earlyMint(bytes memory signature, uint256 nonce) public payable { require(earlyMintIsActive, "Early minting is not active at the moment"); require(totalSupply() + 1 <= MAX_SUPPLY, "Purchase would exceed max supply"); require(earlyMintCount + 1 <= EARLY_MINT_SUPPLY, "Early mint is over"); require(walletMintNumber[msg.sender] + 1 <= 1, "Mint would exceed max mint for wallet during early mint"); require(BRUSHSTROKES_PRICE == msg.value, "Sent ether value is incorrect"); bytes32 messageHash = hashMessage(msg.sender, nonce); require(messageHash.recover(signature) == _signatureVerifier, "Unrecognizable Hash"); require(!usedHashes[messageHash], "Reused Hash"); usedHashes[messageHash] = true; walletMintNumber[msg.sender] += 1; earlyMintCount += 1; setTokenIdToHash(totalSupply() + 1); _safeMint(msg.sender, totalSupply() + 1); } function freeMint(bytes memory signature, uint256 nonce) public { require(mintIsActive, "Minting is not active at the moment"); require(totalSupply() + 1 <= MAX_SUPPLY, "Purchase would exceed max supply"); require(freeMintCount + 1 <= FREE_MINT_SUPPLY, "Free mint is over"); require(walletMintNumber[msg.sender] + 1 <= 3, "Mint would exceed max mint for wallet"); bytes32 messageHash = hashMessage(msg.sender, nonce); require(messageHash.recover(signature) == _signatureVerifier, "Unrecognizable Hash"); require(!usedHashes[messageHash], "Reused Hash"); usedHashes[messageHash] = true; walletMintNumber[msg.sender] += 1; freeMintCount += 1; setTokenIdToHash(totalSupply() + 1); _safeMint(msg.sender, totalSupply() + 1); } function mint(bytes memory signature, uint256 nonce) public payable { require(mintIsActive, "Minting is not active at the moment"); require(totalSupply() + 1 <= MAX_SUPPLY, "Purchase would exceed max supply"); require(walletMintNumber[msg.sender] + 1 <= 3, "Mint would exceed max mint for wallet"); require(BRUSHSTROKES_PRICE == msg.value, "Sent ether value is incorrect"); bytes32 messageHash = hashMessage(msg.sender, nonce); require(messageHash.recover(signature) == _signatureVerifier, "Unrecognizable Hash"); require(!usedHashes[messageHash], "Reused Hash"); usedHashes[messageHash] = true; walletMintNumber[msg.sender] += 1; setTokenIdToHash(totalSupply() + 1); _safeMint(msg.sender, totalSupply() + 1); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory base = _baseURI(); return string(abi.encodePacked(base, tokenId.toString())); } // internal functions function hashMessage(address sender, uint256 nonce) internal pure returns(bytes32) { bytes32 hash = keccak256(abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(sender, nonce)))); return hash; } function setTokenIdToHash(uint256 tokenId) internal { bytes32 hash = keccak256(abi.encodePacked(block.number, block.timestamp, msg.sender)); tokenIdToHash[tokenId]=hash; emit NewTokenHash(tokenId, hash); } function _baseURI() internal view virtual override returns (string memory) { return _tokenBaseURI; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT 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 overriden 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"tokenHash","type":"bytes32"}],"name":"NewTokenHash","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":"BRUSHSTROKES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"earlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"earlyMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipEarlyMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"script","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"genScript","type":"string"}],"name":"setScript","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600b556000600c5573805c057a31b31c84f7759698298ad4dc6f8fa622601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a657600080fd5b506040518060400160405280600c81526020017f42727573685374726f6b657300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f42525553485354524f4b4553000000000000000000000000000000000000000081525081600090805190602001906200012b9291906200023b565b508060019080519060200190620001449291906200023b565b505050620001676200015b6200016d60201b60201c565b6200017560201b60201c565b62000350565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000249906200031a565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033357607f821691505b602082108114156200034a5762000349620002eb565b5b50919050565b6155c680620003606000396000f3fe6080604052600436106102195760003560e01c806359c74f29116101235780638dd2ef48116100ab578063c87b56dd1161006f578063c87b56dd1461077e578063e55f58bb146107bb578063e985e9c5146107e6578063ebe9eb9f14610823578063f2fde38b1461084e57610219565b80638dd2ef48146106c157806395d89b41146106ea5780639e75914814610715578063a22cb4651461072c578063b88d4fde1461075557610219565b80636ed645cf116100f25780636ed645cf146105ee57806370a0823114610619578063715018a61461065657806378a4ab851461066d5780638da5cb5b1461069657610219565b806359c74f2914610532578063621a1f74146105495780636352211e1461058657806363eb8bb6146105c357610219565b806332cb6b0c116101a657806342842e0e1161017557806342842e0e1461044d578063471a4294146104765780634e981c0c146104a15780634f6ccce7146104cc57806355f804b31461050957610219565b806332cb6b0c146103c45780633ccfd60b146103ef57806341f9108e1461040657806342184a451461043157610219565b8063095ea7b3116101ed578063095ea7b3146102df57806317bb6c381461030857806318160ddd1461033357806323b872dd1461035e5780632f745c591461038757610219565b80622576121461021e57806301ffc9a71461023a57806306fdde0314610277578063081812fc146102a2575b600080fd5b610238600480360381019061023391906139e1565b610877565b005b34801561024657600080fd5b50610261600480360381019061025c9190613a95565b610bc8565b60405161026e9190613add565b60405180910390f35b34801561028357600080fd5b5061028c610c42565b6040516102999190613b80565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190613ba2565b610cd4565b6040516102d69190613c10565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c57565b610d59565b005b34801561031457600080fd5b5061031d610e71565b60405161032a9190613ca6565b60405180910390f35b34801561033f57600080fd5b50610348610e7c565b6040516103559190613ca6565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613cc1565b610e89565b005b34801561039357600080fd5b506103ae60048036038101906103a99190613c57565b610ee9565b6040516103bb9190613ca6565b60405180910390f35b3480156103d057600080fd5b506103d9610f8e565b6040516103e69190613ca6565b60405180910390f35b3480156103fb57600080fd5b50610404610f94565b005b34801561041257600080fd5b5061041b61105f565b6040516104289190613ca6565b60405180910390f35b61044b600480360381019061044691906139e1565b611065565b005b34801561045957600080fd5b50610474600480360381019061046f9190613cc1565b611422565b005b34801561048257600080fd5b5061048b611442565b6040516104989190613add565b60405180910390f35b3480156104ad57600080fd5b506104b6611455565b6040516104c39190613add565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613ba2565b611468565b6040516105009190613ca6565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190613db5565b6114d9565b005b34801561053e57600080fd5b5061054761156f565b005b34801561055557600080fd5b50610570600480360381019061056b9190613ba2565b611617565b60405161057d9190613e17565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613ba2565b61162f565b6040516105ba9190613c10565b60405180910390f35b3480156105cf57600080fd5b506105d86116e1565b6040516105e59190613ca6565b60405180910390f35b3480156105fa57600080fd5b506106036116e6565b6040516106109190613ca6565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613e32565b6116ec565b60405161064d9190613ca6565b60405180910390f35b34801561066257600080fd5b5061066b6117a4565b005b34801561067957600080fd5b50610694600480360381019061068f9190613db5565b61182c565b005b3480156106a257600080fd5b506106ab6118c2565b6040516106b89190613c10565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906139e1565b6118ec565b005b3480156106f657600080fd5b506106ff611c60565b60405161070c9190613b80565b60405180910390f35b34801561072157600080fd5b5061072a611cf2565b005b34801561073857600080fd5b50610753600480360381019061074e9190613e8b565b611d9a565b005b34801561076157600080fd5b5061077c60048036038101906107779190613ecb565b611f1b565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613ba2565b611f7d565b6040516107b29190613b80565b60405180910390f35b3480156107c757600080fd5b506107d0612005565b6040516107dd9190613ca6565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613f4e565b61200b565b60405161081a9190613add565b60405180910390f35b34801561082f57600080fd5b5061083861209f565b6040516108459190613b80565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613e32565b61212d565b005b600a60159054906101000a900460ff166108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90614000565b60405180910390fd5b61045760016108d3610e7c565b6108dd919061404f565b111561091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906140f1565b60405180910390fd5b60036001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096c919061404f565b11156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490614183565b60405180910390fd5b3466b1a2bc2ec50000146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906141ef565b60405180910390fd5b6000610a023383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a50848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b83919061404f565b92505081905550610ba66001610b97610e7c565b610ba1919061404f565b6122aa565b610bc3336001610bb4610e7c565b610bbe919061404f565b612323565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3b5750610c3a82612341565b5b9050919050565b606060008054610c5190614316565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90614316565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b6000610cdf82612423565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906143ba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d648261162f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061444c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df461248f565b73ffffffffffffffffffffffffffffffffffffffff161480610e235750610e2281610e1d61248f565b61200b565b5b610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906144de565b60405180910390fd5b610e6c8383612497565b505050565b66b1a2bc2ec5000081565b6000600880549050905090565b610e9a610e9461248f565b82612550565b610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090614570565b60405180910390fd5b610ee483838361262e565b505050565b6000610ef4836116ec565b8210610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614602565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61045781565b610f9c61248f565b73ffffffffffffffffffffffffffffffffffffffff16610fba6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061466e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561105b573d6000803e3d6000fd5b5050565b6101f481565b600a60149054906101000a900460ff166110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90614700565b60405180910390fd5b61045760016110c1610e7c565b6110cb919061404f565b111561110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906140f1565b60405180910390fd5b6101f46001600c5461111e919061404f565b111561115f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111569061476c565b60405180910390fd5b600180600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ac919061404f565b11156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906147fe565b60405180910390fd5b3466b1a2bc2ec5000014611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906141ef565b60405180910390fd5b60006112423383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611290848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113c3919061404f565b925050819055506001600c60008282546113dd919061404f565b9250508190555061140060016113f1610e7c565b6113fb919061404f565b6122aa565b61141d33600161140e610e7c565b611418919061404f565b612323565b505050565b61143d83838360405180602001604052806000815250611f1b565b505050565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b6000611472610e7c565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614890565b60405180910390fd5b600882815481106114c7576114c66148b0565b5b90600052602060002001549050919050565b6114e161248f565b73ffffffffffffffffffffffffffffffffffffffff166114ff6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061466e565b60405180910390fd5b806011908051906020019061156b9291906137ae565b5050565b61157761248f565b73ffffffffffffffffffffffffffffffffffffffff166115956118c2565b73ffffffffffffffffffffffffffffffffffffffff16146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061466e565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614951565b60405180910390fd5b80915050919050565b606f81565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611754906149e3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117ac61248f565b73ffffffffffffffffffffffffffffffffffffffff166117ca6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061466e565b60405180910390fd5b61182a600061288a565b565b61183461248f565b73ffffffffffffffffffffffffffffffffffffffff166118526118c2565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061466e565b60405180910390fd5b80601090805190602001906118be9291906137ae565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60159054906101000a900460ff1661193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290614000565b60405180910390fd5b6104576001611948610e7c565b611952919061404f565b1115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906140f1565b60405180910390fd5b606f6001600b546119a4919061404f565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90614a4f565b60405180910390fd5b60036001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a33919061404f565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614183565b60405180910390fd5b6000611a803383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ace848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c01919061404f565b925050819055506001600b6000828254611c1b919061404f565b92505081905550611c3e6001611c2f610e7c565b611c39919061404f565b6122aa565b611c5b336001611c4c610e7c565b611c56919061404f565b612323565b505050565b606060018054611c6f90614316565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9b90614316565b8015611ce85780601f10611cbd57610100808354040283529160200191611ce8565b820191906000526020600020905b815481529060010190602001808311611ccb57829003601f168201915b5050505050905090565b611cfa61248f565b73ffffffffffffffffffffffffffffffffffffffff16611d186118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061466e565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b611da261248f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614abb565b60405180910390fd5b8060056000611e1d61248f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eca61248f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f0f9190613add565b60405180910390a35050565b611f2c611f2661248f565b83612550565b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614570565b60405180910390fd5b611f7784848484612950565b50505050565b6060611f8882612423565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90614b4d565b60405180910390fd5b6000611fd16129ac565b905080611fdd84612a3e565b604051602001611fee929190614ba9565b604051602081830303815290604052915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601080546120ac90614316565b80601f01602080910402602001604051908101604052809291908181526020018280546120d890614316565b80156121255780601f106120fa57610100808354040283529160200191612125565b820191906000526020600020905b81548152906001019060200180831161210857829003601f168201915b505050505081565b61213561248f565b73ffffffffffffffffffffffffffffffffffffffff166121536118c2565b73ffffffffffffffffffffffffffffffffffffffff16146121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a09061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614c3f565b60405180910390fd5b6122228161288a565b50565b600080838360405160200161223b929190614cc8565b604051602081830303815290604052805190602001206040516020016122619190614d61565b6040516020818303038152906040528051906020012090508091505092915050565b60008060006122928585612b9f565b9150915061229f81612c22565b819250505092915050565b60004342336040516020016122c193929190614d87565b60405160208183030381529060405280519060200120905080600f60008481526020019081526020016000208190555080827f8743066caaef5216811808a26bc8cdb12cfb26eb73164d22df2b13d6774a2cb660405160405180910390a35050565b61233d828260405180602001604052806000815250612df7565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061241c575061241b82612e52565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661250a8361162f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061255b82612423565b61259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259190614e36565b60405180910390fd5b60006125a58361162f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061261457508373ffffffffffffffffffffffffffffffffffffffff166125fc84610cd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126255750612624818561200b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661264e8261162f565b73ffffffffffffffffffffffffffffffffffffffff16146126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b90614ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614f5a565b60405180910390fd5b61271f838383612ebc565b61272a600082612497565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277a9190614f7a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d1919061404f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61295b84848461262e565b61296784848484612fd0565b6129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90615020565b60405180910390fd5b50505050565b6060601180546129bb90614316565b80601f01602080910402602001604051908101604052809291908181526020018280546129e790614316565b8015612a345780601f10612a0957610100808354040283529160200191612a34565b820191906000526020600020905b815481529060010190602001808311612a1757829003601f168201915b5050505050905090565b60606000821415612a86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b9a565b600082905060005b60008214612ab8578080612aa190615040565b915050600a82612ab191906150b8565b9150612a8e565b60008167ffffffffffffffff811115612ad457612ad3613880565b5b6040519080825280601f01601f191660200182016040528015612b065781602001600182028036833780820191505090505b5090505b60008514612b9357600182612b1f9190614f7a565b9150600a85612b2e91906150e9565b6030612b3a919061404f565b60f81b818381518110612b5057612b4f6148b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b8c91906150b8565b9450612b0a565b8093505050505b919050565b600080604183511415612be15760008060006020860151925060408601519150606086015160001a9050612bd587828585613167565b94509450505050612c1b565b604083511415612c12576000806020850151915060408501519050612c07868383613274565b935093505050612c1b565b60006002915091505b9250929050565b60006004811115612c3657612c3561511a565b5b816004811115612c4957612c4861511a565b5b1415612c5457612df4565b60016004811115612c6857612c6761511a565b5b816004811115612c7b57612c7a61511a565b5b1415612cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb390615195565b60405180910390fd5b60026004811115612cd057612ccf61511a565b5b816004811115612ce357612ce261511a565b5b1415612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b90615201565b60405180910390fd5b60036004811115612d3857612d3761511a565b5b816004811115612d4b57612d4a61511a565b5b1415612d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8390615293565b60405180910390fd5b600480811115612d9f57612d9e61511a565b5b816004811115612db257612db161511a565b5b1415612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90615325565b60405180910390fd5b5b50565b612e0183836132c2565b612e0e6000848484612fd0565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4490615020565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ec7838383613490565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a57612f0581613495565b612f49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4857612f4783826134de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8c57612f878161364b565b612fcb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fca57612fc9828261371c565b5b5b505050565b6000612ff18473ffffffffffffffffffffffffffffffffffffffff1661379b565b1561315a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301a61248f565b8786866040518563ffffffff1660e01b815260040161303c949392919061539a565b602060405180830381600087803b15801561305657600080fd5b505af192505050801561308757506040513d601f19601f8201168201806040525081019061308491906153fb565b60015b61310a573d80600081146130b7576040519150601f19603f3d011682016040523d82523d6000602084013e6130bc565b606091505b50600081511415613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f990615020565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061315f565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156131a257600060039150915061326b565b601b8560ff16141580156131ba5750601c8560ff1614155b156131cc57600060049150915061326b565b6000600187878787604051600081526020016040526040516131f19493929190615444565b6020604051602081039080840390855afa158015613213573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132625760006001925092505061326b565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506132b487828885613167565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906154d5565b60405180910390fd5b61333b81612423565b1561337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337290615541565b60405180910390fd5b61338760008383612ebc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133d7919061404f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134eb846116ec565b6134f59190614f7a565b90506000600760008481526020019081526020016000205490508181146135da576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061365f9190614f7a565b905060006009600084815260200190815260200160002054905060006008838154811061368f5761368e6148b0565b5b9060005260206000200154905080600883815481106136b1576136b06148b0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613700576136ff615561565b5b6001900381819060005260206000200160009055905550505050565b6000613727836116ec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546137ba90614316565b90600052602060002090601f0160209004810192826137dc5760008555613823565b82601f106137f557805160ff1916838001178555613823565b82800160010185558215613823579182015b82811115613822578251825591602001919060010190613807565b5b5090506138309190613834565b5090565b5b8082111561384d576000816000905550600101613835565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138b88261386f565b810181811067ffffffffffffffff821117156138d7576138d6613880565b5b80604052505050565b60006138ea613851565b90506138f682826138af565b919050565b600067ffffffffffffffff82111561391657613915613880565b5b61391f8261386f565b9050602081019050919050565b82818337600083830152505050565b600061394e613949846138fb565b6138e0565b90508281526020810184848401111561396a5761396961386a565b5b61397584828561392c565b509392505050565b600082601f83011261399257613991613865565b5b81356139a284826020860161393b565b91505092915050565b6000819050919050565b6139be816139ab565b81146139c957600080fd5b50565b6000813590506139db816139b5565b92915050565b600080604083850312156139f8576139f761385b565b5b600083013567ffffffffffffffff811115613a1657613a15613860565b5b613a228582860161397d565b9250506020613a33858286016139cc565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a7281613a3d565b8114613a7d57600080fd5b50565b600081359050613a8f81613a69565b92915050565b600060208284031215613aab57613aaa61385b565b5b6000613ab984828501613a80565b91505092915050565b60008115159050919050565b613ad781613ac2565b82525050565b6000602082019050613af26000830184613ace565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b32578082015181840152602081019050613b17565b83811115613b41576000848401525b50505050565b6000613b5282613af8565b613b5c8185613b03565b9350613b6c818560208601613b14565b613b758161386f565b840191505092915050565b60006020820190508181036000830152613b9a8184613b47565b905092915050565b600060208284031215613bb857613bb761385b565b5b6000613bc6848285016139cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bfa82613bcf565b9050919050565b613c0a81613bef565b82525050565b6000602082019050613c256000830184613c01565b92915050565b613c3481613bef565b8114613c3f57600080fd5b50565b600081359050613c5181613c2b565b92915050565b60008060408385031215613c6e57613c6d61385b565b5b6000613c7c85828601613c42565b9250506020613c8d858286016139cc565b9150509250929050565b613ca0816139ab565b82525050565b6000602082019050613cbb6000830184613c97565b92915050565b600080600060608486031215613cda57613cd961385b565b5b6000613ce886828701613c42565b9350506020613cf986828701613c42565b9250506040613d0a868287016139cc565b9150509250925092565b600067ffffffffffffffff821115613d2f57613d2e613880565b5b613d388261386f565b9050602081019050919050565b6000613d58613d5384613d14565b6138e0565b905082815260208101848484011115613d7457613d7361386a565b5b613d7f84828561392c565b509392505050565b600082601f830112613d9c57613d9b613865565b5b8135613dac848260208601613d45565b91505092915050565b600060208284031215613dcb57613dca61385b565b5b600082013567ffffffffffffffff811115613de957613de8613860565b5b613df584828501613d87565b91505092915050565b6000819050919050565b613e1181613dfe565b82525050565b6000602082019050613e2c6000830184613e08565b92915050565b600060208284031215613e4857613e4761385b565b5b6000613e5684828501613c42565b91505092915050565b613e6881613ac2565b8114613e7357600080fd5b50565b600081359050613e8581613e5f565b92915050565b60008060408385031215613ea257613ea161385b565b5b6000613eb085828601613c42565b9250506020613ec185828601613e76565b9150509250929050565b60008060008060808587031215613ee557613ee461385b565b5b6000613ef387828801613c42565b9450506020613f0487828801613c42565b9350506040613f15878288016139cc565b925050606085013567ffffffffffffffff811115613f3657613f35613860565b5b613f428782880161397d565b91505092959194509250565b60008060408385031215613f6557613f6461385b565b5b6000613f7385828601613c42565b9250506020613f8485828601613c42565b9150509250929050565b7f4d696e74696e67206973206e6f742061637469766520617420746865206d6f6d60008201527f656e740000000000000000000000000000000000000000000000000000000000602082015250565b6000613fea602383613b03565b9150613ff582613f8e565b604082019050919050565b6000602082019050818103600083015261401981613fdd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405a826139ab565b9150614065836139ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561409a57614099614020565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006140db602083613b03565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e7420666f72207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b600061416d602583613b03565b915061417882614111565b604082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b60006141d9601d83613b03565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b6000614245601383613b03565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f5265757365642048617368000000000000000000000000000000000000000000600082015250565b60006142b1600b83613b03565b91506142bc8261427b565b602082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061432e57607f821691505b60208210811415614342576143416142e7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006143a4602c83613b03565b91506143af82614348565b604082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614436602183613b03565b9150614441826143da565b604082019050919050565b6000602082019050818103600083015261446581614429565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006144c8603883613b03565b91506144d38261446c565b604082019050919050565b600060208201905081810360008301526144f7816144bb565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061455a603183613b03565b9150614565826144fe565b604082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006145ec602b83613b03565b91506145f782614590565b604082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614658602083613b03565b915061466382614622565b602082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f4561726c79206d696e74696e67206973206e6f7420616374697665206174207460008201527f6865206d6f6d656e740000000000000000000000000000000000000000000000602082015250565b60006146ea602983613b03565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f4561726c79206d696e74206973206f7665720000000000000000000000000000600082015250565b6000614756601283613b03565b915061476182614720565b602082019050919050565b6000602082019050818103600083015261478581614749565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e7420666f72207760008201527f616c6c657420647572696e67206561726c79206d696e74000000000000000000602082015250565b60006147e8603783613b03565b91506147f38261478c565b604082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061487a602c83613b03565b91506148858261481e565b604082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061493b602983613b03565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149cd602a83613b03565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f46726565206d696e74206973206f766572000000000000000000000000000000600082015250565b6000614a39601183613b03565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614aa5601983613b03565b9150614ab082614a6f565b602082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b37602f83613b03565b9150614b4282614adb565b604082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b600081905092915050565b6000614b8382613af8565b614b8d8185614b6d565b9350614b9d818560208601613b14565b80840191505092915050565b6000614bb58285614b78565b9150614bc18284614b78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c29602683613b03565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b60008160601b9050919050565b6000614c7782614c5f565b9050919050565b6000614c8982614c6c565b9050919050565b614ca1614c9c82613bef565b614c7e565b82525050565b6000819050919050565b614cc2614cbd826139ab565b614ca7565b82525050565b6000614cd48285614c90565b601482019150614ce48284614cb1565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614d2a601c83614b6d565b9150614d3582614cf4565b601c82019050919050565b6000819050919050565b614d5b614d5682613dfe565b614d40565b82525050565b6000614d6c82614d1d565b9150614d788284614d4a565b60208201915081905092915050565b6000614d938286614cb1565b602082019150614da38285614cb1565b602082019150614db38284614c90565b601482019150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614e20602c83613b03565b9150614e2b82614dc4565b604082019050919050565b60006020820190508181036000830152614e4f81614e13565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614eb2602983613b03565b9150614ebd82614e56565b604082019050919050565b60006020820190508181036000830152614ee181614ea5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614f44602483613b03565b9150614f4f82614ee8565b604082019050919050565b60006020820190508181036000830152614f7381614f37565b9050919050565b6000614f85826139ab565b9150614f90836139ab565b925082821015614fa357614fa2614020565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061500a603283613b03565b915061501582614fae565b604082019050919050565b6000602082019050818103600083015261503981614ffd565b9050919050565b600061504b826139ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561507e5761507d614020565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150c3826139ab565b91506150ce836139ab565b9250826150de576150dd615089565b5b828204905092915050565b60006150f4826139ab565b91506150ff836139ab565b92508261510f5761510e615089565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061517f601883613b03565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006151eb601f83613b03565b91506151f6826151b5565b602082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061527d602283613b03565b915061528882615221565b604082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061530f602283613b03565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061536c82615345565b6153768185615350565b9350615386818560208601613b14565b61538f8161386f565b840191505092915050565b60006080820190506153af6000830187613c01565b6153bc6020830186613c01565b6153c96040830185613c97565b81810360608301526153db8184615361565b905095945050505050565b6000815190506153f581613a69565b92915050565b6000602082840312156154115761541061385b565b5b600061541f848285016153e6565b91505092915050565b600060ff82169050919050565b61543e81615428565b82525050565b60006080820190506154596000830187613e08565b6154666020830186615435565b6154736040830185613e08565b6154806060830184613e08565b95945050505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154bf602083613b03565b91506154ca82615489565b602082019050919050565b600060208201905081810360008301526154ee816154b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061552b601c83613b03565b9150615536826154f5565b602082019050919050565b6000602082019050818103600083015261555a8161551e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122043b6c55bc76153cfb297d3e0a13b097292758139e60b951abfdd4bda76c92b6d64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102195760003560e01c806359c74f29116101235780638dd2ef48116100ab578063c87b56dd1161006f578063c87b56dd1461077e578063e55f58bb146107bb578063e985e9c5146107e6578063ebe9eb9f14610823578063f2fde38b1461084e57610219565b80638dd2ef48146106c157806395d89b41146106ea5780639e75914814610715578063a22cb4651461072c578063b88d4fde1461075557610219565b80636ed645cf116100f25780636ed645cf146105ee57806370a0823114610619578063715018a61461065657806378a4ab851461066d5780638da5cb5b1461069657610219565b806359c74f2914610532578063621a1f74146105495780636352211e1461058657806363eb8bb6146105c357610219565b806332cb6b0c116101a657806342842e0e1161017557806342842e0e1461044d578063471a4294146104765780634e981c0c146104a15780634f6ccce7146104cc57806355f804b31461050957610219565b806332cb6b0c146103c45780633ccfd60b146103ef57806341f9108e1461040657806342184a451461043157610219565b8063095ea7b3116101ed578063095ea7b3146102df57806317bb6c381461030857806318160ddd1461033357806323b872dd1461035e5780632f745c591461038757610219565b80622576121461021e57806301ffc9a71461023a57806306fdde0314610277578063081812fc146102a2575b600080fd5b610238600480360381019061023391906139e1565b610877565b005b34801561024657600080fd5b50610261600480360381019061025c9190613a95565b610bc8565b60405161026e9190613add565b60405180910390f35b34801561028357600080fd5b5061028c610c42565b6040516102999190613b80565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190613ba2565b610cd4565b6040516102d69190613c10565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c57565b610d59565b005b34801561031457600080fd5b5061031d610e71565b60405161032a9190613ca6565b60405180910390f35b34801561033f57600080fd5b50610348610e7c565b6040516103559190613ca6565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613cc1565b610e89565b005b34801561039357600080fd5b506103ae60048036038101906103a99190613c57565b610ee9565b6040516103bb9190613ca6565b60405180910390f35b3480156103d057600080fd5b506103d9610f8e565b6040516103e69190613ca6565b60405180910390f35b3480156103fb57600080fd5b50610404610f94565b005b34801561041257600080fd5b5061041b61105f565b6040516104289190613ca6565b60405180910390f35b61044b600480360381019061044691906139e1565b611065565b005b34801561045957600080fd5b50610474600480360381019061046f9190613cc1565b611422565b005b34801561048257600080fd5b5061048b611442565b6040516104989190613add565b60405180910390f35b3480156104ad57600080fd5b506104b6611455565b6040516104c39190613add565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613ba2565b611468565b6040516105009190613ca6565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190613db5565b6114d9565b005b34801561053e57600080fd5b5061054761156f565b005b34801561055557600080fd5b50610570600480360381019061056b9190613ba2565b611617565b60405161057d9190613e17565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613ba2565b61162f565b6040516105ba9190613c10565b60405180910390f35b3480156105cf57600080fd5b506105d86116e1565b6040516105e59190613ca6565b60405180910390f35b3480156105fa57600080fd5b506106036116e6565b6040516106109190613ca6565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613e32565b6116ec565b60405161064d9190613ca6565b60405180910390f35b34801561066257600080fd5b5061066b6117a4565b005b34801561067957600080fd5b50610694600480360381019061068f9190613db5565b61182c565b005b3480156106a257600080fd5b506106ab6118c2565b6040516106b89190613c10565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906139e1565b6118ec565b005b3480156106f657600080fd5b506106ff611c60565b60405161070c9190613b80565b60405180910390f35b34801561072157600080fd5b5061072a611cf2565b005b34801561073857600080fd5b50610753600480360381019061074e9190613e8b565b611d9a565b005b34801561076157600080fd5b5061077c60048036038101906107779190613ecb565b611f1b565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613ba2565b611f7d565b6040516107b29190613b80565b60405180910390f35b3480156107c757600080fd5b506107d0612005565b6040516107dd9190613ca6565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613f4e565b61200b565b60405161081a9190613add565b60405180910390f35b34801561082f57600080fd5b5061083861209f565b6040516108459190613b80565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613e32565b61212d565b005b600a60159054906101000a900460ff166108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90614000565b60405180910390fd5b61045760016108d3610e7c565b6108dd919061404f565b111561091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906140f1565b60405180910390fd5b60036001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096c919061404f565b11156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490614183565b60405180910390fd5b3466b1a2bc2ec50000146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906141ef565b60405180910390fd5b6000610a023383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a50848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b83919061404f565b92505081905550610ba66001610b97610e7c565b610ba1919061404f565b6122aa565b610bc3336001610bb4610e7c565b610bbe919061404f565b612323565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3b5750610c3a82612341565b5b9050919050565b606060008054610c5190614316565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90614316565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b6000610cdf82612423565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906143ba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d648261162f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061444c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df461248f565b73ffffffffffffffffffffffffffffffffffffffff161480610e235750610e2281610e1d61248f565b61200b565b5b610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e59906144de565b60405180910390fd5b610e6c8383612497565b505050565b66b1a2bc2ec5000081565b6000600880549050905090565b610e9a610e9461248f565b82612550565b610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090614570565b60405180910390fd5b610ee483838361262e565b505050565b6000610ef4836116ec565b8210610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614602565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61045781565b610f9c61248f565b73ffffffffffffffffffffffffffffffffffffffff16610fba6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061466e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561105b573d6000803e3d6000fd5b5050565b6101f481565b600a60149054906101000a900460ff166110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90614700565b60405180910390fd5b61045760016110c1610e7c565b6110cb919061404f565b111561110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906140f1565b60405180910390fd5b6101f46001600c5461111e919061404f565b111561115f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111569061476c565b60405180910390fd5b600180600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ac919061404f565b11156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906147fe565b60405180910390fd5b3466b1a2bc2ec5000014611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906141ef565b60405180910390fd5b60006112423383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611290848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113c3919061404f565b925050819055506001600c60008282546113dd919061404f565b9250508190555061140060016113f1610e7c565b6113fb919061404f565b6122aa565b61141d33600161140e610e7c565b611418919061404f565b612323565b505050565b61143d83838360405180602001604052806000815250611f1b565b505050565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b6000611472610e7c565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614890565b60405180910390fd5b600882815481106114c7576114c66148b0565b5b90600052602060002001549050919050565b6114e161248f565b73ffffffffffffffffffffffffffffffffffffffff166114ff6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061466e565b60405180910390fd5b806011908051906020019061156b9291906137ae565b5050565b61157761248f565b73ffffffffffffffffffffffffffffffffffffffff166115956118c2565b73ffffffffffffffffffffffffffffffffffffffff16146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061466e565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614951565b60405180910390fd5b80915050919050565b606f81565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611754906149e3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117ac61248f565b73ffffffffffffffffffffffffffffffffffffffff166117ca6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061466e565b60405180910390fd5b61182a600061288a565b565b61183461248f565b73ffffffffffffffffffffffffffffffffffffffff166118526118c2565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061466e565b60405180910390fd5b80601090805190602001906118be9291906137ae565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60159054906101000a900460ff1661193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290614000565b60405180910390fd5b6104576001611948610e7c565b611952919061404f565b1115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906140f1565b60405180910390fd5b606f6001600b546119a4919061404f565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90614a4f565b60405180910390fd5b60036001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a33919061404f565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614183565b60405180910390fd5b6000611a803383612225565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ace848361228390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9061425b565b60405180910390fd5b600d600082815260200190815260200160002060009054906101000a900460ff1615611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906142c7565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c01919061404f565b925050819055506001600b6000828254611c1b919061404f565b92505081905550611c3e6001611c2f610e7c565b611c39919061404f565b6122aa565b611c5b336001611c4c610e7c565b611c56919061404f565b612323565b505050565b606060018054611c6f90614316565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9b90614316565b8015611ce85780601f10611cbd57610100808354040283529160200191611ce8565b820191906000526020600020905b815481529060010190602001808311611ccb57829003601f168201915b5050505050905090565b611cfa61248f565b73ffffffffffffffffffffffffffffffffffffffff16611d186118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061466e565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b611da261248f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614abb565b60405180910390fd5b8060056000611e1d61248f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eca61248f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f0f9190613add565b60405180910390a35050565b611f2c611f2661248f565b83612550565b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614570565b60405180910390fd5b611f7784848484612950565b50505050565b6060611f8882612423565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90614b4d565b60405180910390fd5b6000611fd16129ac565b905080611fdd84612a3e565b604051602001611fee929190614ba9565b604051602081830303815290604052915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601080546120ac90614316565b80601f01602080910402602001604051908101604052809291908181526020018280546120d890614316565b80156121255780601f106120fa57610100808354040283529160200191612125565b820191906000526020600020905b81548152906001019060200180831161210857829003601f168201915b505050505081565b61213561248f565b73ffffffffffffffffffffffffffffffffffffffff166121536118c2565b73ffffffffffffffffffffffffffffffffffffffff16146121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a09061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614c3f565b60405180910390fd5b6122228161288a565b50565b600080838360405160200161223b929190614cc8565b604051602081830303815290604052805190602001206040516020016122619190614d61565b6040516020818303038152906040528051906020012090508091505092915050565b60008060006122928585612b9f565b9150915061229f81612c22565b819250505092915050565b60004342336040516020016122c193929190614d87565b60405160208183030381529060405280519060200120905080600f60008481526020019081526020016000208190555080827f8743066caaef5216811808a26bc8cdb12cfb26eb73164d22df2b13d6774a2cb660405160405180910390a35050565b61233d828260405180602001604052806000815250612df7565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061241c575061241b82612e52565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661250a8361162f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061255b82612423565b61259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259190614e36565b60405180910390fd5b60006125a58361162f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061261457508373ffffffffffffffffffffffffffffffffffffffff166125fc84610cd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126255750612624818561200b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661264e8261162f565b73ffffffffffffffffffffffffffffffffffffffff16146126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b90614ec8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614f5a565b60405180910390fd5b61271f838383612ebc565b61272a600082612497565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277a9190614f7a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d1919061404f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61295b84848461262e565b61296784848484612fd0565b6129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90615020565b60405180910390fd5b50505050565b6060601180546129bb90614316565b80601f01602080910402602001604051908101604052809291908181526020018280546129e790614316565b8015612a345780601f10612a0957610100808354040283529160200191612a34565b820191906000526020600020905b815481529060010190602001808311612a1757829003601f168201915b5050505050905090565b60606000821415612a86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b9a565b600082905060005b60008214612ab8578080612aa190615040565b915050600a82612ab191906150b8565b9150612a8e565b60008167ffffffffffffffff811115612ad457612ad3613880565b5b6040519080825280601f01601f191660200182016040528015612b065781602001600182028036833780820191505090505b5090505b60008514612b9357600182612b1f9190614f7a565b9150600a85612b2e91906150e9565b6030612b3a919061404f565b60f81b818381518110612b5057612b4f6148b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b8c91906150b8565b9450612b0a565b8093505050505b919050565b600080604183511415612be15760008060006020860151925060408601519150606086015160001a9050612bd587828585613167565b94509450505050612c1b565b604083511415612c12576000806020850151915060408501519050612c07868383613274565b935093505050612c1b565b60006002915091505b9250929050565b60006004811115612c3657612c3561511a565b5b816004811115612c4957612c4861511a565b5b1415612c5457612df4565b60016004811115612c6857612c6761511a565b5b816004811115612c7b57612c7a61511a565b5b1415612cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb390615195565b60405180910390fd5b60026004811115612cd057612ccf61511a565b5b816004811115612ce357612ce261511a565b5b1415612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b90615201565b60405180910390fd5b60036004811115612d3857612d3761511a565b5b816004811115612d4b57612d4a61511a565b5b1415612d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8390615293565b60405180910390fd5b600480811115612d9f57612d9e61511a565b5b816004811115612db257612db161511a565b5b1415612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90615325565b60405180910390fd5b5b50565b612e0183836132c2565b612e0e6000848484612fd0565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4490615020565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ec7838383613490565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a57612f0581613495565b612f49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4857612f4783826134de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8c57612f878161364b565b612fcb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fca57612fc9828261371c565b5b5b505050565b6000612ff18473ffffffffffffffffffffffffffffffffffffffff1661379b565b1561315a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301a61248f565b8786866040518563ffffffff1660e01b815260040161303c949392919061539a565b602060405180830381600087803b15801561305657600080fd5b505af192505050801561308757506040513d601f19601f8201168201806040525081019061308491906153fb565b60015b61310a573d80600081146130b7576040519150601f19603f3d011682016040523d82523d6000602084013e6130bc565b606091505b50600081511415613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f990615020565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061315f565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156131a257600060039150915061326b565b601b8560ff16141580156131ba5750601c8560ff1614155b156131cc57600060049150915061326b565b6000600187878787604051600081526020016040526040516131f19493929190615444565b6020604051602081039080840390855afa158015613213573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132625760006001925092505061326b565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506132b487828885613167565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906154d5565b60405180910390fd5b61333b81612423565b1561337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337290615541565b60405180910390fd5b61338760008383612ebc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133d7919061404f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134eb846116ec565b6134f59190614f7a565b90506000600760008481526020019081526020016000205490508181146135da576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061365f9190614f7a565b905060006009600084815260200190815260200160002054905060006008838154811061368f5761368e6148b0565b5b9060005260206000200154905080600883815481106136b1576136b06148b0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613700576136ff615561565b5b6001900381819060005260206000200160009055905550505050565b6000613727836116ec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546137ba90614316565b90600052602060002090601f0160209004810192826137dc5760008555613823565b82601f106137f557805160ff1916838001178555613823565b82800160010185558215613823579182015b82811115613822578251825591602001919060010190613807565b5b5090506138309190613834565b5090565b5b8082111561384d576000816000905550600101613835565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138b88261386f565b810181811067ffffffffffffffff821117156138d7576138d6613880565b5b80604052505050565b60006138ea613851565b90506138f682826138af565b919050565b600067ffffffffffffffff82111561391657613915613880565b5b61391f8261386f565b9050602081019050919050565b82818337600083830152505050565b600061394e613949846138fb565b6138e0565b90508281526020810184848401111561396a5761396961386a565b5b61397584828561392c565b509392505050565b600082601f83011261399257613991613865565b5b81356139a284826020860161393b565b91505092915050565b6000819050919050565b6139be816139ab565b81146139c957600080fd5b50565b6000813590506139db816139b5565b92915050565b600080604083850312156139f8576139f761385b565b5b600083013567ffffffffffffffff811115613a1657613a15613860565b5b613a228582860161397d565b9250506020613a33858286016139cc565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a7281613a3d565b8114613a7d57600080fd5b50565b600081359050613a8f81613a69565b92915050565b600060208284031215613aab57613aaa61385b565b5b6000613ab984828501613a80565b91505092915050565b60008115159050919050565b613ad781613ac2565b82525050565b6000602082019050613af26000830184613ace565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b32578082015181840152602081019050613b17565b83811115613b41576000848401525b50505050565b6000613b5282613af8565b613b5c8185613b03565b9350613b6c818560208601613b14565b613b758161386f565b840191505092915050565b60006020820190508181036000830152613b9a8184613b47565b905092915050565b600060208284031215613bb857613bb761385b565b5b6000613bc6848285016139cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bfa82613bcf565b9050919050565b613c0a81613bef565b82525050565b6000602082019050613c256000830184613c01565b92915050565b613c3481613bef565b8114613c3f57600080fd5b50565b600081359050613c5181613c2b565b92915050565b60008060408385031215613c6e57613c6d61385b565b5b6000613c7c85828601613c42565b9250506020613c8d858286016139cc565b9150509250929050565b613ca0816139ab565b82525050565b6000602082019050613cbb6000830184613c97565b92915050565b600080600060608486031215613cda57613cd961385b565b5b6000613ce886828701613c42565b9350506020613cf986828701613c42565b9250506040613d0a868287016139cc565b9150509250925092565b600067ffffffffffffffff821115613d2f57613d2e613880565b5b613d388261386f565b9050602081019050919050565b6000613d58613d5384613d14565b6138e0565b905082815260208101848484011115613d7457613d7361386a565b5b613d7f84828561392c565b509392505050565b600082601f830112613d9c57613d9b613865565b5b8135613dac848260208601613d45565b91505092915050565b600060208284031215613dcb57613dca61385b565b5b600082013567ffffffffffffffff811115613de957613de8613860565b5b613df584828501613d87565b91505092915050565b6000819050919050565b613e1181613dfe565b82525050565b6000602082019050613e2c6000830184613e08565b92915050565b600060208284031215613e4857613e4761385b565b5b6000613e5684828501613c42565b91505092915050565b613e6881613ac2565b8114613e7357600080fd5b50565b600081359050613e8581613e5f565b92915050565b60008060408385031215613ea257613ea161385b565b5b6000613eb085828601613c42565b9250506020613ec185828601613e76565b9150509250929050565b60008060008060808587031215613ee557613ee461385b565b5b6000613ef387828801613c42565b9450506020613f0487828801613c42565b9350506040613f15878288016139cc565b925050606085013567ffffffffffffffff811115613f3657613f35613860565b5b613f428782880161397d565b91505092959194509250565b60008060408385031215613f6557613f6461385b565b5b6000613f7385828601613c42565b9250506020613f8485828601613c42565b9150509250929050565b7f4d696e74696e67206973206e6f742061637469766520617420746865206d6f6d60008201527f656e740000000000000000000000000000000000000000000000000000000000602082015250565b6000613fea602383613b03565b9150613ff582613f8e565b604082019050919050565b6000602082019050818103600083015261401981613fdd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405a826139ab565b9150614065836139ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561409a57614099614020565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006140db602083613b03565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e7420666f72207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b600061416d602583613b03565b915061417882614111565b604082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b60006141d9601d83613b03565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b6000614245601383613b03565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f5265757365642048617368000000000000000000000000000000000000000000600082015250565b60006142b1600b83613b03565b91506142bc8261427b565b602082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061432e57607f821691505b60208210811415614342576143416142e7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006143a4602c83613b03565b91506143af82614348565b604082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614436602183613b03565b9150614441826143da565b604082019050919050565b6000602082019050818103600083015261446581614429565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006144c8603883613b03565b91506144d38261446c565b604082019050919050565b600060208201905081810360008301526144f7816144bb565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061455a603183613b03565b9150614565826144fe565b604082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006145ec602b83613b03565b91506145f782614590565b604082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614658602083613b03565b915061466382614622565b602082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f4561726c79206d696e74696e67206973206e6f7420616374697665206174207460008201527f6865206d6f6d656e740000000000000000000000000000000000000000000000602082015250565b60006146ea602983613b03565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f4561726c79206d696e74206973206f7665720000000000000000000000000000600082015250565b6000614756601283613b03565b915061476182614720565b602082019050919050565b6000602082019050818103600083015261478581614749565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e7420666f72207760008201527f616c6c657420647572696e67206561726c79206d696e74000000000000000000602082015250565b60006147e8603783613b03565b91506147f38261478c565b604082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061487a602c83613b03565b91506148858261481e565b604082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061493b602983613b03565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149cd602a83613b03565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f46726565206d696e74206973206f766572000000000000000000000000000000600082015250565b6000614a39601183613b03565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614aa5601983613b03565b9150614ab082614a6f565b602082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b37602f83613b03565b9150614b4282614adb565b604082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b600081905092915050565b6000614b8382613af8565b614b8d8185614b6d565b9350614b9d818560208601613b14565b80840191505092915050565b6000614bb58285614b78565b9150614bc18284614b78565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c29602683613b03565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b60008160601b9050919050565b6000614c7782614c5f565b9050919050565b6000614c8982614c6c565b9050919050565b614ca1614c9c82613bef565b614c7e565b82525050565b6000819050919050565b614cc2614cbd826139ab565b614ca7565b82525050565b6000614cd48285614c90565b601482019150614ce48284614cb1565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614d2a601c83614b6d565b9150614d3582614cf4565b601c82019050919050565b6000819050919050565b614d5b614d5682613dfe565b614d40565b82525050565b6000614d6c82614d1d565b9150614d788284614d4a565b60208201915081905092915050565b6000614d938286614cb1565b602082019150614da38285614cb1565b602082019150614db38284614c90565b601482019150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614e20602c83613b03565b9150614e2b82614dc4565b604082019050919050565b60006020820190508181036000830152614e4f81614e13565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614eb2602983613b03565b9150614ebd82614e56565b604082019050919050565b60006020820190508181036000830152614ee181614ea5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614f44602483613b03565b9150614f4f82614ee8565b604082019050919050565b60006020820190508181036000830152614f7381614f37565b9050919050565b6000614f85826139ab565b9150614f90836139ab565b925082821015614fa357614fa2614020565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061500a603283613b03565b915061501582614fae565b604082019050919050565b6000602082019050818103600083015261503981614ffd565b9050919050565b600061504b826139ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561507e5761507d614020565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150c3826139ab565b91506150ce836139ab565b9250826150de576150dd615089565b5b828204905092915050565b60006150f4826139ab565b91506150ff836139ab565b92508261510f5761510e615089565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061517f601883613b03565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006151eb601f83613b03565b91506151f6826151b5565b602082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061527d602283613b03565b915061528882615221565b604082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061530f602283613b03565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061536c82615345565b6153768185615350565b9350615386818560208601613b14565b61538f8161386f565b840191505092915050565b60006080820190506153af6000830187613c01565b6153bc6020830186613c01565b6153c96040830185613c97565b81810360608301526153db8184615361565b905095945050505050565b6000815190506153f581613a69565b92915050565b6000602082840312156154115761541061385b565b5b600061541f848285016153e6565b91505092915050565b600060ff82169050919050565b61543e81615428565b82525050565b60006080820190506154596000830187613e08565b6154666020830186615435565b6154736040830185613e08565b6154806060830184613e08565b95945050505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154bf602083613b03565b91506154ca82615489565b602082019050919050565b600060208201905081810360008301526154ee816154b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061552b601c83613b03565b9150615536826154f5565b602082019050919050565b6000602082019050818103600083015261555a8161551e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122043b6c55bc76153cfb297d3e0a13b097292758139e60b951abfdd4bda76c92b6d64736f6c63430008090033
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.