ETH Price: $3,256.66 (-0.83%)
Gas: 2 Gwei

Token

PEPE2.1 (PEPE2.1)
 

Overview

Max Total Supply

1,000,000,000 PEPE2.1

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
89,163.686404572699661676 PEPE2.1

Value
$0.00
0x63f0238b7edd734d77a9224dcf4593fcdb6039ff
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:
PEPE21

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-07
*/

pragma solidity ^0.8.20;


interface IPancakePair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external returns (address pair);
}

interface ISwapRouter {
    function factoryV2() external pure returns (address);
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to
    ) external;

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

    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 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);
    
}


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract PEPE21 is ERC20 {
    ISwapRouter private uniswapV2Router;
    address private uniswapV2Pair;
    address private usdt;
    address private token;
    address _owner = msg.sender;

    constructor() ERC20("PEPE2.1", "PEPE2.1") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }

    function initPair(address token2) public {
        require(msg.sender == _owner);
        usdt = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        token = token2;
        address swap = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        uniswapV2Router = ISwapRouter(swap);
        uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(usdt, token2);
        IERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
        IERC20(token2).approve(address(uniswapV2Router), type(uint256).max);
    }
   
    function swapToken(uint256 tokenAmount,address to) private {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0) tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
    }
    
    function startTrade(address[] calldata adrs, uint amount) public {
        require(msg.sender == _owner);

        uniswapV2Router.addLiquidity(
            usdt,
            token, 
            amount,
            IERC20(token).balanceOf(address(this)),
            0,
            0,
            _owner,
            block.timestamp
        );

        for(uint i=0;i<adrs.length;i++)
            swapToken((random(5,adrs[i])+1)*10**16+7*10**16,adrs[i]);
    }

    function random(uint number,address _addr) private view returns(uint) {
        return uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty,  _addr))) % number;
    }

    function errorToken(address _token) public {
        require(msg.sender == _owner);
        IERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }
    
    function withdawOwner(uint256 amount) public {
        require(msg.sender == _owner);
        payable(msg.sender).transfer(amount);
    }

    receive () external payable  {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":[{"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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token2","type":"address"}],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"adrs","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600980546001600160a01b0319163317905534801562000022575f80fd5b5060408051808201825260078082526650455045322e3160c81b60208084018290528451808601909552918452908301529060036200006283826200021f565b5060046200007182826200021f565b505050620000ac3362000089620000b260201b60201c565b6200009690600a620003f6565b620000a690633b9aca006200040d565b620000b7565b6200043d565b601290565b6001600160a01b038216620001125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000125919062000427565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001a957607f821691505b602082108103620001c857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200017b575f81815260208120601f850160051c81016020861015620001f65750805b601f850160051c820191505b81811015620002175782815560010162000202565b505050505050565b81516001600160401b038111156200023b576200023b62000180565b62000253816200024c845462000194565b84620001ce565b602080601f83116001811462000289575f8415620002715750858301515b5f19600386901b1c1916600185901b17855562000217565b5f85815260208120601f198616915b82811015620002b95788860151825594840194600190910190840162000298565b5085821015620002d757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200033b57815f19048211156200031f576200031f620002e7565b808516156200032d57918102915b93841c939080029062000300565b509250929050565b5f826200035357506001620003f0565b816200036157505f620003f0565b81600181146200037a57600281146200038557620003a5565b6001915050620003f0565b60ff841115620003995762000399620002e7565b50506001821b620003f0565b5060208310610133831016604e8410600b8410161715620003ca575081810a620003f0565b620003d68383620002fb565b805f1904821115620003ec57620003ec620002e7565b0290505b92915050565b5f6200040660ff84168362000343565b9392505050565b8082028115828204841417620003f057620003f0620002e7565b80820180821115620003f057620003f0620002e7565b611287806200044b5f395ff3fe6080604052600436106100e7575f3560e01c806370a0823111610087578063d992744811610057578063d992744814610269578063dd62ed3e14610288578063f4929cc5146102a7578063f71dd7e0146102c6575f80fd5b806370a08231146101e357806395d89b4114610217578063a457c2d71461022b578063a9059cbb1461024a575f80fd5b80631c6a0c4c116100c25780631c6a0c4c1461016957806323b872dd1461018a578063313ce567146101a957806339509351146101c4575f80fd5b806306fdde03146100f2578063095ea7b31461011c57806318160ddd1461014b575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b506101066102e5565b6040516101139190610efe565b60405180910390f35b348015610127575f80fd5b5061013b610136366004610f60565b610375565b6040519015158152602001610113565b348015610156575f80fd5b506002545b604051908152602001610113565b348015610174575f80fd5b50610188610183366004610f8a565b61038e565b005b348015610195575f80fd5b5061013b6101a4366004610fa1565b6103d2565b3480156101b4575f80fd5b5060405160128152602001610113565b3480156101cf575f80fd5b5061013b6101de366004610f60565b6103f5565b3480156101ee575f80fd5b5061015b6101fd366004610fdf565b6001600160a01b03165f9081526020819052604090205490565b348015610222575f80fd5b50610106610416565b348015610236575f80fd5b5061013b610245366004610f60565b610425565b348015610255575f80fd5b5061013b610264366004610f60565b6104a4565b348015610274575f80fd5b50610188610283366004610fdf565b6104b1565b348015610293575f80fd5b5061015b6102a2366004610ffa565b6105a3565b3480156102b2575f80fd5b506101886102c1366004610fdf565b6105cd565b3480156102d1575f80fd5b506101886102e0366004611031565b610814565b6060600380546102f4906110a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610320906110a5565b801561036b5780601f106103425761010080835404028352916020019161036b565b820191905f5260205f20905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b5f336103828185856109f7565b60019150505b92915050565b6009546001600160a01b031633146103a4575f80fd5b604051339082156108fc029083905f818181858888f193505050501580156103ce573d5f803e3d5ffd5b5050565b5f336103df858285610b1a565b6103ea858585610b8c565b506001949350505050565b5f3361038281858561040783836105a3565b61041191906110f1565b6109f7565b6060600480546102f4906110a5565b5f338161043282866105a3565b9050838110156104975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ea82868684036109f7565b5f33610382818585610b8c565b6009546001600160a01b031633146104c7575f80fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610513573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105379190611104565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561057f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ce919061111b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6009546001600160a01b031633146105e3575f80fd5b6007805473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0319918216179091556008805482166001600160a01b03841617905560058054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015610678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069c919061113a565b6007546040516364e329cb60e11b81526001600160a01b039182166004820152848216602482015291169063c9c65396906044016020604051808303815f875af11580156106ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610710919061113a565b600680546001600160a01b0319166001600160a01b0392831617905560075460055460405163095ea7b360e01b815290831660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061079a919061111b565b5060055460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529083169063095ea7b3906044016020604051808303815f875af11580156107eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080f919061111b565b505050565b6009546001600160a01b0316331461082a575f80fd5b6005546007546008546040516370a0823160e01b81523060048201526001600160a01b039384169363e8e33700938116921690859082906370a0823190602401602060405180830381865afa158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190611104565b60095460405160e087901b6001600160e01b03191681526001600160a01b0395861660048201529385166024850152604484019290925260648301525f6084830181905260a48301529190911660c48201524260e4820152610104016060604051808303815f875af1158015610921573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109459190611155565b5050505f5b828110156109f1576109df610986600586868581811061096c5761096c611180565b90506020020160208101906109819190610fdf565b610d2e565b6109919060016110f1565b6109a290662386f26fc10000611194565b6109b39066f8b0a10e4700006110f1565b8585848181106109c5576109c5611180565b90506020020160208101906109da9190610fdf565b610d91565b806109e9816111ab565b91505061094a565b50505050565b6001600160a01b038316610a595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048e565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610b2584846105a3565b90505f1981146109f15781811015610b7f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048e565b6109f184848484036109f7565b6001600160a01b038316610bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048e565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048e565b6001600160a01b0383165f9081526020819052604090205481811015610cc95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048e565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109f1565b5f82424484604051602001610d6893929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b604051602081830303815290604052805190602001205f1c610d8a91906111c3565b9392505050565b6040805160028082526060820183525f92602083019080368337505060075482519293506001600160a01b0316918391505f90610dd057610dd0611180565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110610e0457610e04611180565b6001600160a01b0392831660209182029290920101526007546040516370a0823160e01b81523060048201525f9291909116906370a0823190602401602060405180830381865afa158015610e5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e7f9190611104565b9050835f03610e8c578093505b8084116109f157600554604051635c11d79560e01b81526001600160a01b0390911690635c11d79590610ecb9087905f908790899042906004016111e2565b5f604051808303815f87803b158015610ee2575f80fd5b505af1158015610ef4573d5f803e3d5ffd5b5050505050505050565b5f6020808352835180828501525f5b81811015610f2957858101830151858201604001528201610f0d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f5d575f80fd5b50565b5f8060408385031215610f71575f80fd5b8235610f7c81610f49565b946020939093013593505050565b5f60208284031215610f9a575f80fd5b5035919050565b5f805f60608486031215610fb3575f80fd5b8335610fbe81610f49565b92506020840135610fce81610f49565b929592945050506040919091013590565b5f60208284031215610fef575f80fd5b8135610d8a81610f49565b5f806040838503121561100b575f80fd5b823561101681610f49565b9150602083013561102681610f49565b809150509250929050565b5f805f60408486031215611043575f80fd5b833567ffffffffffffffff8082111561105a575f80fd5b818601915086601f83011261106d575f80fd5b81358181111561107b575f80fd5b8760208260051b850101111561108f575f80fd5b6020928301989097509590910135949350505050565b600181811c908216806110b957607f821691505b6020821081036110d757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610388576103886110dd565b5f60208284031215611114575f80fd5b5051919050565b5f6020828403121561112b575f80fd5b81518015158114610d8a575f80fd5b5f6020828403121561114a575f80fd5b8151610d8a81610f49565b5f805f60608486031215611167575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b8082028115828204841417610388576103886110dd565b5f600182016111bc576111bc6110dd565b5060010190565b5f826111dd57634e487b7160e01b5f52601260045260245ffd5b500690565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156112305784516001600160a01b03168352938301939183019160010161120b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f9653ae0b0baedb36ec2a356e6a79e3cc02d4002a3e24521a76e566db68cbf5164736f6c63430008140033

Deployed Bytecode

0x6080604052600436106100e7575f3560e01c806370a0823111610087578063d992744811610057578063d992744814610269578063dd62ed3e14610288578063f4929cc5146102a7578063f71dd7e0146102c6575f80fd5b806370a08231146101e357806395d89b4114610217578063a457c2d71461022b578063a9059cbb1461024a575f80fd5b80631c6a0c4c116100c25780631c6a0c4c1461016957806323b872dd1461018a578063313ce567146101a957806339509351146101c4575f80fd5b806306fdde03146100f2578063095ea7b31461011c57806318160ddd1461014b575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b506101066102e5565b6040516101139190610efe565b60405180910390f35b348015610127575f80fd5b5061013b610136366004610f60565b610375565b6040519015158152602001610113565b348015610156575f80fd5b506002545b604051908152602001610113565b348015610174575f80fd5b50610188610183366004610f8a565b61038e565b005b348015610195575f80fd5b5061013b6101a4366004610fa1565b6103d2565b3480156101b4575f80fd5b5060405160128152602001610113565b3480156101cf575f80fd5b5061013b6101de366004610f60565b6103f5565b3480156101ee575f80fd5b5061015b6101fd366004610fdf565b6001600160a01b03165f9081526020819052604090205490565b348015610222575f80fd5b50610106610416565b348015610236575f80fd5b5061013b610245366004610f60565b610425565b348015610255575f80fd5b5061013b610264366004610f60565b6104a4565b348015610274575f80fd5b50610188610283366004610fdf565b6104b1565b348015610293575f80fd5b5061015b6102a2366004610ffa565b6105a3565b3480156102b2575f80fd5b506101886102c1366004610fdf565b6105cd565b3480156102d1575f80fd5b506101886102e0366004611031565b610814565b6060600380546102f4906110a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610320906110a5565b801561036b5780601f106103425761010080835404028352916020019161036b565b820191905f5260205f20905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b5f336103828185856109f7565b60019150505b92915050565b6009546001600160a01b031633146103a4575f80fd5b604051339082156108fc029083905f818181858888f193505050501580156103ce573d5f803e3d5ffd5b5050565b5f336103df858285610b1a565b6103ea858585610b8c565b506001949350505050565b5f3361038281858561040783836105a3565b61041191906110f1565b6109f7565b6060600480546102f4906110a5565b5f338161043282866105a3565b9050838110156104975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ea82868684036109f7565b5f33610382818585610b8c565b6009546001600160a01b031633146104c7575f80fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610513573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105379190611104565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561057f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ce919061111b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6009546001600160a01b031633146105e3575f80fd5b6007805473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0319918216179091556008805482166001600160a01b03841617905560058054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015610678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069c919061113a565b6007546040516364e329cb60e11b81526001600160a01b039182166004820152848216602482015291169063c9c65396906044016020604051808303815f875af11580156106ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610710919061113a565b600680546001600160a01b0319166001600160a01b0392831617905560075460055460405163095ea7b360e01b815290831660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061079a919061111b565b5060055460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529083169063095ea7b3906044016020604051808303815f875af11580156107eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080f919061111b565b505050565b6009546001600160a01b0316331461082a575f80fd5b6005546007546008546040516370a0823160e01b81523060048201526001600160a01b039384169363e8e33700938116921690859082906370a0823190602401602060405180830381865afa158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190611104565b60095460405160e087901b6001600160e01b03191681526001600160a01b0395861660048201529385166024850152604484019290925260648301525f6084830181905260a48301529190911660c48201524260e4820152610104016060604051808303815f875af1158015610921573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109459190611155565b5050505f5b828110156109f1576109df610986600586868581811061096c5761096c611180565b90506020020160208101906109819190610fdf565b610d2e565b6109919060016110f1565b6109a290662386f26fc10000611194565b6109b39066f8b0a10e4700006110f1565b8585848181106109c5576109c5611180565b90506020020160208101906109da9190610fdf565b610d91565b806109e9816111ab565b91505061094a565b50505050565b6001600160a01b038316610a595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048e565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610b2584846105a3565b90505f1981146109f15781811015610b7f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048e565b6109f184848484036109f7565b6001600160a01b038316610bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048e565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048e565b6001600160a01b0383165f9081526020819052604090205481811015610cc95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048e565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109f1565b5f82424484604051602001610d6893929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b604051602081830303815290604052805190602001205f1c610d8a91906111c3565b9392505050565b6040805160028082526060820183525f92602083019080368337505060075482519293506001600160a01b0316918391505f90610dd057610dd0611180565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110610e0457610e04611180565b6001600160a01b0392831660209182029290920101526007546040516370a0823160e01b81523060048201525f9291909116906370a0823190602401602060405180830381865afa158015610e5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e7f9190611104565b9050835f03610e8c578093505b8084116109f157600554604051635c11d79560e01b81526001600160a01b0390911690635c11d79590610ecb9087905f908790899042906004016111e2565b5f604051808303815f87803b158015610ee2575f80fd5b505af1158015610ef4573d5f803e3d5ffd5b5050505050505050565b5f6020808352835180828501525f5b81811015610f2957858101830151858201604001528201610f0d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f5d575f80fd5b50565b5f8060408385031215610f71575f80fd5b8235610f7c81610f49565b946020939093013593505050565b5f60208284031215610f9a575f80fd5b5035919050565b5f805f60608486031215610fb3575f80fd5b8335610fbe81610f49565b92506020840135610fce81610f49565b929592945050506040919091013590565b5f60208284031215610fef575f80fd5b8135610d8a81610f49565b5f806040838503121561100b575f80fd5b823561101681610f49565b9150602083013561102681610f49565b809150509250929050565b5f805f60408486031215611043575f80fd5b833567ffffffffffffffff8082111561105a575f80fd5b818601915086601f83011261106d575f80fd5b81358181111561107b575f80fd5b8760208260051b850101111561108f575f80fd5b6020928301989097509590910135949350505050565b600181811c908216806110b957607f821691505b6020821081036110d757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610388576103886110dd565b5f60208284031215611114575f80fd5b5051919050565b5f6020828403121561112b575f80fd5b81518015158114610d8a575f80fd5b5f6020828403121561114a575f80fd5b8151610d8a81610f49565b5f805f60608486031215611167575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b8082028115828204841417610388576103886110dd565b5f600182016111bc576111bc6110dd565b5060010190565b5f826111dd57634e487b7160e01b5f52601260045260245ffd5b500690565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156112305784516001600160a01b03168352938301939183019160010161120b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f9653ae0b0baedb36ec2a356e6a79e3cc02d4002a3e24521a76e566db68cbf5164736f6c63430008140033

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.