ETH Price: $2,708.37 (-1.99%)

Contract

0xa89Bf95c5f15a847c8Eb8D348cd7feD719AD7D80
 

Overview

ETH Balance

0.002001214284373692 ETH

Eth Value

$5.42 (@ $2,708.37/ETH)

Token Holdings

More Info

Private Name Tags

TokenTracker

Chat AI (AI) (@$0.0002)

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer217539892025-02-01 20:14:355 days ago1738440875IN
Chat AI: AI Token
0 ETH0.000329875.38839644
Approve217052552025-01-26 0:58:1111 days ago1737853091IN
Chat AI: AI Token
0 ETH0.000269035.77479014
Approve217052502025-01-26 0:56:5911 days ago1737853019IN
Chat AI: AI Token
0 ETH0.000259335.56659599
Approve216483232025-01-18 2:15:3519 days ago1737166535IN
Chat AI: AI Token
0 ETH0.000240895.20030844
Approve214517052024-12-21 15:13:2347 days ago1734794003IN
Chat AI: AI Token
0 ETH0.0002671411.01914157
Transfer213226992024-12-03 14:53:2365 days ago1733237603IN
Chat AI: AI Token
0 ETH0.0015451341.40356122
Transfer212165412024-11-18 18:57:2380 days ago1731956243IN
Chat AI: AI Token
0 ETH0.001403622.92762413
Approve211817202024-11-13 22:21:1184 days ago1731536471IN
Chat AI: AI Token
0 ETH0.0020271243.82783531
Transfer211519592024-11-09 18:42:4789 days ago1731177767IN
Chat AI: AI Token
0 ETH0.000509548.32497862
Approve210830952024-10-31 4:00:5998 days ago1730347259IN
Chat AI: AI Token
0 ETH0.000330777.10000501
Approve208739312024-10-01 23:29:11127 days ago1727825351IN
Chat AI: AI Token
0 ETH0.000307726.64292163
Approve208535382024-09-29 3:14:23130 days ago1727579663IN
Chat AI: AI Token
0 ETH0.000272315.87852909
Approve207745322024-09-18 2:34:59141 days ago1726626899IN
Chat AI: AI Token
0 ETH0.0003978.53255673
Approve207495012024-09-14 14:39:35145 days ago1726324775IN
Chat AI: AI Token
0 ETH0.000054762.07239326
Approve207017402024-09-07 22:33:23151 days ago1725748403IN
Chat AI: AI Token
0 ETH0.000057121.23326864
Approve206564192024-09-01 14:48:59158 days ago1725202139IN
Chat AI: AI Token
0 ETH0.000053571.15657826
Approve206037172024-08-25 6:07:47165 days ago1724566067IN
Chat AI: AI Token
0 ETH0.000080741.73546372
Approve205969662024-08-24 7:28:11166 days ago1724484491IN
Chat AI: AI Token
0 ETH0.000020620.78070174
Approve205893252024-08-23 5:49:59167 days ago1724392199IN
Chat AI: AI Token
0 ETH0.000127142.73263223
Approve205737202024-08-21 1:29:59169 days ago1724203799IN
Chat AI: AI Token
0 ETH0.000040350.87228459
Approve204798462024-08-07 23:00:47182 days ago1723071647IN
Chat AI: AI Token
0 ETH0.000135182.90162107
Approve204738072024-08-07 2:47:59183 days ago1722998879IN
Chat AI: AI Token
0 ETH0.000076482.89452622
Approve204738032024-08-07 2:47:11183 days ago1722998831IN
Chat AI: AI Token
0 ETH0.000138572.99135604
Approve204454332024-08-03 3:49:35187 days ago1722656975IN
Chat AI: AI Token
0 ETH0.000039941.51182437
Approve204454262024-08-03 3:48:11187 days ago1722656891IN
Chat AI: AI Token
0 ETH0.000043411.64288274
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20Detailed.sol";
import "./ERC20.sol";


