ERC-721
NFT
Overview
Max Total Supply
167 MSL
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MSLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MinterSuite
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-07 */ // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/MinterSuite.sol pragma solidity ^0.8.9; /* _ _ _ _ _ ___ ____ ____ ____ _ _ _ ___ ____ |\/| | |\ | | |___ |__/ [__ | | | | |___ | | | | \| | |___ | \ ___] |__| | | |___ Minter Suite / 2021 / V2.0 */ contract MinterSuite is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant LIFETIME = 10; uint256 public constant RENEWAL = 512; uint256 public constant MAX = LIFETIME + RENEWAL; uint256 public constant RENEWAL_PRICE = 0.3 ether; uint256 public constant DISCOUNT_RENEWAL_PRICE = 0.24 ether; uint256 public constant RENEWAL_FEE = 0.1 ether; uint256 public constant LIFETIME_PRICE = 0.8 ether; uint256 public constant PER_MINT = 1; string private _tokenBaseURI = "https://minterbot.art/meta/"; address private constant _owner2 = 0x32bA63cEBd73934a9139c67aa2B6cb7Ae1Aa3D49; mapping(address => bool) public discountList; mapping(uint256 => bool) public renewalList; mapping(address => uint256) public discountListPurchases; mapping(uint256 => uint256) public licenseExpiry; uint256 public lifetimeAmountMinted; uint256 public renewalAmountMinted; uint256 public discountPurchaseLimit = 1; bool public saleLive; constructor() ERC721("Minter Suite License", "MSL") { } modifier onlyEOA() { require(msg.sender == tx.origin, "CONTRACT_MINTING_NOT_PERMITTED"); _; } function _isExpired(uint256 tokenId) internal view returns (bool) { return block.timestamp > licenseExpiry[tokenId]; } function isExpired(uint256 tokenId) external view returns (bool) { require(_exists(tokenId), "INVALID_TOKEN"); require(renewalList[tokenId], "NOT_RENEWAL"); return _isExpired(tokenId); } function getExpiryTime(uint256 tokenId) external view returns (uint256) { require(_exists(tokenId), "INVALID_TOKEN"); require(renewalList[tokenId], "NOT_RENEWAL"); return licenseExpiry[tokenId]; } function addToDiscounList(address[] calldata wallets) external onlyOwner { for (uint256 i = 0; i < wallets.length; i++) { address wallet = wallets[i]; require(wallet != address(0), "NULL_ADDRESS"); require(discountList[wallet] != true, "DUPLICATE_WALLET"); discountList[wallet] = true; } } function removeFromDiscountList(address[] calldata wallets) external onlyOwner { for (uint256 i = 0; i < wallets.length; i++) { address wallet = wallets[i]; require(wallet != address(0), "NULL_ADDRESS"); discountList[wallet] = false; } } function renew(uint256 tokenId) external payable onlyEOA { require(_exists(tokenId), "INVALID_TOKEN"); require(renewalList[tokenId], "NOT_RENEWAL"); require(RENEWAL_FEE <= msg.value, "INSUFFICIENT_ETH"); if (_isExpired(tokenId)) { licenseExpiry[tokenId] = block.timestamp + 30 days; } else { licenseExpiry[tokenId] += 30 days; } } function buyDiscountedRenewal() external payable onlyEOA { require(saleLive, "SALE_CLOSED"); require(discountList[msg.sender], "NOT_PERMITTED"); require(totalSupply() < MAX, "OUT_OF_STOCK"); require(renewalAmountMinted + PER_MINT <= RENEWAL, "EXCEED_RENEWAL"); require(discountListPurchases[msg.sender] + PER_MINT <= discountPurchaseLimit, "EXCEED_DISCOUNT_LIMIT"); require(DISCOUNT_RENEWAL_PRICE * PER_MINT <= msg.value, "INSUFFICIENT_ETH"); renewalAmountMinted++; discountListPurchases[msg.sender]++; uint256 tokenId = totalSupply() + 1; licenseExpiry[tokenId] = block.timestamp + 30 days; renewalList[tokenId] = true; _safeMint(msg.sender, tokenId); } function buyRenewal() external payable onlyEOA { require(saleLive, "SALE_CLOSED"); require(totalSupply() < MAX, "OUT_OF_STOCK"); require(renewalAmountMinted + PER_MINT <= RENEWAL, "EXCEED_RENEWAL"); require(RENEWAL_PRICE * PER_MINT <= msg.value, "INSUFFICIENT_ETH"); renewalAmountMinted++; uint256 tokenId = totalSupply() + 1; licenseExpiry[tokenId] = block.timestamp + 30 days; renewalList[tokenId] = true; _safeMint(msg.sender, tokenId); } function buyLifetime() external payable onlyEOA { require(saleLive, "SALE_CLOSED"); require(totalSupply() < MAX, "OUT_OF_STOCK"); require(lifetimeAmountMinted + PER_MINT <= LIFETIME, "EXCEED_LIFETIME"); require(LIFETIME_PRICE * PER_MINT <= msg.value, "INSUFFICIENT_ETH"); lifetimeAmountMinted++; _safeMint(msg.sender, totalSupply() + 1); } function withdraw() external onlyOwner { payable(_owner2).transfer(address(this).balance / 2); payable(msg.sender).transfer(address(this).balance); } function isDiscounted(address addr) external view returns (bool) { require(addr != address(0), "NULL_ADDRESS"); return discountList[addr]; } function hasDiscountUsed(address addr) external view returns (uint256) { require(addr != address(0), "NULL_ADDRESS"); require(discountList[addr], "NOT_PERMITTED"); return discountListPurchases[addr]; } function toggleSaleLiveStatus() external onlyOwner { saleLive = !saleLive; } function setBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); return string(abi.encodePacked(_tokenBaseURI, tokenId.toString())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISCOUNT_RENEWAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIFETIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIFETIME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RENEWAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RENEWAL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RENEWAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"addToDiscounList","outputs":[],"stateMutability":"nonpayable","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":"buyDiscountedRenewal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyLifetime","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyRenewal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"discountList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"discountListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getExpiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasDiscountUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDiscounted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"licenseExpiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lifetimeAmountMinted","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":"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":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"removeFromDiscountList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renewalAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"renewalList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleLiveStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601b60808190527f68747470733a2f2f6d696e746572626f742e6172742f6d6574612f000000000060a09081526200004091600b919062000143565b5060016012553480156200005357600080fd5b50604080518082018252601481527f4d696e746572205375697465204c6963656e73650000000000000000000000006020808301918252835180850190945260038452621354d360ea1b908401528151919291620000b49160009162000143565b508051620000ca90600190602084019062000143565b505050620000e7620000e1620000ed60201b60201c565b620000f1565b62000226565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620001e9565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b600181811c90821680620001fe57607f821691505b602082108114156200022057634e487b7160e01b600052602260045260246000fd5b50919050565b612bed80620002366000396000f3fe6080604052600436106102935760003560e01c8063871a3c831161015a578063cecbe80b116100c1578063dfa860be1161007a578063dfa860be14610786578063e081b781146107a6578063e985e9c5146107c0578063efeeeba814610809578063f2fde38b14610811578063f40ecfea1461083157600080fd5b8063cecbe80b146106d7578063d3c576d8146106ec578063d49d518114610701578063d831a7c614610716578063d9548e5314610736578063dc0b2ff41461075657600080fd5b8063beec3bc311610113578063beec3bc314610619578063c555af681461062f578063c637b6e51461065f578063c643dd6714610674578063c765f11a1461068a578063c87b56dd146106b757600080fd5b8063871a3c83146105825780638da5cb5b1461059e57806395d89b41146105bc578063a22cb465146105d1578063b6c602a7146105f1578063b88d4fde146105f957600080fd5b80633ccfd60b116101fe5780635baa7509116101b75780635baa7509146104f65780636352211e14610509578063708e9cf81461052957806370a0823114610531578063715018a614610551578063840079321461056657600080fd5b80633ccfd60b1461044b57806342842e0e1461046057806345a8e44d1461048057806347d4672c146104965780634f6ccce7146104b657806355f804b3146104d657600080fd5b806318160ddd1161025057806318160ddd146103a457806323b872dd146103b95780632dbb71e3146103d95780632f745c59146103f9578063305afabd146104195780633b19b1f51461043557600080fd5b806301ffc9a71461029857806306fdde03146102cd57806307b7c75f146102ef578063081812fc1461032a578063095ea7b314610362578063109cb6ec14610384575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612405565b61084d565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610878565b6040516102c49190612481565b3480156102fb57600080fd5b5061031c61030a366004612494565b600f6020526000908152604090205481565b6040519081526020016102c4565b34801561033657600080fd5b5061034a610345366004612494565b61090a565b6040516001600160a01b0390911681526020016102c4565b34801561036e57600080fd5b5061038261037d3660046124c9565b610997565b005b34801561039057600080fd5b5061038261039f3660046124f3565b610aad565b3480156103b057600080fd5b5060085461031c565b3480156103c557600080fd5b506103826103d4366004612568565b610bc8565b3480156103e557600080fd5b506103826103f43660046124f3565b610bf9565b34801561040557600080fd5b5061031c6104143660046124c9565b610cb0565b34801561042557600080fd5b5061031c670b1a2bc2ec50000081565b34801561044157600080fd5b5061031c60115481565b34801561045757600080fd5b50610382610d46565b34801561046c57600080fd5b5061038261047b366004612568565b610deb565b34801561048c57600080fd5b5061031c61020081565b3480156104a257600080fd5b5061031c6104b13660046125a4565b610e06565b3480156104c257600080fd5b5061031c6104d1366004612494565b610ea2565b3480156104e257600080fd5b506103826104f13660046125bf565b610f35565b610382610504366004612494565b610f6b565b34801561051557600080fd5b5061034a610524366004612494565b611063565b6103826110da565b34801561053d57600080fd5b5061031c61054c3660046125a4565b6111ff565b34801561055d57600080fd5b50610382611286565b34801561057257600080fd5b5061031c670429d069189e000081565b34801561058e57600080fd5b5061031c670354a6ba7a18000081565b3480156105aa57600080fd5b50600a546001600160a01b031661034a565b3480156105c857600080fd5b506102e26112ba565b3480156105dd57600080fd5b506103826105ec36600461261f565b6112c9565b61038261138e565b34801561060557600080fd5b50610382610614366004612671565b6115bc565b34801561062557600080fd5b5061031c60125481565b34801561063b57600080fd5b506102b861064a366004612494565b600d6020526000908152604090205460ff1681565b34801561066b57600080fd5b5061031c600181565b34801561068057600080fd5b5061031c60105481565b34801561069657600080fd5b5061031c6106a53660046125a4565b600e6020526000908152604090205481565b3480156106c357600080fd5b506102e26106d2366004612494565b6115f4565b3480156106e357600080fd5b5061038261167d565b3480156106f857600080fd5b5061031c600a81565b34801561070d57600080fd5b5061031c6116bb565b34801561072257600080fd5b5061031c610731366004612494565b6116cb565b34801561074257600080fd5b506102b8610751366004612494565b611733565b34801561076257600080fd5b506102b86107713660046125a4565b600c6020526000908152604090205460ff1681565b34801561079257600080fd5b506102b86107a13660046125a4565b61179e565b3480156107b257600080fd5b506013546102b89060ff1681565b3480156107cc57600080fd5b506102b86107db36600461274d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103826117e5565b34801561081d57600080fd5b5061038261082c3660046125a4565b6118e6565b34801561083d57600080fd5b5061031c67016345785d8a000081565b60006001600160e01b0319821663780e9d6360e01b148061087257506108728261197e565b92915050565b60606000805461088790612780565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390612780565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000610915826119ce565b61097b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a282611063565b9050806001600160a01b0316836001600160a01b03161415610a105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610972565b336001600160a01b0382161480610a2c5750610a2c81336107db565b610a9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610972565b610aa883836119eb565b505050565b600a546001600160a01b03163314610ad75760405162461bcd60e51b8152600401610972906127bb565b60005b81811015610aa8576000838383818110610af657610af66127f0565b9050602002016020810190610b0b91906125a4565b90506001600160a01b038116610b335760405162461bcd60e51b815260040161097290612806565b6001600160a01b0381166000908152600c602052604090205460ff16151560011415610b945760405162461bcd60e51b815260206004820152601060248201526f111554131250d0551157d5d05313115560821b6044820152606401610972565b6001600160a01b03166000908152600c60205260409020805460ff1916600117905580610bc081612842565b915050610ada565b610bd23382611a59565b610bee5760405162461bcd60e51b81526004016109729061285d565b610aa8838383611b43565b600a546001600160a01b03163314610c235760405162461bcd60e51b8152600401610972906127bb565b60005b81811015610aa8576000838383818110610c4257610c426127f0565b9050602002016020810190610c5791906125a4565b90506001600160a01b038116610c7f5760405162461bcd60e51b815260040161097290612806565b6001600160a01b03166000908152600c60205260409020805460ff1916905580610ca881612842565b915050610c26565b6000610cbb836111ff565b8210610d1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610972565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d705760405162461bcd60e51b8152600401610972906127bb565b7332ba63cebd73934a9139c67aa2b6cb7ae1aa3d496108fc610d936002476128c4565b6040518115909202916000818181858888f19350505050158015610dbb573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610de8573d6000803e3d6000fd5b50565b610aa8838383604051806020016040528060008152506115bc565b60006001600160a01b038216610e2e5760405162461bcd60e51b815260040161097290612806565b6001600160a01b0382166000908152600c602052604090205460ff16610e865760405162461bcd60e51b815260206004820152600d60248201526c1393d517d41154935255151151609a1b6044820152606401610972565b506001600160a01b03166000908152600e602052604090205490565b6000610ead60085490565b8210610f105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610972565b60088281548110610f2357610f236127f0565b90600052602060002001549050919050565b600a546001600160a01b03163314610f5f5760405162461bcd60e51b8152600401610972906127bb565b610aa8600b8383612356565b333214610f8a5760405162461bcd60e51b8152600401610972906128d8565b610f93816119ce565b610faf5760405162461bcd60e51b81526004016109729061290f565b6000818152600d602052604090205460ff16610fdd5760405162461bcd60e51b815260040161097290612936565b3467016345785d8a000011156110055760405162461bcd60e51b81526004016109729061295b565b6000818152600f602052604090205442111561103a576110284262278d00612985565b6000828152600f602052604090205550565b6000818152600f60205260408120805462278d00929061105b908490612985565b909155505050565b6000818152600260205260408120546001600160a01b0316806108725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610972565b3332146110f95760405162461bcd60e51b8152600401610972906128d8565b60135460ff1661111b5760405162461bcd60e51b81526004016109729061299d565b611128610200600a612985565b600854106111485760405162461bcd60e51b8152600401610972906129c2565b600a60016010546111599190612985565b11156111995760405162461bcd60e51b815260206004820152600f60248201526e4558434545445f4c49464554494d4560881b6044820152606401610972565b346111ad6001670b1a2bc2ec5000006129e8565b11156111cb5760405162461bcd60e51b81526004016109729061295b565b601080549060006111db83612842565b91905055506111fd336111ed60085490565b6111f8906001612985565b611cee565b565b60006001600160a01b03821661126a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610972565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b05760405162461bcd60e51b8152600401610972906127bb565b6111fd6000611d0c565b60606001805461088790612780565b6001600160a01b0382163314156113225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610972565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3332146113ad5760405162461bcd60e51b8152600401610972906128d8565b60135460ff166113cf5760405162461bcd60e51b81526004016109729061299d565b336000908152600c602052604090205460ff1661141e5760405162461bcd60e51b815260206004820152600d60248201526c1393d517d41154935255151151609a1b6044820152606401610972565b61142b610200600a612985565b6008541061144b5760405162461bcd60e51b8152600401610972906129c2565b610200600160115461145d9190612985565b111561149c5760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d491539155d05360921b6044820152606401610972565b601254336000908152600e60205260409020546114bb90600190612985565b11156115015760405162461bcd60e51b8152602060048201526015602482015274115610d1515117d11254d0d3d5539517d312535255605a1b6044820152606401610972565b346115156001670354a6ba7a1800006129e8565b11156115335760405162461bcd60e51b81526004016109729061295b565b6011805490600061154383612842565b9091555050336000908152600e6020526040812080549161156383612842565b9190505550600061157360085490565b61157e906001612985565b905061158d4262278d00612985565b6000828152600f6020908152604080832093909355600d905220805460ff19166001179055610de83382611cee565b6115c63383611a59565b6115e25760405162461bcd60e51b81526004016109729061285d565b6115ee84848484611d5e565b50505050565b60606115ff826119ce565b61164b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610972565b600b61165683611d91565b604051602001611667929190612a23565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116a75760405162461bcd60e51b8152600401610972906127bb565b6013805460ff19811660ff90911615179055565b6116c8610200600a612985565b81565b60006116d6826119ce565b6116f25760405162461bcd60e51b81526004016109729061290f565b6000828152600d602052604090205460ff166117205760405162461bcd60e51b815260040161097290612936565b506000908152600f602052604090205490565b600061173e826119ce565b61175a5760405162461bcd60e51b81526004016109729061290f565b6000828152600d602052604090205460ff166117885760405162461bcd60e51b815260040161097290612936565b6000828152600f60205260409020544211610872565b60006001600160a01b0382166117c65760405162461bcd60e51b815260040161097290612806565b506001600160a01b03166000908152600c602052604090205460ff1690565b3332146118045760405162461bcd60e51b8152600401610972906128d8565b60135460ff166118265760405162461bcd60e51b81526004016109729061299d565b611833610200600a612985565b600854106118535760405162461bcd60e51b8152600401610972906129c2565b61020060016011546118659190612985565b11156118a45760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d491539155d05360921b6044820152606401610972565b346118b86001670429d069189e00006129e8565b11156118d65760405162461bcd60e51b81526004016109729061295b565b6011805490600061156383612842565b600a546001600160a01b031633146119105760405162461bcd60e51b8152600401610972906127bb565b6001600160a01b0381166119755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610972565b610de881611d0c565b60006001600160e01b031982166380ac58cd60e01b14806119af57506001600160e01b03198216635b5e139f60e01b145b8061087257506301ffc9a760e01b6001600160e01b0319831614610872565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2082611063565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a64826119ce565b611ac55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610972565b6000611ad083611063565b9050806001600160a01b0316846001600160a01b03161480611b0b5750836001600160a01b0316611b008461090a565b6001600160a01b0316145b80611b3b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5682611063565b6001600160a01b031614611bbe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610972565b6001600160a01b038216611c205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610972565b611c2b838383611e8f565b611c366000826119eb565b6001600160a01b0383166000908152600360205260408120805460019290611c5f908490612aca565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c8d908490612985565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d08828260405180602001604052806000815250611f47565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d69848484611b43565b611d7584848484611f7a565b6115ee5760405162461bcd60e51b815260040161097290612ae1565b606081611db55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddf5780611dc981612842565b9150611dd89050600a836128c4565b9150611db9565b60008167ffffffffffffffff811115611dfa57611dfa61265b565b6040519080825280601f01601f191660200182016040528015611e24576020820181803683370190505b5090505b8415611b3b57611e39600183612aca565b9150611e46600a86612b33565b611e51906030612985565b60f81b818381518110611e6657611e666127f0565b60200101906001600160f81b031916908160001a905350611e88600a866128c4565b9450611e28565b6001600160a01b038316611eea57611ee581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0d565b816001600160a01b0316836001600160a01b031614611f0d57611f0d8382612087565b6001600160a01b038216611f2457610aa881612124565b826001600160a01b0316826001600160a01b031614610aa857610aa882826121d3565b611f518383612217565b611f5e6000848484611f7a565b610aa85760405162461bcd60e51b815260040161097290612ae1565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612b47565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f1916820190925261200591810190612b84565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b815260040161097290612ae1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3b565b506001949350505050565b60006001612094846111ff565b61209e9190612aca565b6000838152600760205260409020549091508082146120f1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213690600190612aca565b6000838152600960205260408120546008805493945090928490811061215e5761215e6127f0565b90600052602060002001549050806008838154811061217f5761217f6127f0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b7576121b7612ba1565b6001900381819060005260206000200160009055905550505050565b60006121de836111ff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610972565b612276816119ce565b156122c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610972565b6122cf60008383611e8f565b6001600160a01b03821660009081526003602052604081208054600192906122f8908490612985565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236290612780565b90600052602060002090601f01602090048101928261238457600085556123ca565b82601f1061239d5782800160ff198235161785556123ca565b828001600101855582156123ca579182015b828111156123ca5782358255916020019190600101906123af565b506123d69291506123da565b5090565b5b808211156123d657600081556001016123db565b6001600160e01b031981168114610de857600080fd5b60006020828403121561241757600080fd5b8135612422816123ef565b9392505050565b60005b8381101561244457818101518382015260200161242c565b838111156115ee5750506000910152565b6000815180845261246d816020860160208601612429565b601f01601f19169290920160200192915050565b6020815260006124226020830184612455565b6000602082840312156124a657600080fd5b5035919050565b80356001600160a01b03811681146124c457600080fd5b919050565b600080604083850312156124dc57600080fd5b6124e5836124ad565b946020939093013593505050565b6000806020838503121561250657600080fd5b823567ffffffffffffffff8082111561251e57600080fd5b818501915085601f83011261253257600080fd5b81358181111561254157600080fd5b8660208260051b850101111561255657600080fd5b60209290920196919550909350505050565b60008060006060848603121561257d57600080fd5b612586846124ad565b9250612594602085016124ad565b9150604084013590509250925092565b6000602082840312156125b657600080fd5b612422826124ad565b600080602083850312156125d257600080fd5b823567ffffffffffffffff808211156125ea57600080fd5b818501915085601f8301126125fe57600080fd5b81358181111561260d57600080fd5b86602082850101111561255657600080fd5b6000806040838503121561263257600080fd5b61263b836124ad565b91506020830135801515811461265057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561268757600080fd5b612690856124ad565b935061269e602086016124ad565b925060408501359150606085013567ffffffffffffffff808211156126c257600080fd5b818701915087601f8301126126d657600080fd5b8135818111156126e8576126e861265b565b604051601f8201601f19908116603f011681019083821181831017156127105761271061265b565b816040528281528a602084870101111561272957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561276057600080fd5b612769836124ad565b9150612777602084016124ad565b90509250929050565b600181811c9082168061279457607f821691505b602082108114156127b557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156128565761285661282c565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128d3576128d36128ae565b500490565b6020808252601e908201527f434f4e54524143545f4d494e54494e475f4e4f545f5045524d49545445440000604082015260600190565b6020808252600d908201526c24a72b20a624a22faa27a5a2a760991b604082015260600190565b6020808252600b908201526a1393d517d491539155d05360aa1b604082015260600190565b60208082526010908201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604082015260600190565b600082198211156129985761299861282c565b500190565b6020808252600b908201526a14d0531157d0d313d4d15160aa1b604082015260600190565b6020808252600c908201526b4f55545f4f465f53544f434b60a01b604082015260600190565b6000816000190483118215151615612a0257612a0261282c565b500290565b60008151612a19818560208601612429565b9290920192915050565b600080845481600182811c915080831680612a3f57607f831692505b6020808410821415612a5f57634e487b7160e01b86526022600452602486fd5b818015612a735760018114612a8457612ab1565b60ff19861689528489019650612ab1565b60008b81526020902060005b86811015612aa95781548b820152908501908301612a90565b505084890196505b505050505050612ac18185612a07565b95945050505050565b600082821015612adc57612adc61282c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b4257612b426128ae565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7a90830184612455565b9695505050505050565b600060208284031215612b9657600080fd5b8151612422816123ef565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201a638032c116af6377a9f01730316f8a6f4153b1b19b22377b5f03eee9cf787264736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102935760003560e01c8063871a3c831161015a578063cecbe80b116100c1578063dfa860be1161007a578063dfa860be14610786578063e081b781146107a6578063e985e9c5146107c0578063efeeeba814610809578063f2fde38b14610811578063f40ecfea1461083157600080fd5b8063cecbe80b146106d7578063d3c576d8146106ec578063d49d518114610701578063d831a7c614610716578063d9548e5314610736578063dc0b2ff41461075657600080fd5b8063beec3bc311610113578063beec3bc314610619578063c555af681461062f578063c637b6e51461065f578063c643dd6714610674578063c765f11a1461068a578063c87b56dd146106b757600080fd5b8063871a3c83146105825780638da5cb5b1461059e57806395d89b41146105bc578063a22cb465146105d1578063b6c602a7146105f1578063b88d4fde146105f957600080fd5b80633ccfd60b116101fe5780635baa7509116101b75780635baa7509146104f65780636352211e14610509578063708e9cf81461052957806370a0823114610531578063715018a614610551578063840079321461056657600080fd5b80633ccfd60b1461044b57806342842e0e1461046057806345a8e44d1461048057806347d4672c146104965780634f6ccce7146104b657806355f804b3146104d657600080fd5b806318160ddd1161025057806318160ddd146103a457806323b872dd146103b95780632dbb71e3146103d95780632f745c59146103f9578063305afabd146104195780633b19b1f51461043557600080fd5b806301ffc9a71461029857806306fdde03146102cd57806307b7c75f146102ef578063081812fc1461032a578063095ea7b314610362578063109cb6ec14610384575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612405565b61084d565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610878565b6040516102c49190612481565b3480156102fb57600080fd5b5061031c61030a366004612494565b600f6020526000908152604090205481565b6040519081526020016102c4565b34801561033657600080fd5b5061034a610345366004612494565b61090a565b6040516001600160a01b0390911681526020016102c4565b34801561036e57600080fd5b5061038261037d3660046124c9565b610997565b005b34801561039057600080fd5b5061038261039f3660046124f3565b610aad565b3480156103b057600080fd5b5060085461031c565b3480156103c557600080fd5b506103826103d4366004612568565b610bc8565b3480156103e557600080fd5b506103826103f43660046124f3565b610bf9565b34801561040557600080fd5b5061031c6104143660046124c9565b610cb0565b34801561042557600080fd5b5061031c670b1a2bc2ec50000081565b34801561044157600080fd5b5061031c60115481565b34801561045757600080fd5b50610382610d46565b34801561046c57600080fd5b5061038261047b366004612568565b610deb565b34801561048c57600080fd5b5061031c61020081565b3480156104a257600080fd5b5061031c6104b13660046125a4565b610e06565b3480156104c257600080fd5b5061031c6104d1366004612494565b610ea2565b3480156104e257600080fd5b506103826104f13660046125bf565b610f35565b610382610504366004612494565b610f6b565b34801561051557600080fd5b5061034a610524366004612494565b611063565b6103826110da565b34801561053d57600080fd5b5061031c61054c3660046125a4565b6111ff565b34801561055d57600080fd5b50610382611286565b34801561057257600080fd5b5061031c670429d069189e000081565b34801561058e57600080fd5b5061031c670354a6ba7a18000081565b3480156105aa57600080fd5b50600a546001600160a01b031661034a565b3480156105c857600080fd5b506102e26112ba565b3480156105dd57600080fd5b506103826105ec36600461261f565b6112c9565b61038261138e565b34801561060557600080fd5b50610382610614366004612671565b6115bc565b34801561062557600080fd5b5061031c60125481565b34801561063b57600080fd5b506102b861064a366004612494565b600d6020526000908152604090205460ff1681565b34801561066b57600080fd5b5061031c600181565b34801561068057600080fd5b5061031c60105481565b34801561069657600080fd5b5061031c6106a53660046125a4565b600e6020526000908152604090205481565b3480156106c357600080fd5b506102e26106d2366004612494565b6115f4565b3480156106e357600080fd5b5061038261167d565b3480156106f857600080fd5b5061031c600a81565b34801561070d57600080fd5b5061031c6116bb565b34801561072257600080fd5b5061031c610731366004612494565b6116cb565b34801561074257600080fd5b506102b8610751366004612494565b611733565b34801561076257600080fd5b506102b86107713660046125a4565b600c6020526000908152604090205460ff1681565b34801561079257600080fd5b506102b86107a13660046125a4565b61179e565b3480156107b257600080fd5b506013546102b89060ff1681565b3480156107cc57600080fd5b506102b86107db36600461274d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103826117e5565b34801561081d57600080fd5b5061038261082c3660046125a4565b6118e6565b34801561083d57600080fd5b5061031c67016345785d8a000081565b60006001600160e01b0319821663780e9d6360e01b148061087257506108728261197e565b92915050565b60606000805461088790612780565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390612780565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000610915826119ce565b61097b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a282611063565b9050806001600160a01b0316836001600160a01b03161415610a105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610972565b336001600160a01b0382161480610a2c5750610a2c81336107db565b610a9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610972565b610aa883836119eb565b505050565b600a546001600160a01b03163314610ad75760405162461bcd60e51b8152600401610972906127bb565b60005b81811015610aa8576000838383818110610af657610af66127f0565b9050602002016020810190610b0b91906125a4565b90506001600160a01b038116610b335760405162461bcd60e51b815260040161097290612806565b6001600160a01b0381166000908152600c602052604090205460ff16151560011415610b945760405162461bcd60e51b815260206004820152601060248201526f111554131250d0551157d5d05313115560821b6044820152606401610972565b6001600160a01b03166000908152600c60205260409020805460ff1916600117905580610bc081612842565b915050610ada565b610bd23382611a59565b610bee5760405162461bcd60e51b81526004016109729061285d565b610aa8838383611b43565b600a546001600160a01b03163314610c235760405162461bcd60e51b8152600401610972906127bb565b60005b81811015610aa8576000838383818110610c4257610c426127f0565b9050602002016020810190610c5791906125a4565b90506001600160a01b038116610c7f5760405162461bcd60e51b815260040161097290612806565b6001600160a01b03166000908152600c60205260409020805460ff1916905580610ca881612842565b915050610c26565b6000610cbb836111ff565b8210610d1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610972565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d705760405162461bcd60e51b8152600401610972906127bb565b7332ba63cebd73934a9139c67aa2b6cb7ae1aa3d496108fc610d936002476128c4565b6040518115909202916000818181858888f19350505050158015610dbb573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610de8573d6000803e3d6000fd5b50565b610aa8838383604051806020016040528060008152506115bc565b60006001600160a01b038216610e2e5760405162461bcd60e51b815260040161097290612806565b6001600160a01b0382166000908152600c602052604090205460ff16610e865760405162461bcd60e51b815260206004820152600d60248201526c1393d517d41154935255151151609a1b6044820152606401610972565b506001600160a01b03166000908152600e602052604090205490565b6000610ead60085490565b8210610f105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610972565b60088281548110610f2357610f236127f0565b90600052602060002001549050919050565b600a546001600160a01b03163314610f5f5760405162461bcd60e51b8152600401610972906127bb565b610aa8600b8383612356565b333214610f8a5760405162461bcd60e51b8152600401610972906128d8565b610f93816119ce565b610faf5760405162461bcd60e51b81526004016109729061290f565b6000818152600d602052604090205460ff16610fdd5760405162461bcd60e51b815260040161097290612936565b3467016345785d8a000011156110055760405162461bcd60e51b81526004016109729061295b565b6000818152600f602052604090205442111561103a576110284262278d00612985565b6000828152600f602052604090205550565b6000818152600f60205260408120805462278d00929061105b908490612985565b909155505050565b6000818152600260205260408120546001600160a01b0316806108725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610972565b3332146110f95760405162461bcd60e51b8152600401610972906128d8565b60135460ff1661111b5760405162461bcd60e51b81526004016109729061299d565b611128610200600a612985565b600854106111485760405162461bcd60e51b8152600401610972906129c2565b600a60016010546111599190612985565b11156111995760405162461bcd60e51b815260206004820152600f60248201526e4558434545445f4c49464554494d4560881b6044820152606401610972565b346111ad6001670b1a2bc2ec5000006129e8565b11156111cb5760405162461bcd60e51b81526004016109729061295b565b601080549060006111db83612842565b91905055506111fd336111ed60085490565b6111f8906001612985565b611cee565b565b60006001600160a01b03821661126a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610972565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b05760405162461bcd60e51b8152600401610972906127bb565b6111fd6000611d0c565b60606001805461088790612780565b6001600160a01b0382163314156113225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610972565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3332146113ad5760405162461bcd60e51b8152600401610972906128d8565b60135460ff166113cf5760405162461bcd60e51b81526004016109729061299d565b336000908152600c602052604090205460ff1661141e5760405162461bcd60e51b815260206004820152600d60248201526c1393d517d41154935255151151609a1b6044820152606401610972565b61142b610200600a612985565b6008541061144b5760405162461bcd60e51b8152600401610972906129c2565b610200600160115461145d9190612985565b111561149c5760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d491539155d05360921b6044820152606401610972565b601254336000908152600e60205260409020546114bb90600190612985565b11156115015760405162461bcd60e51b8152602060048201526015602482015274115610d1515117d11254d0d3d5539517d312535255605a1b6044820152606401610972565b346115156001670354a6ba7a1800006129e8565b11156115335760405162461bcd60e51b81526004016109729061295b565b6011805490600061154383612842565b9091555050336000908152600e6020526040812080549161156383612842565b9190505550600061157360085490565b61157e906001612985565b905061158d4262278d00612985565b6000828152600f6020908152604080832093909355600d905220805460ff19166001179055610de83382611cee565b6115c63383611a59565b6115e25760405162461bcd60e51b81526004016109729061285d565b6115ee84848484611d5e565b50505050565b60606115ff826119ce565b61164b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610972565b600b61165683611d91565b604051602001611667929190612a23565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116a75760405162461bcd60e51b8152600401610972906127bb565b6013805460ff19811660ff90911615179055565b6116c8610200600a612985565b81565b60006116d6826119ce565b6116f25760405162461bcd60e51b81526004016109729061290f565b6000828152600d602052604090205460ff166117205760405162461bcd60e51b815260040161097290612936565b506000908152600f602052604090205490565b600061173e826119ce565b61175a5760405162461bcd60e51b81526004016109729061290f565b6000828152600d602052604090205460ff166117885760405162461bcd60e51b815260040161097290612936565b6000828152600f60205260409020544211610872565b60006001600160a01b0382166117c65760405162461bcd60e51b815260040161097290612806565b506001600160a01b03166000908152600c602052604090205460ff1690565b3332146118045760405162461bcd60e51b8152600401610972906128d8565b60135460ff166118265760405162461bcd60e51b81526004016109729061299d565b611833610200600a612985565b600854106118535760405162461bcd60e51b8152600401610972906129c2565b61020060016011546118659190612985565b11156118a45760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d491539155d05360921b6044820152606401610972565b346118b86001670429d069189e00006129e8565b11156118d65760405162461bcd60e51b81526004016109729061295b565b6011805490600061156383612842565b600a546001600160a01b031633146119105760405162461bcd60e51b8152600401610972906127bb565b6001600160a01b0381166119755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610972565b610de881611d0c565b60006001600160e01b031982166380ac58cd60e01b14806119af57506001600160e01b03198216635b5e139f60e01b145b8061087257506301ffc9a760e01b6001600160e01b0319831614610872565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2082611063565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a64826119ce565b611ac55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610972565b6000611ad083611063565b9050806001600160a01b0316846001600160a01b03161480611b0b5750836001600160a01b0316611b008461090a565b6001600160a01b0316145b80611b3b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5682611063565b6001600160a01b031614611bbe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610972565b6001600160a01b038216611c205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610972565b611c2b838383611e8f565b611c366000826119eb565b6001600160a01b0383166000908152600360205260408120805460019290611c5f908490612aca565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c8d908490612985565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d08828260405180602001604052806000815250611f47565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d69848484611b43565b611d7584848484611f7a565b6115ee5760405162461bcd60e51b815260040161097290612ae1565b606081611db55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddf5780611dc981612842565b9150611dd89050600a836128c4565b9150611db9565b60008167ffffffffffffffff811115611dfa57611dfa61265b565b6040519080825280601f01601f191660200182016040528015611e24576020820181803683370190505b5090505b8415611b3b57611e39600183612aca565b9150611e46600a86612b33565b611e51906030612985565b60f81b818381518110611e6657611e666127f0565b60200101906001600160f81b031916908160001a905350611e88600a866128c4565b9450611e28565b6001600160a01b038316611eea57611ee581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0d565b816001600160a01b0316836001600160a01b031614611f0d57611f0d8382612087565b6001600160a01b038216611f2457610aa881612124565b826001600160a01b0316826001600160a01b031614610aa857610aa882826121d3565b611f518383612217565b611f5e6000848484611f7a565b610aa85760405162461bcd60e51b815260040161097290612ae1565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612b47565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f1916820190925261200591810190612b84565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b815260040161097290612ae1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3b565b506001949350505050565b60006001612094846111ff565b61209e9190612aca565b6000838152600760205260409020549091508082146120f1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213690600190612aca565b6000838152600960205260408120546008805493945090928490811061215e5761215e6127f0565b90600052602060002001549050806008838154811061217f5761217f6127f0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b7576121b7612ba1565b6001900381819060005260206000200160009055905550505050565b60006121de836111ff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610972565b612276816119ce565b156122c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610972565b6122cf60008383611e8f565b6001600160a01b03821660009081526003602052604081208054600192906122f8908490612985565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236290612780565b90600052602060002090601f01602090048101928261238457600085556123ca565b82601f1061239d5782800160ff198235161785556123ca565b828001600101855582156123ca579182015b828111156123ca5782358255916020019190600101906123af565b506123d69291506123da565b5090565b5b808211156123d657600081556001016123db565b6001600160e01b031981168114610de857600080fd5b60006020828403121561241757600080fd5b8135612422816123ef565b9392505050565b60005b8381101561244457818101518382015260200161242c565b838111156115ee5750506000910152565b6000815180845261246d816020860160208601612429565b601f01601f19169290920160200192915050565b6020815260006124226020830184612455565b6000602082840312156124a657600080fd5b5035919050565b80356001600160a01b03811681146124c457600080fd5b919050565b600080604083850312156124dc57600080fd5b6124e5836124ad565b946020939093013593505050565b6000806020838503121561250657600080fd5b823567ffffffffffffffff8082111561251e57600080fd5b818501915085601f83011261253257600080fd5b81358181111561254157600080fd5b8660208260051b850101111561255657600080fd5b60209290920196919550909350505050565b60008060006060848603121561257d57600080fd5b612586846124ad565b9250612594602085016124ad565b9150604084013590509250925092565b6000602082840312156125b657600080fd5b612422826124ad565b600080602083850312156125d257600080fd5b823567ffffffffffffffff808211156125ea57600080fd5b818501915085601f8301126125fe57600080fd5b81358181111561260d57600080fd5b86602082850101111561255657600080fd5b6000806040838503121561263257600080fd5b61263b836124ad565b91506020830135801515811461265057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561268757600080fd5b612690856124ad565b935061269e602086016124ad565b925060408501359150606085013567ffffffffffffffff808211156126c257600080fd5b818701915087601f8301126126d657600080fd5b8135818111156126e8576126e861265b565b604051601f8201601f19908116603f011681019083821181831017156127105761271061265b565b816040528281528a602084870101111561272957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561276057600080fd5b612769836124ad565b9150612777602084016124ad565b90509250929050565b600181811c9082168061279457607f821691505b602082108114156127b557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156128565761285661282c565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128d3576128d36128ae565b500490565b6020808252601e908201527f434f4e54524143545f4d494e54494e475f4e4f545f5045524d49545445440000604082015260600190565b6020808252600d908201526c24a72b20a624a22faa27a5a2a760991b604082015260600190565b6020808252600b908201526a1393d517d491539155d05360aa1b604082015260600190565b60208082526010908201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604082015260600190565b600082198211156129985761299861282c565b500190565b6020808252600b908201526a14d0531157d0d313d4d15160aa1b604082015260600190565b6020808252600c908201526b4f55545f4f465f53544f434b60a01b604082015260600190565b6000816000190483118215151615612a0257612a0261282c565b500290565b60008151612a19818560208601612429565b9290920192915050565b600080845481600182811c915080831680612a3f57607f831692505b6020808410821415612a5f57634e487b7160e01b86526022600452602486fd5b818015612a735760018114612a8457612ab1565b60ff19861689528489019650612ab1565b60008b81526020902060005b86811015612aa95781548b820152908501908301612a90565b505084890196505b505050505050612ac18185612a07565b95945050505050565b600082821015612adc57612adc61282c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b4257612b426128ae565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7a90830184612455565b9695505050505050565b600060208284031215612b9657600080fd5b8151612422816123ef565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201a638032c116af6377a9f01730316f8a6f4153b1b19b22377b5f03eee9cf787264736f6c63430008090033
Deployed Bytecode Sourcemap
52405:5894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45973:224;;;;;;;;;;-1:-1:-1;45973:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45973:224:0;;;;;;;;33865:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53246:48::-;;;;;;;;;;-1:-1:-1;53246:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1696:25:1;;;1684:2;1669:18;53246:48:0;1550:177:1;35424:221:0;;;;;;;;;;-1:-1:-1;35424:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;35424:221:0;1732:203:1;34947:411:0;;;;;;;;;;-1:-1:-1;34947:411:0;;;;;:::i;:::-;;:::i;:::-;;54299:378;;;;;;;;;;-1:-1:-1;54299:378:0;;;;;:::i;:::-;;:::i;46613:113::-;;;;;;;;;;-1:-1:-1;46701:10:0;:17;46613:113;;36314:339;;;;;;;;;;-1:-1:-1;36314:339:0;;;;;:::i;:::-;;:::i;54689:313::-;;;;;;;;;;-1:-1:-1;54689:313:0;;;;;:::i;:::-;;:::i;46281:256::-;;;;;;;;;;-1:-1:-1;46281:256:0;;;;;:::i;:::-;;:::i;52819:50::-;;;;;;;;;;;;52860:9;52819:50;;53349:34;;;;;;;;;;;;;;;;57230:172;;;;;;;;;;;;;:::i;36724:185::-;;;;;;;;;;-1:-1:-1;36724:185:0;;;;;:::i;:::-;;:::i;52544:37::-;;;;;;;;;;;;52578:3;52544:37;;57589:233;;;;;;;;;;-1:-1:-1;57589:233:0;;;;;:::i;:::-;;:::i;46803:::-;;;;;;;;;;-1:-1:-1;46803:233:0;;;;;:::i;:::-;;:::i;57932:98::-;;;;;;;;;;-1:-1:-1;57932:98:0;;;;;:::i;:::-;;:::i;55010:434::-;;;;;;:::i;:::-;;:::i;33559:239::-;;;;;;;;;;-1:-1:-1;33559:239:0;;;;;:::i;:::-;;:::i;56810:408::-;;;:::i;33289:208::-;;;;;;;;;;-1:-1:-1;33289:208:0;;;;;:::i;:::-;;:::i;13564:94::-;;;;;;;;;;;;;:::i;52643:49::-;;;;;;;;;;;;52683:9;52643:49;;52699:59;;;;;;;;;;;;52748:10;52699:59;;12913:87;;;;;;;;;;-1:-1:-1;12986:6:0;;-1:-1:-1;;;;;12986:6:0;12913:87;;34034:104;;;;;;;;;;;;;:::i;35717:295::-;;;;;;;;;;-1:-1:-1;35717:295:0;;;;;:::i;:::-;;:::i;55452:787::-;;;:::i;36980:328::-;;;;;;;;;;-1:-1:-1;36980:328:0;;;;;:::i;:::-;;:::i;53390:40::-;;;;;;;;;;;;;;;;53133:43;;;;;;;;;;-1:-1:-1;53133:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52876:36;;;;;;;;;;;;52911:1;52876:36;;53307:35;;;;;;;;;;;;;;;;53183:56;;;;;;;;;;-1:-1:-1;53183:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;58042:254;;;;;;;;;;-1:-1:-1;58042:254:0;;;;;:::i;:::-;;:::i;57834:90::-;;;;;;;;;;;;;:::i;52500:37::-;;;;;;;;;;;;52535:2;52500:37;;52588:48;;;;;;;;;;;;;:::i;54049:238::-;;;;;;;;;;-1:-1:-1;54049:238:0;;;;;:::i;:::-;;:::i;53809:228::-;;;;;;;;;;-1:-1:-1;53809:228:0;;;;;:::i;:::-;;:::i;53082:44::-;;;;;;;;;;-1:-1:-1;53082:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;57414:163;;;;;;;;;;-1:-1:-1;57414:163:0;;;;;:::i;:::-;;:::i;53437:20::-;;;;;;;;;;-1:-1:-1;53437:20:0;;;;;;;;36083:164;;;;;;;;;;-1:-1:-1;36083:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36204:25:0;;;36180:4;36204:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36083:164;56251:547;;;:::i;13813:192::-;;;;;;;;;;-1:-1:-1;13813:192:0;;;;;:::i;:::-;;:::i;52765:47::-;;;;;;;;;;;;52803:9;52765:47;;45973:224;46075:4;-1:-1:-1;;;;;;46099:50:0;;-1:-1:-1;;;46099:50:0;;:90;;;46153:36;46177:11;46153:23;:36::i;:::-;46092:97;45973:224;-1:-1:-1;;45973:224:0:o;33865:100::-;33919:13;33952:5;33945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33865:100;:::o;35424:221::-;35500:7;35528:16;35536:7;35528;:16::i;:::-;35520:73;;;;-1:-1:-1;;;35520:73:0;;6597:2:1;35520:73:0;;;6579:21:1;6636:2;6616:18;;;6609:30;6675:34;6655:18;;;6648:62;-1:-1:-1;;;6726:18:1;;;6719:42;6778:19;;35520:73:0;;;;;;;;;-1:-1:-1;35613:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35613:24:0;;35424:221::o;34947:411::-;35028:13;35044:23;35059:7;35044:14;:23::i;:::-;35028:39;;35092:5;-1:-1:-1;;;;;35086:11:0;:2;-1:-1:-1;;;;;35086:11:0;;;35078:57;;;;-1:-1:-1;;;35078:57:0;;7010:2:1;35078:57:0;;;6992:21:1;7049:2;7029:18;;;7022:30;7088:34;7068:18;;;7061:62;-1:-1:-1;;;7139:18:1;;;7132:31;7180:19;;35078:57:0;6808:397:1;35078:57:0;11781:10;-1:-1:-1;;;;;35170:21:0;;;;:62;;-1:-1:-1;35195:37:0;35212:5;11781:10;36083:164;:::i;35195:37::-;35148:168;;;;-1:-1:-1;;;35148:168:0;;7412:2:1;35148:168:0;;;7394:21:1;7451:2;7431:18;;;7424:30;7490:34;7470:18;;;7463:62;7561:26;7541:18;;;7534:54;7605:19;;35148:168:0;7210:420:1;35148:168:0;35329:21;35338:2;35342:7;35329:8;:21::i;:::-;35017:341;34947:411;;:::o;54299:378::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;54388:9:::1;54383:287;54403:18:::0;;::::1;54383:287;;;54443:14;54460:7;;54468:1;54460:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54443:27:::0;-1:-1:-1;;;;;;54493:20:0;::::1;54485:45;;;;-1:-1:-1::0;;;54485:45:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54553:20:0;::::1;;::::0;;;:12:::1;:20;::::0;;;;;::::1;;:28;;:20:::0;:28:::1;;54545:57;;;::::0;-1:-1:-1;;;54545:57:0;;8671:2:1;54545:57:0::1;::::0;::::1;8653:21:1::0;8710:2;8690:18;;;8683:30;-1:-1:-1;;;8729:18:1;;;8722:46;8785:18;;54545:57:0::1;8469:340:1::0;54545:57:0::1;-1:-1:-1::0;;;;;54631:20:0::1;;::::0;;;:12:::1;:20;::::0;;;;:27;;-1:-1:-1;;54631:27:0::1;54654:4;54631:27;::::0;;54423:3;::::1;::::0;::::1;:::i;:::-;;;;54383:287;;36314:339:::0;36509:41;11781:10;36542:7;36509:18;:41::i;:::-;36501:103;;;;-1:-1:-1;;;36501:103:0;;;;;;;:::i;:::-;36617:28;36627:4;36633:2;36637:7;36617:9;:28::i;54689:313::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;54784:9:::1;54779:216;54799:18:::0;;::::1;54779:216;;;54839:14;54856:7;;54864:1;54856:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54839:27:::0;-1:-1:-1;;;;;;54889:20:0;::::1;54881:45;;;;-1:-1:-1::0;;;54881:45:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54955:20:0::1;54978:5;54955:20:::0;;;:12:::1;:20;::::0;;;;:28;;-1:-1:-1;;54955:28:0::1;::::0;;54819:3;::::1;::::0;::::1;:::i;:::-;;;;54779:216;;46281:256:::0;46378:7;46414:23;46431:5;46414:16;:23::i;:::-;46406:5;:31;46398:87;;;;-1:-1:-1;;;46398:87:0;;9706:2:1;46398:87:0;;;9688:21:1;9745:2;9725:18;;;9718:30;9784:34;9764:18;;;9757:62;-1:-1:-1;;;9835:18:1;;;9828:41;9886:19;;46398:87:0;9504:407:1;46398:87:0;-1:-1:-1;;;;;;46503:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46281:256::o;57230:172::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;53027:42:::1;57280:52;57306:25;57330:1;57306:21;:25;:::i;:::-;57280:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;57343:51:0::1;::::0;57351:10:::1;::::0;57372:21:::1;57343:51:::0;::::1;;;::::0;::::1;::::0;;;57372:21;57351:10;57343:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57230:172::o:0;36724:185::-;36862:39;36879:4;36885:2;36889:7;36862:39;;;;;;;;;;;;:16;:39::i;57589:233::-;57651:7;-1:-1:-1;;;;;57679:18:0;;57671:43;;;;-1:-1:-1;;;57671:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57733:18:0;;;;;;:12;:18;;;;;;;;57725:44;;;;-1:-1:-1;;;57725:44:0;;10375:2:1;57725:44:0;;;10357:21:1;10414:2;10394:18;;;10387:30;-1:-1:-1;;;10433:18:1;;;10426:43;10486:18;;57725:44:0;10173:337:1;57725:44:0;-1:-1:-1;;;;;;57787:27:0;;;;;:21;:27;;;;;;;57589:233::o;46803:::-;46878:7;46914:30;46701:10;:17;;46613:113;46914:30;46906:5;:38;46898:95;;;;-1:-1:-1;;;46898:95:0;;10717:2:1;46898:95:0;;;10699:21:1;10756:2;10736:18;;;10729:30;10795:34;10775:18;;;10768:62;-1:-1:-1;;;10846:18:1;;;10839:42;10898:19;;46898:95:0;10515:408:1;46898:95:0;47011:10;47022:5;47011:17;;;;;;;;:::i;:::-;;;;;;;;;47004:24;;46803:233;;;:::o;57932:98::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;58003:19:::1;:13;58019:3:::0;;58003:19:::1;:::i;55010:434::-:0;53575:10;53589:9;53575:23;53567:66;;;;-1:-1:-1;;;53567:66:0;;;;;;;:::i;:::-;55086:16:::1;55094:7;55086;:16::i;:::-;55078:42;;;;-1:-1:-1::0;;;55078:42:0::1;;;;;;;:::i;:::-;55139:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;55131:44;;;;-1:-1:-1::0;;;55131:44:0::1;;;;;;;:::i;:::-;55209:9;52803;55194:24;;55186:53;;;;-1:-1:-1::0;;;55186:53:0::1;;;;;;;:::i;:::-;53725:4:::0;53767:22;;;:13;:22;;;;;;53749:15;:40;55260:177:::1;;;55325:25;:15;55343:7;55325:25;:::i;:::-;55300:22;::::0;;;:13:::1;:22;::::0;;;;:50;57343:51:::1;57230:172::o:0;55260:177::-:1;55392:22;::::0;;;:13:::1;:22;::::0;;;;:33;;55418:7:::1;::::0;55392:22;:33:::1;::::0;55418:7;;55392:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;55010:434:0;:::o;33559:239::-;33631:7;33667:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33667:16:0;33702:19;33694:73;;;;-1:-1:-1;;;33694:73:0;;12649:2:1;33694:73:0;;;12631:21:1;12688:2;12668:18;;;12661:30;12727:34;12707:18;;;12700:62;-1:-1:-1;;;12778:18:1;;;12771:39;12827:19;;33694:73:0;12447:405:1;56810:408:0;53575:10;53589:9;53575:23;53567:66;;;;-1:-1:-1;;;53567:66:0;;;;;;;:::i;:::-;56877:8:::1;::::0;::::1;;56869:32;;;;-1:-1:-1::0;;;56869:32:0::1;;;;;;;:::i;:::-;52618:18;52578:3;52535:2;52618:18;:::i;:::-;46701:10:::0;:17;56920:19:::1;56912:44;;;;-1:-1:-1::0;;;56912:44:0::1;;;;;;;:::i;:::-;52535:2;52911:1;56975:20;;:31;;;;:::i;:::-;:43;;56967:71;;;::::0;-1:-1:-1;;;56967:71:0;;13740:2:1;56967:71:0::1;::::0;::::1;13722:21:1::0;13779:2;13759:18;;;13752:30;-1:-1:-1;;;13798:18:1;;;13791:45;13853:18;;56967:71:0::1;13538:339:1::0;56967:71:0::1;57086:9;57057:25;52911:1;52860:9;57057:25;:::i;:::-;:38;;57049:67;;;;-1:-1:-1::0;;;57049:67:0::1;;;;;;;:::i;:::-;57137:20;:22:::0;;;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;57170:40;57180:10;57192:13;46701:10:::0;:17;;46613:113;57192:13:::1;:17;::::0;57208:1:::1;57192:17;:::i;:::-;57170:9;:40::i;:::-;56810:408::o:0;33289:208::-;33361:7;-1:-1:-1;;;;;33389:19:0;;33381:74;;;;-1:-1:-1;;;33381:74:0;;14257:2:1;33381:74:0;;;14239:21:1;14296:2;14276:18;;;14269:30;14335:34;14315:18;;;14308:62;-1:-1:-1;;;14386:18:1;;;14379:40;14436:19;;33381:74:0;14055:406:1;33381:74:0;-1:-1:-1;;;;;;33473:16:0;;;;;:9;:16;;;;;;;33289:208::o;13564:94::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;13629:21:::1;13647:1;13629:9;:21::i;34034:104::-:0;34090:13;34123:7;34116:14;;;;;:::i;35717:295::-;-1:-1:-1;;;;;35820:24:0;;11781:10;35820:24;;35812:62;;;;-1:-1:-1;;;35812:62:0;;14668:2:1;35812:62:0;;;14650:21:1;14707:2;14687:18;;;14680:30;14746:27;14726:18;;;14719:55;14791:18;;35812:62:0;14466:349:1;35812:62:0;11781:10;35887:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35887:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35887:53:0;;;;;;;;;;35956:48;;540:41:1;;;35887:42:0;;11781:10;35956:48;;513:18:1;35956:48:0;;;;;;;35717:295;;:::o;55452:787::-;53575:10;53589:9;53575:23;53567:66;;;;-1:-1:-1;;;53567:66:0;;;;;;;:::i;:::-;55528:8:::1;::::0;::::1;;55520:32;;;;-1:-1:-1::0;;;55520:32:0::1;;;;;;;:::i;:::-;55584:10;55571:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;55563:50;;;::::0;-1:-1:-1;;;55563:50:0;;10375:2:1;55563:50:0::1;::::0;::::1;10357:21:1::0;10414:2;10394:18;;;10387:30;-1:-1:-1;;;10433:18:1;;;10426:43;10486:18;;55563:50:0::1;10173:337:1::0;55563:50:0::1;52618:18;52578:3;52535:2;52618:18;:::i;:::-;46701:10:::0;:17;55632:19:::1;55624:44;;;;-1:-1:-1::0;;;55624:44:0::1;;;;;;;:::i;:::-;52578:3;52911:1;55687:19;;:30;;;;:::i;:::-;:41;;55679:68;;;::::0;-1:-1:-1;;;55679:68:0;;15022:2:1;55679:68:0::1;::::0;::::1;15004:21:1::0;15061:2;15041:18;;;15034:30;-1:-1:-1;;;15080:18:1;;;15073:44;15134:18;;55679:68:0::1;14820:338:1::0;55679:68:0::1;55814:21;::::0;55788:10:::1;55766:33;::::0;;;:21:::1;:33;::::0;;;;;:44:::1;::::0;52911:1:::1;::::0;55766:44:::1;:::i;:::-;:69;;55758:103;;;::::0;-1:-1:-1;;;55758:103:0;;15365:2:1;55758:103:0::1;::::0;::::1;15347:21:1::0;15404:2;15384:18;;;15377:30;-1:-1:-1;;;15423:18:1;;;15416:51;15484:18;;55758:103:0::1;15163:345:1::0;55758:103:0::1;55917:9;55880:33;52911:1;52748:10;55880:33;:::i;:::-;:46;;55872:75;;;;-1:-1:-1::0;;;55872:75:0::1;;;;;;;:::i;:::-;55968:19;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;56022:10:0::1;56000:33;::::0;;;:21:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;;;;;;56056:15;56074:13;46701:10:::0;:17;;46613:113;56074:13:::1;:17;::::0;56090:1:::1;56074:17;:::i;:::-;56056:35:::0;-1:-1:-1;56127:25:0::1;:15;56145:7;56127:25;:::i;:::-;56102:22;::::0;;;:13:::1;:22;::::0;;;;;;;:50;;;;56163:11:::1;:20:::0;;;:27;;-1:-1:-1;;56163:27:0::1;56186:4;56163:27;::::0;;56201:30:::1;56211:10;56116:7:::0;56201:9:::1;:30::i;36980:328::-:0;37155:41;11781:10;37188:7;37155:18;:41::i;:::-;37147:103;;;;-1:-1:-1;;;37147:103:0;;;;;;;:::i;:::-;37261:39;37275:4;37281:2;37285:7;37294:5;37261:13;:39::i;:::-;36980:328;;;;:::o;58042:254::-;58115:13;58149:16;58157:7;58149;:16::i;:::-;58141:60;;;;-1:-1:-1;;;58141:60:0;;15715:2:1;58141:60:0;;;15697:21:1;15754:2;15734:18;;;15727:30;15793:33;15773:18;;;15766:61;15844:18;;58141:60:0;15513:355:1;58141:60:0;58253:13;58268:18;:7;:16;:18::i;:::-;58236:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58222:66;;58042:254;;;:::o;57834:90::-;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;57908:8:::1;::::0;;-1:-1:-1;;57896:20:0;::::1;57908:8;::::0;;::::1;57907:9;57896:20;::::0;;57834:90::o;52588:48::-;52618:18;52578:3;52535:2;52618:18;:::i;:::-;52588:48;:::o;54049:238::-;54112:7;54140:16;54148:7;54140;:16::i;:::-;54132:42;;;;-1:-1:-1;;;54132:42:0;;;;;;;:::i;:::-;54193:20;;;;:11;:20;;;;;;;;54185:44;;;;-1:-1:-1;;;54185:44:0;;;;;;;:::i;:::-;-1:-1:-1;54257:22:0;;;;:13;:22;;;;;;;54049:238::o;53809:228::-;53868:4;53893:16;53901:7;53893;:16::i;:::-;53885:42;;;;-1:-1:-1;;;53885:42:0;;;;;;;:::i;:::-;53946:20;;;;:11;:20;;;;;;;;53938:44;;;;-1:-1:-1;;;53938:44:0;;;;;;;:::i;:::-;53725:4;53767:22;;;:13;:22;;;;;;53749:15;:40;54010:19;53665:132;57414:163;57473:4;-1:-1:-1;;;;;57498:18:0;;57490:43;;;;-1:-1:-1;;;57490:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;57551:18:0;;;;;:12;:18;;;;;;;;;57414:163::o;56251:547::-;53575:10;53589:9;53575:23;53567:66;;;;-1:-1:-1;;;53567:66:0;;;;;;;:::i;:::-;56317:8:::1;::::0;::::1;;56309:32;;;;-1:-1:-1::0;;;56309:32:0::1;;;;;;;:::i;:::-;52618:18;52578:3;52535:2;52618:18;:::i;:::-;46701:10:::0;:17;56360:19:::1;56352:44;;;;-1:-1:-1::0;;;56352:44:0::1;;;;;;;:::i;:::-;52578:3;52911:1;56415:19;;:30;;;;:::i;:::-;:41;;56407:68;;;::::0;-1:-1:-1;;;56407:68:0;;15022:2:1;56407:68:0::1;::::0;::::1;15004:21:1::0;15061:2;15041:18;;;15034:30;-1:-1:-1;;;15080:18:1;;;15073:44;15134:18;;56407:68:0::1;14820:338:1::0;56407:68:0::1;56522:9;56494:24;52911:1;52683:9;56494:24;:::i;:::-;:37;;56486:66;;;;-1:-1:-1::0;;;56486:66:0::1;;;;;;;:::i;:::-;56573:19;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;13813:192::-:0;12986:6;;-1:-1:-1;;;;;12986:6:0;11781:10;13133:23;13125:68;;;;-1:-1:-1;;;13125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13902:22:0;::::1;13894:73;;;::::0;-1:-1:-1;;;13894:73:0;;17570:2:1;13894:73:0::1;::::0;::::1;17552:21:1::0;17609:2;17589:18;;;17582:30;17648:34;17628:18;;;17621:62;-1:-1:-1;;;17699:18:1;;;17692:36;17745:19;;13894:73:0::1;17368:402:1::0;13894:73:0::1;13978:19;13988:8;13978:9;:19::i;32920:305::-:0;33022:4;-1:-1:-1;;;;;;33059:40:0;;-1:-1:-1;;;33059:40:0;;:105;;-1:-1:-1;;;;;;;33116:48:0;;-1:-1:-1;;;33116:48:0;33059:105;:158;;;-1:-1:-1;;;;;;;;;;25008:40:0;;;33181:36;24899:157;38818:127;38883:4;38907:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38907:16:0;:30;;;38818:127::o;42800:174::-;42875:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42875:29:0;-1:-1:-1;;;;;42875:29:0;;;;;;;;:24;;42929:23;42875:24;42929:14;:23::i;:::-;-1:-1:-1;;;;;42920:46:0;;;;;;;;;;;42800:174;;:::o;39112:348::-;39205:4;39230:16;39238:7;39230;:16::i;:::-;39222:73;;;;-1:-1:-1;;;39222:73:0;;17977:2:1;39222:73:0;;;17959:21:1;18016:2;17996:18;;;17989:30;18055:34;18035:18;;;18028:62;-1:-1:-1;;;18106:18:1;;;18099:42;18158:19;;39222:73:0;17775:408:1;39222:73:0;39306:13;39322:23;39337:7;39322:14;:23::i;:::-;39306:39;;39375:5;-1:-1:-1;;;;;39364:16:0;:7;-1:-1:-1;;;;;39364:16:0;;:51;;;;39408:7;-1:-1:-1;;;;;39384:31:0;:20;39396:7;39384:11;:20::i;:::-;-1:-1:-1;;;;;39384:31:0;;39364:51;:87;;;-1:-1:-1;;;;;;36204:25:0;;;36180:4;36204:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39419:32;39356:96;39112:348;-1:-1:-1;;;;39112:348:0:o;42104:578::-;42263:4;-1:-1:-1;;;;;42236:31:0;:23;42251:7;42236:14;:23::i;:::-;-1:-1:-1;;;;;42236:31:0;;42228:85;;;;-1:-1:-1;;;42228:85:0;;18390:2:1;42228:85:0;;;18372:21:1;18429:2;18409:18;;;18402:30;18468:34;18448:18;;;18441:62;-1:-1:-1;;;18519:18:1;;;18512:39;18568:19;;42228:85:0;18188:405:1;42228:85:0;-1:-1:-1;;;;;42332:16:0;;42324:65;;;;-1:-1:-1;;;42324:65:0;;18800:2:1;42324:65:0;;;18782:21:1;18839:2;18819:18;;;18812:30;18878:34;18858:18;;;18851:62;-1:-1:-1;;;18929:18:1;;;18922:34;18973:19;;42324:65:0;18598:400:1;42324:65:0;42402:39;42423:4;42429:2;42433:7;42402:20;:39::i;:::-;42506:29;42523:1;42527:7;42506:8;:29::i;:::-;-1:-1:-1;;;;;42548:15:0;;;;;;:9;:15;;;;;:20;;42567:1;;42548:15;:20;;42567:1;;42548:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42579:13:0;;;;;;:9;:13;;;;;:18;;42596:1;;42579:13;:18;;42596:1;;42579:18;:::i;:::-;;;;-1:-1:-1;;42608:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42608:21:0;-1:-1:-1;;;;;42608:21:0;;;;;;;;;42647:27;;42608:16;;42647:27;;;;;;;42104:578;;;:::o;39802:110::-;39878:26;39888:2;39892:7;39878:26;;;;;;;;;;;;:9;:26::i;:::-;39802:110;;:::o;14013:173::-;14088:6;;;-1:-1:-1;;;;;14105:17:0;;;-1:-1:-1;;;;;;14105:17:0;;;;;;;14138:40;;14088:6;;;14105:17;14088:6;;14138:40;;14069:16;;14138:40;14058:128;14013:173;:::o;38190:315::-;38347:28;38357:4;38363:2;38367:7;38347:9;:28::i;:::-;38394:48;38417:4;38423:2;38427:7;38436:5;38394:22;:48::i;:::-;38386:111;;;;-1:-1:-1;;;38386:111:0;;;;;;;:::i;9317:723::-;9373:13;9594:10;9590:53;;-1:-1:-1;;9621:10:0;;;;;;;;;;;;-1:-1:-1;;;9621:10:0;;;;;9317:723::o;9590:53::-;9668:5;9653:12;9709:78;9716:9;;9709:78;;9742:8;;;;:::i;:::-;;-1:-1:-1;9765:10:0;;-1:-1:-1;9773:2:0;9765:10;;:::i;:::-;;;9709:78;;;9797:19;9829:6;9819:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9819:17:0;;9797:39;;9847:154;9854:10;;9847:154;;9881:11;9891:1;9881:11;;:::i;:::-;;-1:-1:-1;9950:10:0;9958:2;9950:5;:10;:::i;:::-;9937:24;;:2;:24;:::i;:::-;9924:39;;9907:6;9914;9907:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9907:56:0;;;;;;;;-1:-1:-1;9978:11:0;9987:2;9978:11;;:::i;:::-;;;9847:154;;47649:589;-1:-1:-1;;;;;47855:18:0;;47851:187;;47890:40;47922:7;49065:10;:17;;49038:24;;;;:15;:24;;;;;:44;;;49093:24;;;;;;;;;;;;48961:164;47890:40;47851:187;;;47960:2;-1:-1:-1;;;;;47952:10:0;:4;-1:-1:-1;;;;;47952:10:0;;47948:90;;47979:47;48012:4;48018:7;47979:32;:47::i;:::-;-1:-1:-1;;;;;48052:16:0;;48048:183;;48085:45;48122:7;48085:36;:45::i;48048:183::-;48158:4;-1:-1:-1;;;;;48152:10:0;:2;-1:-1:-1;;;;;48152:10:0;;48148:83;;48179:40;48207:2;48211:7;48179:27;:40::i;40139:321::-;40269:18;40275:2;40279:7;40269:5;:18::i;:::-;40320:54;40351:1;40355:2;40359:7;40368:5;40320:22;:54::i;:::-;40298:154;;;;-1:-1:-1;;;40298:154:0;;;;;;;:::i;43539:799::-;43694:4;-1:-1:-1;;;;;43715:13:0;;15282:20;15330:8;43711:620;;43751:72;;-1:-1:-1;;;43751:72:0;;-1:-1:-1;;;;;43751:36:0;;;;;:72;;11781:10;;43802:4;;43808:7;;43817:5;;43751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43751:72:0;;;;;;;;-1:-1:-1;;43751:72:0;;;;;;;;;;;;:::i;:::-;;;43747:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43993:13:0;;43989:272;;44036:60;;-1:-1:-1;;;44036:60:0;;;;;;;:::i;43989:272::-;44211:6;44205:13;44196:6;44192:2;44188:15;44181:38;43747:529;-1:-1:-1;;;;;;43874:51:0;-1:-1:-1;;;43874:51:0;;-1:-1:-1;43867:58:0;;43711:620;-1:-1:-1;44315:4:0;43539:799;;;;;;:::o;49752:988::-;50018:22;50068:1;50043:22;50060:4;50043:16;:22::i;:::-;:26;;;;:::i;:::-;50080:18;50101:26;;;:17;:26;;;;;;50018:51;;-1:-1:-1;50234:28:0;;;50230:328;;-1:-1:-1;;;;;50301:18:0;;50279:19;50301:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50352:30;;;;;;:44;;;50469:30;;:17;:30;;;;;:43;;;50230:328;-1:-1:-1;50654:26:0;;;;:17;:26;;;;;;;;50647:33;;;-1:-1:-1;;;;;50698:18:0;;;;;:12;:18;;;;;:34;;;;;;;50691:41;49752:988::o;51035:1079::-;51313:10;:17;51288:22;;51313:21;;51333:1;;51313:21;:::i;:::-;51345:18;51366:24;;;:15;:24;;;;;;51739:10;:26;;51288:46;;-1:-1:-1;51366:24:0;;51288:46;;51739:26;;;;;;:::i;:::-;;;;;;;;;51717:48;;51803:11;51778:10;51789;51778:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51883:28;;;:15;:28;;;;;;;:41;;;52055:24;;;;;52048:31;52090:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51106:1008;;;51035:1079;:::o;48539:221::-;48624:14;48641:20;48658:2;48641:16;:20::i;:::-;-1:-1:-1;;;;;48672:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48717:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48539:221:0:o;40796:382::-;-1:-1:-1;;;;;40876:16:0;;40868:61;;;;-1:-1:-1;;;40868:61:0;;20762:2:1;40868:61:0;;;20744:21:1;;;20781:18;;;20774:30;20840:34;20820:18;;;20813:62;20892:18;;40868:61:0;20560:356:1;40868:61:0;40949:16;40957:7;40949;:16::i;:::-;40948:17;40940:58;;;;-1:-1:-1;;;40940:58:0;;21123:2:1;40940:58:0;;;21105:21:1;21162:2;21142:18;;;21135:30;21201;21181:18;;;21174:58;21249:18;;40940:58:0;20921:352:1;40940:58:0;41011:45;41040:1;41044:2;41048:7;41011:20;:45::i;:::-;-1:-1:-1;;;;;41069:13:0;;;;;;:9;:13;;;;;:18;;41086:1;;41069:13;:18;;41086:1;;41069:18;:::i;:::-;;;;-1:-1:-1;;41098:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41098:21:0;-1:-1:-1;;;;;41098:21:0;;;;;;;;41137:33;;41098:16;;;41137:33;;41098:16;;41137:33;40796:382;;:::o;-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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;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:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:615::-;2463:6;2471;2524:2;2512:9;2503:7;2499:23;2495:32;2492:52;;;2540:1;2537;2530:12;2492:52;2580:9;2567:23;2609:18;2650:2;2642:6;2639:14;2636:34;;;2666:1;2663;2656:12;2636:34;2704:6;2693:9;2689:22;2679:32;;2749:7;2742:4;2738:2;2734:13;2730:27;2720:55;;2771:1;2768;2761:12;2720:55;2811:2;2798:16;2837:2;2829:6;2826:14;2823:34;;;2853:1;2850;2843:12;2823:34;2906:7;2901:2;2891:6;2888:1;2884:14;2880:2;2876:23;2872:32;2869:45;2866:65;;;2927:1;2924;2917:12;2866:65;2958:2;2950:11;;;;;2980:6;;-1:-1:-1;2377:615:1;;-1:-1:-1;;;;2377:615:1:o;2997:328::-;3074:6;3082;3090;3143:2;3131:9;3122:7;3118:23;3114:32;3111:52;;;3159:1;3156;3149:12;3111:52;3182:29;3201:9;3182:29;:::i;:::-;3172:39;;3230:38;3264:2;3253:9;3249:18;3230:38;:::i;:::-;3220:48;;3315:2;3304:9;3300:18;3287:32;3277:42;;2997:328;;;;;:::o;3330:186::-;3389:6;3442:2;3430:9;3421:7;3417:23;3413:32;3410:52;;;3458:1;3455;3448:12;3410:52;3481:29;3500:9;3481:29;:::i;3521:592::-;3592:6;3600;3653:2;3641:9;3632:7;3628:23;3624:32;3621:52;;;3669:1;3666;3659:12;3621:52;3709:9;3696:23;3738:18;3779:2;3771:6;3768:14;3765:34;;;3795:1;3792;3785:12;3765:34;3833:6;3822:9;3818:22;3808:32;;3878:7;3871:4;3867:2;3863:13;3859:27;3849:55;;3900:1;3897;3890:12;3849:55;3940:2;3927:16;3966:2;3958:6;3955:14;3952:34;;;3982:1;3979;3972:12;3952:34;4027:7;4022:2;4013:6;4009:2;4005:15;4001:24;3998:37;3995:57;;;4048:1;4045;4038:12;4118:347;4183:6;4191;4244:2;4232:9;4223:7;4219:23;4215:32;4212:52;;;4260:1;4257;4250:12;4212:52;4283:29;4302:9;4283:29;:::i;:::-;4273:39;;4362:2;4351:9;4347:18;4334:32;4409:5;4402:13;4395:21;4388:5;4385:32;4375:60;;4431:1;4428;4421:12;4375:60;4454:5;4444:15;;;4118:347;;;;;:::o;4470:127::-;4531:10;4526:3;4522:20;4519:1;4512:31;4562:4;4559:1;4552:15;4586:4;4583:1;4576:15;4602:1138;4697:6;4705;4713;4721;4774:3;4762:9;4753:7;4749:23;4745:33;4742:53;;;4791:1;4788;4781:12;4742:53;4814:29;4833:9;4814:29;:::i;:::-;4804:39;;4862:38;4896:2;4885:9;4881:18;4862:38;:::i;:::-;4852:48;;4947:2;4936:9;4932:18;4919:32;4909:42;;5002:2;4991:9;4987:18;4974:32;5025:18;5066:2;5058:6;5055:14;5052:34;;;5082:1;5079;5072:12;5052:34;5120:6;5109:9;5105:22;5095:32;;5165:7;5158:4;5154:2;5150:13;5146:27;5136:55;;5187:1;5184;5177:12;5136:55;5223:2;5210:16;5245:2;5241;5238:10;5235:36;;;5251:18;;:::i;:::-;5326:2;5320:9;5294:2;5380:13;;-1:-1:-1;;5376:22:1;;;5400:2;5372:31;5368:40;5356:53;;;5424:18;;;5444:22;;;5421:46;5418:72;;;5470:18;;:::i;:::-;5510:10;5506:2;5499:22;5545:2;5537:6;5530:18;5585:7;5580:2;5575;5571;5567:11;5563:20;5560:33;5557:53;;;5606:1;5603;5596:12;5557:53;5662:2;5657;5653;5649:11;5644:2;5636:6;5632:15;5619:46;5707:1;5702:2;5697;5689:6;5685:15;5681:24;5674:35;5728:6;5718:16;;;;;;;4602:1138;;;;;;;:::o;5745:260::-;5813:6;5821;5874:2;5862:9;5853:7;5849:23;5845:32;5842:52;;;5890:1;5887;5880:12;5842:52;5913:29;5932:9;5913:29;:::i;:::-;5903:39;;5961:38;5995:2;5984:9;5980:18;5961:38;:::i;:::-;5951:48;;5745:260;;;;;:::o;6010:380::-;6089:1;6085:12;;;;6132;;;6153:61;;6207:4;6199:6;6195:17;6185:27;;6153:61;6260:2;6252:6;6249:14;6229:18;6226:38;6223:161;;;6306:10;6301:3;6297:20;6294:1;6287:31;6341:4;6338:1;6331:15;6369:4;6366:1;6359:15;6223:161;;6010:380;;;:::o;7635:356::-;7837:2;7819:21;;;7856:18;;;7849:30;7915:34;7910:2;7895:18;;7888:62;7982:2;7967:18;;7635:356::o;7996:127::-;8057:10;8052:3;8048:20;8045:1;8038:31;8088:4;8085:1;8078:15;8112:4;8109:1;8102:15;8128:336;8330:2;8312:21;;;8369:2;8349:18;;;8342:30;-1:-1:-1;;;8403:2:1;8388:18;;8381:42;8455:2;8440:18;;8128:336::o;8814:127::-;8875:10;8870:3;8866:20;8863:1;8856:31;8906:4;8903:1;8896:15;8930:4;8927:1;8920:15;8946:135;8985:3;-1:-1:-1;;9006:17:1;;9003:43;;;9026:18;;:::i;:::-;-1:-1:-1;9073:1:1;9062:13;;8946:135::o;9086:413::-;9288:2;9270:21;;;9327:2;9307:18;;;9300:30;9366:34;9361:2;9346:18;;9339:62;-1:-1:-1;;;9432:2:1;9417:18;;9410:47;9489:3;9474:19;;9086:413::o;9916:127::-;9977:10;9972:3;9968:20;9965:1;9958:31;10008:4;10005:1;9998:15;10032:4;10029:1;10022:15;10048:120;10088:1;10114;10104:35;;10119:18;;:::i;:::-;-1:-1:-1;10153:9:1;;10048:120::o;10928:354::-;11130:2;11112:21;;;11169:2;11149:18;;;11142:30;11208:32;11203:2;11188:18;;11181:60;11273:2;11258:18;;10928:354::o;11287:337::-;11489:2;11471:21;;;11528:2;11508:18;;;11501:30;-1:-1:-1;;;11562:2:1;11547:18;;11540:43;11615:2;11600:18;;11287:337::o;11629:335::-;11831:2;11813:21;;;11870:2;11850:18;;;11843:30;-1:-1:-1;;;11904:2:1;11889:18;;11882:41;11955:2;11940:18;;11629:335::o;11969:340::-;12171:2;12153:21;;;12210:2;12190:18;;;12183:30;-1:-1:-1;;;12244:2:1;12229:18;;12222:46;12300:2;12285:18;;11969:340::o;12314:128::-;12354:3;12385:1;12381:6;12378:1;12375:13;12372:39;;;12391:18;;:::i;:::-;-1:-1:-1;12427:9:1;;12314:128::o;12857:335::-;13059:2;13041:21;;;13098:2;13078:18;;;13071:30;-1:-1:-1;;;13132:2:1;13117:18;;13110:41;13183:2;13168:18;;12857:335::o;13197:336::-;13399:2;13381:21;;;13438:2;13418:18;;;13411:30;-1:-1:-1;;;13472:2:1;13457:18;;13450:42;13524:2;13509:18;;13197:336::o;13882:168::-;13922:7;13988:1;13984;13980:6;13976:14;13973:1;13970:21;13965:1;13958:9;13951:17;13947:45;13944:71;;;13995:18;;:::i;:::-;-1:-1:-1;14035:9:1;;13882:168::o;15999:185::-;16041:3;16079:5;16073:12;16094:52;16139:6;16134:3;16127:4;16120:5;16116:16;16094:52;:::i;:::-;16162:16;;;;;15999:185;-1:-1:-1;;15999:185:1:o;16189:1174::-;16365:3;16394:1;16427:6;16421:13;16457:3;16479:1;16507:9;16503:2;16499:18;16489:28;;16567:2;16556:9;16552:18;16589;16579:61;;16633:4;16625:6;16621:17;16611:27;;16579:61;16659:2;16707;16699:6;16696:14;16676:18;16673:38;16670:165;;;-1:-1:-1;;;16734:33:1;;16790:4;16787:1;16780:15;16820:4;16741:3;16808:17;16670:165;16851:18;16878:104;;;;16996:1;16991:320;;;;16844:467;;16878:104;-1:-1:-1;;16911:24:1;;16899:37;;16956:16;;;;-1:-1:-1;16878:104:1;;16991:320;15946:1;15939:14;;;15983:4;15970:18;;17086:1;17100:165;17114:6;17111:1;17108:13;17100:165;;;17192:14;;17179:11;;;17172:35;17235:16;;;;17129:10;;17100:165;;;17104:3;;17294:6;17289:3;17285:16;17278:23;;16844:467;;;;;;;17327:30;17353:3;17345:6;17327:30;:::i;:::-;17320:37;16189:1174;-1:-1:-1;;;;;16189:1174:1:o;19003:125::-;19043:4;19071:1;19068;19065:8;19062:34;;;19076:18;;:::i;:::-;-1:-1:-1;19113:9:1;;19003:125::o;19133:414::-;19335:2;19317:21;;;19374:2;19354:18;;;19347:30;19413:34;19408:2;19393:18;;19386:62;-1:-1:-1;;;19479:2:1;19464:18;;19457:48;19537:3;19522:19;;19133:414::o;19552:112::-;19584:1;19610;19600:35;;19615:18;;:::i;:::-;-1:-1:-1;19649:9:1;;19552:112::o;19669:500::-;-1:-1:-1;;;;;19938:15:1;;;19920:34;;19990:15;;19985:2;19970:18;;19963:43;20037:2;20022:18;;20015:34;;;20085:3;20080:2;20065:18;;20058:31;;;19863:4;;20106:57;;20143:19;;20135:6;20106:57;:::i;:::-;20098:65;19669:500;-1:-1:-1;;;;;;19669:500:1:o;20174:249::-;20243:6;20296:2;20284:9;20275:7;20271:23;20267:32;20264:52;;;20312:1;20309;20302:12;20264:52;20344:9;20338:16;20363:30;20387:5;20363:30;:::i;20428:127::-;20489:10;20484:3;20480:20;20477:1;20470:31;20520:4;20517:1;20510:15;20544:4;20541:1;20534:15
Swarm Source
ipfs://1a638032c116af6377a9f01730316f8a6f4153b1b19b22377b5f03eee9cf7872
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.