Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
325 MGoblers
Holders
127
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MGoblersLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonGoblers
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /* * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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. /// @solidity memory-safe-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. /// @solidity memory-safe-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)); } } contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, 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; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @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 total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @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 amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @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 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, 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_); } } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual 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. // The ASCII index of the '0' character is 48. 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) } } } error Unauthorized(); error InsufficientValue(uint256 messageValue, uint256 required); contract MoonGoblers is Ownable, ERC721A, PaymentSplitter { using ECDSA for bytes32; using Strings for uint; address private signerAddressWL; address private signerAddressPublic; enum Step { Before, GeneralSale, SoldOut, Reveal } string public baseURI; Step public sellingStep; uint private constant MAX_SUPPLY = 7777; uint public publicSalePrice = 0.002 ether; uint public maxAmountPerTxnPublic = 10; uint private teamLength; mapping(address => uint) public mintedAmountFree; constructor(address[] memory _team, uint[] memory _teamShares, string memory _baseURI) ERC721A("MoonGoblers", "MGoblers") PaymentSplitter(_team, _teamShares) { baseURI = _baseURI; teamLength = _team.length; } function getNumberFreeMinted(address account) external view returns (uint256) { return mintedAmountFree[account]; } function mintForOpensea() external onlyOwner{ if(totalSupply() != 0) revert Unauthorized(); _mint(msg.sender, 10); } function freeMint(address _account, uint _quantity) external { if(_quantity <= 0 || _quantity > 1) revert("Quantity is wrong"); if(_quantity > maxAmountPerTxnPublic) revert Unauthorized(); if(sellingStep != Step.GeneralSale) revert Unauthorized(); if(totalSupply() + _quantity > MAX_SUPPLY) revert Unauthorized(); if(mintedAmountFree[msg.sender] + _quantity > 1) revert Unauthorized(); mintedAmountFree[msg.sender] += _quantity; _mint(_account, _quantity); } function publicSaleMint(address _account, uint _quantity) external payable { uint price = publicSalePrice; if(price <= 0) revert("Price is 0"); if(_quantity <= 0) revert("Quantity is 0"); if(_quantity > maxAmountPerTxnPublic) revert Unauthorized(); if(sellingStep != Step.GeneralSale) revert Unauthorized(); if(totalSupply() + _quantity > MAX_SUPPLY) revert Unauthorized(); if(msg.value < price * _quantity) revert InsufficientValue({ messageValue: msg.value, required: price * _quantity }); _mint(_account, _quantity); } function changePublicSalePrice(uint256 new_price) external onlyOwner{ publicSalePrice = new_price; } function setBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setStep(uint _step) external onlyOwner { sellingStep = Step(_step); } function setMaxTxnPublic(uint amount) external onlyOwner{ maxAmountPerTxnPublic = amount; } function currentState() external view returns (Step, uint, uint) { return (sellingStep, publicSalePrice, maxAmountPerTxnPublic); } function getNumberMinted(address account) external view returns (uint256) { return _numberMinted(account); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json")); } function releaseAll() external { for(uint i = 0 ; i < teamLength ; i++) { release(payable(payee(i))); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"messageValue","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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"},{"inputs":[],"name":"Unauthorized","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum MoonGoblers.Step","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerTxnPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintForOpensea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum MoonGoblers.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxnPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405266071afd498d0000601455600a6015553480156200002157600080fd5b5060405162002d3d38038062002d3d8339810160408190526200004491620005cd565b82826040518060400160405280600b81526020016a4d6f6f6e476f626c65727360a81b815250604051806040016040528060088152602001674d476f626c65727360c01b815250620000a56200009f6200021c60201b60201c565b62000220565b6003620000b3838262000761565b506004620000c2828262000761565b506000600155505080518251146200013c5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200018f5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000133565b60005b8251811015620001fb57620001e6838281518110620001b557620001b56200082d565b6020026020010151838381518110620001d257620001d26200082d565b60200260200101516200027060201b60201c565b80620001f28162000859565b91505062000192565b50601291506200020e9050828262000761565b505090516016555062000891565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002dd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000133565b600081116200032f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000133565b6001600160a01b0382166000908152600b602052604090205415620003ab5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000133565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200041590829062000875565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200049f576200049f6200045e565b604052919050565b60006001600160401b03821115620004c357620004c36200045e565b5060051b60200190565b600082601f830112620004df57600080fd5b81516020620004f8620004f283620004a7565b62000474565b82815260059290921b840181019181810190868411156200051857600080fd5b8286015b848110156200053557805183529183019183016200051c565b509695505050505050565b600082601f8301126200055257600080fd5b81516001600160401b038111156200056e576200056e6200045e565b602062000584601f8301601f1916820162000474565b82815285828487010111156200059957600080fd5b60005b83811015620005b95785810183015182820184015282016200059c565b506000928101909101919091529392505050565b600080600060608486031215620005e357600080fd5b83516001600160401b0380821115620005fb57600080fd5b818601915086601f8301126200061057600080fd5b8151602062000623620004f283620004a7565b82815260059290921b8401810191818101908a8411156200064357600080fd5b948201945b838610156200067a5785516001600160a01b03811681146200066a5760008081fd5b8252948201949082019062000648565b918901519197509093505050808211156200069457600080fd5b620006a287838801620004cd565b93506040860151915080821115620006b957600080fd5b50620006c88682870162000540565b9150509250925092565b600181811c90821680620006e757607f821691505b6020821081036200070857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200075c57600081815260208120601f850160051c81016020861015620007375750805b601f850160051c820191505b81811015620007585782815560010162000743565b5050505b505050565b81516001600160401b038111156200077d576200077d6200045e565b62000795816200078e8454620006d2565b846200070e565b602080601f831160018114620007cd5760008415620007b45750858301515b600019600386901b1c1916600185901b17855562000758565b600085815260208120601f198616915b82811015620007fe57888601518255948401946001909101908401620007dd565b50858210156200081d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200086e576200086e62000843565b5060010190565b808201808211156200088b576200088b62000843565b92915050565b61249c80620008a16000396000f3fe60806040526004361061026b5760003560e01c806395d89b4111610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b2146107d6578063e33b7de31461080c578063e985e9c514610821578063ee70c7cb1461086a578063f2fde38b14610880578063f8dcbddb146108a057600080fd5b8063c87b56dd1461070e578063c893575a1461072e578063cbccefb214610743578063ce7c2ac21461076a578063d4da3792146107a057600080fd5b8063a22cb46511610108578063a22cb4651461064e578063a3f8eace1461066e578063ac1f99f21461068e578063ac5ae11b146106bb578063b88d4fde146106ce578063c45ac050146106ee57600080fd5b806395d89b41146105ad5780639852595c146105c25780639883566e146105f85780639b6860c814610618578063a0bcfc7f1461062e57600080fd5b806348b75044116101dd57806370a08231116101a157806370a08231146104fa578063715018a61461051a5780638a02e3b91461052f5780638a59a7fd1461054f5780638b83209b1461056f5780638da5cb5b1461058f57600080fd5b806348b75044146104705780634fda7285146104905780635be7fde8146104b05780636352211e146104c55780636c0360eb146104e557600080fd5b806318160ddd1161022f57806318160ddd1461039257806319165587146103b557806323b872dd146103d55780633a98ef39146103f5578063406072a91461040a57806342842e0e1461045057600080fd5b806301ffc9a7146102b957806306fdde03146102ee578063081812fc14610310578063095ea7b3146103485780630c3f6acf1461036a57600080fd5b366102b4577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102c557600080fd5b506102d96102d4366004611d47565b6108c0565b60405190151581526020015b60405180910390f35b3480156102fa57600080fd5b50610303610912565b6040516102e59190611db4565b34801561031c57600080fd5b5061033061032b366004611dc7565b6109a4565b6040516001600160a01b0390911681526020016102e5565b34801561035457600080fd5b50610368610363366004611df5565b6109e8565b005b34801561037657600080fd5b506013546014546015546040516102e59360ff16929190611e59565b34801561039e57600080fd5b50600254600154035b6040519081526020016102e5565b3480156103c157600080fd5b506103686103d0366004611e78565b610a88565b3480156103e157600080fd5b506103686103f0366004611e95565b610b8a565b34801561040157600080fd5b506009546103a7565b34801561041657600080fd5b506103a7610425366004611ed6565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561045c57600080fd5b5061036861046b366004611e95565b610d23565b34801561047c57600080fd5b5061036861048b366004611ed6565b610d43565b34801561049c57600080fd5b506103686104ab366004611dc7565b610e66565b3480156104bc57600080fd5b50610368610e73565b3480156104d157600080fd5b506103306104e0366004611dc7565b610ea1565b3480156104f157600080fd5b50610303610eac565b34801561050657600080fd5b506103a7610515366004611e78565b610f3a565b34801561052657600080fd5b50610368610f89565b34801561053b57600080fd5b5061036861054a366004611dc7565b610f9d565b34801561055b57600080fd5b506103a761056a366004611e78565b610faa565b34801561057b57600080fd5b5061033061058a366004611dc7565b610fd5565b34801561059b57600080fd5b506000546001600160a01b0316610330565b3480156105b957600080fd5b50610303611005565b3480156105ce57600080fd5b506103a76105dd366004611e78565b6001600160a01b03166000908152600c602052604090205490565b34801561060457600080fd5b50610368610613366004611df5565b611014565b34801561062457600080fd5b506103a760145481565b34801561063a57600080fd5b50610368610649366004611f9b565b611162565b34801561065a57600080fd5b50610368610669366004611ff2565b611176565b34801561067a57600080fd5b506103a7610689366004611e78565b61120b565b34801561069a57600080fd5b506103a76106a9366004611e78565b60176020526000908152604090205481565b6103686106c9366004611df5565b611253565b3480156106da57600080fd5b506103686106e9366004612020565b6113a9565b3480156106fa57600080fd5b506103a7610709366004611ed6565b6113f3565b34801561071a57600080fd5b50610303610729366004611dc7565b6114be565b34801561073a57600080fd5b50610368611547565b34801561074f57600080fd5b5060135461075d9060ff1681565b6040516102e591906120a0565b34801561077657600080fd5b506103a7610785366004611e78565b6001600160a01b03166000908152600b602052604090205490565b3480156107ac57600080fd5b506103a76107bb366004611e78565b6001600160a01b031660009081526017602052604090205490565b3480156107e257600080fd5b506103a76107f1366004611e78565b6001600160a01b03166000908152600e602052604090205490565b34801561081857600080fd5b50600a546103a7565b34801561082d57600080fd5b506102d961083c366004611ed6565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087657600080fd5b506103a760155481565b34801561088c57600080fd5b5061036861089b366004611e78565b61157d565b3480156108ac57600080fd5b506103686108bb366004611dc7565b6115f3565b60006301ffc9a760e01b6001600160e01b0319831614806108f157506380ac58cd60e01b6001600160e01b03198316145b8061090c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610921906120ae565b80601f016020809104026020016040519081016040528092919081815260200182805461094d906120ae565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109af82611631565b6109cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109f382610ea1565b9050336001600160a01b03821614610a2c57610a0f813361083c565b610a2c576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610ac65760405162461bcd60e51b8152600401610abd906120e8565b60405180910390fd5b6000610ad18261120b565b905080600003610af35760405162461bcd60e51b8152600401610abd9061212e565b6001600160a01b0382166000908152600c602052604081208054839290610b1b90849061218f565b9250508190555080600a6000828254610b34919061218f565b90915550610b4490508282611659565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610b9582611772565b9050836001600160a01b0316816001600160a01b031614610bc85760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610c1557610bf8863361083c565b610c1557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c3c57604051633a954ecd60e21b815260040160405180910390fd5b8015610c4757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610cd957600184016000818152600560205260408120549003610cd7576001548114610cd75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d3e838383604051806020016040528060008152506113a9565b505050565b6001600160a01b0381166000908152600b6020526040902054610d785760405162461bcd60e51b8152600401610abd906120e8565b6000610d8483836113f3565b905080600003610da65760405162461bcd60e51b8152600401610abd9061212e565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610ddd90849061218f565b90915550506001600160a01b0383166000908152600e602052604081208054839290610e0a90849061218f565b90915550610e1b90508383836117d9565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610e6e61182b565b601455565b60005b601654811015610e9e57610e8c6103d082610fd5565b80610e96816121a2565b915050610e76565b50565b600061090c82611772565b60128054610eb9906120ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee5906120ae565b8015610f325780601f10610f0757610100808354040283529160200191610f32565b820191906000526020600020905b815481529060010190602001808311610f1557829003601f168201915b505050505081565b60006001600160a01b038216610f63576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610f9161182b565b610f9b6000611885565b565b610fa561182b565b601555565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c1661090c565b6000600d8281548110610fea57610fea6121bb565b6000918252602090912001546001600160a01b031692915050565b606060048054610921906120ae565b8015806110215750600181115b156110625760405162461bcd60e51b81526020600482015260116024820152705175616e746974792069732077726f6e6760781b6044820152606401610abd565b601554811115611084576040516282b42960e81b815260040160405180910390fd5b600160135460ff16600381111561109d5761109d611e21565b146110ba576040516282b42960e81b815260040160405180910390fd5b611e61816110cb6002546001540390565b6110d5919061218f565b11156110f3576040516282b42960e81b815260040160405180910390fd5b3360009081526017602052604090205460019061111190839061218f565b111561112f576040516282b42960e81b815260040160405180910390fd5b336000908152601760205260408120805483929061114e90849061218f565b9091555061115e905082826118d5565b5050565b61116a61182b565b601261115e8282612217565b336001600160a01b0383160361119f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080611217600a5490565b611221904761218f565b905061124c8382611247866001600160a01b03166000908152600c602052604090205490565b6119d3565b9392505050565b601454806112905760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610abd565b600082116112d05760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610abd565b6015548211156112f2576040516282b42960e81b815260040160405180910390fd5b600160135460ff16600381111561130b5761130b611e21565b14611328576040516282b42960e81b815260040160405180910390fd5b611e61826113396002546001540390565b611343919061218f565b1115611361576040516282b42960e81b815260040160405180910390fd5b61136b82826122d7565b34101561139f573461137d83836122d7565b604051631c102d6360e21b815260048101929092526024820152604401610abd565b610d3e83836118d5565b6113b4848484610b8a565b6001600160a01b0383163b156113ed576113d084848484611a11565b6113ed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147691906122ee565b611480919061218f565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506114b690849083906119d3565b949350505050565b60606114c982611631565b6115155760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610abd565b601261152083611afc565b604051602001611531929190612307565b6040516020818303038152906040529050919050565b61154f61182b565b60025460015414611572576040516282b42960e81b815260040160405180910390fd5b610f9b33600a6118d5565b61158561182b565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abd565b610e9e81611885565b6115fb61182b565b80600381111561160d5761160d611e21565b6013805460ff1916600183600381111561162957611629611e21565b021790555050565b60006001548210801561090c575050600090815260056020526040902054600160e01b161590565b804710156116a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610abd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b5050905080610d3e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610abd565b6000816001548110156117c05760008181526005602052604081205490600160e01b821690036117be575b8060000361124c57506000190160008181526005602052604090205461179d565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d3e908490611b4b565b6000546001600160a01b03163314610f9b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610abd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60015460008290036118fa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146119a957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611971565b50816000036119ca57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916119fd90866122d7565b611a07919061239e565b6114b691906123c0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a469033908990889088906004016123d3565b6020604051808303816000875af1925050508015611a81575060408051601f3d908101601f19168201909252611a7e91810190612410565b60015b611adf573d808015611aaf576040519150601f19603f3d011682016040523d82523d6000602084013e611ab4565b606091505b508051600003611ad7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b3957600183039250600a81066030018353600a9004611b1b565b50819003601f19909101908152919050565b6000611ba0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c1d9092919063ffffffff16565b805190915015610d3e5780806020019051810190611bbe919061242d565b610d3e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610abd565b60606114b68484600085856001600160a01b0385163b611c7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610abd565b600080866001600160a01b03168587604051611c9b919061244a565b60006040518083038185875af1925050503d8060008114611cd8576040519150601f19603f3d011682016040523d82523d6000602084013e611cdd565b606091505b5091509150611ced828286611cf8565b979650505050505050565b60608315611d0757508161124c565b825115611d175782518084602001fd5b8160405162461bcd60e51b8152600401610abd9190611db4565b6001600160e01b031981168114610e9e57600080fd5b600060208284031215611d5957600080fd5b813561124c81611d31565b60005b83811015611d7f578181015183820152602001611d67565b50506000910152565b60008151808452611da0816020860160208601611d64565b601f01601f19169290920160200192915050565b60208152600061124c6020830184611d88565b600060208284031215611dd957600080fd5b5035919050565b6001600160a01b0381168114610e9e57600080fd5b60008060408385031215611e0857600080fd5b8235611e1381611de0565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611e5557634e487b7160e01b600052602160045260246000fd5b9052565b60608101611e678286611e37565b602082019390935260400152919050565b600060208284031215611e8a57600080fd5b813561124c81611de0565b600080600060608486031215611eaa57600080fd5b8335611eb581611de0565b92506020840135611ec581611de0565b929592945050506040919091013590565b60008060408385031215611ee957600080fd5b8235611ef481611de0565b91506020830135611f0481611de0565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f4057611f40611f0f565b604051601f8501601f19908116603f01168101908282118183101715611f6857611f68611f0f565b81604052809350858152868686011115611f8157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fad57600080fd5b813567ffffffffffffffff811115611fc457600080fd5b8201601f81018413611fd557600080fd5b6114b684823560208401611f25565b8015158114610e9e57600080fd5b6000806040838503121561200557600080fd5b823561201081611de0565b91506020830135611f0481611fe4565b6000806000806080858703121561203657600080fd5b843561204181611de0565b9350602085013561205181611de0565b925060408501359150606085013567ffffffffffffffff81111561207457600080fd5b8501601f8101871361208557600080fd5b61209487823560208401611f25565b91505092959194509250565b6020810161090c8284611e37565b600181811c908216806120c257607f821691505b6020821081036120e257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090c5761090c612179565b6000600182016121b4576121b4612179565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610d3e57600081815260208120601f850160051c810160208610156121f85750805b601f850160051c820191505b81811015610d1b57828155600101612204565b815167ffffffffffffffff81111561223157612231611f0f565b6122458161223f84546120ae565b846121d1565b602080601f83116001811461227a57600084156122625750858301515b600019600386901b1c1916600185901b178555610d1b565b600085815260208120601f198616915b828110156122a95788860151825594840194600190910190840161228a565b50858210156122c75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761090c5761090c612179565b60006020828403121561230057600080fd5b5051919050565b6000808454612315816120ae565b6001828116801561232d576001811461234257612371565b60ff1984168752821515830287019450612371565b8860005260208060002060005b858110156123685781548a82015290840190820161234f565b50505082870194505b505050508351612385818360208801611d64565b64173539b7b760d91b9101908152600501949350505050565b6000826123bb57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090c5761090c612179565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240690830184611d88565b9695505050505050565b60006020828403121561242257600080fd5b815161124c81611d31565b60006020828403121561243f57600080fd5b815161124c81611fe4565b6000825161245c818460208701611d64565b919091019291505056fea2646970667358221220399cd735ba621ed8f0db924f2fd176fe6e9e96c6b1ae627a005733d15ab889a164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000003000000000000000000000000107c752a055feaec667ca02ed371dd23ba6a26fc000000000000000000000000e08ac95638762f01ba4be21bc8d8dc042407952e000000000000000000000000e05627e1a82a67b50f115a56785b3bfdbb9bfeff000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686b6a666435657a703562717569796e766871366334366d786975626d64376e653361367468756736746f3563677768697974652f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061026b5760003560e01c806395d89b4111610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b2146107d6578063e33b7de31461080c578063e985e9c514610821578063ee70c7cb1461086a578063f2fde38b14610880578063f8dcbddb146108a057600080fd5b8063c87b56dd1461070e578063c893575a1461072e578063cbccefb214610743578063ce7c2ac21461076a578063d4da3792146107a057600080fd5b8063a22cb46511610108578063a22cb4651461064e578063a3f8eace1461066e578063ac1f99f21461068e578063ac5ae11b146106bb578063b88d4fde146106ce578063c45ac050146106ee57600080fd5b806395d89b41146105ad5780639852595c146105c25780639883566e146105f85780639b6860c814610618578063a0bcfc7f1461062e57600080fd5b806348b75044116101dd57806370a08231116101a157806370a08231146104fa578063715018a61461051a5780638a02e3b91461052f5780638a59a7fd1461054f5780638b83209b1461056f5780638da5cb5b1461058f57600080fd5b806348b75044146104705780634fda7285146104905780635be7fde8146104b05780636352211e146104c55780636c0360eb146104e557600080fd5b806318160ddd1161022f57806318160ddd1461039257806319165587146103b557806323b872dd146103d55780633a98ef39146103f5578063406072a91461040a57806342842e0e1461045057600080fd5b806301ffc9a7146102b957806306fdde03146102ee578063081812fc14610310578063095ea7b3146103485780630c3f6acf1461036a57600080fd5b366102b4577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102c557600080fd5b506102d96102d4366004611d47565b6108c0565b60405190151581526020015b60405180910390f35b3480156102fa57600080fd5b50610303610912565b6040516102e59190611db4565b34801561031c57600080fd5b5061033061032b366004611dc7565b6109a4565b6040516001600160a01b0390911681526020016102e5565b34801561035457600080fd5b50610368610363366004611df5565b6109e8565b005b34801561037657600080fd5b506013546014546015546040516102e59360ff16929190611e59565b34801561039e57600080fd5b50600254600154035b6040519081526020016102e5565b3480156103c157600080fd5b506103686103d0366004611e78565b610a88565b3480156103e157600080fd5b506103686103f0366004611e95565b610b8a565b34801561040157600080fd5b506009546103a7565b34801561041657600080fd5b506103a7610425366004611ed6565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561045c57600080fd5b5061036861046b366004611e95565b610d23565b34801561047c57600080fd5b5061036861048b366004611ed6565b610d43565b34801561049c57600080fd5b506103686104ab366004611dc7565b610e66565b3480156104bc57600080fd5b50610368610e73565b3480156104d157600080fd5b506103306104e0366004611dc7565b610ea1565b3480156104f157600080fd5b50610303610eac565b34801561050657600080fd5b506103a7610515366004611e78565b610f3a565b34801561052657600080fd5b50610368610f89565b34801561053b57600080fd5b5061036861054a366004611dc7565b610f9d565b34801561055b57600080fd5b506103a761056a366004611e78565b610faa565b34801561057b57600080fd5b5061033061058a366004611dc7565b610fd5565b34801561059b57600080fd5b506000546001600160a01b0316610330565b3480156105b957600080fd5b50610303611005565b3480156105ce57600080fd5b506103a76105dd366004611e78565b6001600160a01b03166000908152600c602052604090205490565b34801561060457600080fd5b50610368610613366004611df5565b611014565b34801561062457600080fd5b506103a760145481565b34801561063a57600080fd5b50610368610649366004611f9b565b611162565b34801561065a57600080fd5b50610368610669366004611ff2565b611176565b34801561067a57600080fd5b506103a7610689366004611e78565b61120b565b34801561069a57600080fd5b506103a76106a9366004611e78565b60176020526000908152604090205481565b6103686106c9366004611df5565b611253565b3480156106da57600080fd5b506103686106e9366004612020565b6113a9565b3480156106fa57600080fd5b506103a7610709366004611ed6565b6113f3565b34801561071a57600080fd5b50610303610729366004611dc7565b6114be565b34801561073a57600080fd5b50610368611547565b34801561074f57600080fd5b5060135461075d9060ff1681565b6040516102e591906120a0565b34801561077657600080fd5b506103a7610785366004611e78565b6001600160a01b03166000908152600b602052604090205490565b3480156107ac57600080fd5b506103a76107bb366004611e78565b6001600160a01b031660009081526017602052604090205490565b3480156107e257600080fd5b506103a76107f1366004611e78565b6001600160a01b03166000908152600e602052604090205490565b34801561081857600080fd5b50600a546103a7565b34801561082d57600080fd5b506102d961083c366004611ed6565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087657600080fd5b506103a760155481565b34801561088c57600080fd5b5061036861089b366004611e78565b61157d565b3480156108ac57600080fd5b506103686108bb366004611dc7565b6115f3565b60006301ffc9a760e01b6001600160e01b0319831614806108f157506380ac58cd60e01b6001600160e01b03198316145b8061090c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610921906120ae565b80601f016020809104026020016040519081016040528092919081815260200182805461094d906120ae565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109af82611631565b6109cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109f382610ea1565b9050336001600160a01b03821614610a2c57610a0f813361083c565b610a2c576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610ac65760405162461bcd60e51b8152600401610abd906120e8565b60405180910390fd5b6000610ad18261120b565b905080600003610af35760405162461bcd60e51b8152600401610abd9061212e565b6001600160a01b0382166000908152600c602052604081208054839290610b1b90849061218f565b9250508190555080600a6000828254610b34919061218f565b90915550610b4490508282611659565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610b9582611772565b9050836001600160a01b0316816001600160a01b031614610bc85760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610c1557610bf8863361083c565b610c1557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c3c57604051633a954ecd60e21b815260040160405180910390fd5b8015610c4757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610cd957600184016000818152600560205260408120549003610cd7576001548114610cd75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d3e838383604051806020016040528060008152506113a9565b505050565b6001600160a01b0381166000908152600b6020526040902054610d785760405162461bcd60e51b8152600401610abd906120e8565b6000610d8483836113f3565b905080600003610da65760405162461bcd60e51b8152600401610abd9061212e565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610ddd90849061218f565b90915550506001600160a01b0383166000908152600e602052604081208054839290610e0a90849061218f565b90915550610e1b90508383836117d9565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610e6e61182b565b601455565b60005b601654811015610e9e57610e8c6103d082610fd5565b80610e96816121a2565b915050610e76565b50565b600061090c82611772565b60128054610eb9906120ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee5906120ae565b8015610f325780601f10610f0757610100808354040283529160200191610f32565b820191906000526020600020905b815481529060010190602001808311610f1557829003601f168201915b505050505081565b60006001600160a01b038216610f63576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610f9161182b565b610f9b6000611885565b565b610fa561182b565b601555565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c1661090c565b6000600d8281548110610fea57610fea6121bb565b6000918252602090912001546001600160a01b031692915050565b606060048054610921906120ae565b8015806110215750600181115b156110625760405162461bcd60e51b81526020600482015260116024820152705175616e746974792069732077726f6e6760781b6044820152606401610abd565b601554811115611084576040516282b42960e81b815260040160405180910390fd5b600160135460ff16600381111561109d5761109d611e21565b146110ba576040516282b42960e81b815260040160405180910390fd5b611e61816110cb6002546001540390565b6110d5919061218f565b11156110f3576040516282b42960e81b815260040160405180910390fd5b3360009081526017602052604090205460019061111190839061218f565b111561112f576040516282b42960e81b815260040160405180910390fd5b336000908152601760205260408120805483929061114e90849061218f565b9091555061115e905082826118d5565b5050565b61116a61182b565b601261115e8282612217565b336001600160a01b0383160361119f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080611217600a5490565b611221904761218f565b905061124c8382611247866001600160a01b03166000908152600c602052604090205490565b6119d3565b9392505050565b601454806112905760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610abd565b600082116112d05760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610abd565b6015548211156112f2576040516282b42960e81b815260040160405180910390fd5b600160135460ff16600381111561130b5761130b611e21565b14611328576040516282b42960e81b815260040160405180910390fd5b611e61826113396002546001540390565b611343919061218f565b1115611361576040516282b42960e81b815260040160405180910390fd5b61136b82826122d7565b34101561139f573461137d83836122d7565b604051631c102d6360e21b815260048101929092526024820152604401610abd565b610d3e83836118d5565b6113b4848484610b8a565b6001600160a01b0383163b156113ed576113d084848484611a11565b6113ed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147691906122ee565b611480919061218f565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506114b690849083906119d3565b949350505050565b60606114c982611631565b6115155760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610abd565b601261152083611afc565b604051602001611531929190612307565b6040516020818303038152906040529050919050565b61154f61182b565b60025460015414611572576040516282b42960e81b815260040160405180910390fd5b610f9b33600a6118d5565b61158561182b565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abd565b610e9e81611885565b6115fb61182b565b80600381111561160d5761160d611e21565b6013805460ff1916600183600381111561162957611629611e21565b021790555050565b60006001548210801561090c575050600090815260056020526040902054600160e01b161590565b804710156116a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610abd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b5050905080610d3e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610abd565b6000816001548110156117c05760008181526005602052604081205490600160e01b821690036117be575b8060000361124c57506000190160008181526005602052604090205461179d565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d3e908490611b4b565b6000546001600160a01b03163314610f9b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610abd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60015460008290036118fa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146119a957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611971565b50816000036119ca57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916119fd90866122d7565b611a07919061239e565b6114b691906123c0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a469033908990889088906004016123d3565b6020604051808303816000875af1925050508015611a81575060408051601f3d908101601f19168201909252611a7e91810190612410565b60015b611adf573d808015611aaf576040519150601f19603f3d011682016040523d82523d6000602084013e611ab4565b606091505b508051600003611ad7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b3957600183039250600a81066030018353600a9004611b1b565b50819003601f19909101908152919050565b6000611ba0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c1d9092919063ffffffff16565b805190915015610d3e5780806020019051810190611bbe919061242d565b610d3e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610abd565b60606114b68484600085856001600160a01b0385163b611c7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610abd565b600080866001600160a01b03168587604051611c9b919061244a565b60006040518083038185875af1925050503d8060008114611cd8576040519150601f19603f3d011682016040523d82523d6000602084013e611cdd565b606091505b5091509150611ced828286611cf8565b979650505050505050565b60608315611d0757508161124c565b825115611d175782518084602001fd5b8160405162461bcd60e51b8152600401610abd9190611db4565b6001600160e01b031981168114610e9e57600080fd5b600060208284031215611d5957600080fd5b813561124c81611d31565b60005b83811015611d7f578181015183820152602001611d67565b50506000910152565b60008151808452611da0816020860160208601611d64565b601f01601f19169290920160200192915050565b60208152600061124c6020830184611d88565b600060208284031215611dd957600080fd5b5035919050565b6001600160a01b0381168114610e9e57600080fd5b60008060408385031215611e0857600080fd5b8235611e1381611de0565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611e5557634e487b7160e01b600052602160045260246000fd5b9052565b60608101611e678286611e37565b602082019390935260400152919050565b600060208284031215611e8a57600080fd5b813561124c81611de0565b600080600060608486031215611eaa57600080fd5b8335611eb581611de0565b92506020840135611ec581611de0565b929592945050506040919091013590565b60008060408385031215611ee957600080fd5b8235611ef481611de0565b91506020830135611f0481611de0565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f4057611f40611f0f565b604051601f8501601f19908116603f01168101908282118183101715611f6857611f68611f0f565b81604052809350858152868686011115611f8157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fad57600080fd5b813567ffffffffffffffff811115611fc457600080fd5b8201601f81018413611fd557600080fd5b6114b684823560208401611f25565b8015158114610e9e57600080fd5b6000806040838503121561200557600080fd5b823561201081611de0565b91506020830135611f0481611fe4565b6000806000806080858703121561203657600080fd5b843561204181611de0565b9350602085013561205181611de0565b925060408501359150606085013567ffffffffffffffff81111561207457600080fd5b8501601f8101871361208557600080fd5b61209487823560208401611f25565b91505092959194509250565b6020810161090c8284611e37565b600181811c908216806120c257607f821691505b6020821081036120e257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090c5761090c612179565b6000600182016121b4576121b4612179565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610d3e57600081815260208120601f850160051c810160208610156121f85750805b601f850160051c820191505b81811015610d1b57828155600101612204565b815167ffffffffffffffff81111561223157612231611f0f565b6122458161223f84546120ae565b846121d1565b602080601f83116001811461227a57600084156122625750858301515b600019600386901b1c1916600185901b178555610d1b565b600085815260208120601f198616915b828110156122a95788860151825594840194600190910190840161228a565b50858210156122c75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761090c5761090c612179565b60006020828403121561230057600080fd5b5051919050565b6000808454612315816120ae565b6001828116801561232d576001811461234257612371565b60ff1984168752821515830287019450612371565b8860005260208060002060005b858110156123685781548a82015290840190820161234f565b50505082870194505b505050508351612385818360208801611d64565b64173539b7b760d91b9101908152600501949350505050565b6000826123bb57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090c5761090c612179565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240690830184611d88565b9695505050505050565b60006020828403121561242257600080fd5b815161124c81611d31565b60006020828403121561243f57600080fd5b815161124c81611fe4565b6000825161245c818460208701611d64565b919091019291505056fea2646970667358221220399cd735ba621ed8f0db924f2fd176fe6e9e96c6b1ae627a005733d15ab889a164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000003000000000000000000000000107c752a055feaec667ca02ed371dd23ba6a26fc000000000000000000000000e08ac95638762f01ba4be21bc8d8dc042407952e000000000000000000000000e05627e1a82a67b50f115a56785b3bfdbb9bfeff000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686b6a666435657a703562717569796e766871366334366d786975626d64376e653361367468756736746f3563677768697974652f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _team (address[]): 0x107C752A055FeaEc667cA02ED371dd23ba6a26fc,0xe08Ac95638762F01ba4BE21bC8d8DC042407952E,0xE05627e1a82A67b50F115A56785B3BFDBb9bFeff
Arg [1] : _teamShares (uint256[]): 250,600,150
Arg [2] : _baseURI (string): ipfs://bafybeihkjfd5ezp5bquiynvhq6c46mxiubmd7ne3a6thug6to5cgwhiyte/
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 000000000000000000000000107c752a055feaec667ca02ed371dd23ba6a26fc
Arg [5] : 000000000000000000000000e08ac95638762f01ba4be21bc8d8dc042407952e
Arg [6] : 000000000000000000000000e05627e1a82a67b50f115a56785b3bfdbb9bfeff
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [12] : 697066733a2f2f62616679626569686b6a666435657a703562717569796e7668
Arg [13] : 71366334366d786975626d64376e653361367468756736746f35636777686979
Arg [14] : 74652f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
88326:3462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41345:40;8605:10;41345:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;41375:9:0;270:2:1;255:18;;248:34;161:18;41345:40:0;;;;;;;88326:3462;;;;;55423:639;;;;;;;;;;-1:-1:-1;55423:639:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;55423:639:0;;;;;;;;56325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62808:218::-;;;;;;;;;;-1:-1:-1;62808:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;62808:218:0;1812:203:1;62249:400:0;;;;;;;;;;-1:-1:-1;62249:400:0;;;;;:::i;:::-;;:::i;:::-;;91107:144;;;;;;;;;;-1:-1:-1;91191:11:0;;91204:15;;91221:21;;91107:144;;;;91191:11;;;91204:15;91221:21;91107:144;:::i;52076:323::-;;;;;;;;;;-1:-1:-1;52350:12:0;;52334:13;;:28;52076:323;;;3336:25:1;;;3324:2;3309:18;52076:323:0;3190:177:1;43866:453:0;;;;;;;;;;-1:-1:-1;43866:453:0;;;;;:::i;:::-;;:::i;66515:2817::-;;;;;;;;;;-1:-1:-1;66515:2817:0;;;;;:::i;:::-;;:::i;41476:91::-;;;;;;;;;;-1:-1:-1;41547:12:0;;41476:91;;42605:135;;;;;;;;;;-1:-1:-1;42605:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;42702:21:0;;;42675:7;42702:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;42605:135;69428:185;;;;;;;;;;-1:-1:-1;69428:185:0;;;;;:::i;:::-;;:::i;44587:514::-;;;;;;;;;;-1:-1:-1;44587:514:0;;;;;:::i;:::-;;:::i;90662:114::-;;;;;;;;;;-1:-1:-1;90662:114:0;;;;;:::i;:::-;;:::i;91644:141::-;;;;;;;;;;;;;:::i;57718:152::-;;;;;;;;;;-1:-1:-1;57718:152:0;;;;;:::i;:::-;;:::i;88635:21::-;;;;;;;;;;;;;:::i;53260:233::-;;;;;;;;;;-1:-1:-1;53260:233:0;;;;;:::i;:::-;;:::i;29348:103::-;;;;;;;;;;;;;:::i;90994:105::-;;;;;;;;;;-1:-1:-1;90994:105:0;;;;;:::i;:::-;;:::i;91259:122::-;;;;;;;;;;-1:-1:-1;91259:122:0;;;;;:::i;:::-;;:::i;42831:100::-;;;;;;;;;;-1:-1:-1;42831:100:0;;;;;:::i;:::-;;:::i;28700:87::-;;;;;;;;;;-1:-1:-1;28746:7:0;28773:6;-1:-1:-1;;;;;28773:6:0;28700:87;;56501:104;;;;;;;;;;;;;:::i;42327:109::-;;;;;;;;;;-1:-1:-1;42327:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;42410:18:0;42383:7;42410:18;;;:9;:18;;;;;;;42327:109;89459:548;;;;;;;;;;-1:-1:-1;89459:548:0;;;;;:::i;:::-;;:::i;88745:41::-;;;;;;;;;;;;;;;;90784:100;;;;;;;;;;-1:-1:-1;90784:100:0;;;;;:::i;:::-;;:::i;63366:308::-;;;;;;;;;;-1:-1:-1;63366:308:0;;;;;:::i;:::-;;:::i;43021:225::-;;;;;;;;;;-1:-1:-1;43021:225:0;;;;;:::i;:::-;;:::i;88874:48::-;;;;;;;;;;-1:-1:-1;88874:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;90015:639;;;;;;:::i;:::-;;:::i;70211:399::-;;;;;;;;;;-1:-1:-1;70211:399:0;;;;;:::i;:::-;;:::i;43406:260::-;;;;;;;;;;-1:-1:-1;43406:260:0;;;;;:::i;:::-;;:::i;91389:247::-;;;;;;;;;;-1:-1:-1;91389:247:0;;;;;:::i;:::-;;:::i;89312:139::-;;;;;;;;;;;;;:::i;88665:23::-;;;;;;;;;;-1:-1:-1;88665:23:0;;;;;;;;;;;;;;;:::i;42123:105::-;;;;;;;;;;-1:-1:-1;42123:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;42204:16:0;42177:7;42204:16;;;:7;:16;;;;;;;42123:105;89175:129;;;;;;;;;;-1:-1:-1;89175:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;89271:25:0;89244:7;89271:25;;;:16;:25;;;;;;;89175:129;41913:119;;;;;;;;;;-1:-1:-1;41913:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;41998:26:0;41971:7;41998:26;;;:19;:26;;;;;;;41913:119;41661:95;;;;;;;;;;-1:-1:-1;41734:14:0;;41661:95;;63831:164;;;;;;;;;;-1:-1:-1;63831:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;63952:25:0;;;63928:4;63952:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63831:164;88795:38;;;;;;;;;;;;;;;;29606:201;;;;;;;;;;-1:-1:-1;29606:201:0;;;;;:::i;:::-;;:::i;90892:92::-;;;;;;;;;;-1:-1:-1;90892:92:0;;;;;:::i;:::-;;:::i;55423:639::-;55508:4;-1:-1:-1;;;;;;;;;55832:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;55909:25:0;;;55832:102;:179;;;-1:-1:-1;;;;;;;;;;55986:25:0;;;55832:179;55812:199;55423:639;-1:-1:-1;;55423:639:0:o;56325:100::-;56379:13;56412:5;56405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56325:100;:::o;62808:218::-;62884:7;62909:16;62917:7;62909;:16::i;:::-;62904:64;;62934:34;;-1:-1:-1;;;62934:34:0;;;;;;;;;;;62904:64;-1:-1:-1;62988:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;62988:30:0;;62808:218::o;62249:400::-;62330:13;62346:16;62354:7;62346;:16::i;:::-;62330:32;-1:-1:-1;8605:10:0;-1:-1:-1;;;;;62379:28:0;;;62375:175;;62427:44;62444:5;8605:10;63831:164;:::i;62427:44::-;62422:128;;62499:35;;-1:-1:-1;;;62499:35:0;;;;;;;;;;;62422:128;62562:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;62562:35:0;-1:-1:-1;;;;;62562:35:0;;;;;;;;;62613:28;;62562:24;;62613:28;;;;;;;62319:330;62249:400;;:::o;43866:453::-;-1:-1:-1;;;;;43942:16:0;;43961:1;43942:16;;;:7;:16;;;;;;43934:71;;;;-1:-1:-1;;;43934:71:0;;;;;;;:::i;:::-;;;;;;;;;44018:15;44036:19;44047:7;44036:10;:19::i;:::-;44018:37;;44076:7;44087:1;44076:12;44068:68;;;;-1:-1:-1;;;44068:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44149:18:0;;;;;;:9;:18;;;;;:29;;44171:7;;44149:18;:29;;44171:7;;44149:29;:::i;:::-;;;;;;;;44207:7;44189:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;44227:35:0;;-1:-1:-1;44245:7:0;44254;44227:17;:35::i;:::-;44278:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;44278:33:0;;161:18:1;44278:33:0;;;;;;;43923:396;43866:453;:::o;66515:2817::-;66649:27;66679;66698:7;66679:18;:27::i;:::-;66649:57;;66764:4;-1:-1:-1;;;;;66723:45:0;66739:19;-1:-1:-1;;;;;66723:45:0;;66719:86;;66777:28;;-1:-1:-1;;;66777:28:0;;;;;;;;;;;66719:86;66819:27;65629:24;;;:15;:24;;;;;65851:26;;8605:10;65254:30;;;-1:-1:-1;;;;;64947:28:0;;65232:20;;;65229:56;67005:180;;67098:43;67115:4;8605:10;63831:164;:::i;67098:43::-;67093:92;;67150:35;;-1:-1:-1;;;67150:35:0;;;;;;;;;;;67093:92;-1:-1:-1;;;;;67202:16:0;;67198:52;;67227:23;;-1:-1:-1;;;67227:23:0;;;;;;;;;;;67198:52;67399:15;67396:160;;;67539:1;67518:19;67511:30;67396:160;-1:-1:-1;;;;;67936:24:0;;;;;;;:18;:24;;;;;;67934:26;;-1:-1:-1;;67934:26:0;;;68005:22;;;;;;;;;68003:24;;-1:-1:-1;68003:24:0;;;61107:11;61082:23;61078:41;61065:63;-1:-1:-1;;;61065:63:0;68298:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;68593:47:0;;:52;;68589:627;;68698:1;68688:11;;68666:19;68821:30;;;:17;:30;;;;;;:35;;68817:384;;68959:13;;68944:11;:28;68940:242;;69106:30;;;;:17;:30;;;;;:52;;;68940:242;68647:569;68589:627;69263:7;69259:2;-1:-1:-1;;;;;69244:27:0;69253:4;-1:-1:-1;;;;;69244:27:0;;;;;;;;;;;69282:42;66638:2694;;;66515:2817;;;:::o;69428:185::-;69566:39;69583:4;69589:2;69593:7;69566:39;;;;;;;;;;;;:16;:39::i;:::-;69428:185;;;:::o;44587:514::-;-1:-1:-1;;;;;44669:16:0;;44688:1;44669:16;;;:7;:16;;;;;;44661:71;;;;-1:-1:-1;;;44661:71:0;;;;;;;:::i;:::-;44745:15;44763:26;44774:5;44781:7;44763:10;:26::i;:::-;44745:44;;44810:7;44821:1;44810:12;44802:68;;;;-1:-1:-1;;;44802:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44883:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;44917:7;;44883:21;:41;;44917:7;;44883:41;:::i;:::-;;;;-1:-1:-1;;;;;;;44935:26:0;;;;;;:19;:26;;;;;:37;;44965:7;;44935:26;:37;;44965:7;;44935:37;:::i;:::-;;;;-1:-1:-1;44985:47:0;;-1:-1:-1;45008:5:0;45015:7;45024;44985:22;:47::i;:::-;45048:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;45048:45:0;;;;;161:18:1;45048:45:0;;;;;;;44650:451;44587:514;;:::o;90662:114::-;28586:13;:11;:13::i;:::-;90741:15:::1;:27:::0;90662:114::o;91644:141::-;91690:6;91686:92;91707:10;;91703:1;:14;91686:92;;;91740:26;91756:8;91762:1;91756:5;:8::i;91740:26::-;91720:3;;;;:::i;:::-;;;;91686:92;;;;91644:141::o;57718:152::-;57790:7;57833:27;57852:7;57833:18;:27::i;88635:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53260:233::-;53332:7;-1:-1:-1;;;;;53356:19:0;;53352:60;;53384:28;;-1:-1:-1;;;53384:28:0;;;;;;;;;;;53352:60;-1:-1:-1;;;;;;53430:25:0;;;;;:18;:25;;;;;;47419:13;53430:55;;53260:233::o;29348:103::-;28586:13;:11;:13::i;:::-;29413:30:::1;29440:1;29413:18;:30::i;:::-;29348:103::o:0;90994:105::-;28586:13;:11;:13::i;:::-;91061:21:::1;:30:::0;90994:105::o;91259:122::-;-1:-1:-1;;;;;53664:25:0;;91324:7;53664:25;;;:18;:25;;47557:2;53664:25;;;;47419:13;53664:50;;53663:82;91351:22;53575:178;42831:100;42882:7;42909;42917:5;42909:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42909:14:0;;42831:100;-1:-1:-1;;42831:100:0:o;56501:104::-;56557:13;56590:7;56583:14;;;;;:::i;89459:548::-;89534:14;;;:31;;;89564:1;89552:9;:13;89534:31;89531:63;;;89567:27;;-1:-1:-1;;;89567:27:0;;10376:2:1;89567:27:0;;;10358:21:1;10415:2;10395:18;;;10388:30;-1:-1:-1;;;10434:18:1;;;10427:47;10491:18;;89567:27:0;10174:341:1;89531:63:0;89622:21;;89610:9;:33;89607:59;;;89652:14;;-1:-1:-1;;;89652:14:0;;;;;;;;;;;89607:59;89697:16;89682:11;;;;:31;;;;;;;;:::i;:::-;;89679:57;;89722:14;;-1:-1:-1;;;89722:14:0;;;;;;;;;;;89679:57;88732:4;89766:9;89750:13;52350:12;;52334:13;;:28;;52076:323;89750:13;:25;;;;:::i;:::-;:38;89747:64;;;89797:14;;-1:-1:-1;;;89797:14:0;;;;;;;;;;;89747:64;89844:10;89827:28;;;;:16;:28;;;;;;89870:1;;89827:40;;89858:9;;89827:40;:::i;:::-;:44;89824:70;;;89880:14;;-1:-1:-1;;;89880:14:0;;;;;;;;;;;89824:70;89936:10;89919:28;;;;:16;:28;;;;;:41;;89951:9;;89919:28;:41;;89951:9;;89919:41;:::i;:::-;;;;-1:-1:-1;89973:26:0;;-1:-1:-1;89979:8:0;89989:9;89973:5;:26::i;:::-;89459:548;;:::o;90784:100::-;28586:13;:11;:13::i;:::-;90858:7:::1;:18;90868:8:::0;90858:7;:18:::1;:::i;63366:308::-:0;8605:10;-1:-1:-1;;;;;63465:31:0;;;63461:61;;63505:17;;-1:-1:-1;;;63505:17:0;;;;;;;;;;;63461:61;8605:10;63535:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;63535:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;63535:60:0;;;;;;;;;;63611:55;;819:41:1;;;63535:49:0;;8605:10;63611:55;;792:18:1;63611:55:0;;;;;;;63366:308;;:::o;43021:225::-;43079:7;43099:21;43147:15;41734:14;;;41661:95;43147:15;43123:39;;:21;:39;:::i;:::-;43099:63;;43180:58;43196:7;43205:13;43220:17;43229:7;-1:-1:-1;;;;;42410:18:0;42383:7;42410:18;;;:9;:18;;;;;;;42327:109;43220:17;43180:15;:58::i;:::-;43173:65;43021:225;-1:-1:-1;;;43021:225:0:o;90015:639::-;90114:15;;90143:10;90140:35;;90155:20;;-1:-1:-1;;;90155:20:0;;12926:2:1;90155:20:0;;;12908:21:1;12965:2;12945:18;;;12938:30;-1:-1:-1;;;12984:18:1;;;12977:40;13034:18;;90155:20:0;12724:334:1;90140:35:0;90202:1;90189:9;:14;90186:42;;90205:23;;-1:-1:-1;;;90205:23:0;;13265:2:1;90205:23:0;;;13247:21:1;13304:2;13284:18;;;13277:30;-1:-1:-1;;;13323:18:1;;;13316:43;13376:18;;90205:23:0;13063:337:1;90186:42:0;90256:21;;90244:9;:33;90241:59;;;90286:14;;-1:-1:-1;;;90286:14:0;;;;;;;;;;;90241:59;90331:16;90316:11;;;;:31;;;;;;;;:::i;:::-;;90313:57;;90356:14;;-1:-1:-1;;;90356:14:0;;;;;;;;;;;90313:57;88732:4;90400:9;90384:13;52350:12;;52334:13;;:28;;52076:323;90384:13;:25;;;;:::i;:::-;:38;90381:64;;;90431:14;;-1:-1:-1;;;90431:14:0;;;;;;;;;;;90381:64;90471:17;90479:9;90471:5;:17;:::i;:::-;90459:9;:29;90456:151;;;90544:9;90578:17;90586:9;90578:5;:17;:::i;:::-;90497:110;;-1:-1:-1;;;90497:110:0;;;;;13752:25:1;;;;13793:18;;;13786:34;13725:18;;90497:110:0;13578:248:1;90456:151:0;90620:26;90626:8;90636:9;90620:5;:26::i;70211:399::-;70378:31;70391:4;70397:2;70401:7;70378:12;:31::i;:::-;-1:-1:-1;;;;;70424:14:0;;;:19;70420:183;;70463:56;70494:4;70500:2;70504:7;70513:5;70463:30;:56::i;:::-;70458:145;;70547:40;;-1:-1:-1;;;70547:40:0;;;;;;;;;;;70458:145;70211:399;;;;:::o;43406:260::-;-1:-1:-1;;;;;41998:26:0;;43478:7;41998:26;;;:19;:26;;;;;;43478:7;;43522:30;;-1:-1:-1;;;43522:30:0;;43546:4;43522:30;;;1958:51:1;-1:-1:-1;;;;;43522:15:0;;;;;1931:18:1;;43522:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;42702:21:0;;;42675:7;42702:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;43498:77;;-1:-1:-1;43593:65:0;;43609:7;;43498:77;;43180:15;:58::i;43593:65::-;43586:72;43406:260;-1:-1:-1;;;;43406:260:0:o;91389:247::-;91460:13;91494:17;91502:8;91494:7;:17::i;:::-;91486:61;;;;-1:-1:-1;;;91486:61:0;;14222:2:1;91486:61:0;;;14204:21:1;14261:2;14241:18;;;14234:30;14300:33;14280:18;;;14273:61;14351:18;;91486:61:0;14020:355:1;91486:61:0;91589:7;91598:19;91608:8;91598:9;:19::i;:::-;91572:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91558:70;;91389:247;;;:::o;89312:139::-;28586:13;:11;:13::i;:::-;52350:12;;52334:13;;89370:18;89367:44:::1;;89397:14;;-1:-1:-1::0;;;89397:14:0::1;;;;;;;;;;;89367:44;89422:21;89428:10;89440:2;89422:5;:21::i;29606:201::-:0;28586:13;:11;:13::i;:::-;-1:-1:-1;;;;;29695:22:0;::::1;29687:73;;;::::0;-1:-1:-1;;;29687:73:0;;15774:2:1;29687:73:0::1;::::0;::::1;15756:21:1::0;15813:2;15793:18;;;15786:30;15852:34;15832:18;;;15825:62;-1:-1:-1;;;15903:18:1;;;15896:36;15949:19;;29687:73:0::1;15572:402:1::0;29687:73:0::1;29771:28;29790:8;29771:18;:28::i;90892:92::-:0;28586:13;:11;:13::i;:::-;90970:5:::1;90965:11;;;;;;;;:::i;:::-;90951;:25:::0;;-1:-1:-1;;90951:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;90892:92:::0;:::o;64253:282::-;64318:4;64408:13;;64398:7;:23;64355:153;;;;-1:-1:-1;;64459:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;64459:44:0;:49;;64253:282::o;2433:317::-;2548:6;2523:21;:31;;2515:73;;;;-1:-1:-1;;;2515:73:0;;16181:2:1;2515:73:0;;;16163:21:1;16220:2;16200:18;;;16193:30;16259:31;16239:18;;;16232:59;16308:18;;2515:73:0;15979:353:1;2515:73:0;2602:12;2620:9;-1:-1:-1;;;;;2620:14:0;2642:6;2620:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2601:52;;;2672:7;2664:78;;;;-1:-1:-1;;;2664:78:0;;16749:2:1;2664:78:0;;;16731:21:1;16788:2;16768:18;;;16761:30;16827:34;16807:18;;;16800:62;16898:28;16878:18;;;16871:56;16944:19;;2664:78:0;16547:422:1;58873:1275:0;58940:7;58975;59077:13;;59070:4;:20;59066:1015;;;59115:14;59132:23;;;:17;:23;;;;;;;-1:-1:-1;;;59221:24:0;;:29;;59217:845;;59886:113;59893:6;59903:1;59893:11;59886:113;;-1:-1:-1;;;59964:6:0;59946:25;;;;:17;:25;;;;;;59886:113;;59217:845;59092:989;59066:1015;60109:31;;-1:-1:-1;;;60109:31:0;;;;;;;;;;;22035:211;22179:58;;;-1:-1:-1;;;;;206:32:1;;22179:58:0;;;188:51:1;255:18;;;;248:34;;;22179:58:0;;;;;;;;;;161:18:1;;;;22179:58:0;;;;;;;;-1:-1:-1;;;;;22179:58:0;-1:-1:-1;;;22179:58:0;;;22152:86;;22172:5;;22152:19;:86::i;28865:132::-;28746:7;28773:6;-1:-1:-1;;;;;28773:6:0;8605:10;28929:23;28921:68;;;;-1:-1:-1;;;28921:68:0;;17176:2:1;28921:68:0;;;17158:21:1;;;17195:18;;;17188:30;17254:34;17234:18;;;17227:62;17306:18;;28921:68:0;16974:356:1;29967:191:0;30041:16;30060:6;;-1:-1:-1;;;;;30077:17:0;;;-1:-1:-1;;;;;;30077:17:0;;;;;;30110:40;;30060:6;;;;;;;30110:40;;30041:16;30110:40;30030:128;29967:191;:::o;73872:2454::-;73968:13;;73945:20;73996:13;;;73992:44;;74018:18;;-1:-1:-1;;;74018:18:0;;;;;;;;;;;73992:44;-1:-1:-1;;;;;74524:22:0;;;;;;:18;:22;;;;47557:2;74524:22;;;:71;;74562:32;74550:45;;74524:71;;;74838:31;;;:17;:31;;;;;-1:-1:-1;61538:15:0;;61512:24;61508:46;61107:11;61082:23;61078:41;61075:52;61065:63;;74838:173;;75073:23;;;;74838:31;;74524:22;;75572:25;74524:22;;75425:335;75840:1;75826:12;75822:20;75780:346;75881:3;75872:7;75869:16;75780:346;;76099:7;76089:8;76086:1;76059:25;76056:1;76053;76048:59;75934:1;75921:15;75780:346;;;75784:77;76159:8;76171:1;76159:13;76155:45;;76181:19;;-1:-1:-1;;;76181:19:0;;;;;;;;;;;76155:45;76217:13;:19;-1:-1:-1;69428:185:0;;;:::o;45279:248::-;45489:12;;-1:-1:-1;;;;;45469:16:0;;45425:7;45469:16;;;:7;:16;;;;;;45425:7;;45504:15;;45453:32;;:13;:32;:::i;:::-;45452:49;;;;:::i;:::-;:67;;;;:::i;72694:716::-;72878:88;;-1:-1:-1;;;72878:88:0;;72857:4;;-1:-1:-1;;;;;72878:45:0;;;;;:88;;8605:10;;72945:4;;72951:7;;72960:5;;72878:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72878:88:0;;;;;;;;-1:-1:-1;;72878:88:0;;;;;;;;;;;;:::i;:::-;;;72874:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73161:6;:13;73178:1;73161:18;73157:235;;73207:40;;-1:-1:-1;;;73207:40:0;;;;;;;;;;;73157:235;73350:6;73344:13;73335:6;73331:2;73327:15;73320:38;72874:529;-1:-1:-1;;;;;;73037:64:0;-1:-1:-1;;;73037:64:0;;-1:-1:-1;72694:716:0;;;;;;:::o;86226:2002::-;86703:4;86697:11;;86710:3;86693:21;;86788:17;;;;87484:11;;;87363:5;87650:2;87664;87654:13;;87646:22;87484:11;87633:36;87705:2;87695:13;;87255:731;87724:4;87255:731;;;87915:1;87910:3;87906:11;87899:18;;87966:2;87960:4;87956:13;87952:2;87948:22;87943:3;87935:36;87819:2;87809:13;;87255:731;;;-1:-1:-1;88016:13:0;;;-1:-1:-1;;88131:12:0;;;88191:19;;;88131:12;86226:2002;-1:-1:-1;86226:2002:0:o;25102:716::-;25526:23;25552:69;25580:4;25552:69;;;;;;;;;;;;;;;;;25560:5;-1:-1:-1;;;;;25552:27:0;;;:69;;;;;:::i;:::-;25636:17;;25526:95;;-1:-1:-1;25636:21:0;25632:179;;25733:10;25722:30;;;;;;;;;;;;:::i;:::-;25714:85;;;;-1:-1:-1;;;25714:85:0;;18890:2:1;25714:85:0;;;18872:21:1;18929:2;18909:18;;;18902:30;18968:34;18948:18;;;18941:62;-1:-1:-1;;;19019:18:1;;;19012:40;19069:19;;25714:85:0;18688:406:1;3917:229:0;4054:12;4086:52;4108:6;4116:4;4122:1;4125:12;4054;-1:-1:-1;;;;;1467:19:0;;;5324:60;;;;-1:-1:-1;;;5324:60:0;;19708:2:1;5324:60:0;;;19690:21:1;19747:2;19727:18;;;19720:30;19786:31;19766:18;;;19759:59;19835:18;;5324:60:0;19506:353:1;5324:60:0;5398:12;5412:23;5439:6;-1:-1:-1;;;;;5439:11:0;5458:5;5465:4;5439:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5397:73;;;;5488:51;5505:7;5514:10;5526:12;5488:16;:51::i;:::-;5481:58;5037:510;-1:-1:-1;;;;;;;5037:510:0:o;7723:762::-;7873:12;7902:7;7898:580;;;-1:-1:-1;7933:10:0;7926:17;;7898:580;8047:17;;:21;8043:424;;8295:10;8289:17;8356:15;8343:10;8339:2;8335:19;8328:44;8043:424;8438:12;8431:20;;-1:-1:-1;;;8431:20:0;;;;;;;;:::i;293:131:1:-;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2476:127::-;2537:10;2532:3;2528:20;2525:1;2518:31;2568:4;2565:1;2558:15;2592:4;2589:1;2582:15;2608:232;2684:1;2677:5;2674:12;2664:143;;2729:10;2724:3;2720:20;2717:1;2710:31;2764:4;2761:1;2754:15;2792:4;2789:1;2782:15;2664:143;2816:18;;2608:232::o;2845:340::-;3042:2;3027:18;;3054:39;3031:9;3075:6;3054:39;:::i;:::-;3124:2;3109:18;;3102:34;;;;3167:2;3152:18;3145:34;2845:340;;-1:-1:-1;2845:340:1:o;3372:255::-;3439:6;3492:2;3480:9;3471:7;3467:23;3463:32;3460:52;;;3508:1;3505;3498:12;3460:52;3547:9;3534:23;3566:31;3591:5;3566:31;:::i;3632:456::-;3709:6;3717;3725;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3833:9;3820:23;3852:31;3877:5;3852:31;:::i;:::-;3902:5;-1:-1:-1;3959:2:1;3944:18;;3931:32;3972:33;3931:32;3972:33;:::i;:::-;3632:456;;4024:7;;-1:-1:-1;;;4078:2:1;4063:18;;;;4050:32;;3632:456::o;4093:402::-;4175:6;4183;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:31;4335:5;4310:31;:::i;:::-;4360:5;-1:-1:-1;4417:2:1;4402:18;;4389:32;4430:33;4389:32;4430:33;:::i;:::-;4482:7;4472:17;;;4093:402;;;;;:::o;4752:127::-;4813:10;4808:3;4804:20;4801:1;4794:31;4844:4;4841:1;4834:15;4868:4;4865:1;4858:15;4884:632;4949:5;4979:18;5020:2;5012:6;5009:14;5006:40;;;5026:18;;:::i;:::-;5101:2;5095:9;5069:2;5155:15;;-1:-1:-1;;5151:24:1;;;5177:2;5147:33;5143:42;5131:55;;;5201:18;;;5221:22;;;5198:46;5195:72;;;5247:18;;:::i;:::-;5287:10;5283:2;5276:22;5316:6;5307:15;;5346:6;5338;5331:22;5386:3;5377:6;5372:3;5368:16;5365:25;5362:45;;;5403:1;5400;5393:12;5362:45;5453:6;5448:3;5441:4;5433:6;5429:17;5416:44;5508:1;5501:4;5492:6;5484;5480:19;5476:30;5469:41;;;;4884:632;;;;;:::o;5521:451::-;5590:6;5643:2;5631:9;5622:7;5618:23;5614:32;5611:52;;;5659:1;5656;5649:12;5611:52;5699:9;5686:23;5732:18;5724:6;5721:30;5718:50;;;5764:1;5761;5754:12;5718:50;5787:22;;5840:4;5832:13;;5828:27;-1:-1:-1;5818:55:1;;5869:1;5866;5859:12;5818:55;5892:74;5958:7;5953:2;5940:16;5935:2;5931;5927:11;5892:74;:::i;5977:118::-;6063:5;6056:13;6049:21;6042:5;6039:32;6029:60;;6085:1;6082;6075:12;6100:382;6165:6;6173;6226:2;6214:9;6205:7;6201:23;6197:32;6194:52;;;6242:1;6239;6232:12;6194:52;6281:9;6268:23;6300:31;6325:5;6300:31;:::i;:::-;6350:5;-1:-1:-1;6407:2:1;6392:18;;6379:32;6420:30;6379:32;6420:30;:::i;6487:795::-;6582:6;6590;6598;6606;6659:3;6647:9;6638:7;6634:23;6630:33;6627:53;;;6676:1;6673;6666:12;6627:53;6715:9;6702:23;6734:31;6759:5;6734:31;:::i;:::-;6784:5;-1:-1:-1;6841:2:1;6826:18;;6813:32;6854:33;6813:32;6854:33;:::i;:::-;6906:7;-1:-1:-1;6960:2:1;6945:18;;6932:32;;-1:-1:-1;7015:2:1;7000:18;;6987:32;7042:18;7031:30;;7028:50;;;7074:1;7071;7064:12;7028:50;7097:22;;7150:4;7142:13;;7138:27;-1:-1:-1;7128:55:1;;7179:1;7176;7169:12;7128:55;7202:74;7268:7;7263:2;7250:16;7245:2;7241;7237:11;7202:74;:::i;:::-;7192:84;;;6487:795;;;;;;;:::o;7287:198::-;7428:2;7413:18;;7440:39;7417:9;7461:6;7440:39;:::i;8149:380::-;8228:1;8224:12;;;;8271;;;8292:61;;8346:4;8338:6;8334:17;8324:27;;8292:61;8399:2;8391:6;8388:14;8368:18;8365:38;8362:161;;8445:10;8440:3;8436:20;8433:1;8426:31;8480:4;8477:1;8470:15;8508:4;8505:1;8498:15;8362:161;;8149:380;;;:::o;8534:402::-;8736:2;8718:21;;;8775:2;8755:18;;;8748:30;8814:34;8809:2;8794:18;;8787:62;-1:-1:-1;;;8880:2:1;8865:18;;8858:36;8926:3;8911:19;;8534:402::o;8941:407::-;9143:2;9125:21;;;9182:2;9162:18;;;9155:30;9221:34;9216:2;9201:18;;9194:62;-1:-1:-1;;;9287:2:1;9272:18;;9265:41;9338:3;9323:19;;8941:407::o;9353:127::-;9414:10;9409:3;9405:20;9402:1;9395:31;9445:4;9442:1;9435:15;9469:4;9466:1;9459:15;9485:125;9550:9;;;9571:10;;;9568:36;;;9584:18;;:::i;9902:135::-;9941:3;9962:17;;;9959:43;;9982:18;;:::i;:::-;-1:-1:-1;10029:1:1;10018:13;;9902:135::o;10042:127::-;10103:10;10098:3;10094:20;10091:1;10084:31;10134:4;10131:1;10124:15;10158:4;10155:1;10148:15;10646:545;10748:2;10743:3;10740:11;10737:448;;;10784:1;10809:5;10805:2;10798:17;10854:4;10850:2;10840:19;10924:2;10912:10;10908:19;10905:1;10901:27;10895:4;10891:38;10960:4;10948:10;10945:20;10942:47;;;-1:-1:-1;10983:4:1;10942:47;11038:2;11033:3;11029:12;11026:1;11022:20;11016:4;11012:31;11002:41;;11093:82;11111:2;11104:5;11101:13;11093:82;;;11156:17;;;11137:1;11126:13;11093:82;;11367:1352;11493:3;11487:10;11520:18;11512:6;11509:30;11506:56;;;11542:18;;:::i;:::-;11571:97;11661:6;11621:38;11653:4;11647:11;11621:38;:::i;:::-;11615:4;11571:97;:::i;:::-;11723:4;;11787:2;11776:14;;11804:1;11799:663;;;;12506:1;12523:6;12520:89;;;-1:-1:-1;12575:19:1;;;12569:26;12520:89;-1:-1:-1;;11324:1:1;11320:11;;;11316:24;11312:29;11302:40;11348:1;11344:11;;;11299:57;12622:81;;11769:944;;11799:663;10593:1;10586:14;;;10630:4;10617:18;;-1:-1:-1;;11835:20:1;;;11953:236;11967:7;11964:1;11961:14;11953:236;;;12056:19;;;12050:26;12035:42;;12148:27;;;;12116:1;12104:14;;;;11983:19;;11953:236;;;11957:3;12217:6;12208:7;12205:19;12202:201;;;12278:19;;;12272:26;-1:-1:-1;;12361:1:1;12357:14;;;12373:3;12353:24;12349:37;12345:42;12330:58;12315:74;;12202:201;-1:-1:-1;;;;;12449:1:1;12433:14;;;12429:22;12416:36;;-1:-1:-1;11367:1352:1:o;13405:168::-;13478:9;;;13509;;13526:15;;;13520:22;;13506:37;13496:71;;13547:18;;:::i;13831:184::-;13901:6;13954:2;13942:9;13933:7;13929:23;13925:32;13922:52;;;13970:1;13967;13960:12;13922:52;-1:-1:-1;13993:16:1;;13831:184;-1:-1:-1;13831:184:1:o;14380:1187::-;14657:3;14686:1;14719:6;14713:13;14749:36;14775:9;14749:36;:::i;:::-;14804:1;14821:18;;;14848:133;;;;14995:1;14990:356;;;;14814:532;;14848:133;-1:-1:-1;;14881:24:1;;14869:37;;14954:14;;14947:22;14935:35;;14926:45;;;-1:-1:-1;14848:133:1;;14990:356;15021:6;15018:1;15011:17;15051:4;15096:2;15093:1;15083:16;15121:1;15135:165;15149:6;15146:1;15143:13;15135:165;;;15227:14;;15214:11;;;15207:35;15270:16;;;;15164:10;;15135:165;;;15139:3;;;15329:6;15324:3;15320:16;15313:23;;14814:532;;;;;15377:6;15371:13;15393:68;15452:8;15447:3;15440:4;15432:6;15428:17;15393:68;:::i;:::-;-1:-1:-1;;;15483:18:1;;15510:22;;;15559:1;15548:13;;14380:1187;-1:-1:-1;;;;14380:1187:1:o;17335:217::-;17375:1;17401;17391:132;;17445:10;17440:3;17436:20;17433:1;17426:31;17480:4;17477:1;17470:15;17508:4;17505:1;17498:15;17391:132;-1:-1:-1;17537:9:1;;17335:217::o;17557:128::-;17624:9;;;17645:11;;;17642:37;;;17659:18;;:::i;17690:489::-;-1:-1:-1;;;;;17959:15:1;;;17941:34;;18011:15;;18006:2;17991:18;;17984:43;18058:2;18043:18;;18036:34;;;18106:3;18101:2;18086:18;;18079:31;;;17884:4;;18127:46;;18153:19;;18145:6;18127:46;:::i;:::-;18119:54;17690:489;-1:-1:-1;;;;;;17690:489:1:o;18184:249::-;18253:6;18306:2;18294:9;18285:7;18281:23;18277:32;18274:52;;;18322:1;18319;18312:12;18274:52;18354:9;18348:16;18373:30;18397:5;18373:30;:::i;18438:245::-;18505:6;18558:2;18546:9;18537:7;18533:23;18529:32;18526:52;;;18574:1;18571;18564:12;18526:52;18606:9;18600:16;18625:28;18647:5;18625:28;:::i;19864:287::-;19993:3;20031:6;20025:13;20047:66;20106:6;20101:3;20094:4;20086:6;20082:17;20047:66;:::i;:::-;20129:16;;;;;19864:287;-1:-1:-1;;19864:287:1:o
Swarm Source
ipfs://399cd735ba621ed8f0db924f2fd176fe6e9e96c6b1ae627a005733d15ab889a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.