Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
102 CMNL
Holders
70
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CMNLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CommunalCats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-01 */ // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol 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)); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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(); } } // File: contracts/CommunalCats.sol pragma solidity ^0.8.7; /* _____ _ _____ _ / ____| | |/ ____| | | | | ___ _ __ ___ _ __ ___ _ _ _ __ __ _| | | __ _| |_ ___ | | / _ \| '_ ` _ \| '_ ` _ \| | | | '_ \ / _` | | | / _` | __/ __| | |___| (_) | | | | | | | | | | | |_| | | | | (_| | | |___| (_| | |_\__ \ \_____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|\__,_|_|\_____\__,_|\__|___/ / ____| (_) | | __ ___ _ __ ___ ___ _ ___ | | |_ |/ _ \ '_ \ / _ \/ __| / __| | |__| | __/ | | | __/\__ \ \__ \ \_____|\___|_| |_|\___||___/_|___/ Communal Cats / 2021 / v1 */ contract CommunalCats is ERC721Enumerable, Ownable { using Strings for uint256; using ECDSA for bytes32; uint256 public constant GIFT_SUPPLY = 10; uint256 public constant PUBLIC_SUPPLY = 980; uint256 public constant MAX_SUPPLY = 999; uint256 public constant PRICE_PER_CAT = 0.033 ether; uint256 public giftedAmountMinted; uint256 public publicAmountMinted; string public provenance; string private _contractURI = "ipfs://bafkreigywro2r7yxfjc3amvmyrze7w6gs7sjvjfhttvq742jygpnwrmtty"; string private _tokenBaseURI = "ipfs://bafybeiaauhiwfdxkltspl5o7lbaqoghcdvwnnefut4is7zv2t7slrmymim/"; bool public locked; bool public saleActive; mapping(string => bool) private _usedNonces; address private _signerAddress = 0xfB3a76C7Bd5a7b63bd2b2E9Ab02799ceB9CA2975; address private _w0 = 0x1698485C85181840E6Fee09b14de854F8dF21382; address private _w1 = 0xcC81EbE705fa77c97a2126f7Ed3445c6713B6adD; address private _w2 = 0xbeF0eF9eE699653Bb82bE28bA12820017B469Ffd; constructor() ERC721("Communal Cats Genesis", "CMNL") { // first 7 for public auction _safeMint(_w0, 1); _safeMint(_w0, 2); _safeMint(_w0, 3); _safeMint(_w0, 4); _safeMint(_w0, 5); _safeMint(_w0, 6); _safeMint(_w0, 7); // team personals _safeMint(_w1, 8); _safeMint(_w2, 9); } modifier notLocked { require(!locked, "Contract metadata methods are locked"); _; } function hashTransaction(address sender, string memory nonce) private pure returns (bytes32) { bytes32 hash = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(sender, nonce)) ) ); return hash; } function matchAddresSigner(bytes32 hash, bytes memory signature) private view returns (bool) { return _signerAddress == hash.recover(signature); } function mint( bytes32 hash, bytes memory signature, string memory nonce ) external payable { require(saleActive, "PUBLIC_SALE_CLOSED"); require(matchAddresSigner(hash, signature), "NO_DIRECT_MINT"); require(!_usedNonces[nonce], "NONCE_USED"); require(hashTransaction(msg.sender, nonce) == hash, "HASH_FAIL"); require(totalSupply() < MAX_SUPPLY, "OUT_OF_STOCK"); require(publicAmountMinted < PUBLIC_SUPPLY, "OUT_OF_PUBLIC_STOCK"); require(PRICE_PER_CAT <= msg.value, "INSUFFICIENT_ETH"); _usedNonces[nonce] = true; publicAmountMinted++; _safeMint(msg.sender, totalSupply() + 1); } function gift(address[] calldata receivers) external onlyOwner { require(totalSupply() < MAX_SUPPLY, "OUT_OF_STOCK"); require(giftedAmountMinted + receivers.length <= GIFT_SUPPLY, "OUT_OF_GIFT_STOCK"); for (uint256 i = 0; i < receivers.length; i++) { giftedAmountMinted++; _safeMint(receivers[i], totalSupply() + 1); } } function withdraw() external onlyOwner { payable(_w2).transfer(address(this).balance * 3 / 10); payable(msg.sender).transfer(address(this).balance); } function lockMetadata() external onlyOwner { locked = true; } function toggleSale() external onlyOwner { saleActive = !saleActive; } function setSignerAddress(address addr) external onlyOwner { _signerAddress = addr; } function setProvenance(string calldata hash) external onlyOwner notLocked { provenance = hash; } function setContractURI(string calldata URI) external onlyOwner notLocked { _contractURI = URI; } function setBaseURI(string calldata URI) external onlyOwner notLocked { _tokenBaseURI = URI; } function contractURI() public view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); return string(abi.encodePacked(_tokenBaseURI, tokenId.toString())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GIFT_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":[],"name":"PRICE_PER_CAT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"nonce","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
6101006040526042608081815290620036e360a03980516200002a91600e9160209091019062000943565b50604051806080016040528060438152602001620037256043913980516200005b91600f9160209091019062000943565b50601280546001600160a01b031990811673fb3a76c7bd5a7b63bd2b2e9ab02799ceb9ca297517909155601380548216731698485c85181840e6fee09b14de854f8df2138217905560148054821673cc81ebe705fa77c97a2126f7ed3445c6713b6add1790556015805490911673bef0ef9ee699653bb82be28ba12820017b469ffd179055348015620000ed57600080fd5b50604080518082018252601581527f436f6d6d756e616c20436174732047656e65736973000000000000000000000060208083019182528351808501909452600484526310d3539360e21b9084015281519192916200014f9160009162000943565b5080516200016590600190602084019062000943565b505050620001826200017c6200026960201b60201c565b6200026d565b6013546200019b906001600160a01b03166001620002bf565b601354620001b4906001600160a01b03166002620002bf565b601354620001cd906001600160a01b03166003620002bf565b601354620001e6906001600160a01b03166004620002bf565b601354620001ff906001600160a01b03166005620002bf565b60135462000218906001600160a01b03166006620002bf565b60135462000231906001600160a01b03166007620002bf565b6014546200024a906001600160a01b03166008620002bf565b60155462000263906001600160a01b03166009620002bf565b62000b4b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002e1828260405180602001604052806000815250620002e560201b60201c565b5050565b620002f1838362000361565b620003006000848484620004b7565b6200035c5760405162461bcd60e51b81526020600482015260326024820152600080516020620036c383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620003b95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000353565b6000818152600260205260409020546001600160a01b031615620004205760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000353565b6200042e6000838362000620565b6001600160a01b03821660009081526003602052604081208054600192906200045990849062000a97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004d8846001600160a01b0316620006fc60201b620014b31760201c565b156200061457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200051290339089908890889060040162000a1c565b602060405180830381600087803b1580156200052d57600080fd5b505af192505050801562000560575060408051601f3d908101601f191682019092526200055d91810190620009e9565b60015b620005f9573d80801562000591576040519150601f19603f3d011682016040523d82523d6000602084013e62000596565b606091505b508051620005f15760405162461bcd60e51b81526020600482015260326024820152600080516020620036c383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000353565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000618565b5060015b949350505050565b620006388383836200035c60201b620009601760201c565b6001600160a01b03831662000696576200069081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006bc565b816001600160a01b0316836001600160a01b031614620006bc57620006bc838262000702565b6001600160a01b038216620006d6576200035c81620007af565b826001600160a01b0316826001600160a01b0316146200035c576200035c828262000869565b3b151590565b600060016200071c84620008ba60201b62000e151760201c565b62000728919062000ab2565b6000838152600760205260409020549091508082146200077c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007c39060019062000ab2565b60008381526009602052604081205460088054939450909284908110620007ee57620007ee62000b35565b90600052602060002001549050806008838154811062000812576200081262000b35565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200084d576200084d62000b1f565b6001900381819060005260206000200160009055905550505050565b60006200088183620008ba60201b62000e151760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000353565b506001600160a01b031660009081526003602052604090205490565b828054620009519062000acc565b90600052602060002090601f016020900481019282620009755760008555620009c0565b82601f106200099057805160ff1916838001178555620009c0565b82800160010185558215620009c0579182015b82811115620009c0578251825591602001919060010190620009a3565b50620009ce929150620009d2565b5090565b5b80821115620009ce5760008155600101620009d3565b600060208284031215620009fc57600080fd5b81516001600160e01b03198116811462000a1557600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000a6b5785810182015185820160a00152810162000a4d565b8281111562000a7e57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000aad5762000aad62000b09565b500190565b60008282101562000ac75762000ac762000b09565b500390565b600181811c9082168062000ae157607f821691505b6020821081141562000b0357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b612b688062000b5b6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e582cf151161006f578063e582cf15146105f4578063e8a3d4851461060a578063e985e9c51461061f578063f2fde38b14610668578063ffe630b51461068857600080fd5b8063a22cb46514610567578063b88d4fde14610587578063c87b56dd146105a7578063cf309012146105c7578063da46509f146105e157600080fd5b80638da5cb5b116100f25780638da5cb5b146104e9578063938e3d7b14610507578063940f1ada1461052757806395d89b411461053d578063989bdbb61461055257600080fd5b806370a0823114610489578063715018a6146104a95780637d8966e4146104be5780638342083a146104d357600080fd5b806323b872dd116101b15780634f6ccce7116101755780634f6ccce7146103ef57806355f804b31461040f5780635908fa951461042f5780636352211e1461044a57806368428a1b1461046a57600080fd5b806323b872dd146103645780632f745c591461038457806332cb6b0c146103a45780633ccfd60b146103ba57806342842e0e146103cf57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db5780630f7309e8146102fb578063163e1e611461031057806318160ddd146103305780631ea639011461034f57600080fd5b806301ffc9a71461022a578063046dc1661461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a61024536600461263e565b6106a8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046123f0565b6106d3565b005b34801561028d57600080fd5b50610296610728565b6040516102569190612871565b3480156102af57600080fd5b506102c36102be3660046126d8565b6107ba565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f636600461251e565b61084f565b34801561030757600080fd5b50610296610965565b34801561031c57600080fd5b5061027f61032b366004612548565b6109f3565b34801561033c57600080fd5b506008545b604051908152602001610256565b34801561035b57600080fd5b50610341600a81565b34801561037057600080fd5b5061027f61037f36600461243e565b610b28565b34801561039057600080fd5b5061034161039f36600461251e565b610b59565b3480156103b057600080fd5b506103416103e781565b3480156103c657600080fd5b5061027f610bef565b3480156103db57600080fd5b5061027f6103ea36600461243e565b610c97565b3480156103fb57600080fd5b5061034161040a3660046126d8565b610cb2565b34801561041b57600080fd5b5061027f61042a366004612678565b610d45565b34801561043b57600080fd5b5061034166753d533d96800081565b34801561045657600080fd5b506102c36104653660046126d8565b610d9e565b34801561047657600080fd5b5060105461024a90610100900460ff1681565b34801561049557600080fd5b506103416104a43660046123f0565b610e15565b3480156104b557600080fd5b5061027f610e9c565b3480156104ca57600080fd5b5061027f610ed2565b3480156104df57600080fd5b506103416103d481565b3480156104f557600080fd5b50600a546001600160a01b03166102c3565b34801561051357600080fd5b5061027f610522366004612678565b610f19565b34801561053357600080fd5b50610341600c5481565b34801561054957600080fd5b50610296610f72565b34801561055e57600080fd5b5061027f610f81565b34801561057357600080fd5b5061027f6105823660046124e2565b610fba565b34801561059357600080fd5b5061027f6105a236600461247a565b61107f565b3480156105b357600080fd5b506102966105c23660046126d8565b6110b7565b3480156105d357600080fd5b5060105461024a9060ff1681565b61027f6105ef3660046125bd565b611150565b34801561060057600080fd5b50610341600b5481565b34801561061657600080fd5b506102966113b3565b34801561062b57600080fd5b5061024a61063a36600461240b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b5061027f6106833660046123f0565b6113c2565b34801561069457600080fd5b5061027f6106a3366004612678565b61145a565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd826114b9565b92915050565b600a546001600160a01b031633146107065760405162461bcd60e51b81526004016106fd906128d6565b60405180910390fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606000805461073790612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612a2e565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fd565b506000908152600460205260409020546001600160a01b031690565b600061085a82610d9e565b9050806001600160a01b0316836001600160a01b031614156108c85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fd565b336001600160a01b03821614806108e457506108e4813361063a565b6109565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fd565b6109608383611509565b505050565b600d805461097290612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612a2e565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b505050505081565b600a546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016106fd906128d6565b6103e7610a2960085490565b10610a655760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b60448201526064016106fd565b600b54600a90610a769083906129a0565b1115610ab85760405162461bcd60e51b81526020600482015260116024820152704f55545f4f465f474946545f53544f434b60781b60448201526064016106fd565b60005b8181101561096057600b8054906000610ad383612a69565b9190505550610b16838383818110610aed57610aed612af0565b9050602002016020810190610b0291906123f0565b6008545b610b119060016129a0565b611577565b80610b2081612a69565b915050610abb565b610b323382611595565b610b4e5760405162461bcd60e51b81526004016106fd9061294f565b61096083838361168c565b6000610b6483610e15565b8210610bc65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c195760405162461bcd60e51b81526004016106fd906128d6565b6015546001600160a01b03166108fc600a610c354760036129cc565b610c3f91906129b8565b6040518115909202916000818181858888f19350505050158015610c67573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6109608383836040518060200160405280600081525061107f565b6000610cbd60085490565b8210610d205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fd565b60088281548110610d3357610d33612af0565b90600052602060002001549050919050565b600a546001600160a01b03163314610d6f5760405162461bcd60e51b81526004016106fd906128d6565b60105460ff1615610d925760405162461bcd60e51b81526004016106fd9061290b565b610960600f838361229e565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fd565b60006001600160a01b038216610e805760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ec65760405162461bcd60e51b81526004016106fd906128d6565b610ed06000611837565b565b600a546001600160a01b03163314610efc5760405162461bcd60e51b81526004016106fd906128d6565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610f435760405162461bcd60e51b81526004016106fd906128d6565b60105460ff1615610f665760405162461bcd60e51b81526004016106fd9061290b565b610960600e838361229e565b60606001805461073790612a2e565b600a546001600160a01b03163314610fab5760405162461bcd60e51b81526004016106fd906128d6565b6010805460ff19166001179055565b6001600160a01b0382163314156110135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110893383611595565b6110a55760405162461bcd60e51b81526004016106fd9061294f565b6110b184848484611889565b50505050565b6000818152600260205260409020546060906001600160a01b031661111e5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016106fd565b600f611129836118bc565b60405160200161113a92919061278d565b6040516020818303038152906040529050919050565b601054610100900460ff1661119c5760405162461bcd60e51b8152602060048201526012602482015271141550931250d7d4d0531157d0d313d4d15160721b60448201526064016106fd565b6111a683836119ba565b6111e35760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b60448201526064016106fd565b6011816040516111f39190612771565b9081526040519081900360200190205460ff16156112405760405162461bcd60e51b815260206004820152600a6024820152691393d390d157d554d15160b21b60448201526064016106fd565b8261124b33836119de565b146112845760405162461bcd60e51b8152602060048201526009602482015268121054d217d190525360ba1b60448201526064016106fd565b6103e761129060085490565b106112cc5760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b60448201526064016106fd565b6103d4600c54106113155760405162461bcd60e51b81526020600482015260136024820152724f55545f4f465f5055424c49435f53544f434b60681b60448201526064016106fd565b3466753d533d968000111561135f5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016106fd565b60016011826040516113719190612771565b908152604051908190036020019020805491151560ff19909216919091179055600c80549060006113a183612a69565b919050555061096033610b0660085490565b6060600e805461073790612a2e565b600a546001600160a01b031633146113ec5760405162461bcd60e51b81526004016106fd906128d6565b6001600160a01b0381166114515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fd565b610c9481611837565b600a546001600160a01b031633146114845760405162461bcd60e51b81526004016106fd906128d6565b60105460ff16156114a75760405162461bcd60e51b81526004016106fd9061290b565b610960600d838361229e565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114ea57506001600160e01b03198216635b5e139f60e01b145b806106cd57506301ffc9a760e01b6001600160e01b03198316146106cd565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153e82610d9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611591828260405180602001604052806000815250611a5d565b5050565b6000818152600260205260408120546001600160a01b031661160e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fd565b600061161983610d9e565b9050806001600160a01b0316846001600160a01b031614806116545750836001600160a01b0316611649846107ba565b6001600160a01b0316145b8061168457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169f82610d9e565b6001600160a01b0316146117075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fd565b6001600160a01b0382166117695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fd565b611774838383611a90565b61177f600082611509565b6001600160a01b03831660009081526003602052604081208054600192906117a89084906129eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906117d69084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61189484848461168c565b6118a084848484611b48565b6110b15760405162461bcd60e51b81526004016106fd90612884565b6060816118e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190a57806118f481612a69565b91506119039050600a836129b8565b91506118e4565b60008167ffffffffffffffff81111561192557611925612b06565b6040519080825280601f01601f19166020018201604052801561194f576020820181803683370190505b5090505b8415611684576119646001836129eb565b9150611971600a86612a84565b61197c9060306129a0565b60f81b81838151811061199157611991612af0565b60200101906001600160f81b031916908160001a9053506119b3600a866129b8565b9450611953565b60006119c68383611c55565b6012546001600160a01b039182169116149392505050565b60008083836040516020016119f4929190612739565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051808303601f190181529190528051602090910120949350505050565b611a678383611c79565b611a746000848484611b48565b6109605760405162461bcd60e51b81526004016106fd90612884565b6001600160a01b038316611aeb57611ae681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0e565b816001600160a01b0316836001600160a01b031614611b0e57611b0e8382611dc7565b6001600160a01b038216611b255761096081611e64565b826001600160a01b0316826001600160a01b031614610960576109608282611f13565b60006001600160a01b0384163b15611c4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b8c903390899088908890600401612834565b602060405180830381600087803b158015611ba657600080fd5b505af1925050508015611bd6575060408051601f3d908101601f19168201909252611bd39181019061265b565b60015b611c30573d808015611c04576040519150601f19603f3d011682016040523d82523d6000602084013e611c09565b606091505b508051611c285760405162461bcd60e51b81526004016106fd90612884565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611684565b506001949350505050565b6000806000611c648585611f57565b91509150611c7181611fc7565b509392505050565b6001600160a01b038216611ccf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fd565b6000818152600260205260409020546001600160a01b031615611d345760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fd565b611d4060008383611a90565b6001600160a01b0382166000908152600360205260408120805460019290611d699084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611dd484610e15565b611dde91906129eb565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e76906001906129eb565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e612af0565b906000526020600020015490508060088381548110611ebf57611ebf612af0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612ada565b6001900381819060005260206000200160009055905550505050565b6000611f1e83610e15565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415611f8e5760208301516040840151606085015160001a611f8287828585612182565b94509450505050611fc0565b825160401415611fb85760208301516040840151611fad86838361226f565b935093505050611fc0565b506000905060025b9250929050565b6000816004811115611fdb57611fdb612ac4565b1415611fe45750565b6001816004811115611ff857611ff8612ac4565b14156120465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106fd565b600281600481111561205a5761205a612ac4565b14156120a85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106fd565b60038160048111156120bc576120bc612ac4565b14156121155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106fd565b600481600481111561212957612129612ac4565b1415610c945760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106fd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121b95750600090506003612266565b8460ff16601b141580156121d157508460ff16601c14155b156121e25750600090506004612266565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612236573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661225f57600060019250925050612266565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161229087828885612182565b935093505050935093915050565b8280546122aa90612a2e565b90600052602060002090601f0160209004810192826122cc5760008555612312565b82601f106122e55782800160ff19823516178555612312565b82800160010185558215612312579182015b828111156123125782358255916020019190600101906122f7565b5061231e929150612322565b5090565b5b8082111561231e5760008155600101612323565b600067ffffffffffffffff8084111561235257612352612b06565b604051601f8501601f19908116603f0116810190828211818310171561237a5761237a612b06565b8160405280935085815286868601111561239357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123c457600080fd5b919050565b600082601f8301126123da57600080fd5b6123e983833560208501612337565b9392505050565b60006020828403121561240257600080fd5b6123e9826123ad565b6000806040838503121561241e57600080fd5b612427836123ad565b9150612435602084016123ad565b90509250929050565b60008060006060848603121561245357600080fd5b61245c846123ad565b925061246a602085016123ad565b9150604084013590509250925092565b6000806000806080858703121561249057600080fd5b612499856123ad565b93506124a7602086016123ad565b925060408501359150606085013567ffffffffffffffff8111156124ca57600080fd5b6124d6878288016123c9565b91505092959194509250565b600080604083850312156124f557600080fd5b6124fe836123ad565b91506020830135801515811461251357600080fd5b809150509250929050565b6000806040838503121561253157600080fd5b61253a836123ad565b946020939093013593505050565b6000806020838503121561255b57600080fd5b823567ffffffffffffffff8082111561257357600080fd5b818501915085601f83011261258757600080fd5b81358181111561259657600080fd5b8660208260051b85010111156125ab57600080fd5b60209290920196919550909350505050565b6000806000606084860312156125d257600080fd5b83359250602084013567ffffffffffffffff808211156125f157600080fd5b6125fd878388016123c9565b9350604086013591508082111561261357600080fd5b508401601f8101861361262557600080fd5b61263486823560208401612337565b9150509250925092565b60006020828403121561265057600080fd5b81356123e981612b1c565b60006020828403121561266d57600080fd5b81516123e981612b1c565b6000806020838503121561268b57600080fd5b823567ffffffffffffffff808211156126a357600080fd5b818501915085601f8301126126b757600080fd5b8135818111156126c657600080fd5b8660208285010111156125ab57600080fd5b6000602082840312156126ea57600080fd5b5035919050565b60008151808452612709816020860160208601612a02565b601f01601f19169290920160200192915050565b6000815161272f818560208601612a02565b9290920192915050565b6bffffffffffffffffffffffff198360601b16815260008251612763816014850160208701612a02565b919091016014019392505050565b60008251612783818460208701612a02565b9190910192915050565b600080845481600182811c9150808316806127a957607f831692505b60208084108214156127c957634e487b7160e01b86526022600452602486fd5b8180156127dd57600181146127ee5761281b565b60ff1986168952848901965061281b565b60008b81526020902060005b868110156128135781548b8201529085019083016127fa565b505084890196505b50505050505061282b818561271d565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612867908301846126f1565b9695505050505050565b6020815260006123e960208301846126f1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129b3576129b3612a98565b500190565b6000826129c7576129c7612aae565b500490565b60008160001904831182151516156129e6576129e6612a98565b500290565b6000828210156129fd576129fd612a98565b500390565b60005b83811015612a1d578181015183820152602001612a05565b838111156110b15750506000910152565b600181811c90821680612a4257607f821691505b60208210811415612a6357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7d57612a7d612a98565b5060010190565b600082612a9357612a93612aae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea2646970667358221220570968fe1ba9e944016754890f7937cb9c6d4e98a64aaa532f4aacea2bc83eaf64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f6261666b726569677977726f3272377978666a6333616d766d79727a65377736677337736a766a6668747476713734326a7967706e77726d747479697066733a2f2f626166796265696161756869776664786b6c7473706c356f376c6261716f6768636476776e6e65667574346973377a76327437736c726d796d696d2f
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e582cf151161006f578063e582cf15146105f4578063e8a3d4851461060a578063e985e9c51461061f578063f2fde38b14610668578063ffe630b51461068857600080fd5b8063a22cb46514610567578063b88d4fde14610587578063c87b56dd146105a7578063cf309012146105c7578063da46509f146105e157600080fd5b80638da5cb5b116100f25780638da5cb5b146104e9578063938e3d7b14610507578063940f1ada1461052757806395d89b411461053d578063989bdbb61461055257600080fd5b806370a0823114610489578063715018a6146104a95780637d8966e4146104be5780638342083a146104d357600080fd5b806323b872dd116101b15780634f6ccce7116101755780634f6ccce7146103ef57806355f804b31461040f5780635908fa951461042f5780636352211e1461044a57806368428a1b1461046a57600080fd5b806323b872dd146103645780632f745c591461038457806332cb6b0c146103a45780633ccfd60b146103ba57806342842e0e146103cf57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db5780630f7309e8146102fb578063163e1e611461031057806318160ddd146103305780631ea639011461034f57600080fd5b806301ffc9a71461022a578063046dc1661461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a61024536600461263e565b6106a8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046123f0565b6106d3565b005b34801561028d57600080fd5b50610296610728565b6040516102569190612871565b3480156102af57600080fd5b506102c36102be3660046126d8565b6107ba565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f636600461251e565b61084f565b34801561030757600080fd5b50610296610965565b34801561031c57600080fd5b5061027f61032b366004612548565b6109f3565b34801561033c57600080fd5b506008545b604051908152602001610256565b34801561035b57600080fd5b50610341600a81565b34801561037057600080fd5b5061027f61037f36600461243e565b610b28565b34801561039057600080fd5b5061034161039f36600461251e565b610b59565b3480156103b057600080fd5b506103416103e781565b3480156103c657600080fd5b5061027f610bef565b3480156103db57600080fd5b5061027f6103ea36600461243e565b610c97565b3480156103fb57600080fd5b5061034161040a3660046126d8565b610cb2565b34801561041b57600080fd5b5061027f61042a366004612678565b610d45565b34801561043b57600080fd5b5061034166753d533d96800081565b34801561045657600080fd5b506102c36104653660046126d8565b610d9e565b34801561047657600080fd5b5060105461024a90610100900460ff1681565b34801561049557600080fd5b506103416104a43660046123f0565b610e15565b3480156104b557600080fd5b5061027f610e9c565b3480156104ca57600080fd5b5061027f610ed2565b3480156104df57600080fd5b506103416103d481565b3480156104f557600080fd5b50600a546001600160a01b03166102c3565b34801561051357600080fd5b5061027f610522366004612678565b610f19565b34801561053357600080fd5b50610341600c5481565b34801561054957600080fd5b50610296610f72565b34801561055e57600080fd5b5061027f610f81565b34801561057357600080fd5b5061027f6105823660046124e2565b610fba565b34801561059357600080fd5b5061027f6105a236600461247a565b61107f565b3480156105b357600080fd5b506102966105c23660046126d8565b6110b7565b3480156105d357600080fd5b5060105461024a9060ff1681565b61027f6105ef3660046125bd565b611150565b34801561060057600080fd5b50610341600b5481565b34801561061657600080fd5b506102966113b3565b34801561062b57600080fd5b5061024a61063a36600461240b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b5061027f6106833660046123f0565b6113c2565b34801561069457600080fd5b5061027f6106a3366004612678565b61145a565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd826114b9565b92915050565b600a546001600160a01b031633146107065760405162461bcd60e51b81526004016106fd906128d6565b60405180910390fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606000805461073790612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612a2e565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fd565b506000908152600460205260409020546001600160a01b031690565b600061085a82610d9e565b9050806001600160a01b0316836001600160a01b031614156108c85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fd565b336001600160a01b03821614806108e457506108e4813361063a565b6109565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fd565b6109608383611509565b505050565b600d805461097290612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612a2e565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b505050505081565b600a546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016106fd906128d6565b6103e7610a2960085490565b10610a655760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b60448201526064016106fd565b600b54600a90610a769083906129a0565b1115610ab85760405162461bcd60e51b81526020600482015260116024820152704f55545f4f465f474946545f53544f434b60781b60448201526064016106fd565b60005b8181101561096057600b8054906000610ad383612a69565b9190505550610b16838383818110610aed57610aed612af0565b9050602002016020810190610b0291906123f0565b6008545b610b119060016129a0565b611577565b80610b2081612a69565b915050610abb565b610b323382611595565b610b4e5760405162461bcd60e51b81526004016106fd9061294f565b61096083838361168c565b6000610b6483610e15565b8210610bc65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c195760405162461bcd60e51b81526004016106fd906128d6565b6015546001600160a01b03166108fc600a610c354760036129cc565b610c3f91906129b8565b6040518115909202916000818181858888f19350505050158015610c67573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6109608383836040518060200160405280600081525061107f565b6000610cbd60085490565b8210610d205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fd565b60088281548110610d3357610d33612af0565b90600052602060002001549050919050565b600a546001600160a01b03163314610d6f5760405162461bcd60e51b81526004016106fd906128d6565b60105460ff1615610d925760405162461bcd60e51b81526004016106fd9061290b565b610960600f838361229e565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fd565b60006001600160a01b038216610e805760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ec65760405162461bcd60e51b81526004016106fd906128d6565b610ed06000611837565b565b600a546001600160a01b03163314610efc5760405162461bcd60e51b81526004016106fd906128d6565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610f435760405162461bcd60e51b81526004016106fd906128d6565b60105460ff1615610f665760405162461bcd60e51b81526004016106fd9061290b565b610960600e838361229e565b60606001805461073790612a2e565b600a546001600160a01b03163314610fab5760405162461bcd60e51b81526004016106fd906128d6565b6010805460ff19166001179055565b6001600160a01b0382163314156110135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110893383611595565b6110a55760405162461bcd60e51b81526004016106fd9061294f565b6110b184848484611889565b50505050565b6000818152600260205260409020546060906001600160a01b031661111e5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016106fd565b600f611129836118bc565b60405160200161113a92919061278d565b6040516020818303038152906040529050919050565b601054610100900460ff1661119c5760405162461bcd60e51b8152602060048201526012602482015271141550931250d7d4d0531157d0d313d4d15160721b60448201526064016106fd565b6111a683836119ba565b6111e35760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b60448201526064016106fd565b6011816040516111f39190612771565b9081526040519081900360200190205460ff16156112405760405162461bcd60e51b815260206004820152600a6024820152691393d390d157d554d15160b21b60448201526064016106fd565b8261124b33836119de565b146112845760405162461bcd60e51b8152602060048201526009602482015268121054d217d190525360ba1b60448201526064016106fd565b6103e761129060085490565b106112cc5760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b60448201526064016106fd565b6103d4600c54106113155760405162461bcd60e51b81526020600482015260136024820152724f55545f4f465f5055424c49435f53544f434b60681b60448201526064016106fd565b3466753d533d968000111561135f5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016106fd565b60016011826040516113719190612771565b908152604051908190036020019020805491151560ff19909216919091179055600c80549060006113a183612a69565b919050555061096033610b0660085490565b6060600e805461073790612a2e565b600a546001600160a01b031633146113ec5760405162461bcd60e51b81526004016106fd906128d6565b6001600160a01b0381166114515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fd565b610c9481611837565b600a546001600160a01b031633146114845760405162461bcd60e51b81526004016106fd906128d6565b60105460ff16156114a75760405162461bcd60e51b81526004016106fd9061290b565b610960600d838361229e565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114ea57506001600160e01b03198216635b5e139f60e01b145b806106cd57506301ffc9a760e01b6001600160e01b03198316146106cd565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153e82610d9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611591828260405180602001604052806000815250611a5d565b5050565b6000818152600260205260408120546001600160a01b031661160e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fd565b600061161983610d9e565b9050806001600160a01b0316846001600160a01b031614806116545750836001600160a01b0316611649846107ba565b6001600160a01b0316145b8061168457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169f82610d9e565b6001600160a01b0316146117075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fd565b6001600160a01b0382166117695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fd565b611774838383611a90565b61177f600082611509565b6001600160a01b03831660009081526003602052604081208054600192906117a89084906129eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906117d69084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61189484848461168c565b6118a084848484611b48565b6110b15760405162461bcd60e51b81526004016106fd90612884565b6060816118e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190a57806118f481612a69565b91506119039050600a836129b8565b91506118e4565b60008167ffffffffffffffff81111561192557611925612b06565b6040519080825280601f01601f19166020018201604052801561194f576020820181803683370190505b5090505b8415611684576119646001836129eb565b9150611971600a86612a84565b61197c9060306129a0565b60f81b81838151811061199157611991612af0565b60200101906001600160f81b031916908160001a9053506119b3600a866129b8565b9450611953565b60006119c68383611c55565b6012546001600160a01b039182169116149392505050565b60008083836040516020016119f4929190612739565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051808303601f190181529190528051602090910120949350505050565b611a678383611c79565b611a746000848484611b48565b6109605760405162461bcd60e51b81526004016106fd90612884565b6001600160a01b038316611aeb57611ae681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0e565b816001600160a01b0316836001600160a01b031614611b0e57611b0e8382611dc7565b6001600160a01b038216611b255761096081611e64565b826001600160a01b0316826001600160a01b031614610960576109608282611f13565b60006001600160a01b0384163b15611c4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b8c903390899088908890600401612834565b602060405180830381600087803b158015611ba657600080fd5b505af1925050508015611bd6575060408051601f3d908101601f19168201909252611bd39181019061265b565b60015b611c30573d808015611c04576040519150601f19603f3d011682016040523d82523d6000602084013e611c09565b606091505b508051611c285760405162461bcd60e51b81526004016106fd90612884565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611684565b506001949350505050565b6000806000611c648585611f57565b91509150611c7181611fc7565b509392505050565b6001600160a01b038216611ccf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fd565b6000818152600260205260409020546001600160a01b031615611d345760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fd565b611d4060008383611a90565b6001600160a01b0382166000908152600360205260408120805460019290611d699084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611dd484610e15565b611dde91906129eb565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e76906001906129eb565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e612af0565b906000526020600020015490508060088381548110611ebf57611ebf612af0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612ada565b6001900381819060005260206000200160009055905550505050565b6000611f1e83610e15565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415611f8e5760208301516040840151606085015160001a611f8287828585612182565b94509450505050611fc0565b825160401415611fb85760208301516040840151611fad86838361226f565b935093505050611fc0565b506000905060025b9250929050565b6000816004811115611fdb57611fdb612ac4565b1415611fe45750565b6001816004811115611ff857611ff8612ac4565b14156120465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106fd565b600281600481111561205a5761205a612ac4565b14156120a85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106fd565b60038160048111156120bc576120bc612ac4565b14156121155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106fd565b600481600481111561212957612129612ac4565b1415610c945760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106fd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121b95750600090506003612266565b8460ff16601b141580156121d157508460ff16601c14155b156121e25750600090506004612266565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612236573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661225f57600060019250925050612266565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161229087828885612182565b935093505050935093915050565b8280546122aa90612a2e565b90600052602060002090601f0160209004810192826122cc5760008555612312565b82601f106122e55782800160ff19823516178555612312565b82800160010185558215612312579182015b828111156123125782358255916020019190600101906122f7565b5061231e929150612322565b5090565b5b8082111561231e5760008155600101612323565b600067ffffffffffffffff8084111561235257612352612b06565b604051601f8501601f19908116603f0116810190828211818310171561237a5761237a612b06565b8160405280935085815286868601111561239357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123c457600080fd5b919050565b600082601f8301126123da57600080fd5b6123e983833560208501612337565b9392505050565b60006020828403121561240257600080fd5b6123e9826123ad565b6000806040838503121561241e57600080fd5b612427836123ad565b9150612435602084016123ad565b90509250929050565b60008060006060848603121561245357600080fd5b61245c846123ad565b925061246a602085016123ad565b9150604084013590509250925092565b6000806000806080858703121561249057600080fd5b612499856123ad565b93506124a7602086016123ad565b925060408501359150606085013567ffffffffffffffff8111156124ca57600080fd5b6124d6878288016123c9565b91505092959194509250565b600080604083850312156124f557600080fd5b6124fe836123ad565b91506020830135801515811461251357600080fd5b809150509250929050565b6000806040838503121561253157600080fd5b61253a836123ad565b946020939093013593505050565b6000806020838503121561255b57600080fd5b823567ffffffffffffffff8082111561257357600080fd5b818501915085601f83011261258757600080fd5b81358181111561259657600080fd5b8660208260051b85010111156125ab57600080fd5b60209290920196919550909350505050565b6000806000606084860312156125d257600080fd5b83359250602084013567ffffffffffffffff808211156125f157600080fd5b6125fd878388016123c9565b9350604086013591508082111561261357600080fd5b508401601f8101861361262557600080fd5b61263486823560208401612337565b9150509250925092565b60006020828403121561265057600080fd5b81356123e981612b1c565b60006020828403121561266d57600080fd5b81516123e981612b1c565b6000806020838503121561268b57600080fd5b823567ffffffffffffffff808211156126a357600080fd5b818501915085601f8301126126b757600080fd5b8135818111156126c657600080fd5b8660208285010111156125ab57600080fd5b6000602082840312156126ea57600080fd5b5035919050565b60008151808452612709816020860160208601612a02565b601f01601f19169290920160200192915050565b6000815161272f818560208601612a02565b9290920192915050565b6bffffffffffffffffffffffff198360601b16815260008251612763816014850160208701612a02565b919091016014019392505050565b60008251612783818460208701612a02565b9190910192915050565b600080845481600182811c9150808316806127a957607f831692505b60208084108214156127c957634e487b7160e01b86526022600452602486fd5b8180156127dd57600181146127ee5761281b565b60ff1986168952848901965061281b565b60008b81526020902060005b868110156128135781548b8201529085019083016127fa565b505084890196505b50505050505061282b818561271d565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612867908301846126f1565b9695505050505050565b6020815260006123e960208301846126f1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129b3576129b3612a98565b500190565b6000826129c7576129c7612aae565b500490565b60008160001904831182151516156129e6576129e6612a98565b500290565b6000828210156129fd576129fd612a98565b500390565b60005b83811015612a1d578181015183820152602001612a05565b838111156110b15750506000910152565b600181811c90821680612a4257607f821691505b60208210811415612a6357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7d57612a7d612a98565b5060010190565b600082612a9357612a93612aae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea2646970667358221220570968fe1ba9e944016754890f7937cb9c6d4e98a64aaa532f4aacea2bc83eaf64736f6c63430008070033
Deployed Bytecode Sourcemap
53098:4485:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45973:224;;;;;;;;;;-1:-1:-1;45973:224:0;;;;;:::i;:::-;;:::i;:::-;;;9208:14:1;;9201:22;9183:41;;9171:2;9156:18;45973:224:0;;;;;;;;56741:99;;;;;;;;;;-1:-1:-1;56741:99:0;;;;;:::i;:::-;;:::i;:::-;;33865:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35424:221::-;;;;;;;;;;-1:-1:-1;35424:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8506:32:1;;;8488:51;;8476:2;8461:18;35424:221:0;8342:203:1;34947:411:0;;;;;;;;;;-1:-1:-1;34947:411:0;;;;;:::i;:::-;;:::i;53514:24::-;;;;;;;;;;;;;:::i;55964:397::-;;;;;;;;;;-1:-1:-1;55964:397:0;;;;;:::i;:::-;;:::i;46613:113::-;;;;;;;;;;-1:-1:-1;46701:10:0;:17;46613:113;;;21829:25:1;;;21817:2;21802:18;46613:113:0;21683:177:1;53220:40:0;;;;;;;;;;;;53258:2;53220:40;;36314:339;;;;;;;;;;-1:-1:-1;36314:339:0;;;;;:::i;:::-;;:::i;46281:256::-;;;;;;;;;;-1:-1:-1;46281:256:0;;;;;:::i;:::-;;:::i;53317:40::-;;;;;;;;;;;;53354:3;53317:40;;56373:173;;;;;;;;;;;;;:::i;36724:185::-;;;;;;;;;;-1:-1:-1;36724:185:0;;;;;:::i;:::-;;:::i;46803:233::-;;;;;;;;;;-1:-1:-1;46803:233:0;;;;;:::i;:::-;;:::i;57097:108::-;;;;;;;;;;-1:-1:-1;57097:108:0;;;;;:::i;:::-;;:::i;53364:51::-;;;;;;;;;;;;53404:11;53364:51;;33559:239;;;;;;;;;;-1:-1:-1;33559:239:0;;;;;:::i;:::-;;:::i;53788:22::-;;;;;;;;;;-1:-1:-1;53788:22:0;;;;;;;;;;;33289:208;;;;;;;;;;-1:-1:-1;33289:208:0;;;;;:::i;:::-;;:::i;13564:94::-;;;;;;;;;;;;;:::i;56645:84::-;;;;;;;;;;;;;:::i;53267:43::-;;;;;;;;;;;;53307:3;53267:43;;12913:87;;;;;;;;;;-1:-1:-1;12986:6:0;;-1:-1:-1;;;;;12986:6:0;12913:87;;56974:111;;;;;;;;;;-1:-1:-1;56974:111:0;;;;;:::i;:::-;;:::i;53468:33::-;;;;;;;;;;;;;;;;34034:104;;;;;;;;;;;;;:::i;56558:75::-;;;;;;;;;;;;;:::i;35717:295::-;;;;;;;;;;-1:-1:-1;35717:295:0;;;;;:::i;:::-;;:::i;36980:328::-;;;;;;;;;;-1:-1:-1;36980:328:0;;;;;:::i;:::-;;:::i;57326:254::-;;;;;;;;;;-1:-1:-1;57326:254:0;;;;;:::i;:::-;;:::i;53763:18::-;;;;;;;;;;-1:-1:-1;53763:18:0;;;;;;;;55245:707;;;;;;:::i;:::-;;:::i;53428:33::-;;;;;;;;;;;;;;;;57217:97;;;;;;;;;;;;;:::i;36083:164::-;;;;;;;;;;-1:-1:-1;36083:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36204:25:0;;;36180:4;36204:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36083:164;13813:192;;;;;;;;;;-1:-1:-1;13813:192:0;;;;;:::i;:::-;;:::i;56852:110::-;;;;;;;;;;-1:-1:-1;56852:110:0;;;;;:::i;:::-;;:::i;45973:224::-;46075:4;-1:-1:-1;;;;;;46099:50:0;;-1:-1:-1;;;46099:50:0;;:90;;;46153:36;46177:11;46153:23;:36::i;:::-;46092:97;45973:224;-1:-1:-1;;45973:224:0:o;56741:99::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;;;;;;;;;56811:14:::1;:21:::0;;-1:-1:-1;;;;;;56811:21:0::1;-1:-1:-1::0;;;;;56811:21:0;;;::::1;::::0;;;::::1;::::0;;56741:99::o;33865:100::-;33919:13;33952:5;33945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33865:100;:::o;35424:221::-;35500:7;38907:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38907:16:0;35520:73;;;;-1:-1:-1;;;35520:73:0;;18019:2:1;35520:73:0;;;18001:21:1;18058:2;18038:18;;;18031:30;18097:34;18077:18;;;18070:62;-1:-1:-1;;;18148:18:1;;;18141:42;18200:19;;35520:73:0;17817:408:1;35520:73:0;-1:-1:-1;35613:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35613:24:0;;35424:221::o;34947:411::-;35028:13;35044:23;35059:7;35044:14;:23::i;:::-;35028:39;;35092:5;-1:-1:-1;;;;;35086:11:0;:2;-1:-1:-1;;;;;35086:11:0;;;35078:57;;;;-1:-1:-1;;;35078:57:0;;20307:2:1;35078:57:0;;;20289:21:1;20346:2;20326:18;;;20319:30;20385:34;20365:18;;;20358:62;-1:-1:-1;;;20436:18:1;;;20429:31;20477:19;;35078:57:0;20105:397:1;35078:57:0;11781:10;-1:-1:-1;;;;;35170:21:0;;;;:62;;-1:-1:-1;35195:37:0;35212:5;11781:10;36083:164;:::i;35195:37::-;35148:168;;;;-1:-1:-1;;;35148:168:0;;15318:2:1;35148:168:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:34;15376:18;;;15369:62;15467:26;15447:18;;;15440:54;15511:19;;35148:168:0;15116:420:1;35148:168:0;35329:21;35338:2;35342:7;35329:8;:21::i;:::-;35017:341;34947:411;;:::o;53514:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55964:397::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;53354:3:::1;56046:13;46701:10:::0;:17;;46613:113;56046:13:::1;:26;56038:51;;;::::0;-1:-1:-1;;;56038:51:0;;13478:2:1;56038:51:0::1;::::0;::::1;13460:21:1::0;13517:2;13497:18;;;13490:30;-1:-1:-1;;;13536:18:1;;;13529:42;13588:18;;56038:51:0::1;13276:336:1::0;56038:51:0::1;56108:18;::::0;53258:2:::1;::::0;56108:37:::1;::::0;56129:9;;56108:37:::1;:::i;:::-;:52;;56100:82;;;::::0;-1:-1:-1;;;56100:82:0;;13819:2:1;56100:82:0::1;::::0;::::1;13801:21:1::0;13858:2;13838:18;;;13831:30;-1:-1:-1;;;13877:18:1;;;13870:47;13934:18;;56100:82:0::1;13617:341:1::0;56100:82:0::1;56208:9;56203:151;56223:20:::0;;::::1;56203:151;;;56265:18;:20:::0;;;:18:::1;:20;::::0;::::1;:::i;:::-;;;;;;56300:42;56310:9;;56320:1;56310:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46701:10:::0;:17;56324:13:::1;:17;::::0;56340:1:::1;56324:17;:::i;:::-;56300:9;:42::i;:::-;56245:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56203:151;;36314:339:::0;36509:41;11781:10;36542:7;36509:18;:41::i;:::-;36501:103;;;;-1:-1:-1;;;36501:103:0;;;;;;;:::i;:::-;36617:28;36627:4;36633:2;36637:7;36617:9;:28::i;46281:256::-;46378:7;46414:23;46431:5;46414:16;:23::i;:::-;46406:5;:31;46398:87;;;;-1:-1:-1;;;46398:87:0;;10777:2:1;46398:87:0;;;10759:21:1;10816:2;10796:18;;;10789:30;10855:34;10835:18;;;10828:62;-1:-1:-1;;;10906:18:1;;;10899:41;10957:19;;46398:87:0;10575:407:1;46398:87:0;-1:-1:-1;;;;;;46503:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46281:256::o;56373:173::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;56431:3:::1;::::0;-1:-1:-1;;;;;56431:3:0::1;56423:53;56473:2;56445:25;:21;56469:1;56445:25;:::i;:::-;:30;;;;:::i;:::-;56423:53;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;56487:51:0::1;::::0;56495:10:::1;::::0;56516:21:::1;56487:51:::0;::::1;;;::::0;::::1;::::0;;;56516:21;56495:10;56487:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56373:173::o:0;36724:185::-;36862:39;36879:4;36885:2;36889:7;36862:39;;;;;;;;;;;;:16;:39::i;46803:233::-;46878:7;46914:30;46701:10;:17;;46613:113;46914:30;46906:5;:38;46898:95;;;;-1:-1:-1;;;46898:95:0;;21127:2:1;46898:95:0;;;21109:21:1;21166:2;21146:18;;;21139:30;21205:34;21185:18;;;21178:62;-1:-1:-1;;;21256:18:1;;;21249:42;21308:19;;46898:95:0;20925:408:1;46898:95:0;47011:10;47022:5;47011:17;;;;;;;;:::i;:::-;;;;;;;;;47004:24;;46803:233;;;:::o;57097:108::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;54599:6:::1;::::0;::::1;;54598:7;54590:56;;;;-1:-1:-1::0;;;54590:56:0::1;;;;;;;:::i;:::-;57178:19:::2;:13;57194:3:::0;;57178:19:::2;:::i;33559:239::-:0;33631:7;33667:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33667:16:0;33702:19;33694:73;;;;-1:-1:-1;;;33694:73:0;;16154:2:1;33694:73:0;;;16136:21:1;16193:2;16173:18;;;16166:30;16232:34;16212:18;;;16205:62;-1:-1:-1;;;16283:18:1;;;16276:39;16332:19;;33694:73:0;15952:405:1;33289:208:0;33361:7;-1:-1:-1;;;;;33389:19:0;;33381:74;;;;-1:-1:-1;;;33381:74:0;;15743:2:1;33381:74:0;;;15725:21:1;15782:2;15762:18;;;15755:30;15821:34;15801:18;;;15794:62;-1:-1:-1;;;15872:18:1;;;15865:40;15922:19;;33381:74:0;15541:406:1;33381:74:0;-1:-1:-1;;;;;;33473:16:0;;;;;:9;:16;;;;;;;33289:208::o;13564:94::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;13629:21:::1;13647:1;13629:9;:21::i;:::-;13564:94::o:0;56645:84::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;56711:10:::1;::::0;;-1:-1:-1;;56697:24:0;::::1;56711:10;::::0;;;::::1;;;56710:11;56697:24:::0;;::::1;;::::0;;56645:84::o;56974:111::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;54599:6:::1;::::0;::::1;;54598:7;54590:56;;;;-1:-1:-1::0;;;54590:56:0::1;;;;;;;:::i;:::-;57059:18:::2;:12;57074:3:::0;;57059:18:::2;:::i;34034:104::-:0;34090:13;34123:7;34116:14;;;;;:::i;56558:75::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;56612:6:::1;:13:::0;;-1:-1:-1;;56612:13:0::1;56621:4;56612:13;::::0;;56558:75::o;35717:295::-;-1:-1:-1;;;;;35820:24:0;;11781:10;35820:24;;35812:62;;;;-1:-1:-1;;;35812:62:0;;13124:2:1;35812:62:0;;;13106:21:1;13163:2;13143:18;;;13136:30;13202:27;13182:18;;;13175:55;13247:18;;35812:62:0;12922:349:1;35812:62:0;11781:10;35887:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35887:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35887:53:0;;;;;;;;;;35956:48;;9183:41:1;;;35887:42:0;;11781:10;35956:48;;9156:18:1;35956:48:0;;;;;;;35717:295;;:::o;36980:328::-;37155:41;11781:10;37188:7;37155:18;:41::i;:::-;37147:103;;;;-1:-1:-1;;;37147:103:0;;;;;;;:::i;:::-;37261:39;37275:4;37281:2;37285:7;37294:5;37261:13;:39::i;:::-;36980:328;;;;:::o;57326:254::-;38883:4;38907:16;;;:7;:16;;;;;;57399:13;;-1:-1:-1;;;;;38907:16:0;57425:60;;;;-1:-1:-1;;;57425:60:0;;19947:2:1;57425:60:0;;;19929:21:1;19986:2;19966:18;;;19959:30;20025:33;20005:18;;;19998:61;20076:18;;57425:60:0;19745:355:1;57425:60:0;57537:13;57552:18;:7;:16;:18::i;:::-;57520:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57506:66;;57326:254;;;:::o;55245:707::-;55388:10;;;;;;;55380:41;;;;-1:-1:-1;;;55380:41:0;;12015:2:1;55380:41:0;;;11997:21:1;12054:2;12034:18;;;12027:30;-1:-1:-1;;;12073:18:1;;;12066:48;12131:18;;55380:41:0;11813:342:1;55380:41:0;55440:34;55458:4;55464:9;55440:17;:34::i;:::-;55432:61;;;;-1:-1:-1;;;55432:61:0;;16564:2:1;55432:61:0;;;16546:21:1;16603:2;16583:18;;;16576:30;-1:-1:-1;;;16622:18:1;;;16615:44;16676:18;;55432:61:0;16362:338:1;55432:61:0;55513:11;55525:5;55513:18;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;55512:19;55504:42;;;;-1:-1:-1;;;55504:42:0;;19608:2:1;55504:42:0;;;19590:21:1;19647:2;19627:18;;;19620:30;-1:-1:-1;;;19666:18:1;;;19659:40;19716:18;;55504:42:0;19406:334:1;55504:42:0;55603:4;55565:34;55581:10;55593:5;55565:15;:34::i;:::-;:42;55557:64;;;;-1:-1:-1;;;55557:64:0;;14981:2:1;55557:64:0;;;14963:21:1;15020:1;15000:18;;;14993:29;-1:-1:-1;;;15038:18:1;;;15031:39;15087:18;;55557:64:0;14779:332:1;55557:64:0;53354:3;55640:13;46701:10;:17;;46613:113;55640:13;:26;55632:51;;;;-1:-1:-1;;;55632:51:0;;13478:2:1;55632:51:0;;;13460:21:1;13517:2;13497:18;;;13490:30;-1:-1:-1;;;13536:18:1;;;13529:42;13588:18;;55632:51:0;13276:336:1;55632:51:0;53307:3;55702:18;;:34;55694:66;;;;-1:-1:-1;;;55694:66:0;;16907:2:1;55694:66:0;;;16889:21:1;16946:2;16926:18;;;16919:30;-1:-1:-1;;;16965:18:1;;;16958:49;17024:18;;55694:66:0;16705:343:1;55694:66:0;55796:9;53404:11;55779:26;;55771:55;;;;-1:-1:-1;;;55771:55:0;;21540:2:1;55771:55:0;;;21522:21:1;21579:2;21559:18;;;21552:30;-1:-1:-1;;;21598:18:1;;;21591:46;21654:18;;55771:55:0;21338:340:1;55771:55:0;55858:4;55837:11;55849:5;55837:18;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;;;-1:-1:-1;;55837:25:0;;;;;;;;;55873:18;:20;;;55837:18;55873:20;;;:::i;:::-;;;;;;55904:40;55914:10;55926:13;46701:10;:17;;46613:113;57217:97;57261:13;57294:12;57287:19;;;;;:::i;13813:192::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13902:22:0;::::1;13894:73;;;::::0;-1:-1:-1;;;13894:73:0;;11608:2:1;13894:73:0::1;::::0;::::1;11590:21:1::0;11647:2;11627:18;;;11620:30;11686:34;11666:18;;;11659:62;-1:-1:-1;;;11737:18:1;;;11730:36;11783:19;;13894:73:0::1;11406:402:1::0;13894:73:0::1;13978:19;13988:8;13978:9;:19::i;56852:110::-:0;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;54599:6:::1;::::0;::::1;;54598:7;54590:56;;;;-1:-1:-1::0;;;54590:56:0::1;;;;;;;:::i;:::-;56937:17:::2;:10;56950:4:::0;;56937:17:::2;:::i;14959:387::-:0;15282:20;15330:8;;;14959:387::o;32920:305::-;33022:4;-1:-1:-1;;;;;;33059:40:0;;-1:-1:-1;;;33059:40:0;;:105;;-1:-1:-1;;;;;;;33116:48:0;;-1:-1:-1;;;33116:48:0;33059:105;:158;;;-1:-1:-1;;;;;;;;;;25008:40:0;;;33181:36;24899:157;42800:174;42875:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42875:29:0;-1:-1:-1;;;;;42875:29:0;;;;;;;;:24;;42929:23;42875:24;42929:14;:23::i;:::-;-1:-1:-1;;;;;42920:46:0;;;;;;;;;;;42800:174;;:::o;39802:110::-;39878:26;39888:2;39892:7;39878:26;;;;;;;;;;;;:9;:26::i;:::-;39802:110;;:::o;39112:348::-;39205:4;38907:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38907:16:0;39222:73;;;;-1:-1:-1;;;39222:73:0;;14568:2:1;39222:73:0;;;14550:21:1;14607:2;14587:18;;;14580:30;14646:34;14626:18;;;14619:62;-1:-1:-1;;;14697:18:1;;;14690:42;14749:19;;39222:73:0;14366:408:1;39222:73:0;39306:13;39322:23;39337:7;39322:14;:23::i;:::-;39306:39;;39375:5;-1:-1:-1;;;;;39364:16:0;:7;-1:-1:-1;;;;;39364:16:0;;:51;;;;39408:7;-1:-1:-1;;;;;39384:31:0;:20;39396:7;39384:11;:20::i;:::-;-1:-1:-1;;;;;39384:31:0;;39364:51;:87;;;-1:-1:-1;;;;;;36204:25:0;;;36180:4;36204:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39419:32;39356:96;39112:348;-1:-1:-1;;;;39112:348:0:o;42104:578::-;42263:4;-1:-1:-1;;;;;42236:31:0;:23;42251:7;42236:14;:23::i;:::-;-1:-1:-1;;;;;42236:31:0;;42228:85;;;;-1:-1:-1;;;42228:85:0;;18793:2:1;42228:85:0;;;18775:21:1;18832:2;18812:18;;;18805:30;18871:34;18851:18;;;18844:62;-1:-1:-1;;;18922:18:1;;;18915:39;18971:19;;42228:85:0;18591:405:1;42228:85:0;-1:-1:-1;;;;;42332:16:0;;42324:65;;;;-1:-1:-1;;;42324:65:0;;12719:2:1;42324:65:0;;;12701:21:1;12758:2;12738:18;;;12731:30;12797:34;12777:18;;;12770:62;-1:-1:-1;;;12848:18:1;;;12841:34;12892:19;;42324:65:0;12517:400:1;42324:65:0;42402:39;42423:4;42429:2;42433:7;42402:20;:39::i;:::-;42506:29;42523:1;42527:7;42506:8;:29::i;:::-;-1:-1:-1;;;;;42548:15:0;;;;;;:9;:15;;;;;:20;;42567:1;;42548:15;:20;;42567:1;;42548:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42579:13:0;;;;;;:9;:13;;;;;:18;;42596:1;;42579:13;:18;;42596:1;;42579:18;:::i;:::-;;;;-1:-1:-1;;42608:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42608:21:0;-1:-1:-1;;;;;42608:21:0;;;;;;;;;42647:27;;42608:16;;42647:27;;;;;;;42104:578;;;:::o;14013:173::-;14088:6;;;-1:-1:-1;;;;;14105:17:0;;;-1:-1:-1;;;;;;14105:17:0;;;;;;;14138:40;;14088:6;;;14105:17;14088:6;;14138:40;;14069:16;;14138:40;14058:128;14013:173;:::o;38190:315::-;38347:28;38357:4;38363:2;38367:7;38347:9;:28::i;:::-;38394:48;38417:4;38423:2;38427:7;38436:5;38394:22;:48::i;:::-;38386:111;;;;-1:-1:-1;;;38386:111:0;;;;;;;:::i;9317:723::-;9373:13;9594:10;9590:53;;-1:-1:-1;;9621:10:0;;;;;;;;;;;;-1:-1:-1;;;9621:10:0;;;;;9317:723::o;9590:53::-;9668:5;9653:12;9709:78;9716:9;;9709:78;;9742:8;;;;:::i;:::-;;-1:-1:-1;9765:10:0;;-1:-1:-1;9773:2:0;9765:10;;:::i;:::-;;;9709:78;;;9797:19;9829:6;9819:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9819:17:0;;9797:39;;9847:154;9854:10;;9847:154;;9881:11;9891:1;9881:11;;:::i;:::-;;-1:-1:-1;9950:10:0;9958:2;9950:5;:10;:::i;:::-;9937:24;;:2;:24;:::i;:::-;9924:39;;9907:6;9914;9907:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9907:56:0;;;;;;;;-1:-1:-1;9978:11:0;9987:2;9978:11;;:::i;:::-;;;9847:154;;55045:192;55159:4;55206:23;:4;55219:9;55206:12;:23::i;:::-;55188:14;;-1:-1:-1;;;;;55188:41:0;;;:14;;:41;;55045:192;-1:-1:-1;;;55045:192:0:o;54674:363::-;54785:7;54810:12;54964:6;54972:5;54947:31;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54947:31:0;;;;;;;;;;54937:42;;54947:31;54937:42;;;;8199:66:1;54849:145:0;;;8187:79:1;;;;8282:12;;;8275:28;8319:12;;54849:145:0;;;;;;-1:-1:-1;;54849:145:0;;;;;;54825:180;;54849:145;54825:180;;;;;54674:363;-1:-1:-1;;;;54674:363:0:o;40139:321::-;40269:18;40275:2;40279:7;40269:5;:18::i;:::-;40320:54;40351:1;40355:2;40359:7;40368:5;40320:22;:54::i;:::-;40298:154;;;;-1:-1:-1;;;40298:154:0;;;;;;;:::i;47649:589::-;-1:-1:-1;;;;;47855:18:0;;47851:187;;47890:40;47922:7;49065:10;:17;;49038:24;;;;:15;:24;;;;;:44;;;49093:24;;;;;;;;;;;;48961:164;47890:40;47851:187;;;47960:2;-1:-1:-1;;;;;47952:10:0;:4;-1:-1:-1;;;;;47952:10:0;;47948:90;;47979:47;48012:4;48018:7;47979:32;:47::i;:::-;-1:-1:-1;;;;;48052:16:0;;48048:183;;48085:45;48122:7;48085:36;:45::i;48048:183::-;48158:4;-1:-1:-1;;;;;48152:10:0;:2;-1:-1:-1;;;;;48152:10:0;;48148:83;;48179:40;48207:2;48211:7;48179:27;:40::i;43539:799::-;43694:4;-1:-1:-1;;;;;43715:13:0;;15282:20;15330:8;43711:620;;43751:72;;-1:-1:-1;;;43751:72:0;;-1:-1:-1;;;;;43751:36:0;;;;;:72;;11781:10;;43802:4;;43808:7;;43817:5;;43751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43751:72:0;;;;;;;;-1:-1:-1;;43751:72:0;;;;;;;;;;;;:::i;:::-;;;43747:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43993:13:0;;43989:272;;44036:60;;-1:-1:-1;;;44036:60:0;;;;;;;:::i;43989:272::-;44211:6;44205:13;44196:6;44192:2;44188:15;44181:38;43747:529;-1:-1:-1;;;;;;43874:51:0;-1:-1:-1;;;43874:51:0;;-1:-1:-1;43867:58:0;;43711:620;-1:-1:-1;44315:4:0;43539:799;;;;;;:::o;4335:231::-;4413:7;4434:17;4453:18;4475:27;4486:4;4492:9;4475:10;:27::i;:::-;4433:69;;;;4513:18;4525:5;4513:11;:18::i;:::-;-1:-1:-1;4549:9:0;4335:231;-1:-1:-1;;;4335:231:0:o;40796:382::-;-1:-1:-1;;;;;40876:16:0;;40868:61;;;;-1:-1:-1;;;40868:61:0;;17658:2:1;40868:61:0;;;17640:21:1;;;17677:18;;;17670:30;17736:34;17716:18;;;17709:62;17788:18;;40868:61:0;17456:356:1;40868:61:0;38883:4;38907:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38907:16:0;:30;40940:58;;;;-1:-1:-1;;;40940:58:0;;12362:2:1;40940:58:0;;;12344:21:1;12401:2;12381:18;;;12374:30;12440;12420:18;;;12413:58;12488:18;;40940:58:0;12160:352:1;40940:58:0;41011:45;41040:1;41044:2;41048:7;41011:20;:45::i;:::-;-1:-1:-1;;;;;41069:13:0;;;;;;:9;:13;;;;;:18;;41086:1;;41069:13;:18;;41086:1;;41069:18;:::i;:::-;;;;-1:-1:-1;;41098:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41098:21:0;-1:-1:-1;;;;;41098:21:0;;;;;;;;41137:33;;41098:16;;;41137:33;;41098:16;;41137:33;40796:382;;:::o;49752:988::-;50018:22;50068:1;50043:22;50060:4;50043:16;:22::i;:::-;:26;;;;:::i;:::-;50080:18;50101:26;;;:17;:26;;;;;;50018:51;;-1:-1:-1;50234:28:0;;;50230:328;;-1:-1:-1;;;;;50301:18:0;;50279:19;50301:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50352:30;;;;;;:44;;;50469:30;;:17;:30;;;;;:43;;;50230:328;-1:-1:-1;50654:26:0;;;;:17;:26;;;;;;;;50647:33;;;-1:-1:-1;;;;;50698:18:0;;;;;:12;:18;;;;;:34;;;;;;;50691:41;49752:988::o;51035:1079::-;51313:10;:17;51288:22;;51313:21;;51333:1;;51313:21;:::i;:::-;51345:18;51366:24;;;:15;:24;;;;;;51739:10;:26;;51288:46;;-1:-1:-1;51366:24:0;;51288:46;;51739:26;;;;;;:::i;:::-;;;;;;;;;51717:48;;51803:11;51778:10;51789;51778:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51883:28;;;:15;:28;;;;;;;:41;;;52055:24;;;;;52048:31;52090:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51106:1008;;;51035:1079;:::o;48539:221::-;48624:14;48641:20;48658:2;48641:16;:20::i;:::-;-1:-1:-1;;;;;48672:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48717:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48539:221:0:o;2225:1308::-;2306:7;2315:12;2540:9;:16;2560:2;2540:22;2536:990;;;2836:4;2821:20;;2815:27;2886:4;2871:20;;2865:27;2944:4;2929:20;;2923:27;2579:9;2915:36;2987:25;2998:4;2915:36;2815:27;2865;2987:10;:25::i;:::-;2980:32;;;;;;;;;2536:990;3034:9;:16;3054:2;3034:22;3030:496;;;3309:4;3294:20;;3288:27;3360:4;3345:20;;3339:27;3402:23;3413:4;3288:27;3339;3402:10;:23::i;:::-;3395:30;;;;;;;;3030:496;-1:-1:-1;3474:1:0;;-1:-1:-1;3478:35:0;3030:496;2225:1308;;;;;:::o;496:643::-;574:20;565:5;:29;;;;;;;;:::i;:::-;;561:571;;;496:643;:::o;561:571::-;672:29;663:5;:38;;;;;;;;:::i;:::-;;659:473;;;718:34;;-1:-1:-1;;;718:34:0;;10064:2:1;718:34:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:26;10122:18;;;10115:54;10186:18;;718:34:0;9862:348:1;659:473:0;783:35;774:5;:44;;;;;;;;:::i;:::-;;770:362;;;835:41;;-1:-1:-1;;;835:41:0;;10417:2:1;835:41:0;;;10399:21:1;10456:2;10436:18;;;10429:30;10495:33;10475:18;;;10468:61;10546:18;;835:41:0;10215:355:1;770:362:0;907:30;898:5;:39;;;;;;;;:::i;:::-;;894:238;;;954:44;;-1:-1:-1;;;954:44:0;;14165:2:1;954:44:0;;;14147:21:1;14204:2;14184:18;;;14177:30;14243:34;14223:18;;;14216:62;-1:-1:-1;;;14294:18:1;;;14287:32;14336:19;;954:44:0;13963:398:1;894:238:0;1029:30;1020:5;:39;;;;;;;;:::i;:::-;;1016:116;;;1076:44;;-1:-1:-1;;;1076:44:0;;17255:2:1;1076:44:0;;;17237:21:1;17294:2;17274:18;;;17267:30;17333:34;17313:18;;;17306:62;-1:-1:-1;;;17384:18:1;;;17377:32;17426:19;;1076:44:0;17053:398:1;5834:1632:0;5965:7;;6899:66;6886:79;;6882:163;;;-1:-1:-1;6998:1:0;;-1:-1:-1;7002:30:0;6982:51;;6882:163;7059:1;:7;;7064:2;7059:7;;:18;;;;;7070:1;:7;;7075:2;7070:7;;7059:18;7055:102;;;-1:-1:-1;7110:1:0;;-1:-1:-1;7114:30:0;7094:51;;7055:102;7271:24;;;7254:14;7271:24;;;;;;;;;9462:25:1;;;9535:4;9523:17;;9503:18;;;9496:45;;;;9557:18;;;9550:34;;;9600:18;;;9593:34;;;7271:24:0;;9434:19:1;;7271:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7271:24:0;;-1:-1:-1;;7271:24:0;;;-1:-1:-1;;;;;;;7310:20:0;;7306:103;;7363:1;7367:29;7347:50;;;;;;;7306:103;7429:6;-1:-1:-1;7437:20:0;;-1:-1:-1;5834:1632:0;;;;;;;;:::o;4829:391::-;4943:7;;-1:-1:-1;;;;;5044:75:0;;5146:3;5142:12;;;5156:2;5138:21;5187:25;5198:4;5138:21;5207:1;5044:75;5187:10;:25::i;:::-;5180:32;;;;;;4829:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;:::-;954:88;828:220;-1:-1:-1;;;828:220:1:o;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:254::-;2804:6;2812;2865:2;2853:9;2844:7;2840:23;2836:32;2833:52;;;2881:1;2878;2871:12;2833:52;2904:29;2923:9;2904:29;:::i;:::-;2894:39;2980:2;2965:18;;;;2952:32;;-1:-1:-1;;;2736:254:1:o;2995:615::-;3081:6;3089;3142:2;3130:9;3121:7;3117:23;3113:32;3110:52;;;3158:1;3155;3148:12;3110:52;3198:9;3185:23;3227:18;3268:2;3260:6;3257:14;3254:34;;;3284:1;3281;3274:12;3254:34;3322:6;3311:9;3307:22;3297:32;;3367:7;3360:4;3356:2;3352:13;3348:27;3338:55;;3389:1;3386;3379:12;3338:55;3429:2;3416:16;3455:2;3447:6;3444:14;3441:34;;;3471:1;3468;3461:12;3441:34;3524:7;3519:2;3509:6;3506:1;3502:14;3498:2;3494:23;3490:32;3487:45;3484:65;;;3545:1;3542;3535:12;3484:65;3576:2;3568:11;;;;;3598:6;;-1:-1:-1;2995:615:1;;-1:-1:-1;;;;2995:615:1:o;3615:737::-;3711:6;3719;3727;3780:2;3768:9;3759:7;3755:23;3751:32;3748:52;;;3796:1;3793;3786:12;3748:52;3832:9;3819:23;3809:33;;3893:2;3882:9;3878:18;3865:32;3916:18;3957:2;3949:6;3946:14;3943:34;;;3973:1;3970;3963:12;3943:34;3996:49;4037:7;4028:6;4017:9;4013:22;3996:49;:::i;:::-;3986:59;;4098:2;4087:9;4083:18;4070:32;4054:48;;4127:2;4117:8;4114:16;4111:36;;;4143:1;4140;4133:12;4111:36;-1:-1:-1;4166:24:1;;4221:4;4213:13;;4209:27;-1:-1:-1;4199:55:1;;4250:1;4247;4240:12;4199:55;4273:73;4338:7;4333:2;4320:16;4315:2;4311;4307:11;4273:73;:::i;:::-;4263:83;;;3615:737;;;;;:::o;4357:245::-;4415:6;4468:2;4456:9;4447:7;4443:23;4439:32;4436:52;;;4484:1;4481;4474:12;4436:52;4523:9;4510:23;4542:30;4566:5;4542:30;:::i;4607:249::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4777:9;4771:16;4796:30;4820:5;4796:30;:::i;4861:592::-;4932:6;4940;4993:2;4981:9;4972:7;4968:23;4964:32;4961:52;;;5009:1;5006;4999:12;4961:52;5049:9;5036:23;5078:18;5119:2;5111:6;5108:14;5105:34;;;5135:1;5132;5125:12;5105:34;5173:6;5162:9;5158:22;5148:32;;5218:7;5211:4;5207:2;5203:13;5199:27;5189:55;;5240:1;5237;5230:12;5189:55;5280:2;5267:16;5306:2;5298:6;5295:14;5292:34;;;5322:1;5319;5312:12;5292:34;5367:7;5362:2;5353:6;5349:2;5345:15;5341:24;5338:37;5335:57;;;5388:1;5385;5378:12;5458:180;5517:6;5570:2;5558:9;5549:7;5545:23;5541:32;5538:52;;;5586:1;5583;5576:12;5538:52;-1:-1:-1;5609:23:1;;5458:180;-1:-1:-1;5458:180:1:o;5643:257::-;5684:3;5722:5;5716:12;5749:6;5744:3;5737:19;5765:63;5821:6;5814:4;5809:3;5805:14;5798:4;5791:5;5787:16;5765:63;:::i;:::-;5882:2;5861:15;-1:-1:-1;;5857:29:1;5848:39;;;;5889:4;5844:50;;5643:257;-1:-1:-1;;5643:257:1:o;5905:185::-;5947:3;5985:5;5979:12;6000:52;6045:6;6040:3;6033:4;6026:5;6022:16;6000:52;:::i;:::-;6068:16;;;;;5905:185;-1:-1:-1;;5905:185:1:o;6095:397::-;6309:26;6305:31;6296:6;6292:2;6288:15;6284:53;6279:3;6272:66;6254:3;6367:6;6361:13;6383:62;6438:6;6433:2;6428:3;6424:12;6417:4;6409:6;6405:17;6383:62;:::i;:::-;6465:16;;;;6483:2;6461:25;;6095:397;-1:-1:-1;;;6095:397:1:o;6497:276::-;6628:3;6666:6;6660:13;6682:53;6728:6;6723:3;6716:4;6708:6;6704:17;6682:53;:::i;:::-;6751:16;;;;;6497:276;-1:-1:-1;;6497:276:1:o;6778:1174::-;6954:3;6983:1;7016:6;7010:13;7046:3;7068:1;7096:9;7092:2;7088:18;7078:28;;7156:2;7145:9;7141:18;7178;7168:61;;7222:4;7214:6;7210:17;7200:27;;7168:61;7248:2;7296;7288:6;7285:14;7265:18;7262:38;7259:165;;;-1:-1:-1;;;7323:33:1;;7379:4;7376:1;7369:15;7409:4;7330:3;7397:17;7259:165;7440:18;7467:104;;;;7585:1;7580:320;;;;7433:467;;7467:104;-1:-1:-1;;7500:24:1;;7488:37;;7545:16;;;;-1:-1:-1;7467:104:1;;7580:320;21938:1;21931:14;;;21975:4;21962:18;;7675:1;7689:165;7703:6;7700:1;7697:13;7689:165;;;7781:14;;7768:11;;;7761:35;7824:16;;;;7718:10;;7689:165;;;7693:3;;7883:6;7878:3;7874:16;7867:23;;7433:467;;;;;;;7916:30;7942:3;7934:6;7916:30;:::i;:::-;7909:37;6778:1174;-1:-1:-1;;;;;6778:1174:1:o;8550:488::-;-1:-1:-1;;;;;8819:15:1;;;8801:34;;8871:15;;8866:2;8851:18;;8844:43;8918:2;8903:18;;8896:34;;;8966:3;8961:2;8946:18;;8939:31;;;8744:4;;8987:45;;9012:19;;9004:6;8987:45;:::i;:::-;8979:53;8550:488;-1:-1:-1;;;;;;8550:488:1:o;9638:219::-;9787:2;9776:9;9769:21;9750:4;9807:44;9847:2;9836:9;9832:18;9824:6;9807:44;:::i;10987:414::-;11189:2;11171:21;;;11228:2;11208:18;;;11201:30;11267:34;11262:2;11247:18;;11240:62;-1:-1:-1;;;11333:2:1;11318:18;;11311:48;11391:3;11376:19;;10987:414::o;18230:356::-;18432:2;18414:21;;;18451:18;;;18444:30;18510:34;18505:2;18490:18;;18483:62;18577:2;18562:18;;18230:356::o;19001:400::-;19203:2;19185:21;;;19242:2;19222:18;;;19215:30;19281:34;19276:2;19261:18;;19254:62;-1:-1:-1;;;19347:2:1;19332:18;;19325:34;19391:3;19376:19;;19001:400::o;20507:413::-;20709:2;20691:21;;;20748:2;20728:18;;;20721:30;20787:34;20782:2;20767:18;;20760:62;-1:-1:-1;;;20853:2:1;20838:18;;20831:47;20910:3;20895:19;;20507:413::o;21991:128::-;22031:3;22062:1;22058:6;22055:1;22052:13;22049:39;;;22068:18;;:::i;:::-;-1:-1:-1;22104:9:1;;21991:128::o;22124:120::-;22164:1;22190;22180:35;;22195:18;;:::i;:::-;-1:-1:-1;22229:9:1;;22124:120::o;22249:168::-;22289:7;22355:1;22351;22347:6;22343:14;22340:1;22337:21;22332:1;22325:9;22318:17;22314:45;22311:71;;;22362:18;;:::i;:::-;-1:-1:-1;22402:9:1;;22249:168::o;22422:125::-;22462:4;22490:1;22487;22484:8;22481:34;;;22495:18;;:::i;:::-;-1:-1:-1;22532:9:1;;22422:125::o;22552:258::-;22624:1;22634:113;22648:6;22645:1;22642:13;22634:113;;;22724:11;;;22718:18;22705:11;;;22698:39;22670:2;22663:10;22634:113;;;22765:6;22762:1;22759:13;22756:48;;;-1:-1:-1;;22800:1:1;22782:16;;22775:27;22552:258::o;22815:380::-;22894:1;22890:12;;;;22937;;;22958:61;;23012:4;23004:6;23000:17;22990:27;;22958:61;23065:2;23057:6;23054:14;23034:18;23031:38;23028:161;;;23111:10;23106:3;23102:20;23099:1;23092:31;23146:4;23143:1;23136:15;23174:4;23171:1;23164:15;23028:161;;22815:380;;;:::o;23200:135::-;23239:3;-1:-1:-1;;23260:17:1;;23257:43;;;23280:18;;:::i;:::-;-1:-1:-1;23327:1:1;23316:13;;23200:135::o;23340:112::-;23372:1;23398;23388:35;;23403:18;;:::i;:::-;-1:-1:-1;23437:9:1;;23340:112::o;23457:127::-;23518:10;23513:3;23509:20;23506:1;23499:31;23549:4;23546:1;23539:15;23573:4;23570:1;23563:15;23589:127;23650:10;23645:3;23641:20;23638:1;23631:31;23681:4;23678:1;23671:15;23705:4;23702:1;23695:15;23721:127;23782:10;23777:3;23773:20;23770:1;23763:31;23813:4;23810:1;23803:15;23837:4;23834:1;23827:15;23853:127;23914:10;23909:3;23905:20;23902:1;23895:31;23945:4;23942:1;23935:15;23969:4;23966:1;23959:15;23985:127;24046:10;24041:3;24037:20;24034:1;24027:31;24077:4;24074:1;24067:15;24101:4;24098:1;24091:15;24117:127;24178:10;24173:3;24169:20;24166:1;24159:31;24209:4;24206:1;24199:15;24233:4;24230:1;24223:15;24249:131;-1:-1:-1;;;;;;24323:32:1;;24313:43;;24303:71;;24370:1;24367;24360:12
Swarm Source
ipfs://570968fe1ba9e944016754890f7937cb9c6d4e98a64aaa532f4aacea2bc83eaf
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.