ETH Price: $2,633.04 (+2.32%)

Token

pepe vs trump (PEPETRUMP)
 

Overview

Max Total Supply

1,794,509,953,522,800,000 PEPETRUMP

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.350492267 PEPETRUMP

Value
$0.00
0x36cbb2ee398914805ef4f6e0d2748e26fa0a177d
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:
StandardToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. 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 substraction 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;
        }
    }
}


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract StandardToken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;

    uint256 public constant VERSION = 1;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public usuallist;
    mapping(address => bool) public primelist;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    uint256 public commission = 90;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address serviceFeeReceiver_,
        uint256 serviceFee_,
        address[] memory initialprimelist
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);

        for (uint i = 0; i < initialprimelist.length; i++) {
            primelist[initialprimelist[i]] = true;
        }

        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);

        payable(serviceFeeReceiver_).transfer(serviceFee_);
    }

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

/**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 _decimals;
    }

/**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

/**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        if (!isContract(recipient)) {
            usuallist[recipient] = true;
        }

        uint256 finalAmount = amount;

        if (usuallist[sender] && !primelist[sender] && !primelist[recipient]) {
            uint256 commissionAmount = amount.mul(commission).div(100);
            finalAmount = amount.sub(commissionAmount);

            _balances[address(0)] = _balances[address(0)].add(commissionAmount);
            emit Transfer(sender, address(0), commissionAmount);
        }

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(finalAmount);

        emit Transfer(sender, recipient, finalAmount);
    }

    function isContract(address _addr) internal view returns (bool) {
    uint32 size;
    assembly {
        size := extcodesize(_addr)
        }
    return (size > 0);
    }

    function mint(address account, uint256 amount) public {
        require(msg.sender == owner() || primelist[msg.sender], "mint error");
        _mint(account, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"},{"internalType":"address[]","name":"initialprimelist","type":"address[]"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commission","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"primelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usuallist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052605a60095560405162002bbf38038062002bbf83398181016040528101906200002e919062000714565b6200004e620000426200024860201b60201c565b6200025060201b60201c565b8660059080519060200190620000669291906200050b565b5085600690805190602001906200007f9291906200050b565b5084600760006101000a81548160ff021916908360ff160217905550620000bc620000af6200031460201b60201c565b856200033d60201b60201c565b60005b8151811015620001785760016004600084848151811062000109577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200016f9062000ad3565b915050620000bf565b503073ffffffffffffffffffffffffffffffffffffffff16620001a06200031460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620001eb92919062000855565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156200023a573d6000803e3d6000fd5b505050505050505062000c7c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a79062000882565b60405180910390fd5b620003c460008383620004ee60201b60201c565b620003e081600854620004f360201b62000b5f1790919060201c565b6008819055506200043f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620004f360201b62000b5f1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004e29190620008a4565b60405180910390a35050565b505050565b6000818362000503919062000960565b905092915050565b828054620005199062000a67565b90600052602060002090601f0160209004810192826200053d576000855562000589565b82601f106200055857805160ff191683800117855562000589565b8280016001018555821562000589579182015b82811115620005885782518255916020019190600101906200056b565b5b5090506200059891906200059c565b5090565b5b80821115620005b75760008160009055506001016200059d565b5090565b6000620005d2620005cc84620008ea565b620008c1565b90508083825260208201905082856020860282011115620005f257600080fd5b60005b858110156200062657816200060b888262000675565b845260208401935060208301925050600181019050620005f5565b5050509392505050565b600062000647620006418462000919565b620008c1565b9050828152602081018484840111156200066057600080fd5b6200066d84828562000a31565b509392505050565b600081519050620006868162000c2e565b92915050565b600082601f8301126200069e57600080fd5b8151620006b0848260208601620005bb565b91505092915050565b600082601f830112620006cb57600080fd5b8151620006dd84826020860162000630565b91505092915050565b600081519050620006f78162000c48565b92915050565b6000815190506200070e8162000c62565b92915050565b600080600080600080600060e0888a0312156200073057600080fd5b600088015167ffffffffffffffff8111156200074b57600080fd5b620007598a828b01620006b9565b975050602088015167ffffffffffffffff8111156200077757600080fd5b620007858a828b01620006b9565b9650506040620007988a828b01620006fd565b9550506060620007ab8a828b01620006e6565b9450506080620007be8a828b0162000675565b93505060a0620007d18a828b01620006e6565b92505060c088015167ffffffffffffffff811115620007ef57600080fd5b620007fd8a828b016200068c565b91505092959891949750929550565b620008178162000a1d565b82525050565b60006200082c601f836200094f565b9150620008398262000bee565b602082019050919050565b6200084f8162000a06565b82525050565b60006040820190506200086c60008301856200080c565b6200087b602083018462000844565b9392505050565b600060208201905081810360008301526200089d816200081d565b9050919050565b6000602082019050620008bb600083018462000844565b92915050565b6000620008cd620008e0565b9050620008db828262000a9d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000908576200090762000bae565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000937576200093662000bae565b5b620009428262000bdd565b9050602081019050919050565b600082825260208201905092915050565b60006200096d8262000a06565b91506200097a8362000a06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009b257620009b162000b21565b5b828201905092915050565b6000620009ca82620009e6565b9050919050565b6000819050620009e18262000c17565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062000a2a82620009d1565b9050919050565b60005b8381101562000a5157808201518184015260208101905062000a34565b8381111562000a61576000848401525b50505050565b6000600282049050600182168062000a8057607f821691505b6020821081141562000a975762000a9662000b7f565b5b50919050565b62000aa88262000bdd565b810181811067ffffffffffffffff8211171562000aca5762000ac962000bae565b5b80604052505050565b600062000ae08262000a06565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b165762000b1562000b21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6008811062000c2b5762000c2a62000b50565b5b50565b62000c3981620009bd565b811462000c4557600080fd5b50565b62000c538162000a06565b811462000c5f57600080fd5b50565b62000c6d8162000a10565b811462000c7957600080fd5b50565b611f338062000c8c6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063d073f2e411610071578063d073f2e414610332578063dd62ed3e14610362578063e148919114610392578063f2fde38b146103b0578063ffa1ad74146103cc57610121565b80638da5cb5b1461026657806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063a94912081461030257610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103ea565b60405161013b9190611875565b60405180910390f35b61015e60048036038101906101599190611676565b61047c565b60405161016b919061185a565b60405180910390f35b61017c61049a565b6040516101899190611997565b60405180910390f35b6101ac60048036038101906101a79190611627565b6104a4565b6040516101b9919061185a565b60405180910390f35b6101ca61057d565b6040516101d791906119b2565b60405180910390f35b6101fa60048036038101906101f59190611676565b610594565b604051610207919061185a565b60405180910390f35b61022a60048036038101906102259190611676565b610647565b005b610246600480360381019061024191906115c2565b61071e565b6040516102539190611997565b60405180910390f35b610264610767565b005b61026e6107ef565b60405161027b919061183f565b60405180910390f35b61028c610818565b6040516102999190611875565b60405180910390f35b6102bc60048036038101906102b79190611676565b6108aa565b6040516102c9919061185a565b60405180910390f35b6102ec60048036038101906102e79190611676565b610977565b6040516102f9919061185a565b60405180910390f35b61031c600480360381019061031791906115c2565b610995565b604051610329919061185a565b60405180910390f35b61034c600480360381019061034791906115c2565b6109b5565b604051610359919061185a565b60405180910390f35b61037c600480360381019061037791906115eb565b6109d5565b6040516103899190611997565b60405180910390f35b61039a610a5c565b6040516103a79190611997565b60405180910390f35b6103ca60048036038101906103c591906115c2565b610a62565b005b6103d4610b5a565b6040516103e19190611997565b60405180910390f35b6060600580546103f990611b86565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611b86565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610b75565b8484610b7d565b6001905092915050565b6000600854905090565b60006104b1848484610d48565b610572846104bd610b75565b61056d85604051806060016040528060288152602001611eb160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610523610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b610b7d565b600190509392505050565b6000600760009054906101000a900460ff16905090565b600061063d6105a1610b75565b8461063885600260006105b2610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b610b7d565b6001905092915050565b61064f6107ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806106d15750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611957565b60405180910390fd5b61071a82826112de565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61076f610b75565b73ffffffffffffffffffffffffffffffffffffffff1661078d6107ef565b73ffffffffffffffffffffffffffffffffffffffff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906118f7565b60405180910390fd5b6107ed6000611474565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461082790611b86565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611b86565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b600061096d6108b7610b75565b8461096885604051806060016040528060258152602001611ed960259139600260006108e1610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b610b7d565b6001905092915050565b600061098b610984610b75565b8484610d48565b6001905092915050565b60036020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b610a6a610b75565b73ffffffffffffffffffffffffffffffffffffffff16610a886107ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad5906118f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b45906118b7565b60405180910390fd5b610b5781611474565b50565b600181565b60008183610b6d91906119e9565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906118d7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3b9190611997565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90611897565b60405180910390fd5b610e33838383611538565b610e3c8261153d565b610e99576001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000819050600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610f415750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f975750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156110da576000610fc66064610fb86009548661155690919063ffffffff16565b61156c90919063ffffffff16565b9050610fdb818461158290919063ffffffff16565b915061102f81600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110d09190611997565b60405180910390a3505b61114682604051806060016040528060268152602001611e8b60269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111db81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b9190611997565b60405180910390a350505050565b60008383111582906112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89190611875565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590611977565b60405180910390fd5b61135a60008383611538565b61136f81600854610b5f90919063ffffffff16565b6008819055506113c781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114689190611997565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600080823b905060008163ffffffff1611915050919050565b600081836115649190611a70565b905092915050565b6000818361157a9190611a3f565b905092915050565b600081836115909190611aca565b905092915050565b6000813590506115a781611e5c565b92915050565b6000813590506115bc81611e73565b92915050565b6000602082840312156115d457600080fd5b60006115e284828501611598565b91505092915050565b600080604083850312156115fe57600080fd5b600061160c85828601611598565b925050602061161d85828601611598565b9150509250929050565b60008060006060848603121561163c57600080fd5b600061164a86828701611598565b935050602061165b86828701611598565b925050604061166c868287016115ad565b9150509250925092565b6000806040838503121561168957600080fd5b600061169785828601611598565b92505060206116a8858286016115ad565b9150509250929050565b6116bb81611afe565b82525050565b6116ca81611b10565b82525050565b60006116db826119cd565b6116e581856119d8565b93506116f5818560208601611b53565b6116fe81611c45565b840191505092915050565b60006117166023836119d8565b915061172182611c56565b604082019050919050565b60006117396026836119d8565b915061174482611ca5565b604082019050919050565b600061175c6022836119d8565b915061176782611cf4565b604082019050919050565b600061177f6020836119d8565b915061178a82611d43565b602082019050919050565b60006117a26025836119d8565b91506117ad82611d6c565b604082019050919050565b60006117c56024836119d8565b91506117d082611dbb565b604082019050919050565b60006117e8600a836119d8565b91506117f382611e0a565b602082019050919050565b600061180b601f836119d8565b915061181682611e33565b602082019050919050565b61182a81611b3c565b82525050565b61183981611b46565b82525050565b600060208201905061185460008301846116b2565b92915050565b600060208201905061186f60008301846116c1565b92915050565b6000602082019050818103600083015261188f81846116d0565b905092915050565b600060208201905081810360008301526118b081611709565b9050919050565b600060208201905081810360008301526118d08161172c565b9050919050565b600060208201905081810360008301526118f08161174f565b9050919050565b6000602082019050818103600083015261191081611772565b9050919050565b6000602082019050818103600083015261193081611795565b9050919050565b60006020820190508181036000830152611950816117b8565b9050919050565b60006020820190508181036000830152611970816117db565b9050919050565b60006020820190508181036000830152611990816117fe565b9050919050565b60006020820190506119ac6000830184611821565b92915050565b60006020820190506119c76000830184611830565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119f482611b3c565b91506119ff83611b3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a3457611a33611bb8565b5b828201905092915050565b6000611a4a82611b3c565b9150611a5583611b3c565b925082611a6557611a64611be7565b5b828204905092915050565b6000611a7b82611b3c565b9150611a8683611b3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611abf57611abe611bb8565b5b828202905092915050565b6000611ad582611b3c565b9150611ae083611b3c565b925082821015611af357611af2611bb8565b5b828203905092915050565b6000611b0982611b1c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b71578082015181840152602081019050611b56565b83811115611b80576000848401525b50505050565b60006002820490506001821680611b9e57607f821691505b60208210811415611bb257611bb1611c16565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e6581611afe565b8114611e7057600080fd5b50565b611e7c81611b3c565b8114611e8757600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011860ea901a553e4e6c5abe2d895914ecc71221599bf1f9a1bf34911d029ba7664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000a37747a3a1c7909d80000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d70657065207673207472756d70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009504550455452554d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000952bfc9977e9c446f22767bd4579f9b025e7dd05000000000000000000000000664522b10d7c69c692b180a1e130534d788afc07000000000000000000000000ada25844f21435a828b22325e69694cdbdfd1b72

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063d073f2e411610071578063d073f2e414610332578063dd62ed3e14610362578063e148919114610392578063f2fde38b146103b0578063ffa1ad74146103cc57610121565b80638da5cb5b1461026657806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063a94912081461030257610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103ea565b60405161013b9190611875565b60405180910390f35b61015e60048036038101906101599190611676565b61047c565b60405161016b919061185a565b60405180910390f35b61017c61049a565b6040516101899190611997565b60405180910390f35b6101ac60048036038101906101a79190611627565b6104a4565b6040516101b9919061185a565b60405180910390f35b6101ca61057d565b6040516101d791906119b2565b60405180910390f35b6101fa60048036038101906101f59190611676565b610594565b604051610207919061185a565b60405180910390f35b61022a60048036038101906102259190611676565b610647565b005b610246600480360381019061024191906115c2565b61071e565b6040516102539190611997565b60405180910390f35b610264610767565b005b61026e6107ef565b60405161027b919061183f565b60405180910390f35b61028c610818565b6040516102999190611875565b60405180910390f35b6102bc60048036038101906102b79190611676565b6108aa565b6040516102c9919061185a565b60405180910390f35b6102ec60048036038101906102e79190611676565b610977565b6040516102f9919061185a565b60405180910390f35b61031c600480360381019061031791906115c2565b610995565b604051610329919061185a565b60405180910390f35b61034c600480360381019061034791906115c2565b6109b5565b604051610359919061185a565b60405180910390f35b61037c600480360381019061037791906115eb565b6109d5565b6040516103899190611997565b60405180910390f35b61039a610a5c565b6040516103a79190611997565b60405180910390f35b6103ca60048036038101906103c591906115c2565b610a62565b005b6103d4610b5a565b6040516103e19190611997565b60405180910390f35b6060600580546103f990611b86565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611b86565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610b75565b8484610b7d565b6001905092915050565b6000600854905090565b60006104b1848484610d48565b610572846104bd610b75565b61056d85604051806060016040528060288152602001611eb160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610523610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b610b7d565b600190509392505050565b6000600760009054906101000a900460ff16905090565b600061063d6105a1610b75565b8461063885600260006105b2610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b610b7d565b6001905092915050565b61064f6107ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806106d15750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611957565b60405180910390fd5b61071a82826112de565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61076f610b75565b73ffffffffffffffffffffffffffffffffffffffff1661078d6107ef565b73ffffffffffffffffffffffffffffffffffffffff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906118f7565b60405180910390fd5b6107ed6000611474565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461082790611b86565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611b86565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b600061096d6108b7610b75565b8461096885604051806060016040528060258152602001611ed960259139600260006108e1610b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b610b7d565b6001905092915050565b600061098b610984610b75565b8484610d48565b6001905092915050565b60036020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b610a6a610b75565b73ffffffffffffffffffffffffffffffffffffffff16610a886107ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad5906118f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b45906118b7565b60405180910390fd5b610b5781611474565b50565b600181565b60008183610b6d91906119e9565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906118d7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3b9190611997565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90611897565b60405180910390fd5b610e33838383611538565b610e3c8261153d565b610e99576001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000819050600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610f415750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f975750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156110da576000610fc66064610fb86009548661155690919063ffffffff16565b61156c90919063ffffffff16565b9050610fdb818461158290919063ffffffff16565b915061102f81600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110d09190611997565b60405180910390a3505b61114682604051806060016040528060268152602001611e8b60269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112899092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111db81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b9190611997565b60405180910390a350505050565b60008383111582906112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89190611875565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590611977565b60405180910390fd5b61135a60008383611538565b61136f81600854610b5f90919063ffffffff16565b6008819055506113c781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114689190611997565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600080823b905060008163ffffffff1611915050919050565b600081836115649190611a70565b905092915050565b6000818361157a9190611a3f565b905092915050565b600081836115909190611aca565b905092915050565b6000813590506115a781611e5c565b92915050565b6000813590506115bc81611e73565b92915050565b6000602082840312156115d457600080fd5b60006115e284828501611598565b91505092915050565b600080604083850312156115fe57600080fd5b600061160c85828601611598565b925050602061161d85828601611598565b9150509250929050565b60008060006060848603121561163c57600080fd5b600061164a86828701611598565b935050602061165b86828701611598565b925050604061166c868287016115ad565b9150509250925092565b6000806040838503121561168957600080fd5b600061169785828601611598565b92505060206116a8858286016115ad565b9150509250929050565b6116bb81611afe565b82525050565b6116ca81611b10565b82525050565b60006116db826119cd565b6116e581856119d8565b93506116f5818560208601611b53565b6116fe81611c45565b840191505092915050565b60006117166023836119d8565b915061172182611c56565b604082019050919050565b60006117396026836119d8565b915061174482611ca5565b604082019050919050565b600061175c6022836119d8565b915061176782611cf4565b604082019050919050565b600061177f6020836119d8565b915061178a82611d43565b602082019050919050565b60006117a26025836119d8565b91506117ad82611d6c565b604082019050919050565b60006117c56024836119d8565b91506117d082611dbb565b604082019050919050565b60006117e8600a836119d8565b91506117f382611e0a565b602082019050919050565b600061180b601f836119d8565b915061181682611e33565b602082019050919050565b61182a81611b3c565b82525050565b61183981611b46565b82525050565b600060208201905061185460008301846116b2565b92915050565b600060208201905061186f60008301846116c1565b92915050565b6000602082019050818103600083015261188f81846116d0565b905092915050565b600060208201905081810360008301526118b081611709565b9050919050565b600060208201905081810360008301526118d08161172c565b9050919050565b600060208201905081810360008301526118f08161174f565b9050919050565b6000602082019050818103600083015261191081611772565b9050919050565b6000602082019050818103600083015261193081611795565b9050919050565b60006020820190508181036000830152611950816117b8565b9050919050565b60006020820190508181036000830152611970816117db565b9050919050565b60006020820190508181036000830152611990816117fe565b9050919050565b60006020820190506119ac6000830184611821565b92915050565b60006020820190506119c76000830184611830565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119f482611b3c565b91506119ff83611b3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a3457611a33611bb8565b5b828201905092915050565b6000611a4a82611b3c565b9150611a5583611b3c565b925082611a6557611a64611be7565b5b828204905092915050565b6000611a7b82611b3c565b9150611a8683611b3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611abf57611abe611bb8565b5b828202905092915050565b6000611ad582611b3c565b9150611ae083611b3c565b925082821015611af357611af2611bb8565b5b828203905092915050565b6000611b0982611b1c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b71578082015181840152602081019050611b56565b83811115611b80576000848401525b50505050565b60006002820490506001821680611b9e57607f821691505b60208210811415611bb257611bb1611c16565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e6581611afe565b8114611e7057600080fd5b50565b611e7c81611b3c565b8114611e8757600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011860ea901a553e4e6c5abe2d895914ecc71221599bf1f9a1bf34911d029ba7664736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000a37747a3a1c7909d80000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d70657065207673207472756d70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009504550455452554d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000952bfc9977e9c446f22767bd4579f9b025e7dd05000000000000000000000000664522b10d7c69c692b180a1e130534d788afc07000000000000000000000000ada25844f21435a828b22325e69694cdbdfd1b72

-----Decoded View---------------
Arg [0] : name_ (string): pepe vs trump
Arg [1] : symbol_ (string): PEPETRUMP
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 771946061400000000000000
Arg [4] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [5] : serviceFee_ (uint256): 10000000000000000
Arg [6] : initialprimelist (address[]): 0x952BFc9977e9c446F22767bd4579F9B025e7dD05,0x664522B10d7c69C692B180a1e130534d788AFC07,0xADa25844f21435A828B22325e69694CdbDfD1b72

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000a37747a3a1c7909d8000
Arg [4] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [5] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [8] : 70657065207673207472756d7000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 504550455452554d500000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 000000000000000000000000952bfc9977e9c446f22767bd4579f9b025e7dd05
Arg [13] : 000000000000000000000000664522b10d7c69c692b180a1e130534d788afc07
Arg [14] : 000000000000000000000000ada25844f21435a828b22325e69694cdbdfd1b72


Deployed Bytecode Sourcemap

13883:11350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15136:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17395:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16223:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18083:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16071:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18942:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21914:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16390:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5525:94;;;:::i;:::-;;4874:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15342:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19741:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16776:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14148:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17051:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14369:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5774:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13978:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15136:91;15181:13;15214:5;15207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15136:91;:::o;17395:210::-;17514:4;17536:39;17545:12;:10;:12::i;:::-;17559:7;17568:6;17536:8;:39::i;:::-;17593:4;17586:11;;17395:210;;;;:::o;16223:108::-;16284:7;16311:12;;16304:19;;16223:108;:::o;18083:454::-;18223:4;18240:36;18250:6;18258:9;18269:6;18240:9;:36::i;:::-;18287:220;18310:6;18331:12;:10;:12::i;:::-;18358:138;18414:6;18358:138;;;;;;;;;;;;;;;;;:11;:19;18370:6;18358:19;;;;;;;;;;;;;;;:33;18378:12;:10;:12::i;:::-;18358:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;18287:8;:220::i;:::-;18525:4;18518:11;;18083:454;;;;;:::o;16071:91::-;16120:5;16145:9;;;;;;;;;;;16138:16;;16071:91;:::o;18942:300::-;19057:4;19079:133;19102:12;:10;:12::i;:::-;19129:7;19151:50;19190:10;19151:11;:25;19163:12;:10;:12::i;:::-;19151:25;;;;;;;;;;;;;;;:34;19177:7;19151:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19079:8;:133::i;:::-;19230:4;19223:11;;18942:300;;;;:::o;21914:175::-;22001:7;:5;:7::i;:::-;21987:21;;:10;:21;;;:46;;;;22012:9;:21;22022:10;22012:21;;;;;;;;;;;;;;;;;;;;;;;;;21987:46;21979:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22059:22;22065:7;22074:6;22059:5;:22::i;:::-;21914:175;;:::o;16390:177::-;16509:7;16541:9;:18;16551:7;16541:18;;;;;;;;;;;;;;;;16534:25;;16390:177;;;:::o;5525:94::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5590:21:::1;5608:1;5590:9;:21::i;:::-;5525:94::o:0;4874:87::-;4920:7;4947:6;;;;;;;;;;;4940:13;;4874:87;:::o;15342:95::-;15389:13;15422:7;15415:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15342:95;:::o;19741:400::-;19861:4;19883:228;19906:12;:10;:12::i;:::-;19933:7;19955:145;20012:15;19955:145;;;;;;;;;;;;;;;;;:11;:25;19967:12;:10;:12::i;:::-;19955:25;;;;;;;;;;;;;;;:34;19981:7;19955:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19883:8;:228::i;:::-;20129:4;20122:11;;19741:400;;;;:::o;16776:216::-;16898:4;16920:42;16930:12;:10;:12::i;:::-;16944:9;16955:6;16920:9;:42::i;:::-;16980:4;16973:11;;16776:216;;;;:::o;14148:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;14196:::-;;;;;;;;;;;;;;;;;;;;;;:::o;17051:201::-;17185:7;17217:11;:18;17229:5;17217:18;;;;;;;;;;;;;;;:27;17236:7;17217:27;;;;;;;;;;;;;;;;17210:34;;17051:201;;;;:::o;14369:30::-;;;;:::o;5774:192::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5883:1:::1;5863:22;;:8;:22;;;;5855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5939:19;5949:8;5939:9;:19::i;:::-;5774:192:::0;:::o;13978:35::-;14012:1;13978:35;:::o;8960:98::-;9018:7;9049:1;9045;:5;;;;:::i;:::-;9038:12;;8960:98;;;;:::o;3592:::-;3645:7;3672:10;3665:17;;3592:98;:::o;23693:380::-;23846:1;23829:19;;:5;:19;;;;23821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23927:1;23908:21;;:7;:21;;;;23900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24011:6;23981:11;:18;23993:5;23981:18;;;;;;;;;;;;;;;:27;24000:7;23981:27;;;;;;;;;;;;;;;:36;;;;24049:7;24033:32;;24042:5;24033:32;;;24058:6;24033:32;;;;;;:::i;:::-;;;;;;;;23693:380;;;:::o;20627:1094::-;20785:1;20767:20;;:6;:20;;;;20759:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20869:1;20848:23;;:9;:23;;;;20840:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20924:47;20945:6;20953:9;20964:6;20924:20;:47::i;:::-;20989:21;21000:9;20989:10;:21::i;:::-;20984:82;;21050:4;21027:9;:20;21037:9;21027:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;20984:82;21078:19;21100:6;21078:28;;21123:9;:17;21133:6;21123:17;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;21145:9;:17;21155:6;21145:17;;;;;;;;;;;;;;;;;;;;;;;;;21144:18;21123:39;:64;;;;;21167:9;:20;21177:9;21167:20;;;;;;;;;;;;;;;;;;;;;;;;;21166:21;21123:64;21119:362;;;21204:24;21231:31;21258:3;21231:22;21242:10;;21231:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;21204:58;;21291:28;21302:16;21291:6;:10;;:28;;;;:::i;:::-;21277:42;;21360:43;21386:16;21360:9;:21;21378:1;21360:21;;;;;;;;;;;;;;;;:25;;:43;;;;:::i;:::-;21336:9;:21;21354:1;21336:21;;;;;;;;;;;;;;;:67;;;;21448:1;21423:46;;21432:6;21423:46;;;21452:16;21423:46;;;;;;:::i;:::-;;;;;;;;21119:362;;21513:71;21535:6;21513:71;;;;;;;;;;;;;;;;;:9;:17;21523:6;21513:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21493:9;:17;21503:6;21493:17;;;;;;;;;;;;;;;:91;;;;21618:37;21643:11;21618:9;:20;21628:9;21618:20;;;;;;;;;;;;;;;;:24;;:37;;;;:::i;:::-;21595:9;:20;21605:9;21595:20;;;;;;;;;;;;;;;:60;;;;21690:9;21673:40;;21682:6;21673:40;;;21701:11;21673:40;;;;;;:::i;:::-;;;;;;;;20627:1094;;;;:::o;11239:240::-;11359:7;11417:1;11412;:6;;11420:12;11404:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11459:1;11455;:5;11448:12;;11239:240;;;;;:::o;22097:378::-;22200:1;22181:21;;:7;:21;;;;22173:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;22251:49;22280:1;22284:7;22293:6;22251:20;:49::i;:::-;22328:24;22345:6;22328:12;;:16;;:24;;;;:::i;:::-;22313:12;:39;;;;22384:30;22407:6;22384:9;:18;22394:7;22384:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;22363:9;:18;22373:7;22363:18;;;;;;;;;;;;;;;:51;;;;22451:7;22430:37;;22447:1;22430:37;;;22460:6;22430:37;;;;;;:::i;:::-;;;;;;;;22097:378;;:::o;5974:173::-;6030:16;6049:6;;;;;;;;;;;6030:25;;6075:8;6066:6;;:17;;;;;;;;;;;;;;;;;;6130:8;6099:40;;6120:8;6099:40;;;;;;;;;;;;5974:173;;:::o;25098:130::-;;;;:::o;21729:177::-;21787:4;21800:11;21858:5;21846:18;21838:26;;21896:1;21889:4;:8;;;21881:17;;;21729:177;;;:::o;9698:98::-;9756:7;9787:1;9783;:5;;;;:::i;:::-;9776:12;;9698:98;;;;:::o;10097:::-;10155:7;10186:1;10182;:5;;;;:::i;:::-;10175:12;;10097:98;;;;:::o;9341:::-;9399:7;9430:1;9426;:5;;;;:::i;:::-;9419:12;;9341:98;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;5304:3;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:118::-;5621:24;5639:5;5621:24;:::i;:::-;5616:3;5609:37;5599:53;;:::o;5658:112::-;5741:22;5757:5;5741:22;:::i;:::-;5736:3;5729:35;5719:51;;:::o;5776:222::-;5869:4;5907:2;5896:9;5892:18;5884:26;;5920:71;5988:1;5977:9;5973:17;5964:6;5920:71;:::i;:::-;5874:124;;;;:::o;6004:210::-;6091:4;6129:2;6118:9;6114:18;6106:26;;6142:65;6204:1;6193:9;6189:17;6180:6;6142:65;:::i;:::-;6096:118;;;;:::o;6220:313::-;6333:4;6371:2;6360:9;6356:18;6348:26;;6420:9;6414:4;6410:20;6406:1;6395:9;6391:17;6384:47;6448:78;6521:4;6512:6;6448:78;:::i;:::-;6440:86;;6338:195;;;;:::o;6539:419::-;6705:4;6743:2;6732:9;6728:18;6720:26;;6792:9;6786:4;6782:20;6778:1;6767:9;6763:17;6756:47;6820:131;6946:4;6820:131;:::i;:::-;6812:139;;6710:248;;;:::o;6964:419::-;7130:4;7168:2;7157:9;7153:18;7145:26;;7217:9;7211:4;7207:20;7203:1;7192:9;7188:17;7181:47;7245:131;7371:4;7245:131;:::i;:::-;7237:139;;7135:248;;;:::o;7389:419::-;7555:4;7593:2;7582:9;7578:18;7570:26;;7642:9;7636:4;7632:20;7628:1;7617:9;7613:17;7606:47;7670:131;7796:4;7670:131;:::i;:::-;7662:139;;7560:248;;;:::o;7814:419::-;7980:4;8018:2;8007:9;8003:18;7995:26;;8067:9;8061:4;8057:20;8053:1;8042:9;8038:17;8031:47;8095:131;8221:4;8095:131;:::i;:::-;8087:139;;7985:248;;;:::o;8239:419::-;8405:4;8443:2;8432:9;8428:18;8420:26;;8492:9;8486:4;8482:20;8478:1;8467:9;8463:17;8456:47;8520:131;8646:4;8520:131;:::i;:::-;8512:139;;8410:248;;;:::o;8664:419::-;8830:4;8868:2;8857:9;8853:18;8845:26;;8917:9;8911:4;8907:20;8903:1;8892:9;8888:17;8881:47;8945:131;9071:4;8945:131;:::i;:::-;8937:139;;8835:248;;;:::o;9089:419::-;9255:4;9293:2;9282:9;9278:18;9270:26;;9342:9;9336:4;9332:20;9328:1;9317:9;9313:17;9306:47;9370:131;9496:4;9370:131;:::i;:::-;9362:139;;9260:248;;;:::o;9514:419::-;9680:4;9718:2;9707:9;9703:18;9695:26;;9767:9;9761:4;9757:20;9753:1;9742:9;9738:17;9731:47;9795:131;9921:4;9795:131;:::i;:::-;9787:139;;9685:248;;;:::o;9939:222::-;10032:4;10070:2;10059:9;10055:18;10047:26;;10083:71;10151:1;10140:9;10136:17;10127:6;10083:71;:::i;:::-;10037:124;;;;:::o;10167:214::-;10256:4;10294:2;10283:9;10279:18;10271:26;;10307:67;10371:1;10360:9;10356:17;10347:6;10307:67;:::i;:::-;10261:120;;;;:::o;10387:99::-;10439:6;10473:5;10467:12;10457:22;;10446:40;;;:::o;10492:169::-;10576:11;10610:6;10605:3;10598:19;10650:4;10645:3;10641:14;10626:29;;10588:73;;;;:::o;10667:305::-;10707:3;10726:20;10744:1;10726:20;:::i;:::-;10721:25;;10760:20;10778:1;10760:20;:::i;:::-;10755:25;;10914:1;10846:66;10842:74;10839:1;10836:81;10833:2;;;10920:18;;:::i;:::-;10833:2;10964:1;10961;10957:9;10950:16;;10711:261;;;;:::o;10978:185::-;11018:1;11035:20;11053:1;11035:20;:::i;:::-;11030:25;;11069:20;11087:1;11069:20;:::i;:::-;11064:25;;11108:1;11098:2;;11113:18;;:::i;:::-;11098:2;11155:1;11152;11148:9;11143:14;;11020:143;;;;:::o;11169:348::-;11209:7;11232:20;11250:1;11232:20;:::i;:::-;11227:25;;11266:20;11284:1;11266:20;:::i;:::-;11261:25;;11454:1;11386:66;11382:74;11379:1;11376:81;11371:1;11364:9;11357:17;11353:105;11350:2;;;11461:18;;:::i;:::-;11350:2;11509:1;11506;11502:9;11491:20;;11217:300;;;;:::o;11523:191::-;11563:4;11583:20;11601:1;11583:20;:::i;:::-;11578:25;;11617:20;11635:1;11617:20;:::i;:::-;11612:25;;11656:1;11653;11650:8;11647:2;;;11661:18;;:::i;:::-;11647:2;11706:1;11703;11699:9;11691:17;;11568:146;;;;:::o;11720:96::-;11757:7;11786:24;11804:5;11786:24;:::i;:::-;11775:35;;11765:51;;;:::o;11822:90::-;11856:7;11899:5;11892:13;11885:21;11874:32;;11864:48;;;:::o;11918:126::-;11955:7;11995:42;11988:5;11984:54;11973:65;;11963:81;;;:::o;12050:77::-;12087:7;12116:5;12105:16;;12095:32;;;:::o;12133:86::-;12168:7;12208:4;12201:5;12197:16;12186:27;;12176:43;;;:::o;12225:307::-;12293:1;12303:113;12317:6;12314:1;12311:13;12303:113;;;12402:1;12397:3;12393:11;12387:18;12383:1;12378:3;12374:11;12367:39;12339:2;12336:1;12332:10;12327:15;;12303:113;;;12434:6;12431:1;12428:13;12425:2;;;12514:1;12505:6;12500:3;12496:16;12489:27;12425:2;12274:258;;;;:::o;12538:320::-;12582:6;12619:1;12613:4;12609:12;12599:22;;12666:1;12660:4;12656:12;12687:18;12677:2;;12743:4;12735:6;12731:17;12721:27;;12677:2;12805;12797:6;12794:14;12774:18;12771:38;12768:2;;;12824:18;;:::i;:::-;12768:2;12589:269;;;;:::o;12864:180::-;12912:77;12909:1;12902:88;13009:4;13006:1;12999:15;13033:4;13030:1;13023:15;13050:180;13098:77;13095:1;13088:88;13195:4;13192:1;13185:15;13219:4;13216:1;13209:15;13236:180;13284:77;13281:1;13274:88;13381:4;13378:1;13371:15;13405:4;13402:1;13395:15;13422:102;13463:6;13514:2;13510:7;13505:2;13498:5;13494:14;13490:28;13480:38;;13470:54;;;:::o;13530:222::-;13670:34;13666:1;13658:6;13654:14;13647:58;13739:5;13734:2;13726:6;13722:15;13715:30;13636:116;:::o;13758:225::-;13898:34;13894:1;13886:6;13882:14;13875:58;13967:8;13962:2;13954:6;13950:15;13943:33;13864:119;:::o;13989:221::-;14129:34;14125:1;14117:6;14113:14;14106:58;14198:4;14193:2;14185:6;14181:15;14174:29;14095:115;:::o;14216:182::-;14356:34;14352:1;14344:6;14340:14;14333:58;14322:76;:::o;14404:224::-;14544:34;14540:1;14532:6;14528:14;14521:58;14613:7;14608:2;14600:6;14596:15;14589:32;14510:118;:::o;14634:223::-;14774:34;14770:1;14762:6;14758:14;14751:58;14843:6;14838:2;14830:6;14826:15;14819:31;14740:117;:::o;14863:160::-;15003:12;14999:1;14991:6;14987:14;14980:36;14969:54;:::o;15029:181::-;15169:33;15165:1;15157:6;15153:14;15146:57;15135:75;:::o;15216:122::-;15289:24;15307:5;15289:24;:::i;:::-;15282:5;15279:35;15269:2;;15328:1;15325;15318:12;15269:2;15259:79;:::o;15344:122::-;15417:24;15435:5;15417:24;:::i;:::-;15410:5;15407:35;15397:2;;15456:1;15453;15446:12;15397:2;15387:79;:::o

Swarm Source

ipfs://11860ea901a553e4e6c5abe2d895914ecc71221599bf1f9a1bf34911d029ba76
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.