contract Token is ERC20Detailed, ERC20 {
  
  mapping(address => bool) public liquidityPool;
  mapping(address => bool) public _isExcludedFromFee;
  mapping(address => uint256) public lastTrade;

  uint8 private buyTax;
  uint8 private sellTax;
  uint8 private transferTax;
  uint256 private taxAmount;
  
  address private marketingPool;
 
  event changeLiquidityPoolStatus(address lpAddress, bool status);
  event changeMarketingPool(address marketingPool);
  event change_isExcludedFromFee(address _address, bool status);   

  constructor() ERC20Detailed("Chat AI", "AI", 18) {
    uint256 totalTokens = 100000000 * 10**uint256(decimals());
    _mint(msg.sender, totalTokens);
    sellTax = 1;
    buyTax = 0;
    transferTax = 0;
    marketingPool = 0x25ce589ca0DD72D14F4F684FcD4f2DC729429783;
  }

  function claimBalance() external {
   payable(marketingPool).transfer(address(this).balance);
  }

  function claimToken(address token, uint256 amount) external  {
   ERC20(token).transfer(marketingPool, amount);
  }

  function setLiquidityPoolStatus(address _lpAddress, bool _status) external onlyOwner {
    liquidityPool[_lpAddress] = _status;
    emit changeLiquidityPoolStatus(_lpAddress, _status);
  }

  function setMarketingPool(address _marketingPool) external onlyOwner {
    marketingPool = _marketingPool;
    emit changeMarketingPool(_marketingPool);
  }

  function _transfer(address sender, address receiver, uint256 amount) internal virtual override {
    require(receiver != address(this), string("No transfers to contract allowed."));

    if(liquidityPool[sender] == true) {
      //It's an LP Pair and it's a buy
      taxAmount = (amount * buyTax) / 100;
    } else if(liquidityPool[receiver] == true) {      
      //It's an LP Pair and it's a sell
      taxAmount = (amount * sellTax) / 100;

      lastTrade[sender] = block.timestamp;

    } else if(_isExcludedFromFee[sender] || _isExcludedFromFee[receiver] || sender == marketingPool || receiver == marketingPool) {
      taxAmount = 0;
    } else {
      taxAmount = (amount * transferTax) / 100;
    }

    if(taxAmount > 0) {
      super._transfer(sender, marketingPool, taxAmount);
    }    
    super._transfer(sender, receiver, amount - taxAmount);
  }

  function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
  }
    
   //to recieve ETH from uniswapV2Router when swaping
  receive() external payable {}
  
}

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERCContext.sol";
import "./IERC20.sol";
import "./ERCOwnable.sol";
import "./SafeMath.sol";
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is ERCContext, IERC20, ERCOwnable {
  using SafeMath for uint256;

  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

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

  /**
   * @dev See {IERC20-balanceOf}.
   */
  function balanceOf(address account) public view 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 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 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 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 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");

    _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 {
    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 {
    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 is 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 {
    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 Destroys `amount` tokens from `account`.`amount` is then deducted
   * from the caller's allowance.
   *
   * See {_burn} and {_approve}.
   */
  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
    _approve(
      account,
      _msgSender(),
      _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")
    );
  }
}

File 3 of 7: ERC20Detailed.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
 * @dev Optional functions from the ERC20 standard.
 */
abstract contract ERC20Detailed {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  /**
   * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
   * these values are immutable: they can only be set once during
   * construction.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint8 decimals_
  ) {
    _name = name_;
    _symbol = symbol_;
    _decimals = decimals_;
  }

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

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

File 4 of 7: ERCContext.sol
// SPDX-License-Identifier: MIT
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 GSN 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 ERCContext {
  // Empty internal constructor, to prevent people from mistakenly deploying
  // an instance of this contract, which should be used via inheritance.
  constructor() {}

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

  function _msgData() internal view returns (bytes memory) {
    this;
    return msg.data;
  }
}

File 5 of 7: ERCOwnable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERCContext.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.
 *
 * 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.
 */
contract ERCOwnable is ERCContext {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 * not same
 */
library SafeMath {
  /**
   * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @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 sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   *
   * _Available since v2.4.0._
   */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @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) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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.
   *
   * _Available since v2.4.0._
   */
  function div(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"changeLiquidityPoolStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingPool","type":"address"}],"name":"changeMarketingPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"change_isExcludedFromFee","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setLiquidityPoolStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingPool","type":"address"}],"name":"setMarketingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051806040016040528060078152602001664368617420414960c81b81525060405180604001604052806002815260200161414960f01b815250601282600090816200006091906200037d565b5060016200006f83826200037d565b506002805460ff191660ff929092169190911790555060009050620000913390565b60028054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000620000f660025460ff1690565b620001069060ff16600a6200055c565b62000116906305f5e10062000571565b905062000124338262000161565b506009805462ffffff1916610100179055600b80546001600160a01b0319167325ce589ca0dd72d14f4f684fcd4f2dc729429783179055620005a1565b6001600160a01b038216620001bd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001d9816005546200026c60201b6200095d1790919060201c565b6005556001600160a01b0382166000908152600360209081526040909120546200020e9183906200095d6200026c821b17901c565b6001600160a01b0383166000818152600360205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002609085815260200190565b60405180910390a35050565b6000806200027b83856200058b565b905083811015620002cf5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620001b4565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030357607f821691505b6020821081036200032457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037857600081815260208120601f850160051c81016020861015620003535750805b601f850160051c820191505b8181101562000374578281556001016200035f565b5050505b505050565b81516001600160401b03811115620003995762000399620002d8565b620003b181620003aa8454620002ee565b846200032a565b602080601f831160018114620003e95760008415620003d05750858301515b600019600386901b1c1916600185901b17855562000374565b600085815260208120601f198616915b828110156200041a57888601518255948401946001909101908401620003f9565b5085821015620004395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004a057816000190482111562000484576200048462000449565b808516156200049257918102915b93841c939080029062000464565b509250929050565b600082620004b957506001620002d2565b81620004c857506000620002d2565b8160018114620004e15760028114620004ec576200050c565b6001915050620002d2565b60ff84111562000500576200050062000449565b50506001821b620002d2565b5060208310610133831016604e8410600b841016171562000531575081810a620002d2565b6200053d83836200045f565b806000190482111562000554576200055462000449565b029392505050565b60006200056a8383620004a8565b9392505050565b8082028115828204841417620002d257620002d262000449565b80820180821115620002d257620002d262000449565b6111ba80620005b16000396000f3fe60806040526004361061012e5760003560e01c8063768dc710116100ab578063a9059cbb1161006f578063a9059cbb14610353578063c0806db614610373578063c26d7be0146103a3578063c89c58fb146103d0578063dd62ed3e146103f0578063f2fde38b1461043657600080fd5b8063768dc710146102985780638da5cb5b146102c857806395d89b41146102fe578063a457c2d714610313578063a86517bf1461033357600080fd5b806330509bca116100f257806330509bca146101f6578063313ce5671461020b578063395093511461022d57806370a082311461024d578063715018a61461028357600080fd5b806306fdde031461013a578063095ea7b3146101655780631698755f1461019557806318160ddd146101b757806323b872dd146101d657600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610456565b60405161015c9190610e8c565b60405180910390f35b34801561017157600080fd5b50610185610180366004610ef6565b6104e8565b604051901515815260200161015c565b3480156101a157600080fd5b506101b56101b0366004610ef6565b6104ff565b005b3480156101c357600080fd5b506005545b60405190815260200161015c565b3480156101e257600080fd5b506101856101f1366004610f20565b61057b565b34801561020257600080fd5b506101b56105e4565b34801561021757600080fd5b5060025460405160ff909116815260200161015c565b34801561023957600080fd5b50610185610248366004610ef6565b610620565b34801561025957600080fd5b506101c8610268366004610f5c565b6001600160a01b031660009081526003602052604090205490565b34801561028f57600080fd5b506101b5610656565b3480156102a457600080fd5b506101856102b3366004610f5c565b60076020526000908152604090205460ff1681565b3480156102d457600080fd5b5060025461010090046001600160a01b03166040516001600160a01b03909116815260200161015c565b34801561030a57600080fd5b5061014f6106df565b34801561031f57600080fd5b5061018561032e366004610ef6565b6106ee565b34801561033f57600080fd5b506101b561034e366004610f5c565b61073d565b34801561035f57600080fd5b5061018561036e366004610ef6565b6107c1565b34801561037f57600080fd5b5061018561038e366004610f5c565b60066020526000908152604090205460ff1681565b3480156103af57600080fd5b506101c86103be366004610f5c565b60086020526000908152604090205481565b3480156103dc57600080fd5b506101b56103eb366004610f85565b6107ce565b3480156103fc57600080fd5b506101c861040b366004610fbc565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561044257600080fd5b506101b5610451366004610f5c565b610861565b60606000805461046590610fef565b80601f016020809104026020016040519081016040528092919081815260200182805461049190610fef565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b60006104f53384846109c3565b5060015b92915050565b600b5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105769190611029565b505050565b6000610588848484610ae8565b6105da84336105d585604051806060016040528060288152602001611138602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190610ccc565b6109c3565b5060019392505050565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561061d573d6000803e3d6000fd5b50565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104f59185906105d5908661095d565b6002546001600160a01b0361010090910416331461068f5760405162461bcd60e51b815260040161068690611046565b60405180910390fd5b60025460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360028054610100600160a81b0319169055565b60606001805461046590610fef565b60006104f533846105d585604051806060016040528060258152602001611160602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190610ccc565b6002546001600160a01b0361010090910416331461076d5760405162461bcd60e51b815260040161068690611046565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527ff15d5716db5d5d79f695e387fc3e7c89982c0df6f4b81a006e38cfdc850a712e9060200160405180910390a150565b60006104f5338484610ae8565b6002546001600160a01b036101009091041633146107fe5760405162461bcd60e51b815260040161068690611046565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f50d3135c1831a86bdc04740f17c94415767240d338df5795b37fb5b8272f80d7910160405180910390a15050565b6002546001600160a01b036101009091041633146108915760405162461bcd60e51b815260040161068690611046565b6001600160a01b0381166108f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610686565b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60008061096a8385611091565b9050838110156109bc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610686565b9392505050565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610686565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610686565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b306001600160a01b0316826001600160a01b031614156040518060600160405280602181526020016111176021913990610b355760405162461bcd60e51b81526004016106869190610e8c565b506001600160a01b03831660009081526006602052604090205460ff161515600103610b8057600954606490610b6e9060ff16836110a4565b610b7891906110bb565b600a55610c8f565b6001600160a01b03821660009081526006602052604090205460ff161515600103610bea57600954606490610bbd90610100900460ff16836110a4565b610bc791906110bb565b600a556001600160a01b0383166000908152600860205260409020429055610c8f565b6001600160a01b03831660009081526007602052604090205460ff1680610c2957506001600160a01b03821660009081526007602052604090205460ff165b80610c415750600b546001600160a01b038481169116145b80610c595750600b546001600160a01b038381169116145b15610c68576000600a55610c8f565b600954606490610c819062010000900460ff16836110a4565b610c8b91906110bb565b600a555b600a5415610cb457600b54600a54610cb49185916001600160a01b0390911690610d06565b6105768383600a5484610cc791906110dd565b610d06565b60008184841115610cf05760405162461bcd60e51b81526004016106869190610e8c565b506000610cfd84866110dd565b95945050505050565b6001600160a01b038316610d6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610686565b6001600160a01b038216610dcc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610686565b610e09816040518060600160405280602681526020016110f1602691396001600160a01b0386166000908152600360205260409020549190610ccc565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610e38908261095d565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610adb9085815260200190565b600060208083528351808285015260005b81811015610eb957858101830151858201604001528201610e9d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ef157600080fd5b919050565b60008060408385031215610f0957600080fd5b610f1283610eda565b946020939093013593505050565b600080600060608486031215610f3557600080fd5b610f3e84610eda565b9250610f4c60208501610eda565b9150604084013590509250925092565b600060208284031215610f6e57600080fd5b6109bc82610eda565b801515811461061d57600080fd5b60008060408385031215610f9857600080fd5b610fa183610eda565b91506020830135610fb181610f77565b809150509250929050565b60008060408385031215610fcf57600080fd5b610fd883610eda565b9150610fe660208401610eda565b90509250929050565b600181811c9082168061100357607f821691505b60208210810361102357634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561103b57600080fd5b81516109bc81610f77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f9576104f961107b565b80820281158282048414176104f9576104f961107b565b6000826110d857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104f9576104f961107b56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e6f207472616e736665727320746f20636f6e747261637420616c6c6f7765642e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220845bdc4870d807256029a90f1b3600bbee46a7a2b470f44a9c48dc28384b6dad64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063768dc710116100ab578063a9059cbb1161006f578063a9059cbb14610353578063c0806db614610373578063c26d7be0146103a3578063c89c58fb146103d0578063dd62ed3e146103f0578063f2fde38b1461043657600080fd5b8063768dc710146102985780638da5cb5b146102c857806395d89b41146102fe578063a457c2d714610313578063a86517bf1461033357600080fd5b806330509bca116100f257806330509bca146101f6578063313ce5671461020b578063395093511461022d57806370a082311461024d578063715018a61461028357600080fd5b806306fdde031461013a578063095ea7b3146101655780631698755f1461019557806318160ddd146101b757806323b872dd146101d657600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610456565b60405161015c9190610e8c565b60405180910390f35b34801561017157600080fd5b50610185610180366004610ef6565b6104e8565b604051901515815260200161015c565b3480156101a157600080fd5b506101b56101b0366004610ef6565b6104ff565b005b3480156101c357600080fd5b506005545b60405190815260200161015c565b3480156101e257600080fd5b506101856101f1366004610f20565b61057b565b34801561020257600080fd5b506101b56105e4565b34801561021757600080fd5b5060025460405160ff909116815260200161015c565b34801561023957600080fd5b50610185610248366004610ef6565b610620565b34801561025957600080fd5b506101c8610268366004610f5c565b6001600160a01b031660009081526003602052604090205490565b34801561028f57600080fd5b506101b5610656565b3480156102a457600080fd5b506101856102b3366004610f5c565b60076020526000908152604090205460ff1681565b3480156102d457600080fd5b5060025461010090046001600160a01b03166040516001600160a01b03909116815260200161015c565b34801561030a57600080fd5b5061014f6106df565b34801561031f57600080fd5b5061018561032e366004610ef6565b6106ee565b34801561033f57600080fd5b506101b561034e366004610f5c565b61073d565b34801561035f57600080fd5b5061018561036e366004610ef6565b6107c1565b34801561037f57600080fd5b5061018561038e366004610f5c565b60066020526000908152604090205460ff1681565b3480156103af57600080fd5b506101c86103be366004610f5c565b60086020526000908152604090205481565b3480156103dc57600080fd5b506101b56103eb366004610f85565b6107ce565b3480156103fc57600080fd5b506101c861040b366004610fbc565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561044257600080fd5b506101b5610451366004610f5c565b610861565b60606000805461046590610fef565b80601f016020809104026020016040519081016040528092919081815260200182805461049190610fef565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b60006104f53384846109c3565b5060015b92915050565b600b5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610552573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105769190611029565b505050565b6000610588848484610ae8565b6105da84336105d585604051806060016040528060288152602001611138602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190610ccc565b6109c3565b5060019392505050565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561061d573d6000803e3d6000fd5b50565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104f59185906105d5908661095d565b6002546001600160a01b0361010090910416331461068f5760405162461bcd60e51b815260040161068690611046565b60405180910390fd5b60025460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360028054610100600160a81b0319169055565b60606001805461046590610fef565b60006104f533846105d585604051806060016040528060258152602001611160602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190610ccc565b6002546001600160a01b0361010090910416331461076d5760405162461bcd60e51b815260040161068690611046565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527ff15d5716db5d5d79f695e387fc3e7c89982c0df6f4b81a006e38cfdc850a712e9060200160405180910390a150565b60006104f5338484610ae8565b6002546001600160a01b036101009091041633146107fe5760405162461bcd60e51b815260040161068690611046565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f50d3135c1831a86bdc04740f17c94415767240d338df5795b37fb5b8272f80d7910160405180910390a15050565b6002546001600160a01b036101009091041633146108915760405162461bcd60e51b815260040161068690611046565b6001600160a01b0381166108f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610686565b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60008061096a8385611091565b9050838110156109bc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610686565b9392505050565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610686565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610686565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b306001600160a01b0316826001600160a01b031614156040518060600160405280602181526020016111176021913990610b355760405162461bcd60e51b81526004016106869190610e8c565b506001600160a01b03831660009081526006602052604090205460ff161515600103610b8057600954606490610b6e9060ff16836110a4565b610b7891906110bb565b600a55610c8f565b6001600160a01b03821660009081526006602052604090205460ff161515600103610bea57600954606490610bbd90610100900460ff16836110a4565b610bc791906110bb565b600a556001600160a01b0383166000908152600860205260409020429055610c8f565b6001600160a01b03831660009081526007602052604090205460ff1680610c2957506001600160a01b03821660009081526007602052604090205460ff165b80610c415750600b546001600160a01b038481169116145b80610c595750600b546001600160a01b038381169116145b15610c68576000600a55610c8f565b600954606490610c819062010000900460ff16836110a4565b610c8b91906110bb565b600a555b600a5415610cb457600b54600a54610cb49185916001600160a01b0390911690610d06565b6105768383600a5484610cc791906110dd565b610d06565b60008184841115610cf05760405162461bcd60e51b81526004016106869190610e8c565b506000610cfd84866110dd565b95945050505050565b6001600160a01b038316610d6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610686565b6001600160a01b038216610dcc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610686565b610e09816040518060600160405280602681526020016110f1602691396001600160a01b0386166000908152600360205260409020549190610ccc565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610e38908261095d565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610adb9085815260200190565b600060208083528351808285015260005b81811015610eb957858101830151858201604001528201610e9d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ef157600080fd5b919050565b60008060408385031215610f0957600080fd5b610f1283610eda565b946020939093013593505050565b600080600060608486031215610f3557600080fd5b610f3e84610eda565b9250610f4c60208501610eda565b9150604084013590509250925092565b600060208284031215610f6e57600080fd5b6109bc82610eda565b801515811461061d57600080fd5b60008060408385031215610f9857600080fd5b610fa183610eda565b91506020830135610fb181610f77565b809150509250929050565b60008060408385031215610fcf57600080fd5b610fd883610eda565b9150610fe660208401610eda565b90509250929050565b600181811c9082168061100357607f821691505b60208210810361102357634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561103b57600080fd5b81516109bc81610f77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f9576104f961107b565b80820281158282048414176104f9576104f961107b565b6000826110d857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104f9576104f961107b56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e6f207472616e736665727320746f20636f6e747261637420616c6c6f7765642e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220845bdc4870d807256029a90f1b3600bbee46a7a2b470f44a9c48dc28384b6dad64736f6c63430008120033

Deployed Bytecode Sourcemap

116:2538:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;652:77:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2410:151:0;;;;;;;;;;-1:-1:-1;2410:151:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:7;;1162:22;1144:41;;1132:2;1117:18;2410:151:0;1004:187:7;1053:117:6;;;;;;;;;;-1:-1:-1;1053:117:6;;;;;:::i;:::-;;:::i;:::-;;1465:94:0;;;;;;;;;;-1:-1:-1;1541:12:0;;1465:94;;;1342:25:7;;;1330:2;1315:18;1465:94:0;1196:177:7;3007:355:0;;;;;;;;;;-1:-1:-1;3007:355:0;;;;;:::i;:::-;;:::i;948:99:6:-;;;;;;;;;;;;;:::i;1456:77:1:-;;;;;;;;;;-1:-1:-1;1518:9:1;;1456:77;;1518:9;;;;1853:36:7;;1841:2;1826:18;1456:77:1;1711:184:7;3745:200:0;;;;;;;;;;-1:-1:-1;3745:200:0;;;;;:::i;:::-;;:::i;1614:113::-;;;;;;;;;;-1:-1:-1;1614:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;1703:18:0;1680:7;1703:18;;;:9;:18;;;;;;;1614:113;1596:148:3;;;;;;;;;;;;;:::i;214:50:6:-;;;;;;;;;;-1:-1:-1;214:50:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;954:79:3;;;;;;;;;;-1:-1:-1;1019:6:3;;;;;-1:-1:-1;;;;;1019:6:3;954:79;;-1:-1:-1;;;;;2255:32:7;;;2237:51;;2225:2;2210:18;954:79:3;2091:203:7;838:81:1;;;;;;;;;;;;;:::i;4418:279:0:-;;;;;;;;;;-1:-1:-1;4418:279:0;;;;;:::i;:::-;;:::i;1373:159:6:-;;;;;;;;;;-1:-1:-1;1373:159:6;;;;;:::i;:::-;;:::i;1922:165:0:-;;;;;;;;;;-1:-1:-1;1922:165:0;;;;;:::i;:::-;;:::i;164:45:6:-;;;;;;;;;;-1:-1:-1;164:45:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;269:44;;;;;;;;;;-1:-1:-1;269:44:6;;;;;:::i;:::-;;;;;;;;;;;;;;1176:191;;;;;;;;;;-1:-1:-1;1176:191:6;;;;;:::i;:::-;;:::i;2142:137:0:-;;;;;;;;;;-1:-1:-1;2142:137:0;;;;;:::i;:::-;-1:-1:-1;;;;;2246:18:0;;;2223:7;2246:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2142:137;1899:244:3;;;;;;;;;;-1:-1:-1;1899:244:3;;;;;:::i;:::-;;:::i;652:77:1:-;689:13;718:5;711:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;652:77;:::o;2410:151:0:-;2485:4;2498:39;862:10:2;2521:7:0;2530:6;2498:8;:39::i;:::-;-1:-1:-1;2551:4:0;2410:151;;;;;:::o;1053:117:6:-;1142:13;;1120:44;;-1:-1:-1;;;1120:44:6;;-1:-1:-1;;;;;1142:13:6;;;1120:44;;;3566:51:7;3633:18;;;3626:34;;;1120:21:6;;;;;;3539:18:7;;1120:44:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1053:117;;:::o;3007:355:0:-;3133:4;3146:36;3156:6;3164:9;3175:6;3146:9;:36::i;:::-;3189:149;3206:6;862:10:2;3242:89:0;3280:6;3242:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3242:19:0;;;;;;:11;:19;;;;;;;;862:10:2;3242:33:0;;;;;;;;;;:37;:89::i;:::-;3189:8;:149::i;:::-;-1:-1:-1;3352:4:0;3007:355;;;;;:::o;948:99:6:-;995:13;;987:54;;-1:-1:-1;;;;;995:13:6;;;;1019:21;987:54;;;;;995:13;987:54;995:13;987:54;1019:21;995:13;987:54;;;;;;;;;;;;;;;;;;;;;948:99::o;3745:200:0:-;862:10:2;3825:4:0;3870:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;3870:34:0;;;;;;;;;;3825:4;;3838:83;;3861:7;;3870:50;;3909:10;3870:38;:50::i;1596:148:3:-;1166:6;;-1:-1:-1;;;;;1166:6:3;;;;;862:10:2;1166:22:3;1158:67;;;;-1:-1:-1;;;1158:67:3;;;;;;;:::i;:::-;;;;;;;;;1687:6:::1;::::0;1666:40:::1;::::0;1703:1:::1;::::0;1687:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1687:6:3::1;::::0;1666:40:::1;::::0;1703:1;;1666:40:::1;1717:6;:19:::0;;-1:-1:-1;;;;;;1717:19:3::1;::::0;;1596:148::o;838:81:1:-;877:13;906:7;899:14;;;;;:::i;4418:279:0:-;4503:4;4516:157;862:10:2;4554:7:0;4570:96;4609:15;4570:96;;;;;;;;;;;;;;;;;862:10:2;4570:25:0;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;4570:34:0;;;;;;;;;;;;:38;:96::i;1373:159:6:-;1166:6:3;;-1:-1:-1;;;;;1166:6:3;;;;;862:10:2;1166:22:3;1158:67;;;;-1:-1:-1;;;1158:67:3;;;;;;;:::i;:::-;1449:13:6::1;:30:::0;;-1:-1:-1;;;;;;1449:30:6::1;-1:-1:-1::0;;;;;1449:30:6;::::1;::::0;;::::1;::::0;;;1491:35:::1;::::0;2237:51:7;;;1491:35:6::1;::::0;2225:2:7;2210:18;1491:35:6::1;;;;;;;1373:159:::0;:::o;1922:165:0:-;2008:4;2021:42;862:10:2;2045:9:0;2056:6;2021:9;:42::i;1176:191:6:-;1166:6:3;;-1:-1:-1;;;;;1166:6:3;;;;;862:10:2;1166:22:3;1158:67;;;;-1:-1:-1;;;1158:67:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;1268:25:6;::::1;;::::0;;;:13:::1;:25;::::0;;;;;;;;:35;;-1:-1:-1;;1268:35:6::1;::::0;::::1;;::::0;;::::1;::::0;;;1315:46;;4450:51:7;;;4517:18;;;4510:50;1315:46:6::1;::::0;4423:18:7;1315:46:6::1;;;;;;;1176:191:::0;;:::o;1899:244:3:-;1166:6;;-1:-1:-1;;;;;1166:6:3;;;;;862:10:2;1166:22:3;1158:67;;;;-1:-1:-1;;;1158:67:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:3;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:3;;4773:2:7;1980:73:3::1;::::0;::::1;4755:21:7::0;4812:2;4792:18;;;4785:30;4851:34;4831:18;;;4824:62;-1:-1:-1;;;4902:18:7;;;4895:36;4948:19;;1980:73:3::1;4571:402:7::0;1980:73:3::1;2090:6;::::0;2069:38:::1;::::0;-1:-1:-1;;;;;2069:38:3;;::::1;::::0;2090:6:::1;::::0;::::1;;::::0;2069:38:::1;::::0;;;::::1;2118:6;:17:::0;;-1:-1:-1;;;;;2118:17:3;;::::1;;;-1:-1:-1::0;;;;;;2118:17:3;;::::1;::::0;;;::::1;::::0;;1899:244::o;885:167:5:-;943:7;;971:5;975:1;971;:5;:::i;:::-;959:17;;996:1;991;:6;;983:46;;;;-1:-1:-1;;;983:46:5;;5442:2:7;983:46:5;;;5424:21:7;5481:2;5461:18;;;5454:30;5520:29;5500:18;;;5493:57;5567:18;;983:46:5;5240:351:7;983:46:5;1045:1;885:167;-1:-1:-1;;;885:167:5:o;7235:340:0:-;-1:-1:-1;;;;;7345:19:0;;7337:68;;;;-1:-1:-1;;;7337:68:0;;5798:2:7;7337:68:0;;;5780:21:7;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;-1:-1:-1;;;5927:18:7;;;5920:34;5971:19;;7337:68:0;5596:400:7;7337:68:0;-1:-1:-1;;;;;7420:21:0;;7412:68;;;;-1:-1:-1;;;7412:68:0;;6203:2:7;7412:68:0;;;6185:21:7;6242:2;6222:18;;;6215:30;6281:34;6261:18;;;6254:62;-1:-1:-1;;;6332:18:7;;;6325:32;6374:19;;7412:68:0;6001:398:7;7412:68:0;-1:-1:-1;;;;;7489:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7537:32;;1342:25:7;;;7537:32:0;;1315:18:7;7537:32:0;;;;;;;;7235:340;;;:::o;1538:885:6:-;1668:4;-1:-1:-1;;;;;1648:25:6;:8;-1:-1:-1;;;;;1648:25:6;;;1675:43;;;;;;;;;;;;;;;;;1640:79;;;;;-1:-1:-1;;;1640:79:6;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1731:21:6;;;;;;:13;:21;;;;;;;;:29;;:21;:29;1728:534;;1833:6;;1843:3;;1824:15;;1833:6;;1824;:15;:::i;:::-;1823:23;;;;:::i;:::-;1811:9;:35;1728:534;;;-1:-1:-1;;;;;1863:23:6;;;;;;:13;:23;;;;;;;;:31;;:23;:31;1860:402;;1974:7;;1985:3;;1965:16;;1974:7;;;;;1965:6;:16;:::i;:::-;1964:24;;;;:::i;:::-;1952:9;:36;-1:-1:-1;;;;;1999:17:6;;;;;;:9;:17;;;;;2019:15;1999:35;;1860:402;;;-1:-1:-1;;;;;2053:26:6;;;;;;:18;:26;;;;;;;;;:58;;-1:-1:-1;;;;;;2083:28:6;;;;;;:18;:28;;;;;;;;2053:58;:85;;;-1:-1:-1;2125:13:6;;-1:-1:-1;;;;;2115:23:6;;;2125:13;;2115:23;2053:85;:114;;;-1:-1:-1;2154:13:6;;-1:-1:-1;;;;;2142:25:6;;;2154:13;;2142:25;2053:114;2050:212;;;2190:1;2178:9;:13;2050:212;;;2236:11;;2251:3;;2227:20;;2236:11;;;;;2227:6;:20;:::i;:::-;2226:28;;;;:::i;:::-;2214:9;:40;2050:212;2273:9;;:13;2270:84;;2321:13;;2336:9;;2297:49;;2313:6;;-1:-1:-1;;;;;2321:13:6;;;;2297:15;:49::i;:::-;2364:53;2380:6;2388:8;2407:9;;2398:6;:18;;;;:::i;:::-;2364:15;:53::i;1750:198:5:-;1856:7;1888:12;1880:6;;;;1872:29;;;;-1:-1:-1;;;1872:29:5;;;;;;;;:::i;:::-;-1:-1:-1;1908:9:5;1920:5;1924:1;1920;:5;:::i;:::-;1908:17;1750:198;-1:-1:-1;;;;;1750:198:5:o;5157:477:0:-;-1:-1:-1;;;;;5279:20:0;;5271:70;;;;-1:-1:-1;;;5271:70:0;;7134:2:7;5271:70:0;;;7116:21:7;7173:2;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;-1:-1:-1;;;7263:18:7;;;7256:35;7308:19;;5271:70:0;6932:401:7;5271:70:0;-1:-1:-1;;;;;5356:23:0;;5348:71;;;;-1:-1:-1;;;5348:71:0;;7540:2:7;5348:71:0;;;7522:21:7;7579:2;7559:18;;;7552:30;7618:34;7598:18;;;7591:62;-1:-1:-1;;;7669:18:7;;;7662:33;7712:19;;5348:71:0;7338:399:7;5348:71:0;5448;5470:6;5448:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5448:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;5428:17:0;;;;;;;:9;:17;;;;;;:91;;;;5549:20;;;;;;;:32;;5574:6;5549:24;:32::i;:::-;-1:-1:-1;;;;;5526:20:0;;;;;;;:9;:20;;;;;;;:55;;;;5593:35;;;;;;;;;;5621:6;1342:25:7;;1330:2;1315:18;;1196:177;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:7;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:7:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:118::-;2385:5;2378:13;2371:21;2364:5;2361:32;2351:60;;2407:1;2404;2397:12;2422:315;2487:6;2495;2548:2;2536:9;2527:7;2523:23;2519:32;2516:52;;;2564:1;2561;2554:12;2516:52;2587:29;2606:9;2587:29;:::i;:::-;2577:39;;2666:2;2655:9;2651:18;2638:32;2679:28;2701:5;2679:28;:::i;:::-;2726:5;2716:15;;;2422:315;;;;;:::o;2742:260::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2910:29;2929:9;2910:29;:::i;:::-;2900:39;;2958:38;2992:2;2981:9;2977:18;2958:38;:::i;:::-;2948:48;;2742:260;;;;;:::o;3007:380::-;3086:1;3082:12;;;;3129;;;3150:61;;3204:4;3196:6;3192:17;3182:27;;3150:61;3257:2;3249:6;3246:14;3226:18;3223:38;3220:161;;3303:10;3298:3;3294:20;3291:1;3284:31;3338:4;3335:1;3328:15;3366:4;3363:1;3356:15;3220:161;;3007:380;;;:::o;3671:245::-;3738:6;3791:2;3779:9;3770:7;3766:23;3762:32;3759:52;;;3807:1;3804;3797:12;3759:52;3839:9;3833:16;3858:28;3880:5;3858:28;:::i;3921:356::-;4123:2;4105:21;;;4142:18;;;4135:30;4201:34;4196:2;4181:18;;4174:62;4268:2;4253:18;;3921:356::o;4978:127::-;5039:10;5034:3;5030:20;5027:1;5020:31;5070:4;5067:1;5060:15;5094:4;5091:1;5084:15;5110:125;5175:9;;;5196:10;;;5193:36;;;5209:18;;:::i;6404:168::-;6477:9;;;6508;;6525:15;;;6519:22;;6505:37;6495:71;;6546:18;;:::i;6577:217::-;6617:1;6643;6633:132;;6687:10;6682:3;6678:20;6675:1;6668:31;6722:4;6719:1;6712:15;6750:4;6747:1;6740:15;6633:132;-1:-1:-1;6779:9:7;;6577:217::o;6799:128::-;6866:9;;;6887:11;;;6884:37;;;6901:18;;:::i

Swarm Source

ipfs://845bdc4870d807256029a90f1b3600bbee46a7a2b470f44a9c48dc28384b6dad

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.