ETH Price: $2,753.29 (+2.12%)

Token

Lunartics (LUNARTICS)
 

Overview

Max Total Supply

10,000 LUNARTICS

Holders

4,760

Market

Volume (24H)

0.0099 ETH

Min Price (24H)

$12.67 @ 0.004600 ETH

Max Price (24H)

$14.59 @ 0.005300 ETH

Other Info

Balance
1 LUNARTICS
0x79d038948e6c431e48cbdb2fc553dc99866939df
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[Lunartics](https://thelunartics.com) is a fantastically playful launch of 10,000 NFTs destined to become the next great animated series created by Animation legend Julius Preite (Simpsons, Family Guy) and notorious Writer/Producer Dan E. Fesman (King of Queens, NCIS). Armed w...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Lunartics

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Lunartics.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
/*
It saves bytecode to revert on custom errors instead of using require
statements. We are just declaring these errors for reverting with upon various
conditions later in this contract. Thanks, Chiru Labs!
*/
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error CapExceeded();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error NotAnAdmin();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 10 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 10 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 10 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 10 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 10 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 10 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 10 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 10 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 10 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_metadataURI","type":"string"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAnAdmin","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferIsLocked","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"_exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_id","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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_locked","type":"bool"}],"name":"lockTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint_Qgo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","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":"_id","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"},{"internalType":"bool","name":"_isAdmin","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260016004553480156200001657600080fd5b506040516200188238038062001882833981016040819052620000399162000256565b620000443362000093565b835162000059906001906020870190620000e3565b5082516200006f906002906020860190620000e3565b50815162000085906003906020850190620000e3565b50608052506200032c915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000f190620002ef565b90600052602060002090601f01602090048101928262000115576000855562000160565b82601f106200013057805160ff191683800117855562000160565b8280016001018555821562000160579182015b828111156200016057825182559160200191906001019062000143565b506200016e92915062000172565b5090565b5b808211156200016e576000815560010162000173565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001b157600080fd5b81516001600160401b0380821115620001ce57620001ce62000189565b604051601f8301601f19908116603f01168101908282118183101715620001f957620001f962000189565b816040528381526020925086838588010111156200021657600080fd5b600091505b838210156200023a57858201830151818301840152908201906200021b565b838211156200024c5760008385830101525b9695505050505050565b600080600080608085870312156200026d57600080fd5b84516001600160401b03808211156200028557600080fd5b62000293888389016200019f565b95506020870151915080821115620002aa57600080fd5b620002b8888389016200019f565b94506040870151915080821115620002cf57600080fd5b50620002de878288016200019f565b606096909601519497939650505050565b600181811c908216806200030457607f821691505b602082108114156200032657634e487b7160e01b600052602260045260246000fd5b50919050565b6080516115336200034f6000396000818161023f015261041601526115336000f3fe608060405234801561001057600080fd5b50600436106101565760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102ec578063b88d4fde146102ff578063c87b56dd14610312578063e985e9c514610325578063f2fde38b14610361578063f8e76cc01461037457600080fd5b80636352211e1461028757806370a082311461029a578063715018a6146102c357806377a4d559146102cb5780638da5cb5b146102d357806395d89b41146102e457600080fd5b806318160ddd1161011557806318160ddd146101fe57806323b872dd1461021457806333b5727414610227578063355274ea1461023a57806342842e0e146102615780634b0bddd21461027457600080fd5b806117841461015b57806301ffc9a71461017057806302fe53051461019857806306fdde03146101ab578063081812fc146101c0578063095ea7b3146101eb575b600080fd5b61016e610169366004610f89565b610387565b005b61018361017e366004610fc9565b610506565b60405190151581526020015b60405180910390f35b61016e6101a6366004610fed565b610558565b6101b361059c565b60405161018f91906110b7565b6101d36101ce3660046110ca565b61062a565b6040516001600160a01b03909116815260200161018f565b61016e6101f9366004610f89565b61066e565b6102066106c4565b60405190815260200161018f565b61016e6102223660046110e3565b6106da565b61016e61023536600461112f565b6106e5565b6102067f000000000000000000000000000000000000000000000000000000000000000081565b61016e61026f3660046110e3565b61074e565b61016e61028236600461115b565b610769565b6101d36102953660046110ca565b6107be565b6102066102a8366004611185565b6001600160a01b031660009081526006602052604090205490565b61016e6107c9565b6101b36107ff565b6000546001600160a01b03166101d3565b6101b361080c565b61016e6102fa36600461115b565b610819565b61016e61030d3660046111b6565b610885565b6101b36103203660046110ca565b6108bf565b610183610333366004611292565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61016e61036f366004611185565b610942565b6101836103823660046110ca565b6109dd565b6000546001600160a01b031633148015906103b257503360009081526009602052604090205460ff16155b156103d0576040516355098f2760e01b815260040160405180910390fd5b6001600160a01b0382166103f657604051622e076360e81b815260040160405180910390fd5b806104145760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600160045461044591906112d2565b61044f91906112e9565b111561046e5760405163a4875a4960e01b815260040160405180910390fd5b6004546001600160a01b03831660008181526006602090815260408083208054870190558483526005909152812080546001600160a01b03191690921790915581905b838110156104fd5760405182906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4600191820191016104b1565b50600455505050565b60006001600160e01b031982166380ac58cd60e01b148061053757506001600160e01b03198216635b5e139f60e01b145b8061055257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461058b5760405162461bcd60e51b815260040161058290611301565b60405180910390fd5b61059760038383610ed4565b505050565b600180546105a990611336565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590611336565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b505050505081565b6000610635826109dd565b610652576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610679826109f1565b9050336001600160a01b0382161480159061069b57506106998133610333565b155b156106b9576040516367d9dca160e11b815260040160405180910390fd5b610597818484610a4a565b600060016004546106d591906112d2565b905090565b610597838383610aa6565b6000546001600160a01b0316331480159061071057503360009081526009602052604090205460ff16155b1561072e576040516355098f2760e01b815260040160405180910390fd5b6000918252600a6020526040909120805460ff1916911515919091179055565b61059783838360405180602001604052806000815250610885565b6000546001600160a01b031633146107935760405162461bcd60e51b815260040161058290611301565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000610552826109f1565b6000546001600160a01b031633146107f35760405162461bcd60e51b815260040161058290611301565b6107fd6000610c86565b565b600380546105a990611336565b600280546105a990611336565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610890848484610aa6565b61089c84848484610cd6565b6108b9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606108ca826109dd565b6108e757604051630a14c4b560e41b815260040160405180910390fd5b600380546108f490611336565b151590506109115760405180602001604052806000815250610552565b600361091c83610dd6565b60405160200161092d92919061138d565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461096c5760405162461bcd60e51b815260040161058290611301565b6001600160a01b0381166109d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610582565b6109da81610c86565b50565b600080821180156105525750506004541190565b60006109fc826109dd565b610a1957604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560205260409020546001600160a01b031691508115610a415750919050565b60001901610a1b565b60008181526007602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ab1826109f1565b90506000336001600160a01b0383161480610ad15750610ad18233610333565b80610aec575033610ae18461062a565b6001600160a01b0316145b905080610b0c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316826001600160a01b031614610b3d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610b6457604051633a954ecd60e21b815260040160405180910390fd5b6000838152600a602052604090205460ff1615610b9457604051631ec47c7760e01b815260040160405180910390fd5b610ba082600085610a4a565b6001600160a01b038086166000908152600660209081526040808320805460001901905587841680845281842080546001908101909155888552600590935281842080546001600160a01b0319169091179055908601808352912054909116158015610c105750610c10816109dd565b15610c3d57600081815260056020526040902080546001600160a01b0319166001600160a01b0385161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15610dca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610d1a903390899088908890600401611434565b6020604051808303816000875af1925050508015610d55575060408051601f3d908101601f19168201909252610d5291810190611471565b60015b610db0573d808015610d83576040519150601f19603f3d011682016040523d82523d6000602084013e610d88565b606091505b508051610da8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dce565b5060015b949350505050565b606081610dfa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e245780610e0e8161148e565b9150610e1d9050600a836114bf565b9150610dfe565b60008167ffffffffffffffff811115610e3f57610e3f6111a0565b6040519080825280601f01601f191660200182016040528015610e69576020820181803683370190505b5090505b8415610dce57610e7e6001836112d2565b9150610e8b600a866114d3565b610e969060306112e9565b60f81b818381518110610eab57610eab6114e7565b60200101906001600160f81b031916908160001a905350610ecd600a866114bf565b9450610e6d565b828054610ee090611336565b90600052602060002090601f016020900481019282610f025760008555610f48565b82601f10610f1b5782800160ff19823516178555610f48565b82800160010185558215610f48579182015b82811115610f48578235825591602001919060010190610f2d565b50610f54929150610f58565b5090565b5b80821115610f545760008155600101610f59565b80356001600160a01b0381168114610f8457600080fd5b919050565b60008060408385031215610f9c57600080fd5b610fa583610f6d565b946020939093013593505050565b6001600160e01b0319811681146109da57600080fd5b600060208284031215610fdb57600080fd5b8135610fe681610fb3565b9392505050565b6000806020838503121561100057600080fd5b823567ffffffffffffffff8082111561101857600080fd5b818501915085601f83011261102c57600080fd5b81358181111561103b57600080fd5b86602082850101111561104d57600080fd5b60209290920196919550909350505050565b60005b8381101561107a578181015183820152602001611062565b838111156108b95750506000910152565b600081518084526110a381602086016020860161105f565b601f01601f19169290920160200192915050565b602081526000610fe6602083018461108b565b6000602082840312156110dc57600080fd5b5035919050565b6000806000606084860312156110f857600080fd5b61110184610f6d565b925061110f60208501610f6d565b9150604084013590509250925092565b80358015158114610f8457600080fd5b6000806040838503121561114257600080fd5b823591506111526020840161111f565b90509250929050565b6000806040838503121561116e57600080fd5b61117783610f6d565b91506111526020840161111f565b60006020828403121561119757600080fd5b610fe682610f6d565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111cc57600080fd5b6111d585610f6d565b93506111e360208601610f6d565b925060408501359150606085013567ffffffffffffffff8082111561120757600080fd5b818701915087601f83011261121b57600080fd5b81358181111561122d5761122d6111a0565b604051601f8201601f19908116603f01168101908382118183101715611255576112556111a0565b816040528281528a602084870101111561126e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156112a557600080fd5b6112ae83610f6d565b915061115260208401610f6d565b634e487b7160e01b600052601160045260246000fd5b6000828210156112e4576112e46112bc565b500390565b600082198211156112fc576112fc6112bc565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061134a57607f821691505b6020821081141561136b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000815161138381856020860161105f565b9290920192915050565b600080845481600182811c9150808316806113a957607f831692505b60208084108214156113c957634e487b7160e01b86526022600452602486fd5b8180156113dd57600181146113ee5761141b565b60ff1986168952848901965061141b565b60008b81526020902060005b868110156114135781548b8201529085019083016113fa565b505084890196505b50505050505061142b8185611371565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114679083018461108b565b9695505050505050565b60006020828403121561148357600080fd5b8151610fe681610fb3565b60006000198214156114a2576114a26112bc565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826114ce576114ce6114a9565b500490565b6000826114e2576114e26114a9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206d78593537178441e69a538daf88e0978fc1a91a2e05e53f2a5d680522f5bc3e64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000094c756e617274696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c554e4152544943530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6c756e6172746963732e73332e616d617a6f6e6177732e636f6d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101565760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102ec578063b88d4fde146102ff578063c87b56dd14610312578063e985e9c514610325578063f2fde38b14610361578063f8e76cc01461037457600080fd5b80636352211e1461028757806370a082311461029a578063715018a6146102c357806377a4d559146102cb5780638da5cb5b146102d357806395d89b41146102e457600080fd5b806318160ddd1161011557806318160ddd146101fe57806323b872dd1461021457806333b5727414610227578063355274ea1461023a57806342842e0e146102615780634b0bddd21461027457600080fd5b806117841461015b57806301ffc9a71461017057806302fe53051461019857806306fdde03146101ab578063081812fc146101c0578063095ea7b3146101eb575b600080fd5b61016e610169366004610f89565b610387565b005b61018361017e366004610fc9565b610506565b60405190151581526020015b60405180910390f35b61016e6101a6366004610fed565b610558565b6101b361059c565b60405161018f91906110b7565b6101d36101ce3660046110ca565b61062a565b6040516001600160a01b03909116815260200161018f565b61016e6101f9366004610f89565b61066e565b6102066106c4565b60405190815260200161018f565b61016e6102223660046110e3565b6106da565b61016e61023536600461112f565b6106e5565b6102067f000000000000000000000000000000000000000000000000000000000000271081565b61016e61026f3660046110e3565b61074e565b61016e61028236600461115b565b610769565b6101d36102953660046110ca565b6107be565b6102066102a8366004611185565b6001600160a01b031660009081526006602052604090205490565b61016e6107c9565b6101b36107ff565b6000546001600160a01b03166101d3565b6101b361080c565b61016e6102fa36600461115b565b610819565b61016e61030d3660046111b6565b610885565b6101b36103203660046110ca565b6108bf565b610183610333366004611292565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61016e61036f366004611185565b610942565b6101836103823660046110ca565b6109dd565b6000546001600160a01b031633148015906103b257503360009081526009602052604090205460ff16155b156103d0576040516355098f2760e01b815260040160405180910390fd5b6001600160a01b0382166103f657604051622e076360e81b815260040160405180910390fd5b806104145760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271081600160045461044591906112d2565b61044f91906112e9565b111561046e5760405163a4875a4960e01b815260040160405180910390fd5b6004546001600160a01b03831660008181526006602090815260408083208054870190558483526005909152812080546001600160a01b03191690921790915581905b838110156104fd5760405182906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4600191820191016104b1565b50600455505050565b60006001600160e01b031982166380ac58cd60e01b148061053757506001600160e01b03198216635b5e139f60e01b145b8061055257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461058b5760405162461bcd60e51b815260040161058290611301565b60405180910390fd5b61059760038383610ed4565b505050565b600180546105a990611336565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590611336565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b505050505081565b6000610635826109dd565b610652576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610679826109f1565b9050336001600160a01b0382161480159061069b57506106998133610333565b155b156106b9576040516367d9dca160e11b815260040160405180910390fd5b610597818484610a4a565b600060016004546106d591906112d2565b905090565b610597838383610aa6565b6000546001600160a01b0316331480159061071057503360009081526009602052604090205460ff16155b1561072e576040516355098f2760e01b815260040160405180910390fd5b6000918252600a6020526040909120805460ff1916911515919091179055565b61059783838360405180602001604052806000815250610885565b6000546001600160a01b031633146107935760405162461bcd60e51b815260040161058290611301565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000610552826109f1565b6000546001600160a01b031633146107f35760405162461bcd60e51b815260040161058290611301565b6107fd6000610c86565b565b600380546105a990611336565b600280546105a990611336565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610890848484610aa6565b61089c84848484610cd6565b6108b9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606108ca826109dd565b6108e757604051630a14c4b560e41b815260040160405180910390fd5b600380546108f490611336565b151590506109115760405180602001604052806000815250610552565b600361091c83610dd6565b60405160200161092d92919061138d565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461096c5760405162461bcd60e51b815260040161058290611301565b6001600160a01b0381166109d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610582565b6109da81610c86565b50565b600080821180156105525750506004541190565b60006109fc826109dd565b610a1957604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560205260409020546001600160a01b031691508115610a415750919050565b60001901610a1b565b60008181526007602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ab1826109f1565b90506000336001600160a01b0383161480610ad15750610ad18233610333565b80610aec575033610ae18461062a565b6001600160a01b0316145b905080610b0c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316826001600160a01b031614610b3d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610b6457604051633a954ecd60e21b815260040160405180910390fd5b6000838152600a602052604090205460ff1615610b9457604051631ec47c7760e01b815260040160405180910390fd5b610ba082600085610a4a565b6001600160a01b038086166000908152600660209081526040808320805460001901905587841680845281842080546001908101909155888552600590935281842080546001600160a01b0319169091179055908601808352912054909116158015610c105750610c10816109dd565b15610c3d57600081815260056020526040902080546001600160a01b0319166001600160a01b0385161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15610dca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610d1a903390899088908890600401611434565b6020604051808303816000875af1925050508015610d55575060408051601f3d908101601f19168201909252610d5291810190611471565b60015b610db0573d808015610d83576040519150601f19603f3d011682016040523d82523d6000602084013e610d88565b606091505b508051610da8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dce565b5060015b949350505050565b606081610dfa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e245780610e0e8161148e565b9150610e1d9050600a836114bf565b9150610dfe565b60008167ffffffffffffffff811115610e3f57610e3f6111a0565b6040519080825280601f01601f191660200182016040528015610e69576020820181803683370190505b5090505b8415610dce57610e7e6001836112d2565b9150610e8b600a866114d3565b610e969060306112e9565b60f81b818381518110610eab57610eab6114e7565b60200101906001600160f81b031916908160001a905350610ecd600a866114bf565b9450610e6d565b828054610ee090611336565b90600052602060002090601f016020900481019282610f025760008555610f48565b82601f10610f1b5782800160ff19823516178555610f48565b82800160010185558215610f48579182015b82811115610f48578235825591602001919060010190610f2d565b50610f54929150610f58565b5090565b5b80821115610f545760008155600101610f59565b80356001600160a01b0381168114610f8457600080fd5b919050565b60008060408385031215610f9c57600080fd5b610fa583610f6d565b946020939093013593505050565b6001600160e01b0319811681146109da57600080fd5b600060208284031215610fdb57600080fd5b8135610fe681610fb3565b9392505050565b6000806020838503121561100057600080fd5b823567ffffffffffffffff8082111561101857600080fd5b818501915085601f83011261102c57600080fd5b81358181111561103b57600080fd5b86602082850101111561104d57600080fd5b60209290920196919550909350505050565b60005b8381101561107a578181015183820152602001611062565b838111156108b95750506000910152565b600081518084526110a381602086016020860161105f565b601f01601f19169290920160200192915050565b602081526000610fe6602083018461108b565b6000602082840312156110dc57600080fd5b5035919050565b6000806000606084860312156110f857600080fd5b61110184610f6d565b925061110f60208501610f6d565b9150604084013590509250925092565b80358015158114610f8457600080fd5b6000806040838503121561114257600080fd5b823591506111526020840161111f565b90509250929050565b6000806040838503121561116e57600080fd5b61117783610f6d565b91506111526020840161111f565b60006020828403121561119757600080fd5b610fe682610f6d565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111cc57600080fd5b6111d585610f6d565b93506111e360208601610f6d565b925060408501359150606085013567ffffffffffffffff8082111561120757600080fd5b818701915087601f83011261121b57600080fd5b81358181111561122d5761122d6111a0565b604051601f8201601f19908116603f01168101908382118183101715611255576112556111a0565b816040528281528a602084870101111561126e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156112a557600080fd5b6112ae83610f6d565b915061115260208401610f6d565b634e487b7160e01b600052601160045260246000fd5b6000828210156112e4576112e46112bc565b500390565b600082198211156112fc576112fc6112bc565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061134a57607f821691505b6020821081141561136b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000815161138381856020860161105f565b9290920192915050565b600080845481600182811c9150808316806113a957607f831692505b60208084108214156113c957634e487b7160e01b86526022600452602486fd5b8180156113dd57600181146113ee5761141b565b60ff1986168952848901965061141b565b60008b81526020902060005b868110156114135781548b8201529085019083016113fa565b505084890196505b50505050505061142b8185611371565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114679083018461108b565b9695505050505050565b60006020828403121561148357600080fd5b8151610fe681610fb3565b60006000198214156114a2576114a26112bc565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826114ce576114ce6114a9565b500490565b6000826114e2576114e26114a9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206d78593537178441e69a538daf88e0978fc1a91a2e05e53f2a5d680522f5bc3e64736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000094c756e617274696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c554e4152544943530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6c756e6172746963732e73332e616d617a6f6e6177732e636f6d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lunartics
Arg [1] : _symbol (string): LUNARTICS
Arg [2] : _metadataURI (string): https://lunartics.s3.amazonaws.com/
Arg [3] : _cap (uint256): 10000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4c756e6172746963730000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 4c554e4152544943530000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [9] : 68747470733a2f2f6c756e6172746963732e73332e616d617a6f6e6177732e63
Arg [10] : 6f6d2f0000000000000000000000000000000000000000000000000000000000


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.