NFT
Overview
TokenID
2829
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
mcgoblintownwtf
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-04 */ // 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); } // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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); } // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // 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; abstract contract GOBBLINO { function ownerOf(uint256 tokenId) public virtual view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256); function balanceOf(address owner) external virtual view returns (uint256 balance); function tokensOfOwner(address owner) public virtual view returns (uint256[] memory); } contract mcgoblintownwtf is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _partslink; GOBBLINO private gobblino; address public mekEETsumday; uint ALLdemtoppinz = 6; bool public fyerupderGRIL = false; bool public sumday = false; bool public noThingy = false; bool public utilipee = false; address gobblinoThingy = 0xbCe3781ae7Ca1a5e050Bd9C4c77369867eBc307e; mapping(uint256 => uint) public frizewitdat; mapping(uint256 => uint) public SLOPstufs; mapping(uint256 => uint) public MEEEEEET; mapping(uint256 => uint) public mellteeGUDnesses; mapping(uint256 => uint) public stufonnaTOP; mapping(uint256 => uint) public grippeebits; mapping(uint256 => bool) public oopsy; mapping(uint256 => uint256) public oopsies; mapping(uint256 => bool) public fyerupder; constructor() ERC721A("mcgoblintownwtf", "MCGOBLIN") {gobblino = GOBBLINO(gobblinoThingy);} function esemblSNAK(uint yurGoblino, uint frize, uint slop, uint meet, uint meltee, uint stuf, uint grippe) external nonReentrant { require(fyerupderGRIL); require(yurGoblino > 0); require(gobblino.ownerOf(yurGoblino) == msg.sender); require(fyerupder[yurGoblino] == false); require(frize < ALLdemtoppinz); require(slop < ALLdemtoppinz); require(meet < ALLdemtoppinz); require(meltee < ALLdemtoppinz); require(stuf < ALLdemtoppinz); require(grippe < ALLdemtoppinz); uint256 distinghear = totalSupply(); frizewitdat[distinghear] = frize; SLOPstufs[distinghear] = slop; MEEEEEET[distinghear] = meet; mellteeGUDnesses[distinghear] = meltee; stufonnaTOP[distinghear] = stuf; grippeebits[distinghear] = grippe; fyerupder[yurGoblino] = true; _mint(msg.sender,1); } function esemblSNAKfordaking(uint yurGoblino, uint frize, uint slop, uint meet, uint meltee, uint stuf, uint grippe) external nonReentrant onlyOwner { require(yurGoblino == 0); require(gobblino.ownerOf(yurGoblino) == msg.sender); require(fyerupder[yurGoblino] == false); require(frize < ALLdemtoppinz); require(slop < ALLdemtoppinz); require(meet < ALLdemtoppinz); require(meltee < ALLdemtoppinz); require(stuf < ALLdemtoppinz); require(grippe < ALLdemtoppinz); uint256 distinghear = totalSupply(); frizewitdat[distinghear] = frize; SLOPstufs[distinghear] = slop; MEEEEEET[distinghear] = meet; mellteeGUDnesses[distinghear] = meltee; stufonnaTOP[distinghear] = stuf; grippeebits[distinghear] = grippe; fyerupder[yurGoblino] = true; _mint(msg.sender,1); } function chekfyerupder(uint256 yurGoblino) external view returns (bool) { return fyerupder[yurGoblino]; } function NOMZ(uint256 distinghear) external { require(sumday); if(!noThingy){ require(tx.origin == mekEETsumday || msg.sender == mekEETsumday); } _burn(distinghear); } function disferHEARerzitTUGO(address addr) external onlyOwner { mekEETsumday = addr; } function trnfryerOn(bool _daswitch) external onlyOwner { fyerupderGRIL = _daswitch; } function makeSumdaytwoday(bool _daswitch) external onlyOwner { sumday = _daswitch; } function makeUtilipee(bool _daswitch) external onlyOwner { utilipee = _daswitch; } function makethingygoaway(bool _daswitch) external onlyOwner { noThingy = _daswitch; } function makeSNAKhaveparts(string memory parts) external onlyOwner { _partslink = parts; } function makeAoops(uint256 yurGoblino, bool _oopsy, uint256 _oopsies) external onlyOwner { oopsy[yurGoblino] = _oopsy; oopsies[yurGoblino] = _oopsies; } function _baseURI() internal view virtual override returns (string memory) { return _partslink; } function tokenURI(uint256 yurGoblino) public view virtual override returns (string memory) { require(_exists(yurGoblino), "ERC721Metadata: URI query for nonexistent token"); uint frize = frizewitdat[yurGoblino]; uint slop = SLOPstufs[yurGoblino]; uint meet = MEEEEEET[yurGoblino]; uint meltees = mellteeGUDnesses[yurGoblino]; uint stuf = stufonnaTOP[yurGoblino]; uint grippee = grippeebits[yurGoblino]; if(oopsy[yurGoblino]){ string memory baseURI = _baseURI(); uint256 meesteak = oopsies[yurGoblino]; return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, meesteak.toString())) : ''; } else if(!utilipee){ string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, frize.toString(),"-",slop.toString(),"-",meet.toString(),"-",meltees.toString(),"-",stuf.toString(),"-",grippee.toString())) : ""; } else{ string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, yurGoblino.toString())) : ''; } } function sumthinboutfunds() 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"MEEEEEET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"distinghear","type":"uint256"}],"name":"NOMZ","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"SLOPstufs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_partslink","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":"yurGoblino","type":"uint256"}],"name":"chekfyerupder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"disferHEARerzitTUGO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"yurGoblino","type":"uint256"},{"internalType":"uint256","name":"frize","type":"uint256"},{"internalType":"uint256","name":"slop","type":"uint256"},{"internalType":"uint256","name":"meet","type":"uint256"},{"internalType":"uint256","name":"meltee","type":"uint256"},{"internalType":"uint256","name":"stuf","type":"uint256"},{"internalType":"uint256","name":"grippe","type":"uint256"}],"name":"esemblSNAK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"yurGoblino","type":"uint256"},{"internalType":"uint256","name":"frize","type":"uint256"},{"internalType":"uint256","name":"slop","type":"uint256"},{"internalType":"uint256","name":"meet","type":"uint256"},{"internalType":"uint256","name":"meltee","type":"uint256"},{"internalType":"uint256","name":"stuf","type":"uint256"},{"internalType":"uint256","name":"grippe","type":"uint256"}],"name":"esemblSNAKfordaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"frizewitdat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"fyerupder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fyerupderGRIL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"grippeebits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"yurGoblino","type":"uint256"},{"internalType":"bool","name":"_oopsy","type":"bool"},{"internalType":"uint256","name":"_oopsies","type":"uint256"}],"name":"makeAoops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"parts","type":"string"}],"name":"makeSNAKhaveparts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_daswitch","type":"bool"}],"name":"makeSumdaytwoday","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_daswitch","type":"bool"}],"name":"makeUtilipee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_daswitch","type":"bool"}],"name":"makethingygoaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mekEETsumday","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mellteeGUDnesses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noThingy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"oopsies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"oopsy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stufonnaTOP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sumday","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sumthinboutfunds","outputs":[],"stateMutability":"payable","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":"yurGoblino","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":[{"internalType":"bool","name":"_daswitch","type":"bool"}],"name":"trnfryerOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"utilipee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526006600d55600e80546001600160c01b03191677bce3781ae7ca1a5e050bd9c4c77369867ebc307e000000001790553480156200004057600080fd5b50604080518082018252600f81526e36b1b3b7b13634b73a37bbb73bba3360891b60208083019182528351808501909452600884526726a1a3a7a12624a760c11b908401528151919291620000989160029162000148565b508051620000ae90600390602084019062000148565b50506000805550620000c033620000f6565b6001600955600e54600b80546401000000009092046001600160a01b03166001600160a01b03199092169190911790556200022a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620001ee565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b600181811c908216806200020357607f821691505b6020821081036200022457634e487b7160e01b600052602260045260246000fd5b50919050565b612f45806200023a6000396000f3fe6080604052600436106102e65760003560e01c80635e925ff71161018457806395d89b41116100d6578063b88d4fde1161008a578063d4db363a11610064578063d4db363a146108a7578063e985e9c5146108d4578063f2fde38b1461092a57600080fd5b8063b88d4fde14610848578063b9a3505b14610868578063c87b56dd1461088757600080fd5b80639eb772e7116100bb5780639eb772e7146107db578063a22cb465146107fb578063b47ab36d1461081b57600080fd5b806395d89b411461079657806397f09235146107ab57600080fd5b8063715018a61161013857806391073a5c1161011257806391073a5c14610729578063935a27e714610756578063937d3dd21461077657600080fd5b8063715018a6146106c857806386da6f48146106dd5780638da5cb5b146106fe57600080fd5b80636352211e116101695780636352211e146106685780637002f8bb1461068857806370a08231146106a857600080fd5b80635e925ff71461060b5780635f572afc1461063b57600080fd5b806323b872dd1161023d57806338d517be116101f15780634a022400116101cb5780634a0224001461059e5780635c1dd5db146105be5780635d641143146105eb57600080fd5b806338d517be146105315780633ba9ad251461055e57806342842e0e1461057e57600080fd5b80633232deeb116102225780633232deeb146104f457806333958a1814610509578063372aeccb1461051157600080fd5b806323b872dd146104a75780632ebfb716146104c757600080fd5b8063095ea7b31161029f57806318160ddd1161027957806318160ddd1461044e5780631a96d456146104675780631ff847bd1461048757600080fd5b8063095ea7b3146103f25780630e64d7f014610414578063158cc8d41461043457600080fd5b806301ffc9a7116102d057806301ffc9a71461036b57806306fdde031461038b578063081812fc146103ad57600080fd5b8062f33272146102eb5780630179d90714610330575b600080fd5b3480156102f757600080fd5b5061031b61030636600461278a565b60176020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561033c57600080fd5b5061035d61034b36600461278a565b60166020526000908152604090205481565b604051908152602001610327565b34801561037757600080fd5b5061031b6103863660046127d1565b61094a565b34801561039757600080fd5b506103a0610a2f565b6040516103279190612864565b3480156103b957600080fd5b506103cd6103c836600461278a565b610ac1565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610327565b3480156103fe57600080fd5b5061041261040d366004612899565b610b2b565b005b34801561042057600080fd5b5061041261042f3660046128c5565b610c7b565b34801561044057600080fd5b50600e5461031b9060ff1681565b34801561045a57600080fd5b506001546000540361035d565b34801561047357600080fd5b506104126104823660046128f7565b610d48565b34801561049357600080fd5b506104126104a2366004612912565b610dfa565b3480156104b357600080fd5b506104126104c236600461295e565b611052565b3480156104d357600080fd5b5061035d6104e236600461278a565b60116020526000908152604090205481565b34801561050057600080fd5b506103a0611062565b6104126110f0565b34801561051d57600080fd5b5061041261052c3660046128f7565b6111c9565b34801561053d57600080fd5b50600c546103cd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561056a57600080fd5b50600e5461031b9062010000900460ff1681565b34801561058a57600080fd5b5061041261059936600461295e565b611282565b3480156105aa57600080fd5b506104126105b9366004612a62565b61129d565b3480156105ca57600080fd5b5061035d6105d936600461278a565b60106020526000908152604090205481565b3480156105f757600080fd5b506104126106063660046128f7565b611335565b34801561061757600080fd5b5061031b61062636600461278a565b60009081526017602052604090205460ff1690565b34801561064757600080fd5b5061035d61065636600461278a565b60126020526000908152604090205481565b34801561067457600080fd5b506103cd61068336600461278a565b6113ef565b34801561069457600080fd5b506104126106a3366004612912565b6113fa565b3480156106b457600080fd5b5061035d6106c33660046128c5565b6114f7565b3480156106d457600080fd5b50610412611566565b3480156106e957600080fd5b50600e5461031b906301000000900460ff1681565b34801561070a57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103cd565b34801561073557600080fd5b5061035d61074436600461278a565b60146020526000908152604090205481565b34801561076257600080fd5b50610412610771366004612aab565b6115f3565b34801561078257600080fd5b5061041261079136600461278a565b6116bc565b3480156107a257600080fd5b506103a061172f565b3480156107b757600080fd5b5061031b6107c636600461278a565b60156020526000908152604090205460ff1681565b3480156107e757600080fd5b506104126107f63660046128f7565b61173e565b34801561080757600080fd5b50610412610816366004612ae0565b6117f6565b34801561082757600080fd5b5061035d61083636600461278a565b600f6020526000908152604090205481565b34801561085457600080fd5b50610412610863366004612b15565b6118dc565b34801561087457600080fd5b50600e5461031b90610100900460ff1681565b34801561089357600080fd5b506103a06108a236600461278a565b61194c565b3480156108b357600080fd5b5061035d6108c236600461278a565b60136020526000908152604090205481565b3480156108e057600080fd5b5061031b6108ef366004612b95565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b506104126109453660046128c5565b611b94565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806109dd57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610a2957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610a3e90612bce565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6a90612bce565b8015610ab75780601f10610a8c57610100808354040283529160200191610ab7565b820191906000526020600020905b815481529060010190602001808311610a9a57829003601f168201915b5050505050905090565b6000610acc82611cc1565b610b02576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b3682611d01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614610bfa57610bc481336108ef565b610bfa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60085473ffffffffffffffffffffffffffffffffffffffff163314610dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260095403610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cf8565b6002600955600e5460ff16610e7a57600080fd5b60008711610e8757600080fd5b600b546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101899052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610ef6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1a9190612c21565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a57600080fd5b60008781526017602052604090205460ff1615610f5657600080fd5b600d548610610f6457600080fd5b600d548510610f7257600080fd5b600d548410610f8057600080fd5b600d548310610f8e57600080fd5b600d548210610f9c57600080fd5b600d548110610faa57600080fd5b6000610fb96001546000540390565b6000818152600f602090815260408083208b9055601082528083208a9055601182528083208990556012825280832088905560138252808320879055601482528083208690558b83526017909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155909150611043903390611dbf565b50506001600955505050505050565b61105d838383611ee7565b505050565b600a805461106f90612bce565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612bce565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff163314611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b604051600090339047908381818185875af1925050503d80600081146111b3576040519150601f19603f3d011682016040523d82523d6000602084013e6111b8565b606091505b50509050806111c657600080fd5b50565b60085473ffffffffffffffffffffffffffffffffffffffff16331461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b61105d838383604051806020016040528060008152506118dc565b60085473ffffffffffffffffffffffffffffffffffffffff16331461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b805161133190600a9060208401906126f1565b5050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146113b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610a2982611d01565b600260095403611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cf8565b600260095560085473ffffffffffffffffffffffffffffffffffffffff1633146114ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b8615610e8757600080fd5b600081600003611533576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b6115f16000612196565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600092835260156020908152604080852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169415159490941790935560169052912055565b600e54610100900460ff166116d057600080fd5b600e5462010000900460ff1661172657600c5473ffffffffffffffffffffffffffffffffffffffff1632148061171d5750600c5473ffffffffffffffffffffffffffffffffffffffff1633145b61172657600080fd5b6111c68161220d565b606060038054610a3e90612bce565b60085473ffffffffffffffffffffffffffffffffffffffff1633146117bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b3373ffffffffffffffffffffffffffffffffffffffff831603611845576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118e7848484611ee7565b73ffffffffffffffffffffffffffffffffffffffff83163b156119465761191084848484612218565b611946576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061195782611cc1565b6119e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cf8565b6000828152600f60209081526040808320546010835281842054601184528285205460128552838620546013865284872054601487528588205460159097529490962054929591949093919260ff1615611aaa576000611a41612392565b60008a8152601660205260408120548251929350919003611a715760405180602001604052806000815250611a9c565b81611a7b826123a1565b604051602001611a8c929190612c5a565b6040516020818303038152906040525b9a9950505050505050505050565b600e546301000000900460ff16611b4f576000611ac5612392565b90506000815111611ae55760405180602001604052806000815250611b42565b80611aef886123a1565b611af8886123a1565b611b01886123a1565b611b0a886123a1565b611b13886123a1565b611b1c886123a1565b604051602001611b329796959493929190612c89565b6040516020818303038152906040525b9998505050505050505050565b6000611b59612392565b90508051600003611b795760405180602001604052806000815250611b42565b80611b838a6123a1565b604051602001611b32929190612c5a565b60085473ffffffffffffffffffffffffffffffffffffffff163314611c15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b73ffffffffffffffffffffffffffffffffffffffff8116611cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cf8565b6111c681612196565b6000805482108015610a295750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611d8d57600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611d8b575b80600003611d8457507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611d45565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005482600003611dfc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003611e36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e8e5750600055505050565b6000611ef282611d01565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604081205473ffffffffffffffffffffffffffffffffffffffff90811691908616331480611f965750611f9686336108ef565b80611fb6575073ffffffffffffffffffffffffffffffffffffffff821633145b905080611fef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600003612029576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b811561206457600084815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555b73ffffffffffffffffffffffffffffffffffffffff868116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055928816825282822080546001019055868252600490529081207c02000000000000000000000000000000000000000000000000000000004260a01b8817811790915584169003612133576001840160008181526004602052604081205490036121315760005481146121315760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c68160006124d6565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612273903390899088908890600401612d8d565b6020604051808303816000875af19250505080156122cc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122c991810190612dd6565b60015b612343573d8080156122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50805160000361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600a8054610a3e90612bce565b6060816000036123e457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561240e57806123f881612e22565b91506124079050600a83612e89565b91506123e8565b60008167ffffffffffffffff8111156124295761242961299f565b6040519080825280601f01601f191660200182016040528015612453576020820181803683370190505b5090505b841561238a57612468600183612e9d565b9150612475600a86612eb4565b612480906030612ec8565b60f81b81838151811061249557612495612ee0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124cf600a86612e89565b9450612457565b60006124e183611d01565b600084815260066020526040902054909150819073ffffffffffffffffffffffffffffffffffffffff1683156125975760003373ffffffffffffffffffffffffffffffffffffffff8416148061253c575061253c83336108ef565b8061255c575073ffffffffffffffffffffffffffffffffffffffff821633145b905080612595576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b80156125d257600085815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff019055878352600490915281207c03000000000000000000000000000000000000000000000000000000004260a01b85171790557c02000000000000000000000000000000000000000000000000000000008416900361269d5760018501600081815260046020526040812054900361269b57600054811461269b5760008181526004602052604090208490555b505b604051859060009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b8280546126fd90612bce565b90600052602060002090601f01602090048101928261271f5760008555612765565b82601f1061273857805160ff1916838001178555612765565b82800160010185558215612765579182015b8281111561276557825182559160200191906001019061274a565b50612771929150612775565b5090565b5b808211156127715760008155600101612776565b60006020828403121561279c57600080fd5b5035919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146111c657600080fd5b6000602082840312156127e357600080fd5b8135611d84816127a3565b60005b838110156128095781810151838201526020016127f1565b838111156119465750506000910152565b600081518084526128328160208601602086016127ee565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d84602083018461281a565b73ffffffffffffffffffffffffffffffffffffffff811681146111c657600080fd5b600080604083850312156128ac57600080fd5b82356128b781612877565b946020939093013593505050565b6000602082840312156128d757600080fd5b8135611d8481612877565b803580151581146128f257600080fd5b919050565b60006020828403121561290957600080fd5b611d84826128e2565b600080600080600080600060e0888a03121561292d57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060006060848603121561297357600080fd5b833561297e81612877565b9250602084013561298e81612877565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156129e9576129e961299f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a2f57612a2f61299f565b81604052809350858152868686011115612a4857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a7457600080fd5b813567ffffffffffffffff811115612a8b57600080fd5b8201601f81018413612a9c57600080fd5b61238a848235602084016129ce565b600080600060608486031215612ac057600080fd5b83359250612ad0602085016128e2565b9150604084013590509250925092565b60008060408385031215612af357600080fd5b8235612afe81612877565b9150612b0c602084016128e2565b90509250929050565b60008060008060808587031215612b2b57600080fd5b8435612b3681612877565b93506020850135612b4681612877565b925060408501359150606085013567ffffffffffffffff811115612b6957600080fd5b8501601f81018713612b7a57600080fd5b612b89878235602084016129ce565b91505092959194509250565b60008060408385031215612ba857600080fd5b8235612bb381612877565b91506020830135612bc381612877565b809150509250929050565b600181811c90821680612be257607f821691505b602082108103612c1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215612c3357600080fd5b8151611d8481612877565b60008151612c508185602086016127ee565b9290920192915050565b60008351612c6c8184602088016127ee565b835190830190612c808183602088016127ee565b01949350505050565b600088516020612c9c8285838e016127ee565b895191840191612caf8184848e016127ee565b7f2d0000000000000000000000000000000000000000000000000000000000000092018281528951909290612cea8160018601858e016127ee565b600193019283018190528851612d068160028601858d016127ee565b600293019283018190528751612d228160038601858c016127ee565b600393019283015285516001830192612d42908290600401848a016127ee565b612d7d612d776003838601017f2d00000000000000000000000000000000000000000000000000000000000000815260010190565b87612c3e565b9c9b505050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612dcc608083018461281a565b9695505050505050565b600060208284031215612de857600080fd5b8151611d84816127a3565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e5357612e53612df3565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612e9857612e98612e5a565b500490565b600082821015612eaf57612eaf612df3565b500390565b600082612ec357612ec3612e5a565b500690565b60008219821115612edb57612edb612df3565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201710d2c2ada07ecf10e47e0ee584d8e6ee60f35f3bb83fc04e376c166c21cd3b64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102e65760003560e01c80635e925ff71161018457806395d89b41116100d6578063b88d4fde1161008a578063d4db363a11610064578063d4db363a146108a7578063e985e9c5146108d4578063f2fde38b1461092a57600080fd5b8063b88d4fde14610848578063b9a3505b14610868578063c87b56dd1461088757600080fd5b80639eb772e7116100bb5780639eb772e7146107db578063a22cb465146107fb578063b47ab36d1461081b57600080fd5b806395d89b411461079657806397f09235146107ab57600080fd5b8063715018a61161013857806391073a5c1161011257806391073a5c14610729578063935a27e714610756578063937d3dd21461077657600080fd5b8063715018a6146106c857806386da6f48146106dd5780638da5cb5b146106fe57600080fd5b80636352211e116101695780636352211e146106685780637002f8bb1461068857806370a08231146106a857600080fd5b80635e925ff71461060b5780635f572afc1461063b57600080fd5b806323b872dd1161023d57806338d517be116101f15780634a022400116101cb5780634a0224001461059e5780635c1dd5db146105be5780635d641143146105eb57600080fd5b806338d517be146105315780633ba9ad251461055e57806342842e0e1461057e57600080fd5b80633232deeb116102225780633232deeb146104f457806333958a1814610509578063372aeccb1461051157600080fd5b806323b872dd146104a75780632ebfb716146104c757600080fd5b8063095ea7b31161029f57806318160ddd1161027957806318160ddd1461044e5780631a96d456146104675780631ff847bd1461048757600080fd5b8063095ea7b3146103f25780630e64d7f014610414578063158cc8d41461043457600080fd5b806301ffc9a7116102d057806301ffc9a71461036b57806306fdde031461038b578063081812fc146103ad57600080fd5b8062f33272146102eb5780630179d90714610330575b600080fd5b3480156102f757600080fd5b5061031b61030636600461278a565b60176020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561033c57600080fd5b5061035d61034b36600461278a565b60166020526000908152604090205481565b604051908152602001610327565b34801561037757600080fd5b5061031b6103863660046127d1565b61094a565b34801561039757600080fd5b506103a0610a2f565b6040516103279190612864565b3480156103b957600080fd5b506103cd6103c836600461278a565b610ac1565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610327565b3480156103fe57600080fd5b5061041261040d366004612899565b610b2b565b005b34801561042057600080fd5b5061041261042f3660046128c5565b610c7b565b34801561044057600080fd5b50600e5461031b9060ff1681565b34801561045a57600080fd5b506001546000540361035d565b34801561047357600080fd5b506104126104823660046128f7565b610d48565b34801561049357600080fd5b506104126104a2366004612912565b610dfa565b3480156104b357600080fd5b506104126104c236600461295e565b611052565b3480156104d357600080fd5b5061035d6104e236600461278a565b60116020526000908152604090205481565b34801561050057600080fd5b506103a0611062565b6104126110f0565b34801561051d57600080fd5b5061041261052c3660046128f7565b6111c9565b34801561053d57600080fd5b50600c546103cd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561056a57600080fd5b50600e5461031b9062010000900460ff1681565b34801561058a57600080fd5b5061041261059936600461295e565b611282565b3480156105aa57600080fd5b506104126105b9366004612a62565b61129d565b3480156105ca57600080fd5b5061035d6105d936600461278a565b60106020526000908152604090205481565b3480156105f757600080fd5b506104126106063660046128f7565b611335565b34801561061757600080fd5b5061031b61062636600461278a565b60009081526017602052604090205460ff1690565b34801561064757600080fd5b5061035d61065636600461278a565b60126020526000908152604090205481565b34801561067457600080fd5b506103cd61068336600461278a565b6113ef565b34801561069457600080fd5b506104126106a3366004612912565b6113fa565b3480156106b457600080fd5b5061035d6106c33660046128c5565b6114f7565b3480156106d457600080fd5b50610412611566565b3480156106e957600080fd5b50600e5461031b906301000000900460ff1681565b34801561070a57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103cd565b34801561073557600080fd5b5061035d61074436600461278a565b60146020526000908152604090205481565b34801561076257600080fd5b50610412610771366004612aab565b6115f3565b34801561078257600080fd5b5061041261079136600461278a565b6116bc565b3480156107a257600080fd5b506103a061172f565b3480156107b757600080fd5b5061031b6107c636600461278a565b60156020526000908152604090205460ff1681565b3480156107e757600080fd5b506104126107f63660046128f7565b61173e565b34801561080757600080fd5b50610412610816366004612ae0565b6117f6565b34801561082757600080fd5b5061035d61083636600461278a565b600f6020526000908152604090205481565b34801561085457600080fd5b50610412610863366004612b15565b6118dc565b34801561087457600080fd5b50600e5461031b90610100900460ff1681565b34801561089357600080fd5b506103a06108a236600461278a565b61194c565b3480156108b357600080fd5b5061035d6108c236600461278a565b60136020526000908152604090205481565b3480156108e057600080fd5b5061031b6108ef366004612b95565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b506104126109453660046128c5565b611b94565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806109dd57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610a2957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610a3e90612bce565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6a90612bce565b8015610ab75780601f10610a8c57610100808354040283529160200191610ab7565b820191906000526020600020905b815481529060010190602001808311610a9a57829003601f168201915b5050505050905090565b6000610acc82611cc1565b610b02576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b3682611d01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614610bfa57610bc481336108ef565b610bfa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60085473ffffffffffffffffffffffffffffffffffffffff163314610dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260095403610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cf8565b6002600955600e5460ff16610e7a57600080fd5b60008711610e8757600080fd5b600b546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101899052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610ef6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1a9190612c21565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a57600080fd5b60008781526017602052604090205460ff1615610f5657600080fd5b600d548610610f6457600080fd5b600d548510610f7257600080fd5b600d548410610f8057600080fd5b600d548310610f8e57600080fd5b600d548210610f9c57600080fd5b600d548110610faa57600080fd5b6000610fb96001546000540390565b6000818152600f602090815260408083208b9055601082528083208a9055601182528083208990556012825280832088905560138252808320879055601482528083208690558b83526017909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155909150611043903390611dbf565b50506001600955505050505050565b61105d838383611ee7565b505050565b600a805461106f90612bce565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612bce565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff163314611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b604051600090339047908381818185875af1925050503d80600081146111b3576040519150601f19603f3d011682016040523d82523d6000602084013e6111b8565b606091505b50509050806111c657600080fd5b50565b60085473ffffffffffffffffffffffffffffffffffffffff16331461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b61105d838383604051806020016040528060008152506118dc565b60085473ffffffffffffffffffffffffffffffffffffffff16331461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b805161133190600a9060208401906126f1565b5050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146113b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610a2982611d01565b600260095403611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cf8565b600260095560085473ffffffffffffffffffffffffffffffffffffffff1633146114ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b8615610e8757600080fd5b600081600003611533576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b6115f16000612196565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600092835260156020908152604080852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169415159490941790935560169052912055565b600e54610100900460ff166116d057600080fd5b600e5462010000900460ff1661172657600c5473ffffffffffffffffffffffffffffffffffffffff1632148061171d5750600c5473ffffffffffffffffffffffffffffffffffffffff1633145b61172657600080fd5b6111c68161220d565b606060038054610a3e90612bce565b60085473ffffffffffffffffffffffffffffffffffffffff1633146117bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b3373ffffffffffffffffffffffffffffffffffffffff831603611845576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118e7848484611ee7565b73ffffffffffffffffffffffffffffffffffffffff83163b156119465761191084848484612218565b611946576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061195782611cc1565b6119e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cf8565b6000828152600f60209081526040808320546010835281842054601184528285205460128552838620546013865284872054601487528588205460159097529490962054929591949093919260ff1615611aaa576000611a41612392565b60008a8152601660205260408120548251929350919003611a715760405180602001604052806000815250611a9c565b81611a7b826123a1565b604051602001611a8c929190612c5a565b6040516020818303038152906040525b9a9950505050505050505050565b600e546301000000900460ff16611b4f576000611ac5612392565b90506000815111611ae55760405180602001604052806000815250611b42565b80611aef886123a1565b611af8886123a1565b611b01886123a1565b611b0a886123a1565b611b13886123a1565b611b1c886123a1565b604051602001611b329796959493929190612c89565b6040516020818303038152906040525b9998505050505050505050565b6000611b59612392565b90508051600003611b795760405180602001604052806000815250611b42565b80611b838a6123a1565b604051602001611b32929190612c5a565b60085473ffffffffffffffffffffffffffffffffffffffff163314611c15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf8565b73ffffffffffffffffffffffffffffffffffffffff8116611cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cf8565b6111c681612196565b6000805482108015610a295750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611d8d57600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611d8b575b80600003611d8457507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611d45565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005482600003611dfc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003611e36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e8e5750600055505050565b6000611ef282611d01565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604081205473ffffffffffffffffffffffffffffffffffffffff90811691908616331480611f965750611f9686336108ef565b80611fb6575073ffffffffffffffffffffffffffffffffffffffff821633145b905080611fef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600003612029576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b811561206457600084815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555b73ffffffffffffffffffffffffffffffffffffffff868116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055928816825282822080546001019055868252600490529081207c02000000000000000000000000000000000000000000000000000000004260a01b8817811790915584169003612133576001840160008181526004602052604081205490036121315760005481146121315760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c68160006124d6565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612273903390899088908890600401612d8d565b6020604051808303816000875af19250505080156122cc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122c991810190612dd6565b60015b612343573d8080156122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50805160000361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600a8054610a3e90612bce565b6060816000036123e457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561240e57806123f881612e22565b91506124079050600a83612e89565b91506123e8565b60008167ffffffffffffffff8111156124295761242961299f565b6040519080825280601f01601f191660200182016040528015612453576020820181803683370190505b5090505b841561238a57612468600183612e9d565b9150612475600a86612eb4565b612480906030612ec8565b60f81b81838151811061249557612495612ee0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124cf600a86612e89565b9450612457565b60006124e183611d01565b600084815260066020526040902054909150819073ffffffffffffffffffffffffffffffffffffffff1683156125975760003373ffffffffffffffffffffffffffffffffffffffff8416148061253c575061253c83336108ef565b8061255c575073ffffffffffffffffffffffffffffffffffffffff821633145b905080612595576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b80156125d257600085815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff019055878352600490915281207c03000000000000000000000000000000000000000000000000000000004260a01b85171790557c02000000000000000000000000000000000000000000000000000000008416900361269d5760018501600081815260046020526040812054900361269b57600054811461269b5760008181526004602052604090208490555b505b604051859060009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b8280546126fd90612bce565b90600052602060002090601f01602090048101928261271f5760008555612765565b82601f1061273857805160ff1916838001178555612765565b82800160010185558215612765579182015b8281111561276557825182559160200191906001019061274a565b50612771929150612775565b5090565b5b808211156127715760008155600101612776565b60006020828403121561279c57600080fd5b5035919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146111c657600080fd5b6000602082840312156127e357600080fd5b8135611d84816127a3565b60005b838110156128095781810151838201526020016127f1565b838111156119465750506000910152565b600081518084526128328160208601602086016127ee565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d84602083018461281a565b73ffffffffffffffffffffffffffffffffffffffff811681146111c657600080fd5b600080604083850312156128ac57600080fd5b82356128b781612877565b946020939093013593505050565b6000602082840312156128d757600080fd5b8135611d8481612877565b803580151581146128f257600080fd5b919050565b60006020828403121561290957600080fd5b611d84826128e2565b600080600080600080600060e0888a03121561292d57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060006060848603121561297357600080fd5b833561297e81612877565b9250602084013561298e81612877565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156129e9576129e961299f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a2f57612a2f61299f565b81604052809350858152868686011115612a4857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a7457600080fd5b813567ffffffffffffffff811115612a8b57600080fd5b8201601f81018413612a9c57600080fd5b61238a848235602084016129ce565b600080600060608486031215612ac057600080fd5b83359250612ad0602085016128e2565b9150604084013590509250925092565b60008060408385031215612af357600080fd5b8235612afe81612877565b9150612b0c602084016128e2565b90509250929050565b60008060008060808587031215612b2b57600080fd5b8435612b3681612877565b93506020850135612b4681612877565b925060408501359150606085013567ffffffffffffffff811115612b6957600080fd5b8501601f81018713612b7a57600080fd5b612b89878235602084016129ce565b91505092959194509250565b60008060408385031215612ba857600080fd5b8235612bb381612877565b91506020830135612bc381612877565b809150509250929050565b600181811c90821680612be257607f821691505b602082108103612c1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215612c3357600080fd5b8151611d8481612877565b60008151612c508185602086016127ee565b9290920192915050565b60008351612c6c8184602088016127ee565b835190830190612c808183602088016127ee565b01949350505050565b600088516020612c9c8285838e016127ee565b895191840191612caf8184848e016127ee565b7f2d0000000000000000000000000000000000000000000000000000000000000092018281528951909290612cea8160018601858e016127ee565b600193019283018190528851612d068160028601858d016127ee565b600293019283018190528751612d228160038601858c016127ee565b600393019283015285516001830192612d42908290600401848a016127ee565b612d7d612d776003838601017f2d00000000000000000000000000000000000000000000000000000000000000815260010190565b87612c3e565b9c9b505050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612dcc608083018461281a565b9695505050505050565b600060208284031215612de857600080fd5b8151611d84816127a3565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e5357612e53612df3565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612e9857612e98612e5a565b500490565b600082821015612eaf57612eaf612df3565b500390565b600082612ec357612ec3612e5a565b500690565b60008219821115612edb57612edb612df3565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201710d2c2ada07ecf10e47e0ee584d8e6ee60f35f3bb83fc04e376c166c21cd3b64736f6c634300080d0033
Deployed Bytecode Sourcemap
78433:5516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79281:41;;;;;;;;;;-1:-1:-1;79281:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;364:14:1;;357:22;339:41;;327:2;312:18;79281:41:0;;;;;;;;79232:42;;;;;;;;;;-1:-1:-1;79232:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;537:25:1;;;525:2;510:18;79232:42:0;391:177:1;49774:615:0;;;;;;;;;;-1:-1:-1;49774:615:0;;;;;:::i;:::-;;:::i;54797:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56865:204::-;;;;;;;;;;-1:-1:-1;56865:204:0;;;;;:::i;:::-;;:::i;:::-;;;2013:42:1;2001:55;;;1983:74;;1971:2;1956:18;56865:204:0;1837:226:1;56325:474:0;;;;;;;;;;-1:-1:-1;56325:474:0;;;;;:::i;:::-;;:::i;:::-;;81624:91;;;;;;;;;;-1:-1:-1;81624:91:0;;;;;:::i;:::-;;:::i;78665:33::-;;;;;;;;;;-1:-1:-1;78665:33:0;;;;;;;;48828:315;;;;;;;;;;-1:-1:-1;49094:12:0;;48881:7;49078:13;:28;48828:315;;81723:99;;;;;;;;;;-1:-1:-1;81723:99:0;;;;;:::i;:::-;;:::i;79426:933::-;;;;;;;;;;-1:-1:-1;79426:933:0;;;;;:::i;:::-;;:::i;57751:170::-;;;;;;;;;;-1:-1:-1;57751:170:0;;;;;:::i;:::-;;:::i;78984:40::-;;;;;;;;;;-1:-1:-1;78984:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;78536:24;;;;;;;;;;;;;:::i;83786:160::-;;;:::i;82040:100::-;;;;;;;;;;-1:-1:-1;82040:100:0;;;;;:::i;:::-;;:::i;78598:27::-;;;;;;;;;;-1:-1:-1;78598:27:0;;;;;;;;78738:28;;;;;;;;;;-1:-1:-1;78738:28:0;;;;;;;;;;;57992:185;;;;;;;;;;-1:-1:-1;57992:185:0;;;;;:::i;:::-;;:::i;82148:104::-;;;;;;;;;;-1:-1:-1;82148:104:0;;;;;:::i;:::-;;:::i;78936:41::-;;;;;;;;;;-1:-1:-1;78936:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;81936:96;;;;;;;;;;-1:-1:-1;81936:96:0;;;;;:::i;:::-;;:::i;81293:119::-;;;;;;;;;;-1:-1:-1;81293:119:0;;;;;:::i;:::-;81359:4;81383:21;;;:9;:21;;;;;;;;;81293:119;79031:48;;;;;;;;;;-1:-1:-1;79031:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;54586:144;;;;;;;;;;-1:-1:-1;54586:144:0;;;;;:::i;:::-;;:::i;80365:920::-;;;;;;;;;;-1:-1:-1;80365:920:0;;;;;:::i;:::-;;:::i;50453:234::-;;;;;;;;;;-1:-1:-1;50453:234:0;;;;;:::i;:::-;;:::i;13942:94::-;;;;;;;;;;;;;:::i;78773:28::-;;;;;;;;;;-1:-1:-1;78773:28:0;;;;;;;;;;;13291:87;;;;;;;;;;-1:-1:-1;13364:6:0;;;;13291:87;;79136:43;;;;;;;;;;-1:-1:-1;79136:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;82260:175;;;;;;;;;;-1:-1:-1;82260:175:0;;;;;:::i;:::-;;:::i;81417:202::-;;;;;;;;;;-1:-1:-1;81417:202:0;;;;;:::i;:::-;;:::i;54966:104::-;;;;;;;;;;;;;:::i;79188:37::-;;;;;;;;;;-1:-1:-1;79188:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;81830:98;;;;;;;;;;-1:-1:-1;81830:98:0;;;;;:::i;:::-;;:::i;57141:308::-;;;;;;;;;;-1:-1:-1;57141:308:0;;;;;:::i;:::-;;:::i;78886:43::-;;;;;;;;;;-1:-1:-1;78886:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;58248:396;;;;;;;;;;-1:-1:-1;58248:396:0;;;;;:::i;:::-;;:::i;78705:26::-;;;;;;;;;;-1:-1:-1;78705:26:0;;;;;;;;;;;82562:1216;;;;;;;;;;-1:-1:-1;82562:1216:0;;;;;:::i;:::-;;:::i;79086:43::-;;;;;;;;;;-1:-1:-1;79086:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;57520:164;;;;;;;;;;-1:-1:-1;57520:164:0;;;;;:::i;:::-;57641:25;;;;57617:4;57641:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57520:164;14191:192;;;;;;;;;;-1:-1:-1;14191:192:0;;;;;:::i;:::-;;:::i;49774:615::-;49859:4;50159:25;;;;;;:102;;-1:-1:-1;50236:25:0;;;;;50159:102;:179;;;-1:-1:-1;50313:25:0;;;;;50159:179;50139:199;49774:615;-1:-1:-1;;49774:615:0:o;54797:100::-;54851:13;54884:5;54877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54797:100;:::o;56865:204::-;56933:7;56958:16;56966:7;56958;:16::i;:::-;56953:64;;56983:34;;;;;;;;;;;;;;56953:64;-1:-1:-1;57037:24:0;;;;:15;:24;;;;;;;;;56865:204::o;56325:474::-;56398:13;56430:27;56449:7;56430:18;:27::i;:::-;56398:61;;56480:5;56474:11;;:2;:11;;;56470:48;;56494:24;;;;;;;;;;;;;;56470:48;73253:10;56535:28;;;;56531:175;;56583:44;56600:5;73253:10;57520:164;:::i;56583:44::-;56578:128;;56655:35;;;;;;;;;;;;;;56578:128;56718:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;56763:28;;56718:24;;56763:28;;;;;;;56387:412;56325:474;;:::o;81624:91::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;;;;;;;;;81691:12:::1;:19:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;81624:91::o;81723:99::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;81789:13:::1;:25:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;81723:99::o;79426:933::-;77072:1;77670:7;;:19;77662:63;;;;;;;8387:2:1;77662:63:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:33;8445:18;;;8438:61;8516:18;;77662:63:0;8185:355:1;77662:63:0;77072:1;77803:7;:18;79577:13:::1;::::0;::::1;;79569:22;;;::::0;::::1;;79623:1;79610:10;:14;79602:23;;;::::0;::::1;;79644:8;::::0;:28:::1;::::0;;;;::::1;::::0;::::1;537:25:1::0;;;79676:10:0::1;::::0;79644:42:::1;:8;::::0;:16:::1;::::0;510:18:1;;79644:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;;79636:51;;;::::0;::::1;;79700:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;:30;79692:39;;;::::0;::::1;;79756:13;;79748:5;:21;79740:30;;;::::0;::::1;;79796:13;;79789:4;:20;79781:29;;;::::0;::::1;;79836:13;;79829:4;:20;79821:29;;;::::0;::::1;;79878:13;;79869:6;:22;79861:31;;;::::0;::::1;;79918:13;;79911:4;:20;79903:29;;;::::0;::::1;;79960:13;;79951:6;:22;79943:31;;;::::0;::::1;;79987:19;80009:13;49094:12:::0;;48881:7;49078:13;:28;;48828:315;80009:13:::1;80033:24;::::0;;;:11:::1;:24;::::0;;;;;;;:32;;;80076:9:::1;:22:::0;;;;;:29;;;80116:8:::1;:21:::0;;;;;:28;;;80155:16:::1;:29:::0;;;;;:38;;;80204:11:::1;:24:::0;;;;;:31;;;80246:11:::1;:24:::0;;;;;:33;;;80290:21;;;:9:::1;:21:::0;;;;;:28;;;::::1;80314:4;80290:28:::0;;::::1;::::0;;;79987:35;;-1:-1:-1;80332:19:0::1;::::0;80338:10:::1;::::0;80332:5:::1;:19::i;:::-;-1:-1:-1::0;;77028:1:0;77982:7;:22;-1:-1:-1;;;;;;79426:933:0:o;57751:170::-;57885:28;57895:4;57901:2;57905:7;57885:9;:28::i;:::-;57751:170;;;:::o;78536:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83786:160::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;83862:58:::1;::::0;83844:12:::1;::::0;83870:10:::1;::::0;83894:21:::1;::::0;83844:12;83862:58;83844:12;83862:58;83894:21;83870:10;83862:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83843:77;;;83933:7;83925:16;;;::::0;::::1;;83839:107;83786:160::o:0;82040:100::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;82112:8:::1;:20:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;82040:100::o;57992:185::-;58130:39;58147:4;58153:2;58157:7;58130:39;;;;;;;;;;;;:16;:39::i;82148:104::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;82226:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;82148:104:::0;:::o;81936:96::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;82004:8:::1;:20:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;81936:96::o;54586:144::-;54650:7;54693:27;54712:7;54693:18;:27::i;80365:920::-;77072:1;77670:7;;:19;77662:63;;;;;;;8387:2:1;77662:63:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:33;8445:18;;;8438:61;8516:18;;77662:63:0;8185:355:1;77662:63:0;77072:1;77803:7;:18;13364:6;;13511:23:::1;13364:6:::0;73253:10;13511:23:::1;13503:68;;;::::0;::::1;::::0;;8026:2:1;13503:68:0::1;::::0;::::1;8008:21:1::0;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0::1;7824:356:1::0;13503:68:0::1;80535:15:::0;;80527:24:::2;;;::::0;::::2;50453:234:::0;50517:7;50559:5;50569:1;50541:29;50537:70;;50579:28;;;;;;;;;;;;;;50537:70;-1:-1:-1;50625:25:0;;;;;;:18;:25;;;;;;45798:13;50625:54;;50453:234::o;13942:94::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;14007:21:::1;14025:1;14007:9;:21::i;:::-;13942:94::o:0;82260:175::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;82360:17:::1;::::0;;;:5:::1;:17;::::0;;;;;;;:26;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;82397:7:::1;:19:::0;;;;:30;82260:175::o;81417:202::-;81480:6;;;;;;;81472:15;;;;;;81502:8;;;;;;;81498:94;;81537:12;;;;81524:9;:25;;:55;;-1:-1:-1;81567:12:0;;;;81553:10;:26;81524:55;81516:64;;;;;;81596:18;81602:11;81596:5;:18::i;54966:104::-;55022:13;55055:7;55048:14;;;;;:::i;81830:98::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;81902:6:::1;:18:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;81830:98::o;57141:308::-;73253:10;57240:31;;;;57236:61;;57280:17;;;;;;;;;;;;;;57236:61;73253:10;57310:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;57386:55;;339:41:1;;;57310:49:0;;73253:10;57386:55;;312:18:1;57386:55:0;;;;;;;57141:308;;:::o;58248:396::-;58415:28;58425:4;58431:2;58435:7;58415:9;:28::i;:::-;58458:14;;;;:19;58454:183;;58497:56;58528:4;58534:2;58538:7;58547:5;58497:30;:56::i;:::-;58492:145;;58581:40;;;;;;;;;;;;;;58492:145;58248:396;;;;:::o;82562:1216::-;82638:13;82672:19;82680:10;82672:7;:19::i;:::-;82664:79;;;;;;;9213:2:1;82664:79:0;;;9195:21:1;9252:2;9232:18;;;9225:30;9291:34;9271:18;;;9264:62;9362:17;9342:18;;;9335:45;9397:19;;82664:79:0;9011:411:1;82664:79:0;82756:10;82769:23;;;:11;:23;;;;;;;;;82815:9;:21;;;;;;82859:8;:20;;;;;;82905:16;:28;;;;;;82956:11;:23;;;;;;83005:11;:23;;;;;;83044:5;:17;;;;;;;;82769:23;;82815:21;;82859:20;;82905:28;;83044:17;;83041:733;;;83077:21;83101:10;:8;:10::i;:::-;83126:16;83145:19;;;:7;:19;;;;;;83186:21;;83077:34;;-1:-1:-1;83145:19:0;83186:26;;:88;;;;;;;;;;;;;;;;;83239:7;83248:19;:8;:17;:19::i;:::-;83222:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83186:88;83179:95;82562:1216;-1:-1:-1;;;;;;;;;;82562:1216:0:o;83041:733::-;83305:8;;;;;;;83301:473;;83329:21;83353:10;:8;:10::i;:::-;83329:34;;83409:1;83391:7;83385:21;:25;:190;;;;;;;;;;;;;;;;;83437:7;83446:16;:5;:14;:16::i;:::-;83467:15;:4;:13;:15::i;:::-;83487;:4;:13;:15::i;:::-;83507:18;:7;:16;:18::i;:::-;83530:15;:4;:13;:15::i;:::-;83550:18;:7;:16;:18::i;:::-;83420:149;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83385:190;83378:197;82562:1216;-1:-1:-1;;;;;;;;;82562:1216:0:o;83301:473::-;83616:21;83640:10;:8;:10::i;:::-;83616:34;;83678:7;83672:21;83697:1;83672:26;:90;;;;;;;;;;;;;;;;;83725:7;83734:21;:10;:19;:21::i;:::-;83708:48;;;;;;;;;:::i;14191:192::-;13364:6;;13511:23;13364:6;73253:10;13511:23;13503:68;;;;;;;8026:2:1;13503:68:0;;;8008:21:1;;;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;8156:18;;13503:68:0;7824:356:1;13503:68:0;14280:22:::1;::::0;::::1;14272:73;;;::::0;::::1;::::0;;12448:2:1;14272:73:0::1;::::0;::::1;12430:21:1::0;12487:2;12467:18;;;12460:30;12526:34;12506:18;;;12499:62;12597:8;12577:18;;;12570:36;12623:19;;14272:73:0::1;12246:402:1::0;14272:73:0::1;14356:19;14366:8;14356:9;:19::i;58899:273::-:0;58956:4;59046:13;;59036:7;:23;58993:152;;;;-1:-1:-1;;59097:26:0;;;;:17;:26;;;;;;46568:8;59097:43;:48;;58899:273::o;52101:1129::-;52168:7;52203;52305:13;;52298:4;:20;52294:869;;;52343:14;52360:23;;;:17;:23;;;;;;;46568:8;52449:23;;:28;;52445:699;;52968:113;52975:6;52985:1;52975:11;52968:113;;-1:-1:-1;53046:6:0;;53028:25;;;;:17;:25;;;;;;52968:113;;;53114:6;52101:1129;-1:-1:-1;;;52101:1129:0:o;52445:699::-;52320:843;52294:869;53191:31;;;;;;;;;;;;;;62238:1666;62303:20;62326:13;62372:2;62379:1;62354:26;62350:58;;62389:19;;;;;;;;;;;;;;62350:58;62423:8;62435:1;62423:13;62419:44;;62445:18;;;;;;;;;;;;;;62419:44;63012:22;;;;;;;:18;:22;;;;45935:2;63012:22;;;:70;;63050:31;63038:44;;63012:70;;;63325:31;;;:17;:31;;;;;63418:15;46452:3;63418:41;63376:84;;-1:-1:-1;63496:13:0;;46711:3;63481:56;63376:162;63325:213;;:31;63619:23;;;63659:111;63686:40;;63711:14;;;;;63686:40;;;;63703:1;;63686:40;;63703:1;;63686:40;63765:3;63750:12;:18;63659:111;;-1:-1:-1;63786:13:0;:28;57751:170;;;:::o;64158:2654::-;64273:27;64303;64322:7;64303:18;:27::i;:::-;64273:57;;64388:4;64347:45;;64363:19;64347:45;;;64343:86;;64401:28;;;;;;;;;;;;;;64343:86;64442:23;64468:24;;;:15;:24;;;;;;;;;;;64442:23;64531:27;;73253:10;64531:27;;:87;;-1:-1:-1;64575:43:0;64592:4;73253:10;57520:164;:::i;64575:43::-;64531:142;;;-1:-1:-1;64635:38:0;;;73253:10;64635:38;64531:142;64505:169;;64692:17;64687:66;;64718:35;;;;;;;;;;;;;;64687:66;64786:2;64793:1;64768:26;64764:62;;64803:23;;;;;;;;;;;;;;64764:62;64970:15;64952:39;64948:103;;65015:24;;;;:15;:24;;;;;65008:31;;;;;;64948:103;65418:24;;;;;;;;:18;:24;;;;;;;;65416:26;;;;;;65487:22;;;;;;;;65485:24;;-1:-1:-1;65485:24:0;;;65780:26;;;:17;:26;;;;;46846:8;65868:15;46452:3;65868:41;65826:84;;:128;;65780:174;;;66074:46;;:51;;66070:626;;66178:1;66168:11;;66146:19;66301:30;;;:17;:30;;;;;;:35;;66297:384;;66439:13;;66424:11;:28;66420:242;;66586:30;;;;:17;:30;;;;;:52;;;66420:242;66127:569;66070:626;66743:7;66739:2;66724:27;;66733:4;66724:27;;;;;;;;;;;;64262:2550;;;64158:2654;;;:::o;14391:173::-;14466:6;;;;14483:17;;;;;;;;;;;14516:40;;14466:6;;;14483:17;14466:6;;14516:40;;14447:16;;14516:40;14436:128;14391:173;:::o;66890:89::-;66950:21;66956:7;66965:5;66950;:21::i;70635:716::-;70819:88;;;;;70798:4;;70819:45;;;;;;:88;;73253:10;;70886:4;;70892:7;;70901:5;;70819:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70819:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;70815:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71102:6;:13;71119:1;71102:18;71098:235;;71148:40;;;;;;;;;;;;;;71098:235;71291:6;71285:13;71276:6;71272:2;71268:15;71261:38;70815:529;70978:64;;70988:54;70978:64;;-1:-1:-1;70815:529:0;70635:716;;;;;;:::o;82443:111::-;82503:13;82536:10;82529:17;;;;;:::i;286:723::-;342:13;563:5;572:1;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;;;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;67208:2935;67288:27;67318;67337:7;67318:18;:27::i;:::-;67358:12;67447:24;;;:15;:24;;;;;;67288:57;;-1:-1:-1;67288:57:0;;67447:24;;67484:306;;;;67518:22;73253:10;67544:27;;;;;:91;;-1:-1:-1;67592:43:0;67609:4;73253:10;57520:164;:::i;67592:43::-;67544:150;;;-1:-1:-1;67656:38:0;;;73253:10;67656:38;67544:150;67518:177;;67717:17;67712:66;;67743:35;;;;;;;;;;;;;;67712:66;67503:287;67484:306;67941:15;67923:39;67919:103;;67986:24;;;;:15;:24;;;;;67979:31;;;;;;67919:103;68610:24;;;;;;;:18;:24;;;;;;;;:59;;68638:31;68610:59;;;68907:26;;;:17;:26;;;;;68953:164;68997:15;46452:3;68997:41;68953:86;;:164;68907:210;;46846:8;69237:46;;:51;;69233:626;;69341:1;69331:11;;69309:19;69464:30;;;:17;:30;;;;;;:35;;69460:384;;69602:13;;69587:11;:28;69583:242;;69749:30;;;;:17;:30;;;;;:52;;;69583:242;69290:569;69233:626;69887:35;;69914:7;;69910:1;;69887:35;;;;;;69910:1;;69887:35;-1:-1:-1;;70110:12:0;:14;;;;;;-1:-1:-1;;;67208:2935:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;573:177::-;658:66;651:5;647:78;640:5;637:89;627:117;;740:1;737;730:12;755:245;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;921:9;908:23;940:30;964:5;940:30;:::i;1005:258::-;1077:1;1087:113;1101:6;1098:1;1095:13;1087:113;;;1177:11;;;1171:18;1158:11;;;1151:39;1123:2;1116:10;1087:113;;;1218:6;1215:1;1212:13;1209:48;;;-1:-1:-1;;1253:1:1;1235:16;;1228:27;1005:258::o;1268:328::-;1321:3;1359:5;1353:12;1386:6;1381:3;1374:19;1402:63;1458:6;1451:4;1446:3;1442:14;1435:4;1428:5;1424:16;1402:63;:::i;:::-;1510:2;1498:15;1515:66;1494:88;1485:98;;;;1585:4;1481:109;;1268:328;-1:-1:-1;;1268:328:1:o;1601:231::-;1750:2;1739:9;1732:21;1713:4;1770:56;1822:2;1811:9;1807:18;1799:6;1770:56;:::i;2068:154::-;2154:42;2147:5;2143:54;2136:5;2133:65;2123:93;;2212:1;2209;2202:12;2227:315;2295:6;2303;2356:2;2344:9;2335:7;2331:23;2327:32;2324:52;;;2372:1;2369;2362:12;2324:52;2411:9;2398:23;2430:31;2455:5;2430:31;:::i;:::-;2480:5;2532:2;2517:18;;;;2504:32;;-1:-1:-1;;;2227:315:1:o;2547:247::-;2606:6;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2714:9;2701:23;2733:31;2758:5;2733:31;:::i;2799:160::-;2864:20;;2920:13;;2913:21;2903:32;;2893:60;;2949:1;2946;2939:12;2893:60;2799:160;;;:::o;2964:180::-;3020:6;3073:2;3061:9;3052:7;3048:23;3044:32;3041:52;;;3089:1;3086;3079:12;3041:52;3112:26;3128:9;3112:26;:::i;3149:592::-;3262:6;3270;3278;3286;3294;3302;3310;3363:3;3351:9;3342:7;3338:23;3334:33;3331:53;;;3380:1;3377;3370:12;3331:53;-1:-1:-1;;3403:23:1;;;3473:2;3458:18;;3445:32;;-1:-1:-1;3524:2:1;3509:18;;3496:32;;3575:2;3560:18;;3547:32;;-1:-1:-1;3626:3:1;3611:19;;3598:33;;-1:-1:-1;3678:3:1;3663:19;;3650:33;;-1:-1:-1;3730:3:1;3715:19;3702:33;;-1:-1:-1;3149:592:1;-1:-1:-1;3149:592:1:o;3746:456::-;3823:6;3831;3839;3892:2;3880:9;3871:7;3867:23;3863:32;3860:52;;;3908:1;3905;3898:12;3860:52;3947:9;3934:23;3966:31;3991:5;3966:31;:::i;:::-;4016:5;-1:-1:-1;4073:2:1;4058:18;;4045:32;4086:33;4045:32;4086:33;:::i;:::-;3746:456;;4138:7;;-1:-1:-1;;;4192:2:1;4177:18;;;;4164:32;;3746:456::o;4207:184::-;4259:77;4256:1;4249:88;4356:4;4353:1;4346:15;4380:4;4377:1;4370:15;4396:691;4461:5;4491:18;4532:2;4524:6;4521:14;4518:40;;;4538:18;;:::i;:::-;4672:2;4666:9;4738:2;4726:15;;4577:66;4722:24;;;4748:2;4718:33;4714:42;4702:55;;;4772:18;;;4792:22;;;4769:46;4766:72;;;4818:18;;:::i;:::-;4858:10;4854:2;4847:22;4887:6;4878:15;;4917:6;4909;4902:22;4957:3;4948:6;4943:3;4939:16;4936:25;4933:45;;;4974:1;4971;4964:12;4933:45;5024:6;5019:3;5012:4;5004:6;5000:17;4987:44;5079:1;5072:4;5063:6;5055;5051:19;5047:30;5040:41;;;;4396:691;;;;;:::o;5092:451::-;5161:6;5214:2;5202:9;5193:7;5189:23;5185:32;5182:52;;;5230:1;5227;5220:12;5182:52;5270:9;5257:23;5303:18;5295:6;5292:30;5289:50;;;5335:1;5332;5325:12;5289:50;5358:22;;5411:4;5403:13;;5399:27;-1:-1:-1;5389:55:1;;5440:1;5437;5430:12;5389:55;5463:74;5529:7;5524:2;5511:16;5506:2;5502;5498:11;5463:74;:::i;5548:316::-;5622:6;5630;5638;5691:2;5679:9;5670:7;5666:23;5662:32;5659:52;;;5707:1;5704;5697:12;5659:52;5743:9;5730:23;5720:33;;5772:35;5803:2;5792:9;5788:18;5772:35;:::i;:::-;5762:45;;5854:2;5843:9;5839:18;5826:32;5816:42;;5548:316;;;;;:::o;5869:315::-;5934:6;5942;5995:2;5983:9;5974:7;5970:23;5966:32;5963:52;;;6011:1;6008;6001:12;5963:52;6050:9;6037:23;6069:31;6094:5;6069:31;:::i;:::-;6119:5;-1:-1:-1;6143:35:1;6174:2;6159:18;;6143:35;:::i;:::-;6133:45;;5869:315;;;;;:::o;6189:795::-;6284:6;6292;6300;6308;6361:3;6349:9;6340:7;6336:23;6332:33;6329:53;;;6378:1;6375;6368:12;6329:53;6417:9;6404:23;6436:31;6461:5;6436:31;:::i;:::-;6486:5;-1:-1:-1;6543:2:1;6528:18;;6515:32;6556:33;6515:32;6556:33;:::i;:::-;6608:7;-1:-1:-1;6662:2:1;6647:18;;6634:32;;-1:-1:-1;6717:2:1;6702:18;;6689:32;6744:18;6733:30;;6730:50;;;6776:1;6773;6766:12;6730:50;6799:22;;6852:4;6844:13;;6840:27;-1:-1:-1;6830:55:1;;6881:1;6878;6871:12;6830:55;6904:74;6970:7;6965:2;6952:16;6947:2;6943;6939:11;6904:74;:::i;:::-;6894:84;;;6189:795;;;;;;;:::o;6989:388::-;7057:6;7065;7118:2;7106:9;7097:7;7093:23;7089:32;7086:52;;;7134:1;7131;7124:12;7086:52;7173:9;7160:23;7192:31;7217:5;7192:31;:::i;:::-;7242:5;-1:-1:-1;7299:2:1;7284:18;;7271:32;7312:33;7271:32;7312:33;:::i;:::-;7364:7;7354:17;;;6989:388;;;;;:::o;7382:437::-;7461:1;7457:12;;;;7504;;;7525:61;;7579:4;7571:6;7567:17;7557:27;;7525:61;7632:2;7624:6;7621:14;7601:18;7598:38;7595:218;;7669:77;7666:1;7659:88;7770:4;7767:1;7760:15;7798:4;7795:1;7788:15;7595:218;;7382:437;;;:::o;8545:251::-;8615:6;8668:2;8656:9;8647:7;8643:23;8639:32;8636:52;;;8684:1;8681;8674:12;8636:52;8716:9;8710:16;8735:31;8760:5;8735:31;:::i;9427:185::-;9469:3;9507:5;9501:12;9522:52;9567:6;9562:3;9555:4;9548:5;9544:16;9522:52;:::i;:::-;9590:16;;;;;9427:185;-1:-1:-1;;9427:185:1:o;9617:470::-;9796:3;9834:6;9828:13;9850:53;9896:6;9891:3;9884:4;9876:6;9872:17;9850:53;:::i;:::-;9966:13;;9925:16;;;;9988:57;9966:13;9925:16;10022:4;10010:17;;9988:57;:::i;:::-;10061:20;;9617:470;-1:-1:-1;;;;9617:470:1:o;10211:2030::-;11135:3;11173:6;11167:13;11199:4;11212:51;11256:6;11251:3;11246:2;11238:6;11234:15;11212:51;:::i;:::-;11326:13;;11285:16;;;;11348:55;11326:13;11285:16;11370:15;;;11348:55;:::i;:::-;11464:3;11425:20;;11476:17;;;11518:13;;11425:20;;11464:3;11540:63;11518:13;11590:1;11579:13;;11562:15;;;11540:63;:::i;:::-;11666:1;11622:20;;11658:10;;;11651:22;;;11698:13;;11720:60;11698:13;11767:1;11759:10;;11742:15;;;11720:60;:::i;:::-;11840:1;11799:17;;11832:10;;;11825:22;;;11872:13;;11894:60;11872:13;11941:1;11933:10;;11916:15;;;11894:60;:::i;:::-;12014:10;11977:17;;12014:10;;;12007:22;12054:13;;11996:1;11973:25;;;12076:60;;12054:13;;12115:10;;12098:15;;;12076:60;:::i;:::-;12152:83;12178:56;12231:1;12220:8;12216:2;12212:17;12208:25;10169:3;10157:16;;10198:1;10189:11;;10092:114;12178:56;12170:6;12152:83;:::i;:::-;12145:90;10211:2030;-1:-1:-1;;;;;;;;;;;;10211:2030:1:o;12653:523::-;12847:4;12876:42;12957:2;12949:6;12945:15;12934:9;12927:34;13009:2;13001:6;12997:15;12992:2;12981:9;12977:18;12970:43;;13049:6;13044:2;13033:9;13029:18;13022:34;13092:3;13087:2;13076:9;13072:18;13065:31;13113:57;13165:3;13154:9;13150:19;13142:6;13113:57;:::i;:::-;13105:65;12653:523;-1:-1:-1;;;;;;12653:523:1:o;13181:249::-;13250:6;13303:2;13291:9;13282:7;13278:23;13274:32;13271:52;;;13319:1;13316;13309:12;13271:52;13351:9;13345:16;13370:30;13394:5;13370:30;:::i;13435:184::-;13487:77;13484:1;13477:88;13584:4;13581:1;13574:15;13608:4;13605:1;13598:15;13624:195;13663:3;13694:66;13687:5;13684:77;13681:103;;13764:18;;:::i;:::-;-1:-1:-1;13811:1:1;13800:13;;13624:195::o;13824:184::-;13876:77;13873:1;13866:88;13973:4;13970:1;13963:15;13997:4;13994:1;13987:15;14013:120;14053:1;14079;14069:35;;14084:18;;:::i;:::-;-1:-1:-1;14118:9:1;;14013:120::o;14138:125::-;14178:4;14206:1;14203;14200:8;14197:34;;;14211:18;;:::i;:::-;-1:-1:-1;14248:9:1;;14138:125::o;14268:112::-;14300:1;14326;14316:35;;14331:18;;:::i;:::-;-1:-1:-1;14365:9:1;;14268:112::o;14385:128::-;14425:3;14456:1;14452:6;14449:1;14446:13;14443:39;;;14462:18;;:::i;:::-;-1:-1:-1;14498:9:1;;14385:128::o;14518:184::-;14570:77;14567:1;14560:88;14667:4;14664:1;14657:15;14691:4;14688:1;14681:15
Swarm Source
ipfs://1710d2c2ada07ecf10e47e0ee584d8e6ee60f35f3bb83fc04e376c166c21cd3b
Loading...
Loading
Loading...
Loading
[ 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.