ERC-721
Overview
Max Total Supply
333 POT
Holders
330
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 POTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
potsNFT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: ECDSA.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: 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: 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: 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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: Payment.sol // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract Payment is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: 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: 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: 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: 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: 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: IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.2; contract potsNFT is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _potsLink; uint256 public potsMaxSupply = 333; uint256 public potsMintAmount = 1; mapping(address => uint256) public potsHolders; constructor() ERC721A("pots", "POT") {} function _baseURI() internal view virtual override returns (string memory) { return _potsLink; } function mintPots() external nonReentrant { uint256 potsTotalSupply = totalSupply(); require(potsTotalSupply + potsMintAmount <= potsMaxSupply); require(msg.sender == tx.origin); require(potsHolders[msg.sender] < potsMintAmount); _safeMint(msg.sender, potsMintAmount); potsHolders[msg.sender] += potsMintAmount; } function setMintAmount(uint256 _potsMintAmount) external onlyOwner { potsMintAmount = _potsMintAmount; } function setPotsLink(string memory pots) external onlyOwner { _potsLink = pots; } function withdrawFunds() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
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":"_potsLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPots","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"potsHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"potsMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"potsMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_potsMintAmount","type":"uint256"}],"name":"setMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"pots","type":"string"}],"name":"setPotsLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405261014d600a556001600b553480156200001c57600080fd5b506040518060400160405280600481526020017f706f7473000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f504f5400000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000a1929190620001b9565b508060029080519060200190620000ba929190620001b9565b505050620000dd620000d1620000eb60201b60201c565b620000f360201b60201c565b6001600881905550620002cd565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c79062000298565b90600052602060002090601f016020900481019282620001eb576000855562000237565b82601f106200020657805160ff191683800117855562000237565b8280016001018555821562000237579182015b828111156200023657825182559160200191906001019062000219565b5b5090506200024691906200024a565b5090565b5b80821115620002655760008160009055506001016200024b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b157607f821691505b602082108103620002c757620002c662000269565b5b50919050565b613d5780620002dd6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610593578063d4506df7146105d0578063e985e9c51461060d578063f2fde38b1461064a5761019c565b8063a22cb46514610518578063b88d4fde14610541578063c7cd997f1461056a5761019c565b80637bca6008116100c65780637bca60081461046c5780638da5cb5b1461049757806395d89b41146104c25780639fdba636146104ed5761019c565b80636352211e146103db57806370a0823114610418578063715018a6146104555761019c565b80631dba4a0f116101595780632f745c59116101335780632f745c591461030d57806342842e0e1461034a57806346cfa91d146103735780634f6ccce71461039e5761019c565b80631dba4a0f146102b157806323b872dd146102da57806324600fc3146103035761019c565b806301ffc9a7146101a157806302bba053146101de57806306fdde03146101f5578063081812fc14610220578063095ea7b31461025d57806318160ddd14610286575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612840565b610673565b6040516101d59190612888565b60405180910390f35b3480156101ea57600080fd5b506101f36107bd565b005b34801561020157600080fd5b5061020a610926565b604051610217919061293c565b60405180910390f35b34801561022c57600080fd5b5061024760048036038101906102429190612994565b6109b8565b6040516102549190612a02565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f9190612a49565b610a3d565b005b34801561029257600080fd5b5061029b610b55565b6040516102a89190612a98565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612be8565b610b5e565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190612c31565b610bf4565b005b61030b610c04565b005b34801561031957600080fd5b50610334600480360381019061032f9190612a49565b610cf9565b6040516103419190612a98565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612c31565b610ee9565b005b34801561037f57600080fd5b50610388610f09565b604051610395919061293c565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612994565b610f97565b6040516103d29190612a98565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612994565b610fea565b60405161040f9190612a02565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612c84565b611000565b60405161044c9190612a98565b60405180910390f35b34801561046157600080fd5b5061046a6110e8565b005b34801561047857600080fd5b50610481611170565b60405161048e9190612a98565b60405180910390f35b3480156104a357600080fd5b506104ac611176565b6040516104b99190612a02565b60405180910390f35b3480156104ce57600080fd5b506104d76111a0565b6040516104e4919061293c565b60405180910390f35b3480156104f957600080fd5b50610502611232565b60405161050f9190612a98565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612cdd565b611238565b005b34801561054d57600080fd5b5061056860048036038101906105639190612dbe565b6113b8565b005b34801561057657600080fd5b50610591600480360381019061058c9190612994565b611414565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612994565b61149a565b6040516105c7919061293c565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612c84565b611541565b6040516106049190612a98565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612e41565b611559565b6040516106419190612888565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612c84565b6115ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b657506107b5826116e4565b5b9050919050565b600260085403610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990612ecd565b60405180910390fd5b60026008819055506000610814610b55565b9050600a54600b54826108279190612f1c565b111561083257600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461086a57600080fd5b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106108b757600080fd5b6108c333600b5461174e565b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109149190612f1c565b92505081905550506001600881905550565b60606001805461093590612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461096190612fa1565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b60006109c38261176c565b610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613044565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4882610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906130d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad7611779565b73ffffffffffffffffffffffffffffffffffffffff161480610b065750610b0581610b00611779565b611559565b5b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613168565b60405180910390fd5b610b50838383611781565b505050565b60008054905090565b610b66611779565b73ffffffffffffffffffffffffffffffffffffffff16610b84611176565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906131d4565b60405180910390fd5b8060099080519060200190610bf09291906126f7565b5050565b610bff838383611833565b505050565b610c0c611779565b73ffffffffffffffffffffffffffffffffffffffff16610c2a611176565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906131d4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca690613225565b60006040518083038185875af1925050503d8060008114610ce3576040519150601f19603f3d011682016040523d82523d6000602084013e610ce8565b606091505b5050905080610cf657600080fd5b50565b6000610d0483611000565b8210610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906132ac565b60405180910390fd5b6000610d4f610b55565b905060008060005b83811015610ea7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e4957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9957868403610e90578195505050505050610ee3565b83806001019450505b508080600101915050610d57565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061333e565b60405180910390fd5b92915050565b610f04838383604051806020016040528060008152506113b8565b505050565b60098054610f1690612fa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4290612fa1565b8015610f8f5780601f10610f6457610100808354040283529160200191610f8f565b820191906000526020600020905b815481529060010190602001808311610f7257829003601f168201915b505050505081565b6000610fa1610b55565b8210610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906133d0565b60405180910390fd5b819050919050565b6000610ff582611d71565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613462565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110f0611779565b73ffffffffffffffffffffffffffffffffffffffff1661110e611176565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906131d4565b60405180910390fd5b61116e6000611f0b565b565b600a5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111af90612fa1565b80601f01602080910402602001604051908101604052809291908181526020018280546111db90612fa1565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b5050505050905090565b600b5481565b611240611779565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a4906134ce565b60405180910390fd5b80600660006112ba611779565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611367611779565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ac9190612888565b60405180910390a35050565b6113c3848484611833565b6113cf84848484611fd1565b61140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590613560565b60405180910390fd5b50505050565b61141c611779565b73ffffffffffffffffffffffffffffffffffffffff1661143a611176565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906131d4565b60405180910390fd5b80600b8190555050565b60606114a58261176c565b6114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906135f2565b60405180910390fd5b60006114ee612158565b9050600081510361150e5760405180602001604052806000815250611539565b80611518846121ea565b60405160200161152992919061364e565b6040516020818303038152906040525b915050919050565b600c6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115f5611779565b73ffffffffffffffffffffffffffffffffffffffff16611613611176565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611660906131d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906136e4565b60405180910390fd5b6116e181611f0b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61176882826040518060200160405280600081525061234a565b5050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183e82611d71565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611865611779565b73ffffffffffffffffffffffffffffffffffffffff1614806118c1575061188a611779565b73ffffffffffffffffffffffffffffffffffffffff166118a9846109b8565b73ffffffffffffffffffffffffffffffffffffffff16145b806118dd57506118dc82600001516118d7611779565b611559565b5b90508061191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613776565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613808565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061389a565b60405180910390fd5b611a0d858585600161235c565b611a1d6000848460000151611781565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d0157611c608161176c565b15611d005782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6a8585856001612362565b5050505050565b611d7961277d565b611d828261176c565b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061392c565b60405180910390fd5b60008290505b60008110611eca576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ebb578092505050611f06565b50808060019003915050611dc7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906139be565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ff28473ffffffffffffffffffffffffffffffffffffffff16612368565b1561214b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261201b611779565b8786866040518563ffffffff1660e01b815260040161203d9493929190613a33565b6020604051808303816000875af192505050801561207957506040513d601f19601f820116820180604052508101906120769190613a94565b60015b6120fb573d80600081146120a9576040519150601f19603f3d011682016040523d82523d6000602084013e6120ae565b606091505b5060008151036120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90613560565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612150565b600190505b949350505050565b60606009805461216790612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461219390612fa1565b80156121e05780601f106121b5576101008083540402835291602001916121e0565b820191906000526020600020905b8154815290600101906020018083116121c357829003601f168201915b5050505050905090565b606060008203612231576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612345565b600082905060005b6000821461226357808061224c90613ac1565b915050600a8261225c9190613b38565b9150612239565b60008167ffffffffffffffff81111561227f5761227e612abd565b5b6040519080825280601f01601f1916602001820160405280156122b15781602001600182028036833780820191505090505b5090505b6000851461233e576001826122ca9190613b69565b9150600a856122d99190613b9d565b60306122e59190612f1c565b60f81b8183815181106122fb576122fa613bce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123379190613b38565b94506122b5565b8093505050505b919050565b612357838383600161237b565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613c6f565b60405180910390fd5b60008403612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90613d01565b60405180910390fd5b612440600086838761235c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126c5576126856000888488611fd1565b6126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb90613560565b60405180910390fd5b5b8180600101925050808060010191505061260e565b5080600081905550506126f06000868387612362565b5050505050565b82805461270390612fa1565b90600052602060002090601f016020900481019282612725576000855561276c565b82601f1061273e57805160ff191683800117855561276c565b8280016001018555821561276c579182015b8281111561276b578251825591602001919060010190612750565b5b50905061277991906127b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156127d05760008160009055506001016127b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61281d816127e8565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b600060208284031215612856576128556127de565b5b60006128648482850161282b565b91505092915050565b60008115159050919050565b6128828161286d565b82525050565b600060208201905061289d6000830184612879565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128dd5780820151818401526020810190506128c2565b838111156128ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061290e826128a3565b61291881856128ae565b93506129288185602086016128bf565b612931816128f2565b840191505092915050565b600060208201905081810360008301526129568184612903565b905092915050565b6000819050919050565b6129718161295e565b811461297c57600080fd5b50565b60008135905061298e81612968565b92915050565b6000602082840312156129aa576129a96127de565b5b60006129b88482850161297f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ec826129c1565b9050919050565b6129fc816129e1565b82525050565b6000602082019050612a1760008301846129f3565b92915050565b612a26816129e1565b8114612a3157600080fd5b50565b600081359050612a4381612a1d565b92915050565b60008060408385031215612a6057612a5f6127de565b5b6000612a6e85828601612a34565b9250506020612a7f8582860161297f565b9150509250929050565b612a928161295e565b82525050565b6000602082019050612aad6000830184612a89565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612af5826128f2565b810181811067ffffffffffffffff82111715612b1457612b13612abd565b5b80604052505050565b6000612b276127d4565b9050612b338282612aec565b919050565b600067ffffffffffffffff821115612b5357612b52612abd565b5b612b5c826128f2565b9050602081019050919050565b82818337600083830152505050565b6000612b8b612b8684612b38565b612b1d565b905082815260208101848484011115612ba757612ba6612ab8565b5b612bb2848285612b69565b509392505050565b600082601f830112612bcf57612bce612ab3565b5b8135612bdf848260208601612b78565b91505092915050565b600060208284031215612bfe57612bfd6127de565b5b600082013567ffffffffffffffff811115612c1c57612c1b6127e3565b5b612c2884828501612bba565b91505092915050565b600080600060608486031215612c4a57612c496127de565b5b6000612c5886828701612a34565b9350506020612c6986828701612a34565b9250506040612c7a8682870161297f565b9150509250925092565b600060208284031215612c9a57612c996127de565b5b6000612ca884828501612a34565b91505092915050565b612cba8161286d565b8114612cc557600080fd5b50565b600081359050612cd781612cb1565b92915050565b60008060408385031215612cf457612cf36127de565b5b6000612d0285828601612a34565b9250506020612d1385828601612cc8565b9150509250929050565b600067ffffffffffffffff821115612d3857612d37612abd565b5b612d41826128f2565b9050602081019050919050565b6000612d61612d5c84612d1d565b612b1d565b905082815260208101848484011115612d7d57612d7c612ab8565b5b612d88848285612b69565b509392505050565b600082601f830112612da557612da4612ab3565b5b8135612db5848260208601612d4e565b91505092915050565b60008060008060808587031215612dd857612dd76127de565b5b6000612de687828801612a34565b9450506020612df787828801612a34565b9350506040612e088782880161297f565b925050606085013567ffffffffffffffff811115612e2957612e286127e3565b5b612e3587828801612d90565b91505092959194509250565b60008060408385031215612e5857612e576127de565b5b6000612e6685828601612a34565b9250506020612e7785828601612a34565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612eb7601f836128ae565b9150612ec282612e81565b602082019050919050565b60006020820190508181036000830152612ee681612eaa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f278261295e565b9150612f328361295e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f6757612f66612eed565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb957607f821691505b602082108103612fcc57612fcb612f72565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061302e602d836128ae565b915061303982612fd2565b604082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c06022836128ae565b91506130cb82613064565b604082019050919050565b600060208201905081810360008301526130ef816130b3565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131526039836128ae565b915061315d826130f6565b604082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131be6020836128ae565b91506131c982613188565b602082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b600081905092915050565b50565b600061320f6000836131f4565b915061321a826131ff565b600082019050919050565b600061323082613202565b9150819050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006132966022836128ae565b91506132a18261323a565b604082019050919050565b600060208201905081810360008301526132c581613289565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613328602e836128ae565b9150613333826132cc565b604082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006133ba6023836128ae565b91506133c58261335e565b604082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061344c602b836128ae565b9150613457826133f0565b604082019050919050565b6000602082019050818103600083015261347b8161343f565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006134b8601a836128ae565b91506134c382613482565b602082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061354a6033836128ae565b9150613555826134ee565b604082019050919050565b600060208201905081810360008301526135798161353d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135dc602f836128ae565b91506135e782613580565b604082019050919050565b6000602082019050818103600083015261360b816135cf565b9050919050565b600081905092915050565b6000613628826128a3565b6136328185613612565b93506136428185602086016128bf565b80840191505092915050565b600061365a828561361d565b9150613666828461361d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136ce6026836128ae565b91506136d982613672565b604082019050919050565b600060208201905081810360008301526136fd816136c1565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006137606032836128ae565b915061376b82613704565b604082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006137f26026836128ae565b91506137fd82613796565b604082019050919050565b60006020820190508181036000830152613821816137e5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138846025836128ae565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613916602a836128ae565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006139a8602f836128ae565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a05826139de565b613a0f81856139e9565b9350613a1f8185602086016128bf565b613a28816128f2565b840191505092915050565b6000608082019050613a4860008301876129f3565b613a5560208301866129f3565b613a626040830185612a89565b8181036060830152613a7481846139fa565b905095945050505050565b600081519050613a8e81612814565b92915050565b600060208284031215613aaa57613aa96127de565b5b6000613ab884828501613a7f565b91505092915050565b6000613acc8261295e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613afe57613afd612eed565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b438261295e565b9150613b4e8361295e565b925082613b5e57613b5d613b09565b5b828204905092915050565b6000613b748261295e565b9150613b7f8361295e565b925082821015613b9257613b91612eed565b5b828203905092915050565b6000613ba88261295e565b9150613bb38361295e565b925082613bc357613bc2613b09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c596021836128ae565b9150613c6482613bfd565b604082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613ceb6028836128ae565b9150613cf682613c8f565b604082019050919050565b60006020820190508181036000830152613d1a81613cde565b905091905056fea2646970667358221220d9e800254b839242004748b709e6a3fc40c1ec7c37d1e066765207c2e263270c64736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610593578063d4506df7146105d0578063e985e9c51461060d578063f2fde38b1461064a5761019c565b8063a22cb46514610518578063b88d4fde14610541578063c7cd997f1461056a5761019c565b80637bca6008116100c65780637bca60081461046c5780638da5cb5b1461049757806395d89b41146104c25780639fdba636146104ed5761019c565b80636352211e146103db57806370a0823114610418578063715018a6146104555761019c565b80631dba4a0f116101595780632f745c59116101335780632f745c591461030d57806342842e0e1461034a57806346cfa91d146103735780634f6ccce71461039e5761019c565b80631dba4a0f146102b157806323b872dd146102da57806324600fc3146103035761019c565b806301ffc9a7146101a157806302bba053146101de57806306fdde03146101f5578063081812fc14610220578063095ea7b31461025d57806318160ddd14610286575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612840565b610673565b6040516101d59190612888565b60405180910390f35b3480156101ea57600080fd5b506101f36107bd565b005b34801561020157600080fd5b5061020a610926565b604051610217919061293c565b60405180910390f35b34801561022c57600080fd5b5061024760048036038101906102429190612994565b6109b8565b6040516102549190612a02565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f9190612a49565b610a3d565b005b34801561029257600080fd5b5061029b610b55565b6040516102a89190612a98565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612be8565b610b5e565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190612c31565b610bf4565b005b61030b610c04565b005b34801561031957600080fd5b50610334600480360381019061032f9190612a49565b610cf9565b6040516103419190612a98565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612c31565b610ee9565b005b34801561037f57600080fd5b50610388610f09565b604051610395919061293c565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612994565b610f97565b6040516103d29190612a98565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612994565b610fea565b60405161040f9190612a02565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612c84565b611000565b60405161044c9190612a98565b60405180910390f35b34801561046157600080fd5b5061046a6110e8565b005b34801561047857600080fd5b50610481611170565b60405161048e9190612a98565b60405180910390f35b3480156104a357600080fd5b506104ac611176565b6040516104b99190612a02565b60405180910390f35b3480156104ce57600080fd5b506104d76111a0565b6040516104e4919061293c565b60405180910390f35b3480156104f957600080fd5b50610502611232565b60405161050f9190612a98565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612cdd565b611238565b005b34801561054d57600080fd5b5061056860048036038101906105639190612dbe565b6113b8565b005b34801561057657600080fd5b50610591600480360381019061058c9190612994565b611414565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612994565b61149a565b6040516105c7919061293c565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612c84565b611541565b6040516106049190612a98565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612e41565b611559565b6040516106419190612888565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612c84565b6115ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b657506107b5826116e4565b5b9050919050565b600260085403610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990612ecd565b60405180910390fd5b60026008819055506000610814610b55565b9050600a54600b54826108279190612f1c565b111561083257600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461086a57600080fd5b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106108b757600080fd5b6108c333600b5461174e565b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109149190612f1c565b92505081905550506001600881905550565b60606001805461093590612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461096190612fa1565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b60006109c38261176c565b610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613044565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4882610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906130d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad7611779565b73ffffffffffffffffffffffffffffffffffffffff161480610b065750610b0581610b00611779565b611559565b5b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613168565b60405180910390fd5b610b50838383611781565b505050565b60008054905090565b610b66611779565b73ffffffffffffffffffffffffffffffffffffffff16610b84611176565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906131d4565b60405180910390fd5b8060099080519060200190610bf09291906126f7565b5050565b610bff838383611833565b505050565b610c0c611779565b73ffffffffffffffffffffffffffffffffffffffff16610c2a611176565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906131d4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca690613225565b60006040518083038185875af1925050503d8060008114610ce3576040519150601f19603f3d011682016040523d82523d6000602084013e610ce8565b606091505b5050905080610cf657600080fd5b50565b6000610d0483611000565b8210610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906132ac565b60405180910390fd5b6000610d4f610b55565b905060008060005b83811015610ea7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e4957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9957868403610e90578195505050505050610ee3565b83806001019450505b508080600101915050610d57565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061333e565b60405180910390fd5b92915050565b610f04838383604051806020016040528060008152506113b8565b505050565b60098054610f1690612fa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4290612fa1565b8015610f8f5780601f10610f6457610100808354040283529160200191610f8f565b820191906000526020600020905b815481529060010190602001808311610f7257829003601f168201915b505050505081565b6000610fa1610b55565b8210610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906133d0565b60405180910390fd5b819050919050565b6000610ff582611d71565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613462565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110f0611779565b73ffffffffffffffffffffffffffffffffffffffff1661110e611176565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906131d4565b60405180910390fd5b61116e6000611f0b565b565b600a5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111af90612fa1565b80601f01602080910402602001604051908101604052809291908181526020018280546111db90612fa1565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b5050505050905090565b600b5481565b611240611779565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a4906134ce565b60405180910390fd5b80600660006112ba611779565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611367611779565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ac9190612888565b60405180910390a35050565b6113c3848484611833565b6113cf84848484611fd1565b61140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590613560565b60405180910390fd5b50505050565b61141c611779565b73ffffffffffffffffffffffffffffffffffffffff1661143a611176565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906131d4565b60405180910390fd5b80600b8190555050565b60606114a58261176c565b6114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906135f2565b60405180910390fd5b60006114ee612158565b9050600081510361150e5760405180602001604052806000815250611539565b80611518846121ea565b60405160200161152992919061364e565b6040516020818303038152906040525b915050919050565b600c6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115f5611779565b73ffffffffffffffffffffffffffffffffffffffff16611613611176565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611660906131d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906136e4565b60405180910390fd5b6116e181611f0b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61176882826040518060200160405280600081525061234a565b5050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183e82611d71565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611865611779565b73ffffffffffffffffffffffffffffffffffffffff1614806118c1575061188a611779565b73ffffffffffffffffffffffffffffffffffffffff166118a9846109b8565b73ffffffffffffffffffffffffffffffffffffffff16145b806118dd57506118dc82600001516118d7611779565b611559565b5b90508061191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613776565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613808565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061389a565b60405180910390fd5b611a0d858585600161235c565b611a1d6000848460000151611781565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d0157611c608161176c565b15611d005782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6a8585856001612362565b5050505050565b611d7961277d565b611d828261176c565b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061392c565b60405180910390fd5b60008290505b60008110611eca576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ebb578092505050611f06565b50808060019003915050611dc7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906139be565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ff28473ffffffffffffffffffffffffffffffffffffffff16612368565b1561214b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261201b611779565b8786866040518563ffffffff1660e01b815260040161203d9493929190613a33565b6020604051808303816000875af192505050801561207957506040513d601f19601f820116820180604052508101906120769190613a94565b60015b6120fb573d80600081146120a9576040519150601f19603f3d011682016040523d82523d6000602084013e6120ae565b606091505b5060008151036120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90613560565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612150565b600190505b949350505050565b60606009805461216790612fa1565b80601f016020809104026020016040519081016040528092919081815260200182805461219390612fa1565b80156121e05780601f106121b5576101008083540402835291602001916121e0565b820191906000526020600020905b8154815290600101906020018083116121c357829003601f168201915b5050505050905090565b606060008203612231576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612345565b600082905060005b6000821461226357808061224c90613ac1565b915050600a8261225c9190613b38565b9150612239565b60008167ffffffffffffffff81111561227f5761227e612abd565b5b6040519080825280601f01601f1916602001820160405280156122b15781602001600182028036833780820191505090505b5090505b6000851461233e576001826122ca9190613b69565b9150600a856122d99190613b9d565b60306122e59190612f1c565b60f81b8183815181106122fb576122fa613bce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123379190613b38565b94506122b5565b8093505050505b919050565b612357838383600161237b565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613c6f565b60405180910390fd5b60008403612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90613d01565b60405180910390fd5b612440600086838761235c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126c5576126856000888488611fd1565b6126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb90613560565b60405180910390fd5b5b8180600101925050808060010191505061260e565b5080600081905550506126f06000868387612362565b5050505050565b82805461270390612fa1565b90600052602060002090601f016020900481019282612725576000855561276c565b82601f1061273e57805160ff191683800117855561276c565b8280016001018555821561276c579182015b8281111561276b578251825591602001919060010190612750565b5b50905061277991906127b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156127d05760008160009055506001016127b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61281d816127e8565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b600060208284031215612856576128556127de565b5b60006128648482850161282b565b91505092915050565b60008115159050919050565b6128828161286d565b82525050565b600060208201905061289d6000830184612879565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128dd5780820151818401526020810190506128c2565b838111156128ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061290e826128a3565b61291881856128ae565b93506129288185602086016128bf565b612931816128f2565b840191505092915050565b600060208201905081810360008301526129568184612903565b905092915050565b6000819050919050565b6129718161295e565b811461297c57600080fd5b50565b60008135905061298e81612968565b92915050565b6000602082840312156129aa576129a96127de565b5b60006129b88482850161297f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ec826129c1565b9050919050565b6129fc816129e1565b82525050565b6000602082019050612a1760008301846129f3565b92915050565b612a26816129e1565b8114612a3157600080fd5b50565b600081359050612a4381612a1d565b92915050565b60008060408385031215612a6057612a5f6127de565b5b6000612a6e85828601612a34565b9250506020612a7f8582860161297f565b9150509250929050565b612a928161295e565b82525050565b6000602082019050612aad6000830184612a89565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612af5826128f2565b810181811067ffffffffffffffff82111715612b1457612b13612abd565b5b80604052505050565b6000612b276127d4565b9050612b338282612aec565b919050565b600067ffffffffffffffff821115612b5357612b52612abd565b5b612b5c826128f2565b9050602081019050919050565b82818337600083830152505050565b6000612b8b612b8684612b38565b612b1d565b905082815260208101848484011115612ba757612ba6612ab8565b5b612bb2848285612b69565b509392505050565b600082601f830112612bcf57612bce612ab3565b5b8135612bdf848260208601612b78565b91505092915050565b600060208284031215612bfe57612bfd6127de565b5b600082013567ffffffffffffffff811115612c1c57612c1b6127e3565b5b612c2884828501612bba565b91505092915050565b600080600060608486031215612c4a57612c496127de565b5b6000612c5886828701612a34565b9350506020612c6986828701612a34565b9250506040612c7a8682870161297f565b9150509250925092565b600060208284031215612c9a57612c996127de565b5b6000612ca884828501612a34565b91505092915050565b612cba8161286d565b8114612cc557600080fd5b50565b600081359050612cd781612cb1565b92915050565b60008060408385031215612cf457612cf36127de565b5b6000612d0285828601612a34565b9250506020612d1385828601612cc8565b9150509250929050565b600067ffffffffffffffff821115612d3857612d37612abd565b5b612d41826128f2565b9050602081019050919050565b6000612d61612d5c84612d1d565b612b1d565b905082815260208101848484011115612d7d57612d7c612ab8565b5b612d88848285612b69565b509392505050565b600082601f830112612da557612da4612ab3565b5b8135612db5848260208601612d4e565b91505092915050565b60008060008060808587031215612dd857612dd76127de565b5b6000612de687828801612a34565b9450506020612df787828801612a34565b9350506040612e088782880161297f565b925050606085013567ffffffffffffffff811115612e2957612e286127e3565b5b612e3587828801612d90565b91505092959194509250565b60008060408385031215612e5857612e576127de565b5b6000612e6685828601612a34565b9250506020612e7785828601612a34565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612eb7601f836128ae565b9150612ec282612e81565b602082019050919050565b60006020820190508181036000830152612ee681612eaa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f278261295e565b9150612f328361295e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f6757612f66612eed565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb957607f821691505b602082108103612fcc57612fcb612f72565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061302e602d836128ae565b915061303982612fd2565b604082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c06022836128ae565b91506130cb82613064565b604082019050919050565b600060208201905081810360008301526130ef816130b3565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131526039836128ae565b915061315d826130f6565b604082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131be6020836128ae565b91506131c982613188565b602082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b600081905092915050565b50565b600061320f6000836131f4565b915061321a826131ff565b600082019050919050565b600061323082613202565b9150819050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006132966022836128ae565b91506132a18261323a565b604082019050919050565b600060208201905081810360008301526132c581613289565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613328602e836128ae565b9150613333826132cc565b604082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006133ba6023836128ae565b91506133c58261335e565b604082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061344c602b836128ae565b9150613457826133f0565b604082019050919050565b6000602082019050818103600083015261347b8161343f565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006134b8601a836128ae565b91506134c382613482565b602082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061354a6033836128ae565b9150613555826134ee565b604082019050919050565b600060208201905081810360008301526135798161353d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135dc602f836128ae565b91506135e782613580565b604082019050919050565b6000602082019050818103600083015261360b816135cf565b9050919050565b600081905092915050565b6000613628826128a3565b6136328185613612565b93506136428185602086016128bf565b80840191505092915050565b600061365a828561361d565b9150613666828461361d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136ce6026836128ae565b91506136d982613672565b604082019050919050565b600060208201905081810360008301526136fd816136c1565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006137606032836128ae565b915061376b82613704565b604082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006137f26026836128ae565b91506137fd82613796565b604082019050919050565b60006020820190508181036000830152613821816137e5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138846025836128ae565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613916602a836128ae565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006139a8602f836128ae565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a05826139de565b613a0f81856139e9565b9350613a1f8185602086016128bf565b613a28816128f2565b840191505092915050565b6000608082019050613a4860008301876129f3565b613a5560208301866129f3565b613a626040830185612a89565b8181036060830152613a7481846139fa565b905095945050505050565b600081519050613a8e81612814565b92915050565b600060208284031215613aaa57613aa96127de565b5b6000613ab884828501613a7f565b91505092915050565b6000613acc8261295e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613afe57613afd612eed565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b438261295e565b9150613b4e8361295e565b925082613b5e57613b5d613b09565b5b828204905092915050565b6000613b748261295e565b9150613b7f8361295e565b925082821015613b9257613b91612eed565b5b828203905092915050565b6000613ba88261295e565b9150613bb38361295e565b925082613bc357613bc2613b09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c596021836128ae565b9150613c6482613bfd565b604082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613ceb6028836128ae565b9150613cf682613c8f565b604082019050919050565b60006020820190508181036000830152613d1a81613cde565b905091905056fea2646970667358221220d9e800254b839242004748b709e6a3fc40c1ec7c37d1e066765207c2e263270c64736f6c634300080d0033
Deployed Bytecode Sourcemap
56184:1188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40341:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56603:368;;;;;;;;;;;;;:::i;:::-;;42227:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43789:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43310:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38598:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57105:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44665:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57208:161;;;:::i;:::-;;39262:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44898:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56277:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38775:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42036:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40777:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13944:94;;;;;;;;;;;;;:::i;:::-;;56307:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13293:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42396:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56348:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44075:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45146:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56979:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42571:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56388:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44434:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14193:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40341:372;40443:4;40495:25;40480:40;;;:11;:40;;;;:105;;;;40552:33;40537:48;;;:11;:48;;;;40480:105;:172;;;;40617:35;40602:50;;;:11;:50;;;;40480:172;:225;;;;40669:36;40693:11;40669:23;:36::i;:::-;40480:225;40460:245;;40341:372;;;:::o;56603:368::-;55210:1;55808:7;;:19;55800:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55210:1;55941:7;:18;;;;56655:23:::1;56681:13;:11;:13::i;:::-;56655:39;;56749:13;;56731:14;;56713:15;:32;;;;:::i;:::-;:49;;56705:58;;;::::0;::::1;;56796:9;56782:23;;:10;:23;;;56774:32;;;::::0;::::1;;56848:14;;56822:11;:23;56834:10;56822:23;;;;;;;;;;;;;;;;:40;56814:49;;;::::0;::::1;;56874:37;56884:10;56896:14;;56874:9;:37::i;:::-;56949:14;;56922:11;:23;56934:10;56922:23;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;56645:326;55166:1:::0;56120:7;:22;;;;56603:368::o;42227:100::-;42281:13;42314:5;42307:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42227:100;:::o;43789:214::-;43857:7;43885:16;43893:7;43885;:16::i;:::-;43877:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43971:15;:24;43987:7;43971:24;;;;;;;;;;;;;;;;;;;;;43964:31;;43789:214;;;:::o;43310:413::-;43383:13;43399:24;43415:7;43399:15;:24::i;:::-;43383:40;;43448:5;43442:11;;:2;:11;;;43434:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43543:5;43527:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43552:37;43569:5;43576:12;:10;:12::i;:::-;43552:16;:37::i;:::-;43527:62;43505:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43687:28;43696:2;43700:7;43709:5;43687:8;:28::i;:::-;43372:351;43310:413;;:::o;38598:100::-;38651:7;38678:12;;38671:19;;38598:100;:::o;57105:95::-;13524:12;:10;:12::i;:::-;13513:23;;:7;:5;:7::i;:::-;:23;;;13505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57188:4:::1;57176:9;:16;;;;;;;;;;;;:::i;:::-;;57105:95:::0;:::o;44665:162::-;44791:28;44801:4;44807:2;44811:7;44791:9;:28::i;:::-;44665:162;;;:::o;57208:161::-;13524:12;:10;:12::i;:::-;13513:23;;:7;:5;:7::i;:::-;:23;;;13505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57267:12:::1;57293:10;57285:24;;57317:21;57285:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57266:77;;;57356:7;57348:16;;;::::0;::::1;;57258:111;57208:161::o:0;39262:1007::-;39351:7;39387:16;39397:5;39387:9;:16::i;:::-;39379:5;:24;39371:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39453:22;39478:13;:11;:13::i;:::-;39453:38;;39502:19;39532:25;39721:9;39716:466;39736:14;39732:1;:18;39716:466;;;39776:31;39810:11;:14;39822:1;39810:14;;;;;;;;;;;39776:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39873:1;39847:28;;:9;:14;;;:28;;;39843:111;;39920:9;:14;;;39900:34;;39843:111;39997:5;39976:26;;:17;:26;;;39972:195;;40046:5;40031:11;:20;40027:85;;40087:1;40080:8;;;;;;;;;40027:85;40134:13;;;;;;;39972:195;39757:425;39752:3;;;;;;;39716:466;;;;40205:56;;;;;;;;;;:::i;:::-;;;;;;;;39262:1007;;;;;:::o;44898:177::-;45028:39;45045:4;45051:2;45055:7;45028:39;;;;;;;;;;;;:16;:39::i;:::-;44898:177;;;:::o;56277:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38775:187::-;38842:7;38878:13;:11;:13::i;:::-;38870:5;:21;38862:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38949:5;38942:12;;38775:187;;;:::o;42036:124::-;42100:7;42127:20;42139:7;42127:11;:20::i;:::-;:25;;;42120:32;;42036:124;;;:::o;40777:221::-;40841:7;40886:1;40869:19;;:5;:19;;;40861:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40962:12;:19;40975:5;40962:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;40954:36;;40947:43;;40777:221;;;:::o;13944:94::-;13524:12;:10;:12::i;:::-;13513:23;;:7;:5;:7::i;:::-;:23;;;13505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:21:::1;14027:1;14009:9;:21::i;:::-;13944:94::o:0;56307:34::-;;;;:::o;13293:87::-;13339:7;13366:6;;;;;;;;;;;13359:13;;13293:87;:::o;42396:104::-;42452:13;42485:7;42478:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42396:104;:::o;56348:33::-;;;;:::o;44075:288::-;44182:12;:10;:12::i;:::-;44170:24;;:8;:24;;;44162:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44283:8;44238:18;:32;44257:12;:10;:12::i;:::-;44238:32;;;;;;;;;;;;;;;:42;44271:8;44238:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;44336:8;44307:48;;44322:12;:10;:12::i;:::-;44307:48;;;44346:8;44307:48;;;;;;:::i;:::-;;;;;;;;44075:288;;:::o;45146:355::-;45305:28;45315:4;45321:2;45325:7;45305:9;:28::i;:::-;45366:48;45389:4;45395:2;45399:7;45408:5;45366:22;:48::i;:::-;45344:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;45146:355;;;;:::o;56979:118::-;13524:12;:10;:12::i;:::-;13513:23;;:7;:5;:7::i;:::-;:23;;;13505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57074:15:::1;57057:14;:32;;;;56979:118:::0;:::o;42571:335::-;42644:13;42678:16;42686:7;42678;:16::i;:::-;42670:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42759:21;42783:10;:8;:10::i;:::-;42759:34;;42836:1;42817:7;42811:21;:26;:87;;;;;;;;;;;;;;;;;42864:7;42873:18;:7;:16;:18::i;:::-;42847:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42811:87;42804:94;;;42571:335;;;:::o;56388:46::-;;;;;;;;;;;;;;;;;:::o;44434:164::-;44531:4;44555:18;:25;44574:5;44555:25;;;;;;;;;;;;;;;:35;44581:8;44555:35;;;;;;;;;;;;;;;;;;;;;;;;;44548:42;;44434:164;;;;:::o;14193:192::-;13524:12;:10;:12::i;:::-;13513:23;;:7;:5;:7::i;:::-;:23;;;13505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14302:1:::1;14282:22;;:8;:22;;::::0;14274:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14358:19;14368:8;14358:9;:19::i;:::-;14193:192:::0;:::o;30745:157::-;30830:4;30869:25;30854:40;;;:11;:40;;;;30847:47;;30745:157;;;:::o;45875:104::-;45944:27;45954:2;45958:8;45944:27;;;;;;;;;;;;:9;:27::i;:::-;45875:104;;:::o;45756:111::-;45813:4;45847:12;;45837:7;:22;45830:29;;45756:111;;;:::o;12114:98::-;12167:7;12194:10;12187:17;;12114:98;:::o;50676:196::-;50818:2;50791:15;:24;50807:7;50791:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50856:7;50852:2;50836:28;;50845:5;50836:28;;;;;;;;;;;;50676:196;;;:::o;48556:2002::-;48671:35;48709:20;48721:7;48709:11;:20::i;:::-;48671:58;;48742:22;48784:13;:18;;;48768:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;48843:12;:10;:12::i;:::-;48819:36;;:20;48831:7;48819:11;:20::i;:::-;:36;;;48768:87;:154;;;;48872:50;48889:13;:18;;;48909:12;:10;:12::i;:::-;48872:16;:50::i;:::-;48768:154;48742:181;;48944:17;48936:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49059:4;49037:26;;:13;:18;;;:26;;;49029:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49139:1;49125:16;;:2;:16;;;49117:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49196:43;49218:4;49224:2;49228:7;49237:1;49196:21;:43::i;:::-;49304:49;49321:1;49325:7;49334:13;:18;;;49304:8;:49::i;:::-;49679:1;49649:12;:18;49662:4;49649:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49723:1;49695:12;:16;49708:2;49695:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49769:2;49741:11;:20;49753:7;49741:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;49831:15;49786:11;:20;49798:7;49786:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;50099:19;50131:1;50121:7;:11;50099:33;;50192:1;50151:43;;:11;:24;50163:11;50151:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50147:295;;50219:20;50227:11;50219:7;:20::i;:::-;50215:212;;;50296:13;:18;;;50264:11;:24;50276:11;50264:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;50379:13;:28;;;50337:11;:24;50349:11;50337:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;50215:212;50147:295;49624:829;50489:7;50485:2;50470:27;;50479:4;50470:27;;;;;;;;;;;;50508:42;50529:4;50535:2;50539:7;50548:1;50508:20;:42::i;:::-;48660:1898;;48556:2002;;;:::o;41437:537::-;41498:21;;:::i;:::-;41540:16;41548:7;41540;:16::i;:::-;41532:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41646:12;41661:7;41646:22;;41641:245;41678:1;41670:4;:9;41641:245;;41708:31;41742:11;:17;41754:4;41742:17;;;;;;;;;;;41708:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41808:1;41782:28;;:9;:14;;;:28;;;41778:93;;41842:9;41835:16;;;;;;41778:93;41689:197;41681:6;;;;;;;;41641:245;;;;41909:57;;;;;;;;;;:::i;:::-;;;;;;;;41437:537;;;;:::o;14393:173::-;14449:16;14468:6;;;;;;;;;;;14449:25;;14494:8;14485:6;;:17;;;;;;;;;;;;;;;;;;14549:8;14518:40;;14539:8;14518:40;;;;;;;;;;;;14438:128;14393:173;:::o;51437:804::-;51592:4;51613:15;:2;:13;;;:15::i;:::-;51609:625;;;51665:2;51649:36;;;51686:12;:10;:12::i;:::-;51700:4;51706:7;51715:5;51649:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51645:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51912:1;51895:6;:13;:18;51891:273;;51938:61;;;;;;;;;;:::i;:::-;;;;;;;;51891:273;52114:6;52108:13;52099:6;52095:2;52091:15;52084:38;51645:534;51782:45;;;51772:55;;;:6;:55;;;;51765:62;;;;;51609:625;52218:4;52211:11;;51437:804;;;;;;;:::o;56487:110::-;56547:13;56580:9;56573:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56487:110;:::o;288:723::-;344:13;574:1;565:5;:10;561:53;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;46342:163::-;46465:32;46471:2;46475:8;46485:5;46492:4;46465:5;:32::i;:::-;46342:163;;;:::o;52729:159::-;;;;;:::o;53300:158::-;;;;;:::o;15307:387::-;15367:4;15575:12;15642:7;15630:20;15622:28;;15685:1;15678:4;:8;15671:15;;;15307:387;;;:::o;46764:1538::-;46903:20;46926:12;;46903:35;;46971:1;46957:16;;:2;:16;;;46949:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47042:1;47030:8;:13;47022:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47101:61;47131:1;47135:2;47139:12;47153:8;47101:21;:61::i;:::-;47476:8;47440:12;:16;47453:2;47440:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47541:8;47500:12;:16;47513:2;47500:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47600:2;47567:11;:25;47579:12;47567:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47667:15;47617:11;:25;47629:12;47617:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;47700:20;47723:12;47700:35;;47757:9;47752:415;47772:8;47768:1;:12;47752:415;;;47836:12;47832:2;47811:38;;47828:1;47811:38;;;;;;;;;;;;47872:4;47868:249;;;47935:59;47966:1;47970:2;47974:12;47988:5;47935:22;:59::i;:::-;47901:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;47868:249;48137:14;;;;;;;47782:3;;;;;;;47752:415;;;;48198:12;48183;:27;;;;47415:807;48234:60;48263:1;48267:2;48271:12;48285:8;48234:20;:60::i;:::-;46892:1410;46764:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:181::-;12261:33;12257:1;12249:6;12245:14;12238:57;12121:181;:::o;12308:366::-;12450:3;12471:67;12535:2;12530:3;12471:67;:::i;:::-;12464:74;;12547:93;12636:3;12547:93;:::i;:::-;12665:2;12660:3;12656:12;12649:19;;12308:366;;;:::o;12680:419::-;12846:4;12884:2;12873:9;12869:18;12861:26;;12933:9;12927:4;12923:20;12919:1;12908:9;12904:17;12897:47;12961:131;13087:4;12961:131;:::i;:::-;12953:139;;12680:419;;;:::o;13105:180::-;13153:77;13150:1;13143:88;13250:4;13247:1;13240:15;13274:4;13271:1;13264:15;13291:305;13331:3;13350:20;13368:1;13350:20;:::i;:::-;13345:25;;13384:20;13402:1;13384:20;:::i;:::-;13379:25;;13538:1;13470:66;13466:74;13463:1;13460:81;13457:107;;;13544:18;;:::i;:::-;13457:107;13588:1;13585;13581:9;13574:16;;13291:305;;;;:::o;13602:180::-;13650:77;13647:1;13640:88;13747:4;13744:1;13737:15;13771:4;13768:1;13761:15;13788:320;13832:6;13869:1;13863:4;13859:12;13849:22;;13916:1;13910:4;13906:12;13937:18;13927:81;;13993:4;13985:6;13981:17;13971:27;;13927:81;14055:2;14047:6;14044:14;14024:18;14021:38;14018:84;;14074:18;;:::i;:::-;14018:84;13839:269;13788:320;;;:::o;14114:232::-;14254:34;14250:1;14242:6;14238:14;14231:58;14323:15;14318:2;14310:6;14306:15;14299:40;14114:232;:::o;14352:366::-;14494:3;14515:67;14579:2;14574:3;14515:67;:::i;:::-;14508:74;;14591:93;14680:3;14591:93;:::i;:::-;14709:2;14704:3;14700:12;14693:19;;14352:366;;;:::o;14724:419::-;14890:4;14928:2;14917:9;14913:18;14905:26;;14977:9;14971:4;14967:20;14963:1;14952:9;14948:17;14941:47;15005:131;15131:4;15005:131;:::i;:::-;14997:139;;14724:419;;;:::o;15149:221::-;15289:34;15285:1;15277:6;15273:14;15266:58;15358:4;15353:2;15345:6;15341:15;15334:29;15149:221;:::o;15376:366::-;15518:3;15539:67;15603:2;15598:3;15539:67;:::i;:::-;15532:74;;15615:93;15704:3;15615:93;:::i;:::-;15733:2;15728:3;15724:12;15717:19;;15376:366;;;:::o;15748:419::-;15914:4;15952:2;15941:9;15937:18;15929:26;;16001:9;15995:4;15991:20;15987:1;15976:9;15972:17;15965:47;16029:131;16155:4;16029:131;:::i;:::-;16021:139;;15748:419;;;:::o;16173:244::-;16313:34;16309:1;16301:6;16297:14;16290:58;16382:27;16377:2;16369:6;16365:15;16358:52;16173:244;:::o;16423:366::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:419::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:131;17202:4;17076:131;:::i;:::-;17068:139;;16795:419;;;:::o;17220:182::-;17360:34;17356:1;17348:6;17344:14;17337:58;17220:182;:::o;17408:366::-;17550:3;17571:67;17635:2;17630:3;17571:67;:::i;:::-;17564:74;;17647:93;17736:3;17647:93;:::i;:::-;17765:2;17760:3;17756:12;17749:19;;17408:366;;;:::o;17780:419::-;17946:4;17984:2;17973:9;17969:18;17961:26;;18033:9;18027:4;18023:20;18019:1;18008:9;18004:17;17997:47;18061:131;18187:4;18061:131;:::i;:::-;18053:139;;17780:419;;;:::o;18205:147::-;18306:11;18343:3;18328:18;;18205:147;;;;:::o;18358:114::-;;:::o;18478:398::-;18637:3;18658:83;18739:1;18734:3;18658:83;:::i;:::-;18651:90;;18750:93;18839:3;18750:93;:::i;:::-;18868:1;18863:3;18859:11;18852:18;;18478:398;;;:::o;18882:379::-;19066:3;19088:147;19231:3;19088:147;:::i;:::-;19081:154;;19252:3;19245:10;;18882:379;;;:::o;19267:221::-;19407:34;19403:1;19395:6;19391:14;19384:58;19476:4;19471:2;19463:6;19459:15;19452:29;19267:221;:::o;19494:366::-;19636:3;19657:67;19721:2;19716:3;19657:67;:::i;:::-;19650:74;;19733:93;19822:3;19733:93;:::i;:::-;19851:2;19846:3;19842:12;19835:19;;19494:366;;;:::o;19866:419::-;20032:4;20070:2;20059:9;20055:18;20047:26;;20119:9;20113:4;20109:20;20105:1;20094:9;20090:17;20083:47;20147:131;20273:4;20147:131;:::i;:::-;20139:139;;19866:419;;;:::o;20291:233::-;20431:34;20427:1;20419:6;20415:14;20408:58;20500:16;20495:2;20487:6;20483:15;20476:41;20291:233;:::o;20530:366::-;20672:3;20693:67;20757:2;20752:3;20693:67;:::i;:::-;20686:74;;20769:93;20858:3;20769:93;:::i;:::-;20887:2;20882:3;20878:12;20871:19;;20530:366;;;:::o;20902:419::-;21068:4;21106:2;21095:9;21091:18;21083:26;;21155:9;21149:4;21145:20;21141:1;21130:9;21126:17;21119:47;21183:131;21309:4;21183:131;:::i;:::-;21175:139;;20902:419;;;:::o;21327:222::-;21467:34;21463:1;21455:6;21451:14;21444:58;21536:5;21531:2;21523:6;21519:15;21512:30;21327:222;:::o;21555:366::-;21697:3;21718:67;21782:2;21777:3;21718:67;:::i;:::-;21711:74;;21794:93;21883:3;21794:93;:::i;:::-;21912:2;21907:3;21903:12;21896:19;;21555:366;;;:::o;21927:419::-;22093:4;22131:2;22120:9;22116:18;22108:26;;22180:9;22174:4;22170:20;22166:1;22155:9;22151:17;22144:47;22208:131;22334:4;22208:131;:::i;:::-;22200:139;;21927:419;;;:::o;22352:230::-;22492:34;22488:1;22480:6;22476:14;22469:58;22561:13;22556:2;22548:6;22544:15;22537:38;22352:230;:::o;22588:366::-;22730:3;22751:67;22815:2;22810:3;22751:67;:::i;:::-;22744:74;;22827:93;22916:3;22827:93;:::i;:::-;22945:2;22940:3;22936:12;22929:19;;22588:366;;;:::o;22960:419::-;23126:4;23164:2;23153:9;23149:18;23141:26;;23213:9;23207:4;23203:20;23199:1;23188:9;23184:17;23177:47;23241:131;23367:4;23241:131;:::i;:::-;23233:139;;22960:419;;;:::o;23385:176::-;23525:28;23521:1;23513:6;23509:14;23502:52;23385:176;:::o;23567:366::-;23709:3;23730:67;23794:2;23789:3;23730:67;:::i;:::-;23723:74;;23806:93;23895:3;23806:93;:::i;:::-;23924:2;23919:3;23915:12;23908:19;;23567:366;;;:::o;23939:419::-;24105:4;24143:2;24132:9;24128:18;24120:26;;24192:9;24186:4;24182:20;24178:1;24167:9;24163:17;24156:47;24220:131;24346:4;24220:131;:::i;:::-;24212:139;;23939:419;;;:::o;24364:238::-;24504:34;24500:1;24492:6;24488:14;24481:58;24573:21;24568:2;24560:6;24556:15;24549:46;24364:238;:::o;24608:366::-;24750:3;24771:67;24835:2;24830:3;24771:67;:::i;:::-;24764:74;;24847:93;24936:3;24847:93;:::i;:::-;24965:2;24960:3;24956:12;24949:19;;24608:366;;;:::o;24980:419::-;25146:4;25184:2;25173:9;25169:18;25161:26;;25233:9;25227:4;25223:20;25219:1;25208:9;25204:17;25197:47;25261:131;25387:4;25261:131;:::i;:::-;25253:139;;24980:419;;;:::o;25405:234::-;25545:34;25541:1;25533:6;25529:14;25522:58;25614:17;25609:2;25601:6;25597:15;25590:42;25405:234;:::o;25645:366::-;25787:3;25808:67;25872:2;25867:3;25808:67;:::i;:::-;25801:74;;25884:93;25973:3;25884:93;:::i;:::-;26002:2;25997:3;25993:12;25986:19;;25645:366;;;:::o;26017:419::-;26183:4;26221:2;26210:9;26206:18;26198:26;;26270:9;26264:4;26260:20;26256:1;26245:9;26241:17;26234:47;26298:131;26424:4;26298:131;:::i;:::-;26290:139;;26017:419;;;:::o;26442:148::-;26544:11;26581:3;26566:18;;26442:148;;;;:::o;26596:377::-;26702:3;26730:39;26763:5;26730:39;:::i;:::-;26785:89;26867:6;26862:3;26785:89;:::i;:::-;26778:96;;26883:52;26928:6;26923:3;26916:4;26909:5;26905:16;26883:52;:::i;:::-;26960:6;26955:3;26951:16;26944:23;;26706:267;26596:377;;;;:::o;26979:435::-;27159:3;27181:95;27272:3;27263:6;27181:95;:::i;:::-;27174:102;;27293:95;27384:3;27375:6;27293:95;:::i;:::-;27286:102;;27405:3;27398:10;;26979:435;;;;;:::o;27420:225::-;27560:34;27556:1;27548:6;27544:14;27537:58;27629:8;27624:2;27616:6;27612:15;27605:33;27420:225;:::o;27651:366::-;27793:3;27814:67;27878:2;27873:3;27814:67;:::i;:::-;27807:74;;27890:93;27979:3;27890:93;:::i;:::-;28008:2;28003:3;27999:12;27992:19;;27651:366;;;:::o;28023:419::-;28189:4;28227:2;28216:9;28212:18;28204:26;;28276:9;28270:4;28266:20;28262:1;28251:9;28247:17;28240:47;28304:131;28430:4;28304:131;:::i;:::-;28296:139;;28023:419;;;:::o;28448:237::-;28588:34;28584:1;28576:6;28572:14;28565:58;28657:20;28652:2;28644:6;28640:15;28633:45;28448:237;:::o;28691:366::-;28833:3;28854:67;28918:2;28913:3;28854:67;:::i;:::-;28847:74;;28930:93;29019:3;28930:93;:::i;:::-;29048:2;29043:3;29039:12;29032:19;;28691:366;;;:::o;29063:419::-;29229:4;29267:2;29256:9;29252:18;29244:26;;29316:9;29310:4;29306:20;29302:1;29291:9;29287:17;29280:47;29344:131;29470:4;29344:131;:::i;:::-;29336:139;;29063:419;;;:::o;29488:225::-;29628:34;29624:1;29616:6;29612:14;29605:58;29697:8;29692:2;29684:6;29680:15;29673:33;29488:225;:::o;29719:366::-;29861:3;29882:67;29946:2;29941:3;29882:67;:::i;:::-;29875:74;;29958:93;30047:3;29958:93;:::i;:::-;30076:2;30071:3;30067:12;30060:19;;29719:366;;;:::o;30091:419::-;30257:4;30295:2;30284:9;30280:18;30272:26;;30344:9;30338:4;30334:20;30330:1;30319:9;30315:17;30308:47;30372:131;30498:4;30372:131;:::i;:::-;30364:139;;30091:419;;;:::o;30516:224::-;30656:34;30652:1;30644:6;30640:14;30633:58;30725:7;30720:2;30712:6;30708:15;30701:32;30516:224;:::o;30746:366::-;30888:3;30909:67;30973:2;30968:3;30909:67;:::i;:::-;30902:74;;30985:93;31074:3;30985:93;:::i;:::-;31103:2;31098:3;31094:12;31087:19;;30746:366;;;:::o;31118:419::-;31284:4;31322:2;31311:9;31307:18;31299:26;;31371:9;31365:4;31361:20;31357:1;31346:9;31342:17;31335:47;31399:131;31525:4;31399:131;:::i;:::-;31391:139;;31118:419;;;:::o;31543:229::-;31683:34;31679:1;31671:6;31667:14;31660:58;31752:12;31747:2;31739:6;31735:15;31728:37;31543:229;:::o;31778:366::-;31920:3;31941:67;32005:2;32000:3;31941:67;:::i;:::-;31934:74;;32017:93;32106:3;32017:93;:::i;:::-;32135:2;32130:3;32126:12;32119:19;;31778:366;;;:::o;32150:419::-;32316:4;32354:2;32343:9;32339:18;32331:26;;32403:9;32397:4;32393:20;32389:1;32378:9;32374:17;32367:47;32431:131;32557:4;32431:131;:::i;:::-;32423:139;;32150:419;;;:::o;32575:234::-;32715:34;32711:1;32703:6;32699:14;32692:58;32784:17;32779:2;32771:6;32767:15;32760:42;32575:234;:::o;32815:366::-;32957:3;32978:67;33042:2;33037:3;32978:67;:::i;:::-;32971:74;;33054:93;33143:3;33054:93;:::i;:::-;33172:2;33167:3;33163:12;33156:19;;32815:366;;;:::o;33187:419::-;33353:4;33391:2;33380:9;33376:18;33368:26;;33440:9;33434:4;33430:20;33426:1;33415:9;33411:17;33404:47;33468:131;33594:4;33468:131;:::i;:::-;33460:139;;33187:419;;;:::o;33612:98::-;33663:6;33697:5;33691:12;33681:22;;33612:98;;;:::o;33716:168::-;33799:11;33833:6;33828:3;33821:19;33873:4;33868:3;33864:14;33849:29;;33716:168;;;;:::o;33890:360::-;33976:3;34004:38;34036:5;34004:38;:::i;:::-;34058:70;34121:6;34116:3;34058:70;:::i;:::-;34051:77;;34137:52;34182:6;34177:3;34170:4;34163:5;34159:16;34137:52;:::i;:::-;34214:29;34236:6;34214:29;:::i;:::-;34209:3;34205:39;34198:46;;33980:270;33890:360;;;;:::o;34256:640::-;34451:4;34489:3;34478:9;34474:19;34466:27;;34503:71;34571:1;34560:9;34556:17;34547:6;34503:71;:::i;:::-;34584:72;34652:2;34641:9;34637:18;34628:6;34584:72;:::i;:::-;34666;34734:2;34723:9;34719:18;34710:6;34666:72;:::i;:::-;34785:9;34779:4;34775:20;34770:2;34759:9;34755:18;34748:48;34813:76;34884:4;34875:6;34813:76;:::i;:::-;34805:84;;34256:640;;;;;;;:::o;34902:141::-;34958:5;34989:6;34983:13;34974:22;;35005:32;35031:5;35005:32;:::i;:::-;34902:141;;;;:::o;35049:349::-;35118:6;35167:2;35155:9;35146:7;35142:23;35138:32;35135:119;;;35173:79;;:::i;:::-;35135:119;35293:1;35318:63;35373:7;35364:6;35353:9;35349:22;35318:63;:::i;:::-;35308:73;;35264:127;35049:349;;;;:::o;35404:233::-;35443:3;35466:24;35484:5;35466:24;:::i;:::-;35457:33;;35512:66;35505:5;35502:77;35499:103;;35582:18;;:::i;:::-;35499:103;35629:1;35622:5;35618:13;35611:20;;35404:233;;;:::o;35643:180::-;35691:77;35688:1;35681:88;35788:4;35785:1;35778:15;35812:4;35809:1;35802:15;35829:185;35869:1;35886:20;35904:1;35886:20;:::i;:::-;35881:25;;35920:20;35938:1;35920:20;:::i;:::-;35915:25;;35959:1;35949:35;;35964:18;;:::i;:::-;35949:35;36006:1;36003;35999:9;35994:14;;35829:185;;;;:::o;36020:191::-;36060:4;36080:20;36098:1;36080:20;:::i;:::-;36075:25;;36114:20;36132:1;36114:20;:::i;:::-;36109:25;;36153:1;36150;36147:8;36144:34;;;36158:18;;:::i;:::-;36144:34;36203:1;36200;36196:9;36188:17;;36020:191;;;;:::o;36217:176::-;36249:1;36266:20;36284:1;36266:20;:::i;:::-;36261:25;;36300:20;36318:1;36300:20;:::i;:::-;36295:25;;36339:1;36329:35;;36344:18;;:::i;:::-;36329:35;36385:1;36382;36378:9;36373:14;;36217:176;;;;:::o;36399:180::-;36447:77;36444:1;36437:88;36544:4;36541:1;36534:15;36568:4;36565:1;36558:15;36585:220;36725:34;36721:1;36713:6;36709:14;36702:58;36794:3;36789:2;36781:6;36777:15;36770:28;36585:220;:::o;36811:366::-;36953:3;36974:67;37038:2;37033:3;36974:67;:::i;:::-;36967:74;;37050:93;37139:3;37050:93;:::i;:::-;37168:2;37163:3;37159:12;37152:19;;36811:366;;;:::o;37183:419::-;37349:4;37387:2;37376:9;37372:18;37364:26;;37436:9;37430:4;37426:20;37422:1;37411:9;37407:17;37400:47;37464:131;37590:4;37464:131;:::i;:::-;37456:139;;37183:419;;;:::o;37608:227::-;37748:34;37744:1;37736:6;37732:14;37725:58;37817:10;37812:2;37804:6;37800:15;37793:35;37608:227;:::o;37841:366::-;37983:3;38004:67;38068:2;38063:3;38004:67;:::i;:::-;37997:74;;38080:93;38169:3;38080:93;:::i;:::-;38198:2;38193:3;38189:12;38182:19;;37841:366;;;:::o;38213:419::-;38379:4;38417:2;38406:9;38402:18;38394:26;;38466:9;38460:4;38456:20;38452:1;38441:9;38437:17;38430:47;38494:131;38620:4;38494:131;:::i;:::-;38486:139;;38213:419;;;:::o
Swarm Source
ipfs://d9e800254b839242004748b709e6a3fc40c1ec7c37d1e066765207c2e263270c
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.