ERC-721
Overview
Max Total Supply
4,781 CMP
Holders
766
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CMPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Companion
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-16 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Companions.sol pragma solidity 0.8.10; interface Shines { function ownerOf(uint256 tokenId) external view returns (address); } contract Companion is ERC721A, Ownable { using Strings for uint256; using ECDSA for bytes32; bytes32 constant private salt = bytes32(0x63e211fde095b028ad3db5ac6b2b2cece35c844465446d43b3873c8777606a2f); uint256 constant public MAX_TX_LIMIT = 20; uint256 public cost = 0.025 ether; uint256 public wlCost = 0.015 ether; uint256 public maxSupply = 6666; uint256 public maxWhitelistSupply = 20; uint256 public maxClaimSupply = 3333; uint256 public whitelistLimit = 1; uint256 public mintedByWhitelist; uint256 public mintedByClaim; bool public isPublicSale; bool public isWhitelistSale; bool public claimMintEnabled; bool public isURIFrozen; bool public tokensStillReserved = true; address private _signatureVerifier = 0x4704A6507ED359F78f1C0280359F9A72afE6B02F; string private baseURI = "ipfs://bafybeie3y7kf4cz4c2bjrjjmla244xxn57rkxn7azuynn23wrzv7j4kh7e/metadata/"; string public baseExtension = ".json"; mapping(uint256 => bool) public claimedTokenIds; Shines public nft = Shines(0xa00108f4CFB6400d43C911af0d7a3422f7c011E5); constructor() ERC721A("Companion", "CMP") {} function mint(uint256 _quantity) external payable { require(isPublicSale, "Public sale: Inactive"); require(_quantity > 0, "Number should be more than 0"); require(_quantity <= MAX_TX_LIMIT, "Exceeds the limit"); if(tokensStillReserved) { require(totalSupply() + _quantity <= maxSupply - maxWhitelistSupply + mintedByWhitelist - maxClaimSupply + mintedByClaim, "Not enough tokens left"); } else { require(totalSupply() + _quantity <= maxSupply, "Not enough tokens left"); } require(msg.value >= cost * _quantity, "Not enough ether sent"); _safeMint(msg.sender, _quantity); } function whiteListMint(uint256 _quantity, bytes calldata signature) external payable { require(isWhitelistSale, "Whitelist sale: Inactive"); require(_quantity > 0, "Number should be more than 0"); require(_quantity + _numberMinted(msg.sender) <= whitelistLimit, "Exceeds the limit"); require(totalSupply() + _quantity <= maxSupply, "Not enough tokens left"); require(msg.value >= wlCost * _quantity, "Not enough ether sent"); require(isUserWhitelisted(msg.sender, signature), "User not whitelisted"); mintedByWhitelist += 1; _safeMint(msg.sender, _quantity); } function claim(uint256[] memory _ownedTokenIds) external { require(claimMintEnabled, "Claim Mint is paused."); require(_ownedTokenIds.length > 0, "owned tokens size is 0"); for(uint256 i = 0; i < _ownedTokenIds.length; i++){ require(msg.sender == nft.ownerOf(_ownedTokenIds[i]), "You dont have this token"); require(!claimedTokenIds[_ownedTokenIds[i]], "This token alerday claimed"); claimedTokenIds[_ownedTokenIds[i]] = true; } mintedByClaim += 1; _safeMint(msg.sender, _ownedTokenIds.length); } function isUserWhitelisted(address _user, bytes calldata _signature) public view returns(bool) { bytes32 messageHash = hashMessage(_user); return messageHash.recover(_signature) == _signatureVerifier; } function withdraw() external onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } // Owner functions function setSignatureVerifier(address newVerifier) external onlyOwner { _signatureVerifier = newVerifier; } function togglePreSale() external onlyOwner { isWhitelistSale = !isWhitelistSale; } function togglePublicSale() external onlyOwner { isPublicSale = !isPublicSale; } function toggleClaimStatus(bool _claimMintStatus) external onlyOwner { claimMintEnabled = _claimMintStatus; } // Just a helper method to allow absolute guarantee that whitelist people // will be able to get their portions even if public mint is very congested. function toggleSwitch() external onlyOwner { tokensStillReserved = !tokensStillReserved; } function beginSales() external onlyOwner { isWhitelistSale = !isWhitelistSale; isPublicSale = !isPublicSale; claimMintEnabled = !claimMintEnabled; } function setBaseExtension(string calldata _newBaseExtension) external onlyOwner { require(!isURIFrozen, "URI is Frozen"); baseExtension = _newBaseExtension; } function setBaseURI(string calldata newURI) external onlyOwner { require(!isURIFrozen, "URI is Frozen"); baseURI = newURI; } function freezeURI() external onlyOwner { isURIFrozen = true; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { require(_maxSupply <= 22222, "Cannot set higher than 22222"); maxSupply = _maxSupply; } function setWhitelistLimit(uint256 _whitelistLimit) external onlyOwner { whitelistLimit = _whitelistLimit; } function setCost(uint256 _cost) external onlyOwner { cost = _cost; } function setWhitelistCost(uint256 _cost) external onlyOwner { wlCost = _cost; } // view functions function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function _baseURI() internal view override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 0; } function hashMessage(address sender) internal pure returns(bytes32) { bytes32 payloadHash = keccak256(abi.encode(sender, salt)); bytes32 messageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", payloadHash)); return messageHash; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TX_LIMIT","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ownedTokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTokenIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isUserWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedByClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedByWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract Shines","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVerifier","type":"address"}],"name":"setSignatureVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistLimit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimMintStatus","type":"bool"}],"name":"toggleClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensStillReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6658d15e1762800060095566354a6ba7a18000600a55611a0a600b556014600c55610d05600d556001600e5560118054600160201b600160c81b031916784704a6507ed359f78f1c0280359f9a72afe6b02f0100000000179055610100604052604c6080818152906200311e60a03980516200008491601291602090910190620001b4565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000b391601391620001b4565b50601580546001600160a01b03191673a00108f4cfb6400d43c911af0d7a3422f7c011e5179055348015620000e757600080fd5b50604080518082018252600981526821b7b6b830b734b7b760b91b6020808301918252835180850190945260038452620434d560ec1b9084015281519192916200013491600291620001b4565b5080516200014a906003906020840190620001b4565b505060008055506200015c3362000162565b62000297565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c2906200025a565b90600052602060002090601f016020900481019282620001e6576000855562000231565b82601f106200020157805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023157825182559160200191906001019062000214565b506200023f92915062000243565b5090565b5b808211156200023f576000815560010162000244565b600181811c908216806200026f57607f821691505b602082108114156200029157634e487b7160e01b600052602260045260246000fd5b50919050565b612e7780620002a76000396000f3fe6080604052600436106102ff5760003560e01c806395d89b4111610190578063ca6b5076116100dc578063da3ef23f11610095578063e985e9c51161006f578063e985e9c51461086d578063f2fde38b146108b6578063fc00c24e146108d6578063fcd4b212146108f657600080fd5b8063da3ef23f14610818578063e08a660514610838578063e222c7f91461085857600080fd5b8063ca6b507614610784578063d2521ae814610797578063d49479eb146107b7578063d4d2226f146107d7578063d5abeb01146107ec578063d70a28d11461080257600080fd5b8063b88d4fde11610149578063c668286211610123578063c668286214610725578063c793803c1461073a578063c87b56dd1461074f578063ca3cb5221461076f57600080fd5b8063b88d4fde146106da578063be98a05f146106fa578063bfe4d2611461071057600080fd5b806395d89b4114610638578063a0712d681461064d578063a22cb46514610660578063a5a865dc14610680578063b19326731461069a578063b30723c1146106ba57600080fd5b806344a0d68a1161024f5780636ba4c1381161020857806370a08231116101e257806370a08231146105cf578063715018a6146105ef5780638da5cb5b14610604578063953f049d1461062257600080fd5b80636ba4c1381461057a5780636ebcb2a01461059a5780636f8b44b0146105af57600080fd5b806344a0d68a146104c257806347ccca02146104e25780634942352e1461050257806355f804b3146105185780635a778c44146105385780636352211e1461055a57600080fd5b80631455b1e2116102bc5780632713727a116102965780632713727a14610447578063302150e5146104775780633ccfd60b1461048d57806342842e0e146104a257600080fd5b80631455b1e2146103ef57806318160ddd1461040e57806323b872dd1461042757600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063095ea7b3146103935780631178987b146103b557806313faede6146103d9575b600080fd5b34801561031057600080fd5b5061032461031f3660046126e9565b610917565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610969565b604051610330919061275e565b34801561036757600080fd5b5061037b610376366004612771565b6109fb565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b506103b36103ae36600461279f565b610a3f565b005b3480156103c157600080fd5b506103cb600f5481565b604051908152602001610330565b3480156103e557600080fd5b506103cb60095481565b3480156103fb57600080fd5b5060115461032490610100900460ff1681565b34801561041a57600080fd5b50600154600054036103cb565b34801561043357600080fd5b506103b36104423660046127cb565b610acd565b34801561045357600080fd5b50610324610462366004612771565b60146020526000908152604090205460ff1681565b34801561048357600080fd5b506103cb600e5481565b34801561049957600080fd5b506103b3610ad8565b3480156104ae57600080fd5b506103b36104bd3660046127cb565b610b7f565b3480156104ce57600080fd5b506103b36104dd366004612771565b610b9a565b3480156104ee57600080fd5b5060155461037b906001600160a01b031681565b34801561050e57600080fd5b506103cb60105481565b34801561052457600080fd5b506103b361053336600461284d565b610bc9565b34801561054457600080fd5b5060115461032490640100000000900460ff1681565b34801561056657600080fd5b5061037b610575366004612771565b610c49565b34801561058657600080fd5b506103b36105953660046128d4565b610c5b565b3480156105a657600080fd5b506103cb601481565b3480156105bb57600080fd5b506103b36105ca366004612771565b610ef0565b3480156105db57600080fd5b506103cb6105ea366004612979565b610f71565b3480156105fb57600080fd5b506103b3610fbf565b34801561061057600080fd5b506008546001600160a01b031661037b565b34801561062e57600080fd5b506103cb600c5481565b34801561064457600080fd5b5061034e610ff5565b6103b361065b366004612771565b611004565b34801561066c57600080fd5b506103b361067b3660046129ab565b611200565b34801561068c57600080fd5b506011546103249060ff1681565b3480156106a657600080fd5b506103b36106b53660046129e0565b611296565b3480156106c657600080fd5b506103246106d53660046129fb565b6112dc565b3480156106e657600080fd5b506103b36106f5366004612a4f565b6113ea565b34801561070657600080fd5b506103cb600d5481565b34801561071c57600080fd5b506103b361143b565b34801561073157600080fd5b5061034e611488565b34801561074657600080fd5b506103b3611516565b34801561075b57600080fd5b5061034e61076a366004612771565b611555565b34801561077b57600080fd5b506103b3611623565b6103b3610792366004612b12565b61166a565b3480156107a357600080fd5b506103b36107b2366004612771565b61187f565b3480156107c357600080fd5b506103b36107d2366004612771565b6118ae565b3480156107e357600080fd5b506103b36118dd565b3480156107f857600080fd5b506103cb600b5481565b34801561080e57600080fd5b506103cb600a5481565b34801561082457600080fd5b506103b361083336600461284d565b611949565b34801561084457600080fd5b506103b3610853366004612979565b6119c9565b34801561086457600080fd5b506103b3611a23565b34801561087957600080fd5b50610324610888366004612b44565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108c257600080fd5b506103b36108d1366004612979565b611a61565b3480156108e257600080fd5b506011546103249062010000900460ff1681565b34801561090257600080fd5b50601154610324906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061094857506001600160e01b03198216635b5e139f60e01b145b8061096357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097890612b7d565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490612b7d565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000610a0682611af9565b610a23576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4a82610c49565b9050806001600160a01b0316836001600160a01b03161415610a7f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9f5750610a9d8133610888565b155b15610abd576040516367d9dca160e11b815260040160405180910390fd5b610ac8838383611b24565b505050565b610ac8838383611b80565b6008546001600160a01b03163314610b0b5760405162461bcd60e51b8152600401610b0290612bb8565b60405180910390fd5b6000610b1f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b69576040519150601f19603f3d011682016040523d82523d6000602084013e610b6e565b606091505b5050905080610b7c57600080fd5b50565b610ac8838383604051806020016040528060008152506113ea565b6008546001600160a01b03163314610bc45760405162461bcd60e51b8152600401610b0290612bb8565b600955565b6008546001600160a01b03163314610bf35760405162461bcd60e51b8152600401610b0290612bb8565b6011546301000000900460ff1615610c3d5760405162461bcd60e51b815260206004820152600d60248201526c2aa9249034b990233937bd32b760991b6044820152606401610b02565b610ac86012838361263a565b6000610c5482611d6e565b5192915050565b60115462010000900460ff16610cab5760405162461bcd60e51b815260206004820152601560248201527421b630b4b69026b4b73a1034b9903830bab9b2b21760591b6044820152606401610b02565b6000815111610cf55760405162461bcd60e51b815260206004820152601660248201527506f776e656420746f6b656e732073697a6520697320360541b6044820152606401610b02565b60005b8151811015610eca5760155482516001600160a01b0390911690636352211e90849084908110610d2a57610d2a612bed565b60200260200101516040518263ffffffff1660e01b8152600401610d5091815260200190565b602060405180830381865afa158015610d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d919190612c03565b6001600160a01b0316336001600160a01b031614610df15760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e742068617665207468697320746f6b656e00000000000000006044820152606401610b02565b60146000838381518110610e0757610e07612bed565b60209081029190910181015182528101919091526040016000205460ff1615610e725760405162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e20616c657264617920636c61696d65640000000000006044820152606401610b02565b600160146000848481518110610e8a57610e8a612bed565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ec290612c36565b915050610cf8565b50600160106000828254610ede9190612c51565b92505081905550610b7c338251611e88565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610b0290612bb8565b6156ce811115610f6c5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742073657420686967686572207468616e203232323232000000006044820152606401610b02565b600b55565b60006001600160a01b038216610f9a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fe95760405162461bcd60e51b8152600401610b0290612bb8565b610ff36000611ea6565b565b60606003805461097890612b7d565b60115460ff1661104e5760405162461bcd60e51b81526020600482015260156024820152745075626c69632073616c653a20496e61637469766560581b6044820152606401610b02565b6000811161109e5760405162461bcd60e51b815260206004820152601c60248201527f4e756d6265722073686f756c64206265206d6f7265207468616e2030000000006044820152606401610b02565b60148111156110e35760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81d1a19481b1a5b5a5d607a1b6044820152606401610b02565b601154640100000000900460ff161561116857601054600d54600f54600c54600b5461110f9190612c69565b6111199190612c51565b6111239190612c69565b61112d9190612c51565b8161113b6001546000540390565b6111459190612c51565b11156111635760405162461bcd60e51b8152600401610b0290612c80565b6111a1565b600b54816111796001546000540390565b6111839190612c51565b11156111a15760405162461bcd60e51b8152600401610b0290612c80565b806009546111af9190612cb0565b3410156111f65760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b02565b610b7c3382611e88565b6001600160a01b03821633141561122a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c05760405162461bcd60e51b8152600401610b0290612bb8565b60118054911515620100000262ff000019909216919091179055565b604080516001600160a01b0385166020808301919091527f63e211fde095b028ad3db5ac6b2b2cece35c844465446d43b3873c8777606a2f828401528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc9092019092528051910120600090601160059054906101000a90046001600160a01b03166001600160a01b03166113d785858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050611ef89050565b6001600160a01b03161495945050505050565b6113f5848484611b80565b6001600160a01b0383163b15158015611417575061141584848484611f1c565b155b15611435576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146114655760405162461bcd60e51b8152600401610b0290612bb8565b6011805464ff000000001981166401000000009182900460ff1615909102179055565b6013805461149590612b7d565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190612b7d565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b505050505081565b6008546001600160a01b031633146115405760405162461bcd60e51b8152600401610b0290612bb8565b6011805463ff00000019166301000000179055565b606061156082611af9565b6115c45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b02565b60006115ce612005565b905060008151116115ee576040518060200160405280600081525061161c565b806115f884612014565b601360405160200161160c93929190612ccf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461164d5760405162461bcd60e51b8152600401610b0290612bb8565b6011805461ff001981166101009182900460ff1615909102179055565b601154610100900460ff166116c15760405162461bcd60e51b815260206004820152601860248201527f57686974656c6973742073616c653a20496e61637469766500000000000000006044820152606401610b02565b600083116117115760405162461bcd60e51b815260206004820152601c60248201527f4e756d6265722073686f756c64206265206d6f7265207468616e2030000000006044820152606401610b02565b600e5433600090815260056020526040902054600160401b90046001600160401b031661173e9085612c51565b11156117805760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81d1a19481b1a5b5a5d607a1b6044820152606401610b02565b600b54836117916001546000540390565b61179b9190612c51565b11156117b95760405162461bcd60e51b8152600401610b0290612c80565b82600a546117c79190612cb0565b34101561180e5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b02565b6118193383836112dc565b61185c5760405162461bcd60e51b8152602060048201526014602482015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b6044820152606401610b02565b6001600f600082825461186f9190612c51565b90915550610ac890503384611e88565b6008546001600160a01b031633146118a95760405162461bcd60e51b8152600401610b0290612bb8565b600e55565b6008546001600160a01b031633146118d85760405162461bcd60e51b8152600401610b0290612bb8565b600a55565b6008546001600160a01b031633146119075760405162461bcd60e51b8152600401610b0290612bb8565b601180546201000060ff1960ff6101008085048216150291821661ffff19851617918116938116939093171517818104909216150262ff000019909116179055565b6008546001600160a01b031633146119735760405162461bcd60e51b8152600401610b0290612bb8565b6011546301000000900460ff16156119bd5760405162461bcd60e51b815260206004820152600d60248201526c2aa9249034b990233937bd32b760991b6044820152606401610b02565b610ac86013838361263a565b6008546001600160a01b031633146119f35760405162461bcd60e51b8152600401610b0290612bb8565b601180546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6008546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610b0290612bb8565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314611a8b5760405162461bcd60e51b8152600401610b0290612bb8565b6001600160a01b038116611af05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b02565b610b7c81611ea6565b6000805482108015610963575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8b82611d6e565b9050836001600160a01b031681600001516001600160a01b031614611bc25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be05750611be08533610888565b80611bfb575033611bf0846109fb565b6001600160a01b0316145b905080611c1b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4257604051633a954ecd60e21b815260040160405180910390fd5b611c4e60008487611b24565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d22576000548214611d2257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611e6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e6d5780516001600160a01b031615611e04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e68579392505050565b611e04565b505b604051636f96cda160e11b815260040160405180910390fd5b611ea2828260405180602001604052806000815250612111565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000611f07858561211e565b91509150611f148161218e565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f51903390899088908890600401612d93565b6020604051808303816000875af1925050508015611f8c575060408051601f3d908101601f19168201909252611f8991810190612dd0565b60015b611fe7573d808015611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b508051611fdf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606012805461097890612b7d565b6060816120385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612062578061204c81612c36565b915061205b9050600a83612e03565b915061203c565b6000816001600160401b0381111561207c5761207c61288e565b6040519080825280601f01601f1916602001820160405280156120a6576020820181803683370190505b5090505b8415611ffd576120bb600183612c69565b91506120c8600a86612e17565b6120d3906030612c51565b60f81b8183815181106120e8576120e8612bed565b60200101906001600160f81b031916908160001a90535061210a600a86612e03565b94506120aa565b610ac88383836001612349565b6000808251604114156121555760208301516040840151606085015160001a61214987828585612514565b94509450505050612187565b82516040141561217f5760208301516040840151612174868383612601565b935093505050612187565b506000905060025b9250929050565b60008160048111156121a2576121a2612e2b565b14156121ab5750565b60018160048111156121bf576121bf612e2b565b141561220d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b02565b600281600481111561222157612221612e2b565b141561226f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b02565b600381600481111561228357612283612e2b565b14156122dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b02565b60048160048111156122f0576122f0612e2b565b1415610b7c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b02565b6000546001600160a01b03851661237257604051622e076360e81b815260040160405180910390fd5b836123905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561243c57506001600160a01b0387163b15155b156124c5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461248d6000888480600101955088611f1c565b6124aa576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124425782600054146124c057600080fd5b61250b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156124c6575b50600055611d67565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561254b57506000905060036125f8565b8460ff16601b1415801561256357508460ff16601c14155b1561257457506000905060046125f8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125f1576000600192509250506125f8565b9150600090505b94509492505050565b6000806001600160ff1b0383168161261e60ff86901c601b612c51565b905061262c87828885612514565b935093505050935093915050565b82805461264690612b7d565b90600052602060002090601f01602090048101928261266857600085556126ae565b82601f106126815782800160ff198235161785556126ae565b828001600101855582156126ae579182015b828111156126ae578235825591602001919060010190612693565b506126ba9291506126be565b5090565b5b808211156126ba57600081556001016126bf565b6001600160e01b031981168114610b7c57600080fd5b6000602082840312156126fb57600080fd5b813561161c816126d3565b60005b83811015612721578181015183820152602001612709565b838111156114355750506000910152565b6000815180845261274a816020860160208601612706565b601f01601f19169290920160200192915050565b60208152600061161c6020830184612732565b60006020828403121561278357600080fd5b5035919050565b6001600160a01b0381168114610b7c57600080fd5b600080604083850312156127b257600080fd5b82356127bd8161278a565b946020939093013593505050565b6000806000606084860312156127e057600080fd5b83356127eb8161278a565b925060208401356127fb8161278a565b929592945050506040919091013590565b60008083601f84011261281e57600080fd5b5081356001600160401b0381111561283557600080fd5b60208301915083602082850101111561218757600080fd5b6000806020838503121561286057600080fd5b82356001600160401b0381111561287657600080fd5b6128828582860161280c565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128cc576128cc61288e565b604052919050565b600060208083850312156128e757600080fd5b82356001600160401b03808211156128fe57600080fd5b818501915085601f83011261291257600080fd5b8135818111156129245761292461288e565b8060051b91506129358483016128a4565b818152918301840191848101908884111561294f57600080fd5b938501935b8385101561296d57843582529385019390850190612954565b98975050505050505050565b60006020828403121561298b57600080fd5b813561161c8161278a565b803580151581146129a657600080fd5b919050565b600080604083850312156129be57600080fd5b82356129c98161278a565b91506129d760208401612996565b90509250929050565b6000602082840312156129f257600080fd5b61161c82612996565b600080600060408486031215612a1057600080fd5b8335612a1b8161278a565b925060208401356001600160401b03811115612a3657600080fd5b612a428682870161280c565b9497909650939450505050565b60008060008060808587031215612a6557600080fd5b8435612a708161278a565b9350602085810135612a818161278a565b93506040860135925060608601356001600160401b0380821115612aa457600080fd5b818801915088601f830112612ab857600080fd5b813581811115612aca57612aca61288e565b612adc601f8201601f191685016128a4565b91508082528984828501011115612af257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080600060408486031215612b2757600080fd5b8335925060208401356001600160401b03811115612a3657600080fd5b60008060408385031215612b5757600080fd5b8235612b628161278a565b91506020830135612b728161278a565b809150509250929050565b600181811c90821680612b9157607f821691505b60208210811415612bb257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c1557600080fd5b815161161c8161278a565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612c4a57612c4a612c20565b5060010190565b60008219821115612c6457612c64612c20565b500190565b600082821015612c7b57612c7b612c20565b500390565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6000816000190483118215151615612cca57612cca612c20565b500290565b600084516020612ce28285838a01612706565b855191840191612cf58184848a01612706565b8554920191600090600181811c9080831680612d1257607f831692505b858310811415612d3057634e487b7160e01b85526022600452602485fd5b808015612d445760018114612d5557612d82565b60ff19851688528388019550612d82565b60008b81526020902060005b85811015612d7a5781548a820152908401908801612d61565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dc690830184612732565b9695505050505050565b600060208284031215612de257600080fd5b815161161c816126d3565b634e487b7160e01b600052601260045260246000fd5b600082612e1257612e12612ded565b500490565b600082612e2657612e26612ded565b500690565b634e487b7160e01b600052602160045260246000fdfea26469706673582212204139bb5cd710f21f52c7b91cb720b9253ac57fbcf42411eecc558e9283b59f0564736f6c634300080a0033697066733a2f2f62616679626569653379376b6634637a346332626a726a6a6d6c6132343478786e3537726b786e37617a75796e6e323377727a76376a346b6837652f6d657461646174612f
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c806395d89b4111610190578063ca6b5076116100dc578063da3ef23f11610095578063e985e9c51161006f578063e985e9c51461086d578063f2fde38b146108b6578063fc00c24e146108d6578063fcd4b212146108f657600080fd5b8063da3ef23f14610818578063e08a660514610838578063e222c7f91461085857600080fd5b8063ca6b507614610784578063d2521ae814610797578063d49479eb146107b7578063d4d2226f146107d7578063d5abeb01146107ec578063d70a28d11461080257600080fd5b8063b88d4fde11610149578063c668286211610123578063c668286214610725578063c793803c1461073a578063c87b56dd1461074f578063ca3cb5221461076f57600080fd5b8063b88d4fde146106da578063be98a05f146106fa578063bfe4d2611461071057600080fd5b806395d89b4114610638578063a0712d681461064d578063a22cb46514610660578063a5a865dc14610680578063b19326731461069a578063b30723c1146106ba57600080fd5b806344a0d68a1161024f5780636ba4c1381161020857806370a08231116101e257806370a08231146105cf578063715018a6146105ef5780638da5cb5b14610604578063953f049d1461062257600080fd5b80636ba4c1381461057a5780636ebcb2a01461059a5780636f8b44b0146105af57600080fd5b806344a0d68a146104c257806347ccca02146104e25780634942352e1461050257806355f804b3146105185780635a778c44146105385780636352211e1461055a57600080fd5b80631455b1e2116102bc5780632713727a116102965780632713727a14610447578063302150e5146104775780633ccfd60b1461048d57806342842e0e146104a257600080fd5b80631455b1e2146103ef57806318160ddd1461040e57806323b872dd1461042757600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063095ea7b3146103935780631178987b146103b557806313faede6146103d9575b600080fd5b34801561031057600080fd5b5061032461031f3660046126e9565b610917565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610969565b604051610330919061275e565b34801561036757600080fd5b5061037b610376366004612771565b6109fb565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b506103b36103ae36600461279f565b610a3f565b005b3480156103c157600080fd5b506103cb600f5481565b604051908152602001610330565b3480156103e557600080fd5b506103cb60095481565b3480156103fb57600080fd5b5060115461032490610100900460ff1681565b34801561041a57600080fd5b50600154600054036103cb565b34801561043357600080fd5b506103b36104423660046127cb565b610acd565b34801561045357600080fd5b50610324610462366004612771565b60146020526000908152604090205460ff1681565b34801561048357600080fd5b506103cb600e5481565b34801561049957600080fd5b506103b3610ad8565b3480156104ae57600080fd5b506103b36104bd3660046127cb565b610b7f565b3480156104ce57600080fd5b506103b36104dd366004612771565b610b9a565b3480156104ee57600080fd5b5060155461037b906001600160a01b031681565b34801561050e57600080fd5b506103cb60105481565b34801561052457600080fd5b506103b361053336600461284d565b610bc9565b34801561054457600080fd5b5060115461032490640100000000900460ff1681565b34801561056657600080fd5b5061037b610575366004612771565b610c49565b34801561058657600080fd5b506103b36105953660046128d4565b610c5b565b3480156105a657600080fd5b506103cb601481565b3480156105bb57600080fd5b506103b36105ca366004612771565b610ef0565b3480156105db57600080fd5b506103cb6105ea366004612979565b610f71565b3480156105fb57600080fd5b506103b3610fbf565b34801561061057600080fd5b506008546001600160a01b031661037b565b34801561062e57600080fd5b506103cb600c5481565b34801561064457600080fd5b5061034e610ff5565b6103b361065b366004612771565b611004565b34801561066c57600080fd5b506103b361067b3660046129ab565b611200565b34801561068c57600080fd5b506011546103249060ff1681565b3480156106a657600080fd5b506103b36106b53660046129e0565b611296565b3480156106c657600080fd5b506103246106d53660046129fb565b6112dc565b3480156106e657600080fd5b506103b36106f5366004612a4f565b6113ea565b34801561070657600080fd5b506103cb600d5481565b34801561071c57600080fd5b506103b361143b565b34801561073157600080fd5b5061034e611488565b34801561074657600080fd5b506103b3611516565b34801561075b57600080fd5b5061034e61076a366004612771565b611555565b34801561077b57600080fd5b506103b3611623565b6103b3610792366004612b12565b61166a565b3480156107a357600080fd5b506103b36107b2366004612771565b61187f565b3480156107c357600080fd5b506103b36107d2366004612771565b6118ae565b3480156107e357600080fd5b506103b36118dd565b3480156107f857600080fd5b506103cb600b5481565b34801561080e57600080fd5b506103cb600a5481565b34801561082457600080fd5b506103b361083336600461284d565b611949565b34801561084457600080fd5b506103b3610853366004612979565b6119c9565b34801561086457600080fd5b506103b3611a23565b34801561087957600080fd5b50610324610888366004612b44565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108c257600080fd5b506103b36108d1366004612979565b611a61565b3480156108e257600080fd5b506011546103249062010000900460ff1681565b34801561090257600080fd5b50601154610324906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061094857506001600160e01b03198216635b5e139f60e01b145b8061096357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097890612b7d565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490612b7d565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000610a0682611af9565b610a23576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4a82610c49565b9050806001600160a01b0316836001600160a01b03161415610a7f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9f5750610a9d8133610888565b155b15610abd576040516367d9dca160e11b815260040160405180910390fd5b610ac8838383611b24565b505050565b610ac8838383611b80565b6008546001600160a01b03163314610b0b5760405162461bcd60e51b8152600401610b0290612bb8565b60405180910390fd5b6000610b1f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b69576040519150601f19603f3d011682016040523d82523d6000602084013e610b6e565b606091505b5050905080610b7c57600080fd5b50565b610ac8838383604051806020016040528060008152506113ea565b6008546001600160a01b03163314610bc45760405162461bcd60e51b8152600401610b0290612bb8565b600955565b6008546001600160a01b03163314610bf35760405162461bcd60e51b8152600401610b0290612bb8565b6011546301000000900460ff1615610c3d5760405162461bcd60e51b815260206004820152600d60248201526c2aa9249034b990233937bd32b760991b6044820152606401610b02565b610ac86012838361263a565b6000610c5482611d6e565b5192915050565b60115462010000900460ff16610cab5760405162461bcd60e51b815260206004820152601560248201527421b630b4b69026b4b73a1034b9903830bab9b2b21760591b6044820152606401610b02565b6000815111610cf55760405162461bcd60e51b815260206004820152601660248201527506f776e656420746f6b656e732073697a6520697320360541b6044820152606401610b02565b60005b8151811015610eca5760155482516001600160a01b0390911690636352211e90849084908110610d2a57610d2a612bed565b60200260200101516040518263ffffffff1660e01b8152600401610d5091815260200190565b602060405180830381865afa158015610d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d919190612c03565b6001600160a01b0316336001600160a01b031614610df15760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e742068617665207468697320746f6b656e00000000000000006044820152606401610b02565b60146000838381518110610e0757610e07612bed565b60209081029190910181015182528101919091526040016000205460ff1615610e725760405162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e20616c657264617920636c61696d65640000000000006044820152606401610b02565b600160146000848481518110610e8a57610e8a612bed565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ec290612c36565b915050610cf8565b50600160106000828254610ede9190612c51565b92505081905550610b7c338251611e88565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610b0290612bb8565b6156ce811115610f6c5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742073657420686967686572207468616e203232323232000000006044820152606401610b02565b600b55565b60006001600160a01b038216610f9a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fe95760405162461bcd60e51b8152600401610b0290612bb8565b610ff36000611ea6565b565b60606003805461097890612b7d565b60115460ff1661104e5760405162461bcd60e51b81526020600482015260156024820152745075626c69632073616c653a20496e61637469766560581b6044820152606401610b02565b6000811161109e5760405162461bcd60e51b815260206004820152601c60248201527f4e756d6265722073686f756c64206265206d6f7265207468616e2030000000006044820152606401610b02565b60148111156110e35760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81d1a19481b1a5b5a5d607a1b6044820152606401610b02565b601154640100000000900460ff161561116857601054600d54600f54600c54600b5461110f9190612c69565b6111199190612c51565b6111239190612c69565b61112d9190612c51565b8161113b6001546000540390565b6111459190612c51565b11156111635760405162461bcd60e51b8152600401610b0290612c80565b6111a1565b600b54816111796001546000540390565b6111839190612c51565b11156111a15760405162461bcd60e51b8152600401610b0290612c80565b806009546111af9190612cb0565b3410156111f65760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b02565b610b7c3382611e88565b6001600160a01b03821633141561122a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c05760405162461bcd60e51b8152600401610b0290612bb8565b60118054911515620100000262ff000019909216919091179055565b604080516001600160a01b0385166020808301919091527f63e211fde095b028ad3db5ac6b2b2cece35c844465446d43b3873c8777606a2f828401528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc9092019092528051910120600090601160059054906101000a90046001600160a01b03166001600160a01b03166113d785858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050611ef89050565b6001600160a01b03161495945050505050565b6113f5848484611b80565b6001600160a01b0383163b15158015611417575061141584848484611f1c565b155b15611435576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146114655760405162461bcd60e51b8152600401610b0290612bb8565b6011805464ff000000001981166401000000009182900460ff1615909102179055565b6013805461149590612b7d565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190612b7d565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b505050505081565b6008546001600160a01b031633146115405760405162461bcd60e51b8152600401610b0290612bb8565b6011805463ff00000019166301000000179055565b606061156082611af9565b6115c45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b02565b60006115ce612005565b905060008151116115ee576040518060200160405280600081525061161c565b806115f884612014565b601360405160200161160c93929190612ccf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461164d5760405162461bcd60e51b8152600401610b0290612bb8565b6011805461ff001981166101009182900460ff1615909102179055565b601154610100900460ff166116c15760405162461bcd60e51b815260206004820152601860248201527f57686974656c6973742073616c653a20496e61637469766500000000000000006044820152606401610b02565b600083116117115760405162461bcd60e51b815260206004820152601c60248201527f4e756d6265722073686f756c64206265206d6f7265207468616e2030000000006044820152606401610b02565b600e5433600090815260056020526040902054600160401b90046001600160401b031661173e9085612c51565b11156117805760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81d1a19481b1a5b5a5d607a1b6044820152606401610b02565b600b54836117916001546000540390565b61179b9190612c51565b11156117b95760405162461bcd60e51b8152600401610b0290612c80565b82600a546117c79190612cb0565b34101561180e5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610b02565b6118193383836112dc565b61185c5760405162461bcd60e51b8152602060048201526014602482015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b6044820152606401610b02565b6001600f600082825461186f9190612c51565b90915550610ac890503384611e88565b6008546001600160a01b031633146118a95760405162461bcd60e51b8152600401610b0290612bb8565b600e55565b6008546001600160a01b031633146118d85760405162461bcd60e51b8152600401610b0290612bb8565b600a55565b6008546001600160a01b031633146119075760405162461bcd60e51b8152600401610b0290612bb8565b601180546201000060ff1960ff6101008085048216150291821661ffff19851617918116938116939093171517818104909216150262ff000019909116179055565b6008546001600160a01b031633146119735760405162461bcd60e51b8152600401610b0290612bb8565b6011546301000000900460ff16156119bd5760405162461bcd60e51b815260206004820152600d60248201526c2aa9249034b990233937bd32b760991b6044820152606401610b02565b610ac86013838361263a565b6008546001600160a01b031633146119f35760405162461bcd60e51b8152600401610b0290612bb8565b601180546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6008546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610b0290612bb8565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314611a8b5760405162461bcd60e51b8152600401610b0290612bb8565b6001600160a01b038116611af05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b02565b610b7c81611ea6565b6000805482108015610963575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b8b82611d6e565b9050836001600160a01b031681600001516001600160a01b031614611bc25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be05750611be08533610888565b80611bfb575033611bf0846109fb565b6001600160a01b0316145b905080611c1b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4257604051633a954ecd60e21b815260040160405180910390fd5b611c4e60008487611b24565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d22576000548214611d2257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611e6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e6d5780516001600160a01b031615611e04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e68579392505050565b611e04565b505b604051636f96cda160e11b815260040160405180910390fd5b611ea2828260405180602001604052806000815250612111565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000611f07858561211e565b91509150611f148161218e565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f51903390899088908890600401612d93565b6020604051808303816000875af1925050508015611f8c575060408051601f3d908101601f19168201909252611f8991810190612dd0565b60015b611fe7573d808015611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b508051611fdf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606012805461097890612b7d565b6060816120385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612062578061204c81612c36565b915061205b9050600a83612e03565b915061203c565b6000816001600160401b0381111561207c5761207c61288e565b6040519080825280601f01601f1916602001820160405280156120a6576020820181803683370190505b5090505b8415611ffd576120bb600183612c69565b91506120c8600a86612e17565b6120d3906030612c51565b60f81b8183815181106120e8576120e8612bed565b60200101906001600160f81b031916908160001a90535061210a600a86612e03565b94506120aa565b610ac88383836001612349565b6000808251604114156121555760208301516040840151606085015160001a61214987828585612514565b94509450505050612187565b82516040141561217f5760208301516040840151612174868383612601565b935093505050612187565b506000905060025b9250929050565b60008160048111156121a2576121a2612e2b565b14156121ab5750565b60018160048111156121bf576121bf612e2b565b141561220d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b02565b600281600481111561222157612221612e2b565b141561226f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b02565b600381600481111561228357612283612e2b565b14156122dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b02565b60048160048111156122f0576122f0612e2b565b1415610b7c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b02565b6000546001600160a01b03851661237257604051622e076360e81b815260040160405180910390fd5b836123905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561243c57506001600160a01b0387163b15155b156124c5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461248d6000888480600101955088611f1c565b6124aa576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124425782600054146124c057600080fd5b61250b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156124c6575b50600055611d67565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561254b57506000905060036125f8565b8460ff16601b1415801561256357508460ff16601c14155b1561257457506000905060046125f8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125f1576000600192509250506125f8565b9150600090505b94509492505050565b6000806001600160ff1b0383168161261e60ff86901c601b612c51565b905061262c87828885612514565b935093505050935093915050565b82805461264690612b7d565b90600052602060002090601f01602090048101928261266857600085556126ae565b82601f106126815782800160ff198235161785556126ae565b828001600101855582156126ae579182015b828111156126ae578235825591602001919060010190612693565b506126ba9291506126be565b5090565b5b808211156126ba57600081556001016126bf565b6001600160e01b031981168114610b7c57600080fd5b6000602082840312156126fb57600080fd5b813561161c816126d3565b60005b83811015612721578181015183820152602001612709565b838111156114355750506000910152565b6000815180845261274a816020860160208601612706565b601f01601f19169290920160200192915050565b60208152600061161c6020830184612732565b60006020828403121561278357600080fd5b5035919050565b6001600160a01b0381168114610b7c57600080fd5b600080604083850312156127b257600080fd5b82356127bd8161278a565b946020939093013593505050565b6000806000606084860312156127e057600080fd5b83356127eb8161278a565b925060208401356127fb8161278a565b929592945050506040919091013590565b60008083601f84011261281e57600080fd5b5081356001600160401b0381111561283557600080fd5b60208301915083602082850101111561218757600080fd5b6000806020838503121561286057600080fd5b82356001600160401b0381111561287657600080fd5b6128828582860161280c565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128cc576128cc61288e565b604052919050565b600060208083850312156128e757600080fd5b82356001600160401b03808211156128fe57600080fd5b818501915085601f83011261291257600080fd5b8135818111156129245761292461288e565b8060051b91506129358483016128a4565b818152918301840191848101908884111561294f57600080fd5b938501935b8385101561296d57843582529385019390850190612954565b98975050505050505050565b60006020828403121561298b57600080fd5b813561161c8161278a565b803580151581146129a657600080fd5b919050565b600080604083850312156129be57600080fd5b82356129c98161278a565b91506129d760208401612996565b90509250929050565b6000602082840312156129f257600080fd5b61161c82612996565b600080600060408486031215612a1057600080fd5b8335612a1b8161278a565b925060208401356001600160401b03811115612a3657600080fd5b612a428682870161280c565b9497909650939450505050565b60008060008060808587031215612a6557600080fd5b8435612a708161278a565b9350602085810135612a818161278a565b93506040860135925060608601356001600160401b0380821115612aa457600080fd5b818801915088601f830112612ab857600080fd5b813581811115612aca57612aca61288e565b612adc601f8201601f191685016128a4565b91508082528984828501011115612af257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080600060408486031215612b2757600080fd5b8335925060208401356001600160401b03811115612a3657600080fd5b60008060408385031215612b5757600080fd5b8235612b628161278a565b91506020830135612b728161278a565b809150509250929050565b600181811c90821680612b9157607f821691505b60208210811415612bb257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c1557600080fd5b815161161c8161278a565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612c4a57612c4a612c20565b5060010190565b60008219821115612c6457612c64612c20565b500190565b600082821015612c7b57612c7b612c20565b500390565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6000816000190483118215151615612cca57612cca612c20565b500290565b600084516020612ce28285838a01612706565b855191840191612cf58184848a01612706565b8554920191600090600181811c9080831680612d1257607f831692505b858310811415612d3057634e487b7160e01b85526022600452602485fd5b808015612d445760018114612d5557612d82565b60ff19851688528388019550612d82565b60008b81526020902060005b85811015612d7a5781548a820152908401908801612d61565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dc690830184612732565b9695505050505050565b600060208284031215612de257600080fd5b815161161c816126d3565b634e487b7160e01b600052601260045260246000fd5b600082612e1257612e12612ded565b500490565b600082612e2657612e26612ded565b500690565b634e487b7160e01b600052602160045260246000fdfea26469706673582212204139bb5cd710f21f52c7b91cb720b9253ac57fbcf42411eecc558e9283b59f0564736f6c634300080a0033
Deployed Bytecode Sourcemap
54422:6375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36506:305;;;;;;;;;;-1:-1:-1;36506:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36506:305:0;;;;;;;;39619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41122:204::-;;;;;;;;;;-1:-1:-1;41122:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;41122:204:0;1528:203:1;40685:371:0;;;;;;;;;;-1:-1:-1;40685:371:0;;;;;:::i;:::-;;:::i;:::-;;54952:32;;;;;;;;;;;;;;;;;;;2338:25:1;;;2326:2;2311:18;54952:32:0;2192:177:1;54702:33:0;;;;;;;;;;;;;;;;55059:27;;;;;;;;;;-1:-1:-1;55059:27:0;;;;;;;;;;;35755:303;;;;;;;;;;-1:-1:-1;36009:12:0;;35799:7;35993:13;:28;35755:303;;41987:170;;;;;;;;;;-1:-1:-1;41987:170:0;;;;;:::i;:::-;;:::i;55447:47::-;;;;;;;;;;-1:-1:-1;55447:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54912:33;;;;;;;;;;;;;;;;57807:149;;;;;;;;;;;;;:::i;42228:185::-;;;;;;;;;;-1:-1:-1;42228:185:0;;;;;:::i;:::-;;:::i;59674:82::-;;;;;;;;;;-1:-1:-1;59674:82:0;;;;;:::i;:::-;;:::i;55503:70::-;;;;;;;;;;-1:-1:-1;55503:70:0;;;;-1:-1:-1;;;;;55503:70:0;;;54991:28;;;;;;;;;;;;;;;;59115:147;;;;;;;;;;-1:-1:-1;59115:147:0;;;;;:::i;:::-;;:::i;55158:38::-;;;;;;;;;;-1:-1:-1;55158:38:0;;;;;;;;;;;39427:125;;;;;;;;;;-1:-1:-1;39427:125:0;;;;;:::i;:::-;;:::i;56970:596::-;;;;;;;;;;-1:-1:-1;56970:596:0;;;;;:::i;:::-;;:::i;54648:41::-;;;;;;;;;;;;54687:2;54648:41;;59361:171;;;;;;;;;;-1:-1:-1;59361:171:0;;;;;:::i;:::-;;:::i;36875:206::-;;;;;;;;;;-1:-1:-1;36875:206:0;;;;;:::i;:::-;;:::i;14264:103::-;;;;;;;;;;;;;:::i;13613:87::-;;;;;;;;;;-1:-1:-1;13686:6:0;;-1:-1:-1;;;;;13686:6:0;13613:87;;54824:38;;;;;;;;;;;;;;;;39788:104;;;;;;;;;;;;;:::i;55638:677::-;;;;;;:::i;:::-;;:::i;41398:287::-;;;;;;;;;;-1:-1:-1;41398:287:0;;;;;:::i;:::-;;:::i;55028:24::-;;;;;;;;;;-1:-1:-1;55028:24:0;;;;;;;;58330:123;;;;;;;;;;-1:-1:-1;58330:123:0;;;;;:::i;:::-;;:::i;57574:225::-;;;;;;;;;;-1:-1:-1;57574:225:0;;;;;:::i;:::-;;:::i;42484:369::-;;;;;;;;;;-1:-1:-1;42484:369:0;;;;;:::i;:::-;;:::i;54869:36::-;;;;;;;;;;;;;;;;58622:104;;;;;;;;;;;;;:::i;55403:37::-;;;;;;;;;;;;;:::i;59272:77::-;;;;;;;;;;;;;:::i;59888:397::-;;;;;;;;;;-1:-1:-1;59888:397:0;;;;;:::i;:::-;;:::i;58123:97::-;;;;;;;;;;;;;:::i;56323:639::-;;;;;;:::i;:::-;;:::i;59544:122::-;;;;;;;;;;-1:-1:-1;59544:122:0;;;;;:::i;:::-;;:::i;59764:93::-;;;;;;;;;;-1:-1:-1;59764:93:0;;;;;:::i;:::-;;:::i;58738:180::-;;;;;;;;;;;;;:::i;54786:31::-;;;;;;;;;;;;;;;;54742:35;;;;;;;;;;;;;;;;58926:181;;;;;;;;;;-1:-1:-1;58926:181:0;;;;;:::i;:::-;;:::i;57994:121::-;;;;;;;;;;-1:-1:-1;57994:121:0;;;;;:::i;:::-;;:::i;58228:94::-;;;;;;;;;;;;;:::i;41756:164::-;;;;;;;;;;-1:-1:-1;41756:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41877:25:0;;;41853:4;41877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41756:164;14522:201;;;;;;;;;;-1:-1:-1;14522:201:0;;;;;:::i;:::-;;:::i;55093:28::-;;;;;;;;;;-1:-1:-1;55093:28:0;;;;;;;;;;;55128:23;;;;;;;;;;-1:-1:-1;55128:23:0;;;;;;;;;;;36506:305;36608:4;-1:-1:-1;;;;;;36645:40:0;;-1:-1:-1;;;36645:40:0;;:105;;-1:-1:-1;;;;;;;36702:48:0;;-1:-1:-1;;;36702:48:0;36645:105;:158;;;-1:-1:-1;;;;;;;;;;26506:40:0;;;36767:36;36625:178;36506:305;-1:-1:-1;;36506:305:0:o;39619:100::-;39673:13;39706:5;39699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39619:100;:::o;41122:204::-;41190:7;41215:16;41223:7;41215;:16::i;:::-;41210:64;;41240:34;;-1:-1:-1;;;41240:34:0;;;;;;;;;;;41210:64;-1:-1:-1;41294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41294:24:0;;41122:204::o;40685:371::-;40758:13;40774:24;40790:7;40774:15;:24::i;:::-;40758:40;;40819:5;-1:-1:-1;;;;;40813:11:0;:2;-1:-1:-1;;;;;40813:11:0;;40809:48;;;40833:24;;-1:-1:-1;;;40833:24:0;;;;;;;;;;;40809:48;12417:10;-1:-1:-1;;;;;40874:21:0;;;;;;:63;;-1:-1:-1;40900:37:0;40917:5;12417:10;41756:164;:::i;40900:37::-;40899:38;40874:63;40870:138;;;40961:35;;-1:-1:-1;;;40961:35:0;;;;;;;;;;;40870:138;41020:28;41029:2;41033:7;41042:5;41020:8;:28::i;:::-;40747:309;40685:371;;:::o;41987:170::-;42121:28;42131:4;42137:2;42141:7;42121:9;:28::i;57807:149::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;;;;;;;;;57858:7:::1;57879;13686:6:::0;;-1:-1:-1;;;;;13686:6:0;;13613:87;57879:7:::1;-1:-1:-1::0;;;;;57871:21:0::1;57900;57871:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57857:69;;;57945:2;57937:11;;;::::0;::::1;;57846:110;57807:149::o:0;42228:185::-;42366:39;42383:4;42389:2;42393:7;42366:39;;;;;;;;;;;;:16;:39::i;59674:82::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59736:4:::1;:12:::0;59674:82::o;59115:147::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59198:11:::1;::::0;;;::::1;;;59197:12;59189:38;;;::::0;-1:-1:-1;;;59189:38:0;;9809:2:1;59189:38:0::1;::::0;::::1;9791:21:1::0;9848:2;9828:18;;;9821:30;-1:-1:-1;;;9867:18:1;;;9860:43;9920:18;;59189:38:0::1;9607:337:1::0;59189:38:0::1;59238:16;:7;59248:6:::0;;59238:16:::1;:::i;39427:125::-:0;39491:7;39518:21;39531:7;39518:12;:21::i;:::-;:26;;39427:125;-1:-1:-1;;39427:125:0:o;56970:596::-;57046:16;;;;;;;57038:50;;;;-1:-1:-1;;;57038:50:0;;10151:2:1;57038:50:0;;;10133:21:1;10190:2;10170:18;;;10163:30;-1:-1:-1;;;10209:18:1;;;10202:51;10270:18;;57038:50:0;9949:345:1;57038:50:0;57131:1;57107:14;:21;:25;57099:60;;;;-1:-1:-1;;;57099:60:0;;10501:2:1;57099:60:0;;;10483:21:1;10540:2;10520:18;;;10513:30;-1:-1:-1;;;10559:18:1;;;10552:52;10621:18;;57099:60:0;10299:346:1;57099:60:0;57176:9;57172:303;57195:14;:21;57191:1;:25;57172:303;;;57259:3;;57271:17;;-1:-1:-1;;;;;57259:3:0;;;;:11;;57271:14;;57286:1;;57271:17;;;;;;:::i;:::-;;;;;;;57259:30;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;57259:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57245:44:0;:10;-1:-1:-1;;;;;57245:44:0;;57237:81;;;;-1:-1:-1;;;57237:81:0;;11240:2:1;57237:81:0;;;11222:21:1;11279:2;11259:18;;;11252:30;11318:26;11298:18;;;11291:54;11362:18;;57237:81:0;11038:348:1;57237:81:0;57342:15;:34;57358:14;57373:1;57358:17;;;;;;;;:::i;:::-;;;;;;;;;;;;57342:34;;;;;;;;;;-1:-1:-1;57342:34:0;;;;57341:35;57333:74;;;;-1:-1:-1;;;57333:74:0;;11593:2:1;57333:74:0;;;11575:21:1;11632:2;11612:18;;;11605:30;11671:28;11651:18;;;11644:56;11717:18;;57333:74:0;11391:350:1;57333:74:0;57459:4;57422:15;:34;57438:14;57453:1;57438:17;;;;;;;;:::i;:::-;;;;;;;57422:34;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;57218:3;;;;;:::i;:::-;;;;57172:303;;;;57502:1;57485:13;;:18;;;;;;;:::i;:::-;;;;;;;;57514:44;57524:10;57536:14;:21;57514:9;:44::i;59361:171::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59453:5:::1;59439:10;:19;;59431:60;;;::::0;-1:-1:-1;;;59431:60:0;;12353:2:1;59431:60:0::1;::::0;::::1;12335:21:1::0;12392:2;12372:18;;;12365:30;12431;12411:18;;;12404:58;12479:18;;59431:60:0::1;12151:352:1::0;59431:60:0::1;59502:9;:22:::0;59361:171::o;36875:206::-;36939:7;-1:-1:-1;;;;;36963:19:0;;36959:60;;36991:28;;-1:-1:-1;;;36991:28:0;;;;;;;;;;;36959:60;-1:-1:-1;;;;;;37045:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37045:27:0;;36875:206::o;14264:103::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;14329:30:::1;14356:1;14329:18;:30::i;:::-;14264:103::o:0;39788:104::-;39844:13;39877:7;39870:14;;;;;:::i;55638:677::-;55707:12;;;;55699:46;;;;-1:-1:-1;;;55699:46:0;;12710:2:1;55699:46:0;;;12692:21:1;12749:2;12729:18;;;12722:30;-1:-1:-1;;;12768:18:1;;;12761:51;12829:18;;55699:46:0;12508:345:1;55699:46:0;55776:1;55764:9;:13;55756:54;;;;-1:-1:-1;;;55756:54:0;;13060:2:1;55756:54:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138;13118:18;;;13111:58;13186:18;;55756:54:0;12858:352:1;55756:54:0;54687:2;55829:9;:25;;55821:55;;;;-1:-1:-1;;;55821:55:0;;13417:2:1;55821:55:0;;;13399:21:1;13456:2;13436:18;;;13429:30;-1:-1:-1;;;13475:18:1;;;13468:47;13532:18;;55821:55:0;13215:341:1;55821:55:0;55890:19;;;;;;;55887:304;;;56033:13;;56016:14;;55996:17;;55975:18;;55963:9;;:30;;;;:::i;:::-;:50;;;;:::i;:::-;:67;;;;:::i;:::-;:83;;;;:::i;:::-;55950:9;55934:13;36009:12;;35799:7;35993:13;:28;;35755:303;55934:13;:25;;;;:::i;:::-;:112;;55926:147;;;;-1:-1:-1;;;55926:147:0;;;;;;;:::i;:::-;55887:304;;;56143:9;;56130;56114:13;36009:12;;35799:7;35993:13;:28;;35755:303;56114:13;:25;;;;:::i;:::-;:38;;56106:73;;;;-1:-1:-1;;;56106:73:0;;;;;;;:::i;:::-;56229:9;56222:4;;:16;;;;:::i;:::-;56209:9;:29;;56201:63;;;;-1:-1:-1;;;56201:63:0;;14417:2:1;56201:63:0;;;14399:21:1;14456:2;14436:18;;;14429:30;-1:-1:-1;;;14475:18:1;;;14468:51;14536:18;;56201:63:0;14215:345:1;56201:63:0;56275:32;56285:10;56297:9;56275;:32::i;41398:287::-;-1:-1:-1;;;;;41497:24:0;;12417:10;41497:24;41493:54;;;41530:17;;-1:-1:-1;;;41530:17:0;;;;;;;;;;;41493:54;12417:10;41560:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41560:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41560:53:0;;;;;;;;;;41629:48;;540:41:1;;;41560:42:0;;12417:10;41629:48;;513:18:1;41629:48:0;;;;;;;41398:287;;:::o;58330:123::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58410:16:::1;:35:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58410:35:0;;::::1;::::0;;;::::1;::::0;;58330:123::o;57574:225::-;60621:24;;;-1:-1:-1;;;;;17940:32:1;;60621:24:0;;;;17922:51:1;;;;54572:66:0;17989:18:1;;;17982:34;60621:24:0;;;;;;;;;17895:18:1;;;60621:24:0;;60611:35;;;;;;18269:66:1;60689:65:0;;;18257:79:1;18352:12;;;;18345:28;;;;60689:65:0;;;;;;;;;;18389:12:1;;;;60689:65:0;;;60679:76;;;;;57663:4;;57773:18;;;;;;;;;-1:-1:-1;;;;;57773:18:0;-1:-1:-1;;;;;57738:53:0;:31;57758:10;;57738:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57738:11:0;;:31;-1:-1:-1;;57738:19:0;:31;-1:-1:-1;57738:31:0:i;:::-;-1:-1:-1;;;;;57738:53:0;;;57574:225;-1:-1:-1;;;;;57574:225:0:o;42484:369::-;42651:28;42661:4;42667:2;42671:7;42651:9;:28::i;:::-;-1:-1:-1;;;;;42694:13:0;;16609:19;:23;;42694:76;;;;;42714:56;42745:4;42751:2;42755:7;42764:5;42714:30;:56::i;:::-;42713:57;42694:76;42690:156;;;42794:40;;-1:-1:-1;;;42794:40:0;;;;;;;;;;;42690:156;42484:369;;;;:::o;58622:104::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58699:19:::1;::::0;;-1:-1:-1;;58676:42:0;::::1;58699:19:::0;;;;::::1;;;58698:20;58676:42:::0;;::::1;;::::0;;58622:104::o;55403:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59272:77::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59323:11:::1;:18:::0;;-1:-1:-1;;59323:18:0::1;::::0;::::1;::::0;;59272:77::o;59888:397::-;59961:13;59995:16;60003:7;59995;:16::i;:::-;59987:76;;;;-1:-1:-1;;;59987:76:0;;14767:2:1;59987:76:0;;;14749:21:1;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:1;;;14889:45;14951:19;;59987:76:0;14565:411:1;59987:76:0;60076:28;60107:10;:8;:10::i;:::-;60076:41;;60166:1;60141:14;60135:28;:32;:142;;;;;;;;;;;;;;;;;60208:14;60224:18;:7;:16;:18::i;:::-;60244:13;60191:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60135:142;60128:149;59888:397;-1:-1:-1;;;59888:397:0:o;58123:97::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58197:15:::1;::::0;;-1:-1:-1;;58178:34:0;::::1;58197:15;::::0;;;::::1;;;58196:16;58178:34:::0;;::::1;;::::0;;58123:97::o;56323:639::-;56427:15;;;;;;;56419:52;;;;-1:-1:-1;;;56419:52:0;;16841:2:1;56419:52:0;;;16823:21:1;16880:2;16860:18;;;16853:30;16919:26;16899:18;;;16892:54;16963:18;;56419:52:0;16639:348:1;56419:52:0;56502:1;56490:9;:13;56482:54;;;;-1:-1:-1;;;56482:54:0;;13060:2:1;56482:54:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138;13118:18;;;13111:58;13186:18;;56482:54:0;12858:352:1;56482:54:0;56596:14;;56581:10;37224:7;37259:19;;;:12;:19;;;;;:32;-1:-1:-1;;;37259:32:0;;-1:-1:-1;;;;;37259:32:0;56555:37;;:9;:37;:::i;:::-;:55;;56547:85;;;;-1:-1:-1;;;56547:85:0;;13417:2:1;56547:85:0;;;13399:21:1;13456:2;13436:18;;;13429:30;-1:-1:-1;;;13475:18:1;;;13468:47;13532:18;;56547:85:0;13215:341:1;56547:85:0;56680:9;;56667;56651:13;36009:12;;35799:7;35993:13;:28;;35755:303;56651:13;:25;;;;:::i;:::-;:38;;56643:73;;;;-1:-1:-1;;;56643:73:0;;;;;;;:::i;:::-;56757:9;56748:6;;:18;;;;:::i;:::-;56735:9;:31;;56727:65;;;;-1:-1:-1;;;56727:65:0;;14417:2:1;56727:65:0;;;14399:21:1;14456:2;14436:18;;;14429:30;-1:-1:-1;;;14475:18:1;;;14468:51;14536:18;;56727:65:0;14215:345:1;56727:65:0;56813:40;56831:10;56843:9;;56813:17;:40::i;:::-;56805:73;;;;-1:-1:-1;;;56805:73:0;;17194:2:1;56805:73:0;;;17176:21:1;17233:2;17213:18;;;17206:30;-1:-1:-1;;;17252:18:1;;;17245:50;17312:18;;56805:73:0;16992:344:1;56805:73:0;56910:1;56889:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;56922:32:0;;-1:-1:-1;56932:10:0;56944:9;56922;:32::i;59544:122::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59626:14:::1;:32:::0;59544:122::o;59764:93::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59835:6:::1;:14:::0;59764:93::o;58738:180::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58809:15:::1;::::0;;58894:16;-1:-1:-1;;58809:15:0::1;;::::0;;::::1;::::0;::::1;58808:16;58790:34;58835:28:::0;;;-1:-1:-1;;58835:28:0;;;58851:12;;;;;;;;;;58850:13:::1;58835:28;58894:16:::0;;::::1;::::0;;::::1;58893:17;58874:36;-1:-1:-1::0;;58874:36:0;;::::1;;::::0;;58738:180::o;58926:181::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;59026:11:::1;::::0;;;::::1;;;59025:12;59017:38;;;::::0;-1:-1:-1;;;59017:38:0;;9809:2:1;59017:38:0::1;::::0;::::1;9791:21:1::0;9848:2;9828:18;;;9821:30;-1:-1:-1;;;9867:18:1;;;9860:43;9920:18;;59017:38:0::1;9607:337:1::0;59017:38:0::1;59066:33;:13;59082:17:::0;;59066:33:::1;:::i;57994:121::-:0;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58075:18:::1;:32:::0;;-1:-1:-1;;;;;58075:32:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;58075:32:0;;::::1;::::0;;;::::1;::::0;;57994:121::o;58228:94::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58302:12:::1;::::0;;-1:-1:-1;;58286:28:0;::::1;58302:12;::::0;;::::1;58301:13;58286:28;::::0;;58228:94::o;14522:201::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14611:22:0;::::1;14603:73;;;::::0;-1:-1:-1;;;14603:73:0;;17543:2:1;14603:73:0::1;::::0;::::1;17525:21:1::0;17582:2;17562:18;;;17555:30;17621:34;17601:18;;;17594:62;-1:-1:-1;;;17672:18:1;;;17665:36;17718:19;;14603:73:0::1;17341:402:1::0;14603:73:0::1;14687:28;14706:8;14687:18;:28::i;43108:174::-:0;43165:4;43229:13;;43219:7;:23;43189:85;;;;-1:-1:-1;;43247:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43247:27:0;;;;43246:28;;43108:174::o;51265:196::-;51380:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51380:29:0;-1:-1:-1;;;;;51380:29:0;;;;;;;;;51425:28;;51380:24;;51425:28;;;;;;;51265:196;;;:::o;46208:2130::-;46323:35;46361:21;46374:7;46361:12;:21::i;:::-;46323:59;;46421:4;-1:-1:-1;;;;;46399:26:0;:13;:18;;;-1:-1:-1;;;;;46399:26:0;;46395:67;;46434:28;;-1:-1:-1;;;46434:28:0;;;;;;;;;;;46395:67;46475:22;12417:10;-1:-1:-1;;;;;46501:20:0;;;;:73;;-1:-1:-1;46538:36:0;46555:4;12417:10;41756:164;:::i;46538:36::-;46501:126;;;-1:-1:-1;12417:10:0;46591:20;46603:7;46591:11;:20::i;:::-;-1:-1:-1;;;;;46591:36:0;;46501:126;46475:153;;46646:17;46641:66;;46672:35;;-1:-1:-1;;;46672:35:0;;;;;;;;;;;46641:66;-1:-1:-1;;;;;46722:16:0;;46718:52;;46747:23;;-1:-1:-1;;;46747:23:0;;;;;;;;;;;46718:52;46891:35;46908:1;46912:7;46921:4;46891:8;:35::i;:::-;-1:-1:-1;;;;;47222:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47222:31:0;;;-1:-1:-1;;;;;47222:31:0;;;-1:-1:-1;;47222:31:0;;;;;;;47268:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47268:29:0;;;;;;;;;;;47348:20;;;:11;:20;;;;;;47383:18;;-1:-1:-1;;;;;;47416:49:0;;;;-1:-1:-1;;;47449:15:0;47416:49;;;;;;;;;;47739:11;;47799:24;;;;;47842:13;;47348:20;;47799:24;;47842:13;47838:384;;48052:13;;48037:11;:28;48033:174;;48090:20;;48159:28;;;;-1:-1:-1;;;;;48133:54:0;-1:-1:-1;;;48133:54:0;-1:-1:-1;;;;;;48133:54:0;;;-1:-1:-1;;;;;48090:20:0;;48133:54;;;;48033:174;47197:1036;;;48269:7;48265:2;-1:-1:-1;;;;;48250:27:0;48259:4;-1:-1:-1;;;;;48250:27:0;;;;;;;;;;;48288:42;46312:2026;;46208:2130;;;:::o;38256:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;38367:7:0;38450:13;;38443:4;:20;38412:886;;;38484:31;38518:17;;;:11;:17;;;;;;;;;38484:51;;;;;;;;;-1:-1:-1;;;;;38484:51:0;;;;-1:-1:-1;;;38484:51:0;;-1:-1:-1;;;;;38484:51:0;;;;;;;;-1:-1:-1;;;38484:51:0;;;;;;;;;;;;;;38554:729;;38604:14;;-1:-1:-1;;;;;38604:28:0;;38600:101;;38668:9;38256:1109;-1:-1:-1;;;38256:1109:0:o;38600:101::-;-1:-1:-1;;;39043:6:0;39088:17;;;;:11;:17;;;;;;;;;39076:29;;;;;;;;;-1:-1:-1;;;;;39076:29:0;;;;;-1:-1:-1;;;39076:29:0;;-1:-1:-1;;;;;39076:29:0;;;;;;;;-1:-1:-1;;;39076:29:0;;;;;;;;;;;;;39136:28;39132:109;;39204:9;38256:1109;-1:-1:-1;;;38256:1109:0:o;39132:109::-;39003:261;;;38465:833;38412:886;39326:31;;-1:-1:-1;;;39326:31:0;;;;;;;;;;;43290:104;43359:27;43369:2;43373:8;43359:27;;;;;;;;;;;;:9;:27::i;:::-;43290:104;;:::o;14883:191::-;14976:6;;;-1:-1:-1;;;;;14993:17:0;;;-1:-1:-1;;;;;;14993:17:0;;;;;;;15026:40;;14976:6;;;14993:17;14976:6;;15026:40;;14957:16;;15026:40;14946:128;14883:191;:::o;6541:231::-;6619:7;6640:17;6659:18;6681:27;6692:4;6698:9;6681:10;:27::i;:::-;6639:69;;;;6719:18;6731:5;6719:11;:18::i;:::-;-1:-1:-1;6755:9:0;6541:231;-1:-1:-1;;;6541:231:0:o;51953:667::-;52137:72;;-1:-1:-1;;;52137:72:0;;52116:4;;-1:-1:-1;;;;;52137:36:0;;;;;:72;;12417:10;;52188:4;;52194:7;;52203:5;;52137:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52137:72:0;;;;;;;;-1:-1:-1;;52137:72:0;;;;;;;;;;;;:::i;:::-;;;52133:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52371:13:0;;52367:235;;52417:40;;-1:-1:-1;;;52417:40:0;;;;;;;;;;;52367:235;52560:6;52554:13;52545:6;52541:2;52537:15;52530:38;52133:480;-1:-1:-1;;;;;;52256:55:0;-1:-1:-1;;;52256:55:0;;-1:-1:-1;52133:480:0;51953:667;;;;;;:::o;60293:100::-;60345:13;60378:7;60371:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;43757:163;43880:32;43886:2;43890:8;43900:5;43907:4;43880:5;:32::i;4431:1308::-;4512:7;4521:12;4746:9;:16;4766:2;4746:22;4742:990;;;5042:4;5027:20;;5021:27;5092:4;5077:20;;5071:27;5150:4;5135:20;;5129:27;4785:9;5121:36;5193:25;5204:4;5121:36;5021:27;5071;5193:10;:25::i;:::-;5186:32;;;;;;;;;4742:990;5240:9;:16;5260:2;5240:22;5236:496;;;5515:4;5500:20;;5494:27;5566:4;5551:20;;5545:27;5608:23;5619:4;5494:27;5545;5608:10;:23::i;:::-;5601:30;;;;;;;;5236:496;-1:-1:-1;5680:1:0;;-1:-1:-1;5684:35:0;5236:496;4431:1308;;;;;:::o;2702:643::-;2780:20;2771:5;:29;;;;;;;;:::i;:::-;;2767:571;;;2702:643;:::o;2767:571::-;2878:29;2869:5;:38;;;;;;;;:::i;:::-;;2865:473;;;2924:34;;-1:-1:-1;;;2924:34:0;;19868:2:1;2924:34:0;;;19850:21:1;19907:2;19887:18;;;19880:30;19946:26;19926:18;;;19919:54;19990:18;;2924:34:0;19666:348:1;2865:473:0;2989:35;2980:5;:44;;;;;;;;:::i;:::-;;2976:362;;;3041:41;;-1:-1:-1;;;3041:41:0;;20221:2:1;3041:41:0;;;20203:21:1;20260:2;20240:18;;;20233:30;20299:33;20279:18;;;20272:61;20350:18;;3041:41:0;20019:355:1;2976:362:0;3113:30;3104:5;:39;;;;;;;;:::i;:::-;;3100:238;;;3160:44;;-1:-1:-1;;;3160:44:0;;20581:2:1;3160:44:0;;;20563:21:1;20620:2;20600:18;;;20593:30;20659:34;20639:18;;;20632:62;-1:-1:-1;;;20710:18:1;;;20703:32;20752:19;;3160:44:0;20379:398:1;3100:238:0;3235:30;3226:5;:39;;;;;;;;:::i;:::-;;3222:116;;;3282:44;;-1:-1:-1;;;3282:44:0;;20984:2:1;3282:44:0;;;20966:21:1;21023:2;21003:18;;;20996:30;21062:34;21042:18;;;21035:62;-1:-1:-1;;;21113:18:1;;;21106:32;21155:19;;3282:44:0;20782:398:1;44179:1775:0;44318:20;44341:13;-1:-1:-1;;;;;44369:16:0;;44365:48;;44394:19;;-1:-1:-1;;;44394:19:0;;;;;;;;;;;44365:48;44428:13;44424:44;;44450:18;;-1:-1:-1;;;44450:18:0;;;;;;;;;;;44424:44;-1:-1:-1;;;;;44819:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44878:49:0;;-1:-1:-1;;;;;44819:44:0;;;;;;;44878:49;;;-1:-1:-1;;;;;44819:44:0;;;;;;44878:49;;;;;;;;;;;;;;;;44944:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;44994:66:0;;;;-1:-1:-1;;;45044:15:0;44994:66;;;;;;;;;;44944:25;45141:23;;;45185:4;:23;;;;-1:-1:-1;;;;;;45193:13:0;;16609:19;:23;;45193:15;45181:641;;;45229:314;45260:38;;45285:12;;-1:-1:-1;;;;;45260:38:0;;;45277:1;;45260:38;;45277:1;;45260:38;45326:69;45365:1;45369:2;45373:14;;;;;;45389:5;45326:30;:69::i;:::-;45321:174;;45431:40;;-1:-1:-1;;;45431:40:0;;;;;;;;;;;45321:174;45538:3;45522:12;:19;;45229:314;;45624:12;45607:13;;:29;45603:43;;45638:8;;;45603:43;45181:641;;;45687:120;45718:40;;45743:14;;;;;-1:-1:-1;;;;;45718:40:0;;;45735:1;;45718:40;;45735:1;;45718:40;45802:3;45786:12;:19;;45687:120;;45181:641;-1:-1:-1;45836:13:0;:28;45886:60;42484:369;7993:1632;8124:7;;9058:66;9045:79;;9041:163;;;-1:-1:-1;9157:1:0;;-1:-1:-1;9161:30:0;9141:51;;9041:163;9218:1;:7;;9223:2;9218:7;;:18;;;;;9229:1;:7;;9234:2;9229:7;;9218:18;9214:102;;;-1:-1:-1;9269:1:0;;-1:-1:-1;9273:30:0;9253:51;;9214:102;9430:24;;;9413:14;9430:24;;;;;;;;;21412:25:1;;;21485:4;21473:17;;21453:18;;;21446:45;;;;21507:18;;;21500:34;;;21550:18;;;21543:34;;;9430:24:0;;21384:19:1;;9430:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9430:24:0;;-1:-1:-1;;9430:24:0;;;-1:-1:-1;;;;;;;9469:20:0;;9465:103;;9522:1;9526:29;9506:50;;;;;;;9465:103;9588:6;-1:-1:-1;9596:20:0;;-1:-1:-1;7993:1632:0;;;;;;;;:::o;7035:344::-;7149:7;;-1:-1:-1;;;;;7195:80:0;;7149:7;7302:25;7318:3;7303:18;;;7325:2;7302:25;:::i;:::-;7286:42;;7346:25;7357:4;7363:1;7366;7369;7346:10;:25::i;:::-;7339:32;;;;;;7035:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;3058:348::-;3110:8;3120:6;3174:3;3167:4;3159:6;3155:17;3151:27;3141:55;;3192:1;3189;3182:12;3141:55;-1:-1:-1;3215:20:1;;-1:-1:-1;;;;;3247:30:1;;3244:50;;;3290:1;3287;3280:12;3244:50;3327:4;3319:6;3315:17;3303:29;;3379:3;3372:4;3363:6;3355;3351:19;3347:30;3344:39;3341:59;;;3396:1;3393;3386:12;3411:411;3482:6;3490;3543:2;3531:9;3522:7;3518:23;3514:32;3511:52;;;3559:1;3556;3549:12;3511:52;3599:9;3586:23;-1:-1:-1;;;;;3624:6:1;3621:30;3618:50;;;3664:1;3661;3654:12;3618:50;3703:59;3754:7;3745:6;3734:9;3730:22;3703:59;:::i;:::-;3781:8;;3677:85;;-1:-1:-1;3411:411:1;-1:-1:-1;;;;3411:411:1:o;3827:127::-;3888:10;3883:3;3879:20;3876:1;3869:31;3919:4;3916:1;3909:15;3943:4;3940:1;3933:15;3959:275;4030:2;4024:9;4095:2;4076:13;;-1:-1:-1;;4072:27:1;4060:40;;-1:-1:-1;;;;;4115:34:1;;4151:22;;;4112:62;4109:88;;;4177:18;;:::i;:::-;4213:2;4206:22;3959:275;;-1:-1:-1;3959:275:1:o;4239:946::-;4323:6;4354:2;4397;4385:9;4376:7;4372:23;4368:32;4365:52;;;4413:1;4410;4403:12;4365:52;4453:9;4440:23;-1:-1:-1;;;;;4523:2:1;4515:6;4512:14;4509:34;;;4539:1;4536;4529:12;4509:34;4577:6;4566:9;4562:22;4552:32;;4622:7;4615:4;4611:2;4607:13;4603:27;4593:55;;4644:1;4641;4634:12;4593:55;4680:2;4667:16;4702:2;4698;4695:10;4692:36;;;4708:18;;:::i;:::-;4754:2;4751:1;4747:10;4737:20;;4777:28;4801:2;4797;4793:11;4777:28;:::i;:::-;4839:15;;;4909:11;;;4905:20;;;4870:12;;;;4937:19;;;4934:39;;;4969:1;4966;4959:12;4934:39;4993:11;;;;5013:142;5029:6;5024:3;5021:15;5013:142;;;5095:17;;5083:30;;5046:12;;;;5133;;;;5013:142;;;5174:5;4239:946;-1:-1:-1;;;;;;;;4239:946:1:o;5190:247::-;5249:6;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;5357:9;5344:23;5376:31;5401:5;5376:31;:::i;5442:160::-;5507:20;;5563:13;;5556:21;5546:32;;5536:60;;5592:1;5589;5582:12;5536:60;5442:160;;;:::o;5607:315::-;5672:6;5680;5733:2;5721:9;5712:7;5708:23;5704:32;5701:52;;;5749:1;5746;5739:12;5701:52;5788:9;5775:23;5807:31;5832:5;5807:31;:::i;:::-;5857:5;-1:-1:-1;5881:35:1;5912:2;5897:18;;5881:35;:::i;:::-;5871:45;;5607:315;;;;;:::o;5927:180::-;5983:6;6036:2;6024:9;6015:7;6011:23;6007:32;6004:52;;;6052:1;6049;6042:12;6004:52;6075:26;6091:9;6075:26;:::i;6112:545::-;6191:6;6199;6207;6260:2;6248:9;6239:7;6235:23;6231:32;6228:52;;;6276:1;6273;6266:12;6228:52;6315:9;6302:23;6334:31;6359:5;6334:31;:::i;:::-;6384:5;-1:-1:-1;6440:2:1;6425:18;;6412:32;-1:-1:-1;;;;;6456:30:1;;6453:50;;;6499:1;6496;6489:12;6453:50;6538:59;6589:7;6580:6;6569:9;6565:22;6538:59;:::i;:::-;6112:545;;6616:8;;-1:-1:-1;6512:85:1;;-1:-1:-1;;;;6112:545:1:o;6662:1108::-;6757:6;6765;6773;6781;6834:3;6822:9;6813:7;6809:23;6805:33;6802:53;;;6851:1;6848;6841:12;6802:53;6890:9;6877:23;6909:31;6934:5;6909:31;:::i;:::-;6959:5;-1:-1:-1;6983:2:1;7022:18;;;7009:32;7050:33;7009:32;7050:33;:::i;:::-;7102:7;-1:-1:-1;7156:2:1;7141:18;;7128:32;;-1:-1:-1;7211:2:1;7196:18;;7183:32;-1:-1:-1;;;;;7264:14:1;;;7261:34;;;7291:1;7288;7281:12;7261:34;7329:6;7318:9;7314:22;7304:32;;7374:7;7367:4;7363:2;7359:13;7355:27;7345:55;;7396:1;7393;7386:12;7345:55;7432:2;7419:16;7454:2;7450;7447:10;7444:36;;;7460:18;;:::i;:::-;7502:53;7545:2;7526:13;;-1:-1:-1;;7522:27:1;7518:36;;7502:53;:::i;:::-;7489:66;;7578:2;7571:5;7564:17;7618:7;7613:2;7608;7604;7600:11;7596:20;7593:33;7590:53;;;7639:1;7636;7629:12;7590:53;7694:2;7689;7685;7681:11;7676:2;7669:5;7665:14;7652:45;7738:1;7733:2;7728;7721:5;7717:14;7713:23;7706:34;;7759:5;7749:15;;;;;6662:1108;;;;;;;:::o;7775:478::-;7854:6;7862;7870;7923:2;7911:9;7902:7;7898:23;7894:32;7891:52;;;7939:1;7936;7929:12;7891:52;7975:9;7962:23;7952:33;;8036:2;8025:9;8021:18;8008:32;-1:-1:-1;;;;;8055:6:1;8052:30;8049:50;;;8095:1;8092;8085:12;8258:388;8326:6;8334;8387:2;8375:9;8366:7;8362:23;8358:32;8355:52;;;8403:1;8400;8393:12;8355:52;8442:9;8429:23;8461:31;8486:5;8461:31;:::i;:::-;8511:5;-1:-1:-1;8568:2:1;8553:18;;8540:32;8581:33;8540:32;8581:33;:::i;:::-;8633:7;8623:17;;;8258:388;;;;;:::o;8651:380::-;8730:1;8726:12;;;;8773;;;8794:61;;8848:4;8840:6;8836:17;8826:27;;8794:61;8901:2;8893:6;8890:14;8870:18;8867:38;8864:161;;;8947:10;8942:3;8938:20;8935:1;8928:31;8982:4;8979:1;8972:15;9010:4;9007:1;9000:15;8864:161;;8651:380;;;:::o;9036:356::-;9238:2;9220:21;;;9257:18;;;9250:30;9316:34;9311:2;9296:18;;9289:62;9383:2;9368:18;;9036:356::o;10650:127::-;10711:10;10706:3;10702:20;10699:1;10692:31;10742:4;10739:1;10732:15;10766:4;10763:1;10756:15;10782:251;10852:6;10905:2;10893:9;10884:7;10880:23;10876:32;10873:52;;;10921:1;10918;10911:12;10873:52;10953:9;10947:16;10972:31;10997:5;10972:31;:::i;11746:127::-;11807:10;11802:3;11798:20;11795:1;11788:31;11838:4;11835:1;11828:15;11862:4;11859:1;11852:15;11878:135;11917:3;-1:-1:-1;;11938:17:1;;11935:43;;;11958:18;;:::i;:::-;-1:-1:-1;12005:1:1;11994:13;;11878:135::o;12018:128::-;12058:3;12089:1;12085:6;12082:1;12079:13;12076:39;;;12095:18;;:::i;:::-;-1:-1:-1;12131:9:1;;12018:128::o;13561:125::-;13601:4;13629:1;13626;13623:8;13620:34;;;13634:18;;:::i;:::-;-1:-1:-1;13671:9:1;;13561:125::o;13691:346::-;13893:2;13875:21;;;13932:2;13912:18;;;13905:30;-1:-1:-1;;;13966:2:1;13951:18;;13944:52;14028:2;14013:18;;13691:346::o;14042:168::-;14082:7;14148:1;14144;14140:6;14136:14;14133:1;14130:21;14125:1;14118:9;14111:17;14107:45;14104:71;;;14155:18;;:::i;:::-;-1:-1:-1;14195:9:1;;14042:168::o;15107:1527::-;15331:3;15369:6;15363:13;15395:4;15408:51;15452:6;15447:3;15442:2;15434:6;15430:15;15408:51;:::i;:::-;15522:13;;15481:16;;;;15544:55;15522:13;15481:16;15566:15;;;15544:55;:::i;:::-;15688:13;;15621:20;;;15661:1;;15748;15770:18;;;;15823;;;;15850:93;;15928:4;15918:8;15914:19;15902:31;;15850:93;15991:2;15981:8;15978:16;15958:18;15955:40;15952:167;;;-1:-1:-1;;;16018:33:1;;16074:4;16071:1;16064:15;16104:4;16025:3;16092:17;15952:167;16135:18;16162:110;;;;16286:1;16281:328;;;;16128:481;;16162:110;-1:-1:-1;;16197:24:1;;16183:39;;16242:20;;;;-1:-1:-1;16162:110:1;;16281:328;15054:1;15047:14;;;15091:4;15078:18;;16376:1;16390:169;16404:8;16401:1;16398:15;16390:169;;;16486:14;;16471:13;;;16464:37;16529:16;;;;16421:10;;16390:169;;;16394:3;;16590:8;16583:5;16579:20;16572:27;;16128:481;-1:-1:-1;16625:3:1;;15107:1527;-1:-1:-1;;;;;;;;;;;15107:1527:1:o;18412:489::-;-1:-1:-1;;;;;18681:15:1;;;18663:34;;18733:15;;18728:2;18713:18;;18706:43;18780:2;18765:18;;18758:34;;;18828:3;18823:2;18808:18;;18801:31;;;18606:4;;18849:46;;18875:19;;18867:6;18849:46;:::i;:::-;18841:54;18412:489;-1:-1:-1;;;;;;18412:489:1:o;18906:249::-;18975:6;19028:2;19016:9;19007:7;19003:23;18999:32;18996:52;;;19044:1;19041;19034:12;18996:52;19076:9;19070:16;19095:30;19119:5;19095:30;:::i;19160:127::-;19221:10;19216:3;19212:20;19209:1;19202:31;19252:4;19249:1;19242:15;19276:4;19273:1;19266:15;19292:120;19332:1;19358;19348:35;;19363:18;;:::i;:::-;-1:-1:-1;19397:9:1;;19292:120::o;19417:112::-;19449:1;19475;19465:35;;19480:18;;:::i;:::-;-1:-1:-1;19514:9:1;;19417:112::o;19534:127::-;19595:10;19590:3;19586:20;19583:1;19576:31;19626:4;19623:1;19616:15;19650:4;19647:1;19640:15
Swarm Source
ipfs://4139bb5cd710f21f52c7b91cb720b9253ac57fbcf42411eecc558e9283b59f05
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.