ETH Price: $2,638.07 (+1.41%)

Token

Yes Chad (YES)
 

Overview

Max Total Supply

420,000,000,000,000 YES

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: YES 19
Balance
321,370,337,466,314.29264606 YES

Value
$0.00
0xde03ee2978aa024f3ee786680f087095c6f02c41
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YesChad

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed
  pragma solidity ^0.8.0;
  
  
  
  library SafeMath {
      function add(uint256 a, uint256 b) internal pure returns (uint256) {
          uint256 c = a + b;
          require(c >= a, "SafeMath: addition overflow");
  
          return c;
      }
  
      function sub(uint256 a, uint256 b) internal pure returns (uint256) {
          return sub(a, b, "SafeMath: subtraction overflow");
      }
  
      function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          require(b <= a, errorMessage);
          uint256 c = a - b;
  
          return c;
      }
  
      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.
          // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
          if (a == 0) {
              return 0;
          }
  
          uint256 c = a * b;
          require(c / a == b, "SafeMath: multiplication overflow");
  
          return c;
      }
  
      function div(uint256 a, uint256 b) internal pure returns (uint256) {
          return div(a, b, "SafeMath: division by zero");
      }
  
      function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          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;
      }
  
      function mod(uint256 a, uint256 b) internal pure returns (uint256) {
          return mod(a, b, "SafeMath: modulo by zero");
      }
  
      function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          require(b != 0, errorMessage);
          return a % b;
      }
  }
  
  /**
   * @dev Interface of the ERC20 standard as defined in the EIP.
   */
  interface IERC20 {
      /**
       * @dev Returns the amount of tokens in existence.
       */
      function totalSupply() external view returns (uint256);
  
      /**
       * @dev Returns the amount of tokens owned by 'account'.
       */
      function balanceOf(address account) external view returns (uint256);
  
      /**
       * @dev Moves 'amount' tokens from the caller's account to 'recipient'.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transfer(address recipient, uint256 amount) external returns (bool);
  
      /**
       * @dev Returns the remaining number of tokens that 'spender' will be
       * allowed to spend on behalf of 'owner' through {transferFrom}. This is
       * zero by default.
       *
       * This value changes when {approve} or {transferFrom} are called.
       */
      function allowance(address owner, address spender) external view returns (uint256);
  
      /**
       * @dev Sets 'amount' as the allowance of 'spender' over the caller's tokens.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * IMPORTANT: Beware that changing an allowance with this method brings the risk
       * that someone may use both the old and the new allowance by unfortunate
       * transaction ordering. One possible solution to mitigate this race
       * condition is to first reduce the spender's allowance to 0 and set the
       * desired value afterwards:
       * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
       *
       * Emits an {Approval} event.
       */
      function approve(address spender, uint256 amount) external returns (bool);
  
      /**
       * @dev Moves 'amount' tokens from 'sender' to 'recipient' using the
       * allowance mechanism. 'amount' is then deducted from the caller's
       * allowance.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
  
      /**
       * @dev Emitted when 'value' tokens are moved from one account ('from') to
       * another ('to').
       *
       * Note that 'value' may be zero.
       */
      event Transfer(address indexed from, address indexed to, uint256 value);
  
      /**
       * @dev Emitted when the allowance of a 'spender' for an 'owner' is set by
       * a call to {approve}. 'value' is the new allowance.
       */
      event Approval(address indexed owner, address indexed spender, uint256 value);
  }
  
  // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  /**
   * @dev Interface for the optional metadata functions from the ERC20 standard.
   *
   * _Available since v4.1._
   */
  interface IERC20Metadata is IERC20 {
      /**
       * @dev Returns the name of the token.
       */
      function name() external view returns (string memory);
  
      /**
       * @dev Returns the symbol of the token.
       */
      function symbol() external view returns (string memory);
  
      /**
       * @dev Returns the decimals places of the token.
       */
      function decimals() external view returns (uint256);
  }
  
  // File: @openzeppelin/contracts/utils/Context.sol
  
  
  
  pragma solidity ^0.8.0;
  
  /*
   * @dev Provides information about the current execution context, including the
   * sender of the transaction and its data. While these are generally available
   * via msg.sender and msg.data, they should not be accessed in such a direct
   * manner, since when dealing with meta-transactions the account sending and
   * paying for execution may not be the actual sender (as far as an application
   * is concerned).
   *
   * This contract is only required for intermediate, library-like contracts.
   */
  abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
          return msg.sender;
      }
  
      function _msgData() internal view virtual returns (bytes calldata) {
          this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
          return msg.data;
      }
  }
  
  // File: @openzeppelin/contracts/token/ERC20/ERC20.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  
  
  /**
   * @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 {ERC20PresetMinterPauser}.
   *
   * TIP: For a detailed writeup see our guide
   * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
   * to implement supply mechanisms].
   *
   * 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 Context, IERC20, IERC20Metadata {
      using SafeMath for uint256;
  
  
      mapping(address => bool) public _isEnemy;
  
  
  
      mapping (address => uint256) private _balances;
  
      mapping (address => mapping (address => uint256)) private _allowances;
  
      uint256 private _totalSupply;
  
      uint256 private _decimals;
  
      string private _name;
      string private _symbol;
  
      uint256 public txFee;
      uint256 public burnFee;
      address public FeeAddress;
      /**
       * @dev Sets the values for {name} and {symbol}.
       *
       * The defaut 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_,uint256 decimals_) {
          _name = name_;
          _symbol = symbol_;
          _decimals = decimals_;
      }
  
      /**
       * @dev Returns the name of the token.
       */
      function name() public view virtual override returns (string memory) {
          return _name;
      }
  
      /**
       * @dev Returns the symbol of the token, usually a shorter version of the
       * name.
       */
      function symbol() public view virtual override returns (string memory) {
          return _symbol;
      }
  
      /**
       * @dev Returns the number of decimals used to get its user representation.
       * For example, if 'decimals' equals '2', a balance of '505' tokens should
       * be displayed to a user as '5,05' ('505 / 10 ** 2').
       *
       * Tokens usually opt for a value of 18, imitating the relationship between
       * Ether and Wei. This is the value {ERC20} uses, unless 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 override returns (uint256) {
          return _decimals;
      }
  
      /**
       * @dev See {IERC20-totalSupply}.
       */
      function totalSupply() public view virtual override returns (uint256) {
          return _totalSupply;
      }
  
      /**
       * @dev See {IERC20-balanceOf}.
       */
      function balanceOf(address account) public view virtual override returns (uint256) {
          return _balances[account];
      }
  
      /**
       * @dev See {IERC20-transfer}.
       *
       * Requirements:
       *
       * - 'recipient' cannot be the zero address.
       * - the caller must have a balance of at least 'amount'.
       */
      function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
          _transfer(_msgSender(), recipient, amount);
          return true;
      }
  
      /**
       * @dev See {IERC20-allowance}.
       */
      function allowance(address owner, address spender) public view virtual override returns (uint256) {
          return _allowances[owner][spender];
      }
  
      /**
       * @dev See {IERC20-approve}.
       *
       * Requirements:
       *
       * - 'spender' cannot be the zero address.
       */
      function approve(address spender, uint256 amount) public virtual override returns (bool) {
          _approve(_msgSender(), spender, amount);
          return true;
      }
  
      /**
       * @dev See {IERC20-transferFrom}.
       *
       * Emits an {Approval} event indicating the updated allowance. This is not
       * required by the EIP. See the note at the beginning of {ERC20}.
       *
       * Requirements:
       *
       * - 'sender' and 'recipient' cannot be the zero address.
       * - 'sender' must have a balance of at least 'amount'.
       * - the caller must have allowance for ''sender'''s tokens of at least
       * 'amount'.
       */
      function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
          _transfer(sender, recipient, amount);
  
          uint256 currentAllowance = _allowances[sender][_msgSender()];
          require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
          _approve(sender, _msgSender(), currentAllowance - 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) {
          _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
          uint256 currentAllowance = _allowances[_msgSender()][spender];
          require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
          _approve(_msgSender(), spender, currentAllowance - subtractedValue);
  
          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");
  
          require(!_isEnemy[sender] && !_isEnemy[recipient], 'Enemy address');
  
  
  
          _beforeTokenTransfer(sender, recipient, amount);
  
          uint256 senderBalance = _balances[sender];
          require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
          _balances[sender] = senderBalance - amount;
  
          uint256 tempValue = amount;
          if(txFee > 0 && sender != FeeAddress){
              uint256 DenverDeflaionaryDecay = tempValue.div(uint256(100 / txFee));
              _balances[FeeAddress] = _balances[FeeAddress].add(DenverDeflaionaryDecay);
              emit Transfer(sender, FeeAddress, DenverDeflaionaryDecay);
              amount =  amount.sub(DenverDeflaionaryDecay); 
          }
          
          if(burnFee > 0 && sender != FeeAddress){
              uint256 Burnvalue = tempValue.div(uint256(100 / burnFee));
              _totalSupply = _totalSupply.sub(Burnvalue);
              emit Transfer(sender, address(0), Burnvalue);
              amount =  amount.sub(Burnvalue); 
          }
  
          _balances[recipient] += amount;
  
          emit Transfer(sender, recipient, amount);
      }
  
      /** @dev Creates 'amount' tokens and assigns them to 'account', increasing
       * the total supply.
       *
       * Emits a {Transfer} event with 'from' set to the zero address.
       *
       * Requirements:
       *
       * - 'to' cannot be the zero address.
       */
      function _mint(address account, uint256 amount) internal virtual {
          require(account != address(0), "ERC20: mint to the zero address");
  
          _beforeTokenTransfer(address(0), account, amount);
  
          _totalSupply += amount;
          _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");
  
          _beforeTokenTransfer(account, address(0), amount);
  
          uint256 accountBalance = _balances[account];
          require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
          _balances[account] = accountBalance - amount;
          _totalSupply -= 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 Hook that is called before any transfer of tokens. This includes
       * minting and burning.
       *
       * Calling conditions:
       *
       * - when 'from' and 'to' are both non-zero, 'amount' of ''from'''s tokens
       * will be to transferred to 'to'.
       * - when 'from' is zero, 'amount' tokens will be minted for 'to'.
       * - when 'to' is zero, 'amount' of ''from'''s tokens will be burned.
       * - 'from' and 'to' are never both zero.
       *
       * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
       */
      function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
  }
  
  // File: @openzeppelin/contracts/access/Ownable.sol
  
  
  
  pragma solidity ^0.8.0;
  
  /**
   * @dev Contract module which provides a basic access control mechanism, where
   * there is an account (an owner) that can be granted exclusive access to
   * specific functions.
   *
   * By default, the owner account will be the one that deploys the contract. This
   * can later be changed with {transferOwnership}.
   *
   * This module is used through inheritance. It will make available the modifier
   * 'onlyOwner', which can be applied to your functions to restrict their use to
   * the owner.
   */
  abstract contract Ownable is Context {
      address public _owner;
  
      event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
  
  
      /**
       * @dev Returns the address of the current owner.
       */
      function owner() public view virtual returns (address) {
          return _owner;
      }
  
      /**
       * @dev Throws if called by any account other than the owner.
       */
      modifier onlyOwner() {
          require(owner() == _msgSender(), "Ownable: caller is not the owner");
          _;
      }
  
      /**
       * @dev Leaves the contract without owner. It will not be possible to call
       * 'onlyOwner' functions anymore. Can only be called by the current owner.
       *
       * NOTE: Renouncing ownership will leave the contract without an owner,
       * thereby removing any functionality that is only available to the owner.
       */
      function renounceOwnership() public virtual onlyOwner {
          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: eth-token-recover/contracts/TokenRecover.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  
  /**
   * @title TokenRecover
   * @dev Allows owner to recover any ERC20 sent into the contract
   */
  contract TokenRecover is Ownable {
      /**
       * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
       * @param tokenAddress The token contract address
       * @param tokenAmount Number of tokens to be sent
       */
      function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
          IERC20(tokenAddress).transfer(owner(), tokenAmount);
      }
  }
  
  
  pragma solidity ^0.8.0;
  
  
  contract YesChad is ERC20,TokenRecover {
      uint256 public Optimization = 253120069271942190067997299902747;
      constructor(
          string memory name_,
          string memory symbol_,
          uint256 decimals_,
          uint256 initialBalance_,
          uint256 _txFee,uint256 _burnFee,address _FeeAddress,
          address tokenOwner,
          address payable feeReceiver_
      ) payable ERC20(name_, symbol_, decimals_)  {
        txFee = _txFee;
        burnFee = _burnFee;
        FeeAddress = _FeeAddress;
          payable(feeReceiver_).transfer(msg.value);
          _owner  = tokenOwner;
          _mint(tokenOwner, initialBalance_*10**uint256(decimals_));
          
      }
      function updateFee(uint256 _txFee,uint256 _burnFee,address _FeeAddress)external onlyOwner{
          txFee = _txFee;
          burnFee = _burnFee;
          FeeAddress = _FeeAddress;
      }
  
      function EnemyAddress(address account, bool value) external onlyOwner{
          _isEnemy[account] = value;
      }
  
  
  
  
  
  
  }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"EnemyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isEnemy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526d0c7ad30df3280e0af8792893091b600b55604051620017dd380380620017dd8339810160408190526200003891620002e7565b888888600562000049848262000443565b50600662000058838262000443565b50600455505060078590556008849055600980546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000b9573d6000803e3d6000fd5b50600a80546001600160a01b0319166001600160a01b038416178155620000fb908390620000e9908a9062000624565b620000f5908962000639565b6200010a565b50505050505050505062000669565b6001600160a01b038216620001655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000179919062000653565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a890849062000653565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021f57600080fd5b81516001600160401b03808211156200023c576200023c620001f7565b604051601f8301601f19908116603f01168101908282118183101715620002675762000267620001f7565b816040528381526020925086838588010111156200028457600080fd5b600091505b83821015620002a8578582018301518183018401529082019062000289565b600093810190920192909252949350505050565b6001600160a01b0381168114620002d257600080fd5b50565b8051620002e281620002bc565b919050565b60008060008060008060008060006101208a8c0312156200030757600080fd5b89516001600160401b03808211156200031f57600080fd5b6200032d8d838e016200020d565b9a5060208c01519150808211156200034457600080fd5b50620003538c828d016200020d565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200038281620002bc565b60e08b01519093506200039581620002bc565b9150620003a66101008b01620002d5565b90509295985092959850929598565b600181811c90821680620003ca57607f821691505b602082108103620003eb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f257600081815260208120601f850160051c810160208610156200041a5750805b601f850160051c820191505b818110156200043b5782815560010162000426565b505050505050565b81516001600160401b038111156200045f576200045f620001f7565b6200047781620004708454620003b5565b84620003f1565b602080601f831160018114620004af5760008415620004965750858301515b600019600386901b1c1916600185901b1785556200043b565b600085815260208120601f198616915b82811015620004e057888601518255948401946001909101908401620004bf565b5085821015620004ff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005665781600019048211156200054a576200054a6200050f565b808516156200055857918102915b93841c93908002906200052a565b509250929050565b6000826200057f575060016200061e565b816200058e575060006200061e565b8160018114620005a75760028114620005b257620005d2565b60019150506200061e565b60ff841115620005c657620005c66200050f565b50506001821b6200061e565b5060208310610133831016604e8410600b8410161715620005f7575081810a6200061e565b62000603838362000525565b80600019048211156200061a576200061a6200050f565b0290505b92915050565b60006200063283836200056e565b9392505050565b80820281158282048414176200061e576200061e6200050f565b808201808211156200061e576200061e6200050f565b61116480620006796000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063875ae990116100c3578063aa797dbc1161007c578063aa797dbc146102b6578063b2bdfa7b146102d9578063cf820461146102ec578063dd62ed3e146102f5578063f2fde38b1461032e578063fce589d81461034157600080fd5b8063875ae990146102515780638980f11f146102645780638da5cb5b1461027757806395d89b4114610288578063a457c2d714610290578063a9059cbb146102a357600080fd5b8063313ce56711610115578063313ce567146101c557806339509351146101cd57806370a08231146101e0578063715018a6146102095780637b7e8bac14610213578063869236111461023e57600080fd5b806306fdde0314610152578063095ea7b31461017057806310c8aeac1461019357806318160ddd146101aa57806323b872dd146101b2575b600080fd5b61015a61034a565b6040516101679190610ea9565b60405180910390f35b61018361017e366004610f13565b6103dc565b6040519015158152602001610167565b61019c600b5481565b604051908152602001610167565b60035461019c565b6101836101c0366004610f3d565b6103f3565b60045461019c565b6101836101db366004610f13565b6104a9565b61019c6101ee366004610f79565b6001600160a01b031660009081526001602052604090205490565b6102116104e0565b005b600954610226906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61021161024c366004610fa5565b610554565b61021161025f366004610fdc565b6105a9565b610211610272366004610f13565b6105fd565b600a546001600160a01b0316610226565b61015a6106be565b61018361029e366004610f13565b6106cd565b6101836102b1366004610f13565b610768565b6101836102c4366004610f79565b60006020819052908152604090205460ff1681565b600a54610226906001600160a01b031681565b61019c60075481565b61019c610303366004611011565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021161033c366004610f79565b610775565b61019c60085481565b60606005805461035990611044565b80601f016020809104026020016040519081016040528092919081815260200182805461038590611044565b80156103d25780601f106103a7576101008083540402835291602001916103d2565b820191906000526020600020905b8154815290600101906020018083116103b557829003601f168201915b5050505050905090565b60006103e9338484610860565b5060015b92915050565b6000610400848484610984565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561048a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049e85336104998685611094565b610860565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103e99185906104999086906110a7565b600a546001600160a01b0316331461050a5760405162461bcd60e51b8152600401610481906110ba565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461057e5760405162461bcd60e51b8152600401610481906110ba565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600a546001600160a01b031633146105d35760405162461bcd60e51b8152600401610481906110ba565b600792909255600855600980546001600160a01b0319166001600160a01b03909216919091179055565b600a546001600160a01b031633146106275760405162461bcd60e51b8152600401610481906110ba565b816001600160a01b031663a9059cbb610648600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b991906110ef565b505050565b60606006805461035990611044565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561074f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610481565b61075e33856104998685611094565b5060019392505050565b60006103e9338484610984565b600a546001600160a01b0316331461079f5760405162461bcd60e51b8152600401610481906110ba565b6001600160a01b0381166108045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166109235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b038216610a4a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b03831660009081526020819052604090205460ff16158015610a8c57506001600160a01b03821660009081526020819052604090205460ff16155b610ac85760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b6044820152606401610481565b6001600160a01b03831660009081526001602052604090205481811015610b405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b610b4a8282611094565b6001600160a01b038516600090815260016020526040902055600754829015801590610b8457506009546001600160a01b03868116911614155b15610c39576000610ba46007546064610b9d919061110c565b8390610d57565b6009546001600160a01b0316600090815260016020526040902054909150610bcc9082610da0565b600980546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c358482610dff565b9350505b6000600854118015610c5957506009546001600160a01b03868116911614155b15610cd4576000610c726008546064610b9d919061110c565b600354909150610c829082610dff565b6003556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610cd08482610dff565b9350505b6001600160a01b03841660009081526001602052604081208054859290610cfc9084906110a7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d4891815260200190565b60405180910390a35050505050565b6000610d9983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e41565b9392505050565b600080610dad83856110a7565b905083811015610d995760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610481565b6000610d9983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e78565b60008183610e625760405162461bcd60e51b81526004016104819190610ea9565b506000610e6f848661110c565b95945050505050565b60008184841115610e9c5760405162461bcd60e51b81526004016104819190610ea9565b506000610e6f8486611094565b600060208083528351808285015260005b81811015610ed657858101830151858201604001528201610eba565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f0e57600080fd5b919050565b60008060408385031215610f2657600080fd5b610f2f83610ef7565b946020939093013593505050565b600080600060608486031215610f5257600080fd5b610f5b84610ef7565b9250610f6960208501610ef7565b9150604084013590509250925092565b600060208284031215610f8b57600080fd5b610d9982610ef7565b8015158114610fa257600080fd5b50565b60008060408385031215610fb857600080fd5b610fc183610ef7565b91506020830135610fd181610f94565b809150509250929050565b600080600060608486031215610ff157600080fd5b833592506020840135915061100860408501610ef7565b90509250925092565b6000806040838503121561102457600080fd5b61102d83610ef7565b915061103b60208401610ef7565b90509250929050565b600181811c9082168061105857607f821691505b60208210810361107857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103ed576103ed61107e565b808201808211156103ed576103ed61107e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561110157600080fd5b8151610d9981610f94565b60008261112957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122084326d409ee3323ea70cc4670c18918ef6e7e9ddb19c3e805149fe0a852f015564736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000017dfcdece4000000000000000000000000000000000000000000000000000000000000000006300000000000000000000000000000000000000000000000000000000000000000000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed0000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000008596573204368616400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035945530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063875ae990116100c3578063aa797dbc1161007c578063aa797dbc146102b6578063b2bdfa7b146102d9578063cf820461146102ec578063dd62ed3e146102f5578063f2fde38b1461032e578063fce589d81461034157600080fd5b8063875ae990146102515780638980f11f146102645780638da5cb5b1461027757806395d89b4114610288578063a457c2d714610290578063a9059cbb146102a357600080fd5b8063313ce56711610115578063313ce567146101c557806339509351146101cd57806370a08231146101e0578063715018a6146102095780637b7e8bac14610213578063869236111461023e57600080fd5b806306fdde0314610152578063095ea7b31461017057806310c8aeac1461019357806318160ddd146101aa57806323b872dd146101b2575b600080fd5b61015a61034a565b6040516101679190610ea9565b60405180910390f35b61018361017e366004610f13565b6103dc565b6040519015158152602001610167565b61019c600b5481565b604051908152602001610167565b60035461019c565b6101836101c0366004610f3d565b6103f3565b60045461019c565b6101836101db366004610f13565b6104a9565b61019c6101ee366004610f79565b6001600160a01b031660009081526001602052604090205490565b6102116104e0565b005b600954610226906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61021161024c366004610fa5565b610554565b61021161025f366004610fdc565b6105a9565b610211610272366004610f13565b6105fd565b600a546001600160a01b0316610226565b61015a6106be565b61018361029e366004610f13565b6106cd565b6101836102b1366004610f13565b610768565b6101836102c4366004610f79565b60006020819052908152604090205460ff1681565b600a54610226906001600160a01b031681565b61019c60075481565b61019c610303366004611011565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021161033c366004610f79565b610775565b61019c60085481565b60606005805461035990611044565b80601f016020809104026020016040519081016040528092919081815260200182805461038590611044565b80156103d25780601f106103a7576101008083540402835291602001916103d2565b820191906000526020600020905b8154815290600101906020018083116103b557829003601f168201915b5050505050905090565b60006103e9338484610860565b5060015b92915050565b6000610400848484610984565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561048a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049e85336104998685611094565b610860565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103e99185906104999086906110a7565b600a546001600160a01b0316331461050a5760405162461bcd60e51b8152600401610481906110ba565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461057e5760405162461bcd60e51b8152600401610481906110ba565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600a546001600160a01b031633146105d35760405162461bcd60e51b8152600401610481906110ba565b600792909255600855600980546001600160a01b0319166001600160a01b03909216919091179055565b600a546001600160a01b031633146106275760405162461bcd60e51b8152600401610481906110ba565b816001600160a01b031663a9059cbb610648600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b991906110ef565b505050565b60606006805461035990611044565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561074f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610481565b61075e33856104998685611094565b5060019392505050565b60006103e9338484610984565b600a546001600160a01b0316331461079f5760405162461bcd60e51b8152600401610481906110ba565b6001600160a01b0381166108045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166109235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b038216610a4a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b03831660009081526020819052604090205460ff16158015610a8c57506001600160a01b03821660009081526020819052604090205460ff16155b610ac85760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b6044820152606401610481565b6001600160a01b03831660009081526001602052604090205481811015610b405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b610b4a8282611094565b6001600160a01b038516600090815260016020526040902055600754829015801590610b8457506009546001600160a01b03868116911614155b15610c39576000610ba46007546064610b9d919061110c565b8390610d57565b6009546001600160a01b0316600090815260016020526040902054909150610bcc9082610da0565b600980546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c358482610dff565b9350505b6000600854118015610c5957506009546001600160a01b03868116911614155b15610cd4576000610c726008546064610b9d919061110c565b600354909150610c829082610dff565b6003556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610cd08482610dff565b9350505b6001600160a01b03841660009081526001602052604081208054859290610cfc9084906110a7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d4891815260200190565b60405180910390a35050505050565b6000610d9983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e41565b9392505050565b600080610dad83856110a7565b905083811015610d995760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610481565b6000610d9983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e78565b60008183610e625760405162461bcd60e51b81526004016104819190610ea9565b506000610e6f848661110c565b95945050505050565b60008184841115610e9c5760405162461bcd60e51b81526004016104819190610ea9565b506000610e6f8486611094565b600060208083528351808285015260005b81811015610ed657858101830151858201604001528201610eba565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f0e57600080fd5b919050565b60008060408385031215610f2657600080fd5b610f2f83610ef7565b946020939093013593505050565b600080600060608486031215610f5257600080fd5b610f5b84610ef7565b9250610f6960208501610ef7565b9150604084013590509250925092565b600060208284031215610f8b57600080fd5b610d9982610ef7565b8015158114610fa257600080fd5b50565b60008060408385031215610fb857600080fd5b610fc183610ef7565b91506020830135610fd181610f94565b809150509250929050565b600080600060608486031215610ff157600080fd5b833592506020840135915061100860408501610ef7565b90509250925092565b6000806040838503121561102457600080fd5b61102d83610ef7565b915061103b60208401610ef7565b90509250929050565b600181811c9082168061105857607f821691505b60208210810361107857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103ed576103ed61107e565b808201808211156103ed576103ed61107e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561110157600080fd5b8151610d9981610f94565b60008261112957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122084326d409ee3323ea70cc4670c18918ef6e7e9ddb19c3e805149fe0a852f015564736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000017dfcdece4000000000000000000000000000000000000000000000000000000000000000006300000000000000000000000000000000000000000000000000000000000000000000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed0000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000008596573204368616400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035945530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Yes Chad
Arg [1] : symbol_ (string): YES
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 420000000000000
Arg [4] : _txFee (uint256): 99
Arg [5] : _burnFee (uint256): 0
Arg [6] : _FeeAddress (address): 0x6927aF1942D1F90067d99bc7C29CF99027e47fEd
Arg [7] : tokenOwner (address): 0x6927aF1942D1F90067d99bc7C29CF99027e47fEd
Arg [8] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000017dfcdece4000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed
Arg [7] : 0000000000000000000000006927af1942d1f90067d99bc7c29cf99027e47fed
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 5965732043686164000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 5945530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22036:1079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9041:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11357:175;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11357:175:0;1004:187:1;22084:63:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;22084:63:0;1196:177:1;10234:112:0;10324:12;;10234:112;;12044:438;;;;;;:::i;:::-;;:::i;10053:106::-;10140:9;;10053:106;;12919:221;;;;;;:::i;:::-;;:::i;10419:131::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10522:18:0;10493:7;10522:18;;;:9;:18;;;;;;;10419:131;20723:154;;;:::i;:::-;;8423:25;;;;;-1:-1:-1;;;;;8423:25:0;;;;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;8423:25:0;1902:203:1;22969:117:0;;;;;;:::i;:::-;;:::i;22763:194::-;;;;;;:::i;:::-;;:::i;21820:164::-;;;;;;:::i;:::-;;:::i;20034:91::-;20109:6;;-1:-1:-1;;;;;20109:6:0;20034:91;;9276:108;;;:::i;13675:389::-;;;;;;:::i;:::-;;:::i;10783:181::-;;;;;;:::i;:::-;;:::i;8018:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19821:21;;;;;-1:-1:-1;;;;;19821:21:0;;;8363:20;;;;;;11037:155;;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;;;11126:7;11155:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11037:155;21044:252;;;;;;:::i;:::-;;:::i;8392:22::-;;;;;;9041:104;9095:13;9130:5;9123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9041:104;:::o;11357:175::-;11440:4;11459:39;6282:10;11482:7;11491:6;11459:8;:39::i;:::-;-1:-1:-1;11518:4:0;11357:175;;;;;:::o;12044:438::-;12150:4;12169:36;12179:6;12187:9;12198:6;12169:9;:36::i;:::-;-1:-1:-1;;;;;12249:19:0;;12222:24;12249:19;;;:11;:19;;;;;;;;6282:10;12249:33;;;;;;;;12303:26;;;;12295:79;;;;-1:-1:-1;;;12295:79:0;;3732:2:1;12295:79:0;;;3714:21:1;3771:2;3751:18;;;3744:30;3810:34;3790:18;;;3783:62;-1:-1:-1;;;3861:18:1;;;3854:38;3909:19;;12295:79:0;;;;;;;;;12387:57;12396:6;6282:10;12418:25;12437:6;12418:16;:25;:::i;:::-;12387:8;:57::i;:::-;-1:-1:-1;12468:4:0;;12044:438;-1:-1:-1;;;;12044:438:0:o;12919:221::-;6282:10;13007:4;13058:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13058:34:0;;;;;;;;;;13007:4;;13026:80;;13049:7;;13058:47;;13095:10;;13058:47;:::i;20723:154::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;20816:6:::1;::::0;20795:40:::1;::::0;20832:1:::1;::::0;-1:-1:-1;;;;;20816:6:0::1;::::0;20795:40:::1;::::0;20832:1;;20795:40:::1;20848:6;:19:::0;;-1:-1:-1;;;;;;20848:19:0::1;::::0;;20723:154::o;22969:117::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23051:17:0;;;::::1;:8;:17:::0;;;::::1;::::0;;;;;;:25;;-1:-1:-1;;23051:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22969:117::o;22763:194::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;22865:5:::1;:14:::0;;;;22892:7:::1;:18:::0;22923:10:::1;:24:::0;;-1:-1:-1;;;;;;22923:24:0::1;-1:-1:-1::0;;;;;22923:24:0;;::::1;::::0;;;::::1;::::0;;22763:194::o;21820:164::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;21930:12:::1;-1:-1:-1::0;;;;;21923:29:0::1;;21953:7;20109:6:::0;;-1:-1:-1;;;;;20109:6:0;;20034:91;21953:7:::1;21923:51;::::0;-1:-1:-1;;;;;;21923:51:0::1;::::0;;;;;;-1:-1:-1;;;;;4887:32:1;;;21923:51:0::1;::::0;::::1;4869::1::0;4936:18;;;4929:34;;;4842:18;;21923:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21820:164:::0;;:::o;9276:108::-;9332:13;9367:7;9360:14;;;;;:::i;13675:389::-;6282:10;13768:4;13814:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13814:34:0;;;;;;;;;;13869:35;;;;13861:85;;;;-1:-1:-1;;;13861:85:0;;5426:2:1;13861:85:0;;;5408:21:1;5465:2;5445:18;;;5438:30;5504:34;5484:18;;;5477:62;-1:-1:-1;;;5555:18:1;;;5548:35;5600:19;;13861:85:0;5224:401:1;13861:85:0;13959:67;6282:10;13982:7;13991:34;14010:15;13991:16;:34;:::i;13959:67::-;-1:-1:-1;14050:4:0;;13675:389;-1:-1:-1;;;13675:389:0:o;10783:181::-;10869:4;10888:42;6282:10;10912:9;10923:6;10888:9;:42::i;21044:252::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21135:22:0;::::1;21127:73;;;::::0;-1:-1:-1;;;21127:73:0;;5832:2:1;21127:73:0::1;::::0;::::1;5814:21:1::0;5871:2;5851:18;;;5844:30;5910:34;5890:18;;;5883:62;-1:-1:-1;;;5961:18:1;;;5954:36;6007:19;;21127:73:0::1;5630:402:1::0;21127:73:0::1;21239:6;::::0;21218:38:::1;::::0;-1:-1:-1;;;;;21218:38:0;;::::1;::::0;21239:6:::1;::::0;21218:38:::1;::::0;21239:6:::1;::::0;21218:38:::1;21269:6;:17:::0;;-1:-1:-1;;;;;;21269:17:0::1;-1:-1:-1::0;;;;;21269:17:0;;;::::1;::::0;;;::::1;::::0;;21044:252::o;18048:358::-;-1:-1:-1;;;;;18152:19:0;;18144:68;;;;-1:-1:-1;;;18144:68:0;;6239:2:1;18144:68:0;;;6221:21:1;6278:2;6258:18;;;6251:30;6317:34;6297:18;;;6290:62;-1:-1:-1;;;6368:18:1;;;6361:34;6412:19;;18144:68:0;6037:400:1;18144:68:0;-1:-1:-1;;;;;18233:21:0;;18225:68;;;;-1:-1:-1;;;18225:68:0;;6644:2:1;18225:68:0;;;6626:21:1;6683:2;6663:18;;;6656:30;6722:34;6702:18;;;6695:62;-1:-1:-1;;;6773:18:1;;;6766:32;6815:19;;18225:68:0;6442:398:1;18225:68:0;-1:-1:-1;;;;;18310:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18364:32;;1342:25:1;;;18364:32:0;;1315:18:1;18364:32:0;;;;;;;18048:358;;;:::o;14586:1461::-;-1:-1:-1;;;;;14694:20:0;;14686:70;;;;-1:-1:-1;;;14686:70:0;;7047:2:1;14686:70:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:35;7221:19;;14686:70:0;6845:401:1;14686:70:0;-1:-1:-1;;;;;14777:23:0;;14769:71;;;;-1:-1:-1;;;14769:71:0;;7453:2:1;14769:71:0;;;7435:21:1;7492:2;7472:18;;;7465:30;7531:34;7511:18;;;7504:62;-1:-1:-1;;;7582:18:1;;;7575:33;7625:19;;14769:71:0;7251:399:1;14769:71:0;-1:-1:-1;;;;;14866:16:0;;:8;:16;;;;;;;;;;;;;14865:17;:41;;;;-1:-1:-1;;;;;;14887:19:0;;:8;:19;;;;;;;;;;;;;14886:20;14865:41;14857:67;;;;-1:-1:-1;;;14857:67:0;;7857:2:1;14857:67:0;;;7839:21:1;7896:2;7876:18;;;7869:30;-1:-1:-1;;;7915:18:1;;;7908:43;7968:18;;14857:67:0;7655:337:1;14857:67:0;-1:-1:-1;;;;;15037:17:0;;15013:21;15037:17;;;:9;:17;;;;;;15075:23;;;;15067:74;;;;-1:-1:-1;;;15067:74:0;;8199:2:1;15067:74:0;;;8181:21:1;8238:2;8218:18;;;8211:30;8277:34;8257:18;;;8250:62;-1:-1:-1;;;8328:18:1;;;8321:36;8374:19;;15067:74:0;7997:402:1;15067:74:0;15174:22;15190:6;15174:13;:22;:::i;:::-;-1:-1:-1;;;;;15154:17:0;;;;;;:9;:17;;;;;:42;15255:5;;15233:6;;15255:9;;;;:33;;-1:-1:-1;15278:10:0;;-1:-1:-1;;;;;15268:20:0;;;15278:10;;15268:20;;15255:33;15252:362;;;15306:30;15339:35;15367:5;;15361:3;:11;;;;:::i;:::-;15339:9;;:13;:35::i;:::-;15425:10;;-1:-1:-1;;;;;15425:10:0;15415:21;;;;:9;:21;;;;;;15306:68;;-1:-1:-1;15415:49:0;;15306:68;15415:25;:49::i;:::-;15401:10;;;-1:-1:-1;;;;;15401:10:0;;;15391:21;;;;:9;:21;;;;;;;;;:73;;;;15503:10;;15486:52;;1342:25:1;;;15503:10:0;;;;15486:52;;;;;;1315:18:1;15486:52:0;;;;;;;15565:34;:6;15576:22;15565:10;:34::i;:::-;15555:44;;15289:325;15252:362;15651:1;15641:7;;:11;:35;;;;-1:-1:-1;15666:10:0;;-1:-1:-1;;;;;15656:20:0;;;15666:10;;15656:20;;15641:35;15638:296;;;15694:17;15714:37;15742:7;;15736:3;:13;;;;:::i;15714:37::-;15783:12;;15694:57;;-1:-1:-1;15783:27:0;;15694:57;15783:16;:27::i;:::-;15768:12;:42;15832:39;;1342:25:1;;;15857:1:0;;-1:-1:-1;;;;;15832:39:0;;;;;1330:2:1;1315:18;15832:39:0;;;;;;;15898:21;:6;15909:9;15898:10;:21::i;:::-;15888:31;;15677:257;15638:296;-1:-1:-1;;;;;15950:20:0;;;;;;:9;:20;;;;;:30;;15974:6;;15950:20;:30;;15974:6;;15950:30;:::i;:::-;;;;;;;;16019:9;-1:-1:-1;;;;;16002:35:0;16011:6;-1:-1:-1;;;;;16002:35:0;;16030:6;16002:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16002:35:0;;;;;;;;14673:1374;;14586:1461;;;:::o;1183:136::-;1241:7;1270:39;1274:1;1277;1270:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;1263:46;1183:136;-1:-1:-1;;;1183:136:0:o;107:191::-;165:7;;199:5;203:1;199;:5;:::i;:::-;187:17;;230:1;225;:6;;217:46;;;;-1:-1:-1;;;217:46:0;;8828:2:1;217:46:0;;;8810:21:1;8867:2;8847:18;;;8840:30;8906:29;8886:18;;;8879:57;8953:18;;217:46:0;8626:351:1;310:140:0;368:7;397:43;401:1;404;397:43;;;;;;;;;;;;;;;;;:3;:43::i;1331:290::-;1417:7;1454:12;1447:5;1439:28;;;;-1:-1:-1;;;1439:28:0;;;;;;;;:::i;:::-;-1:-1:-1;1480:9:0;1492:5;1496:1;1492;:5;:::i;:::-;1480:17;1331:290;-1:-1:-1;;;;;1331:290:0:o;462:202::-;548:7;586:12;578:6;;;;570:29;;;;-1:-1:-1;;;570:29:0;;;;;;;;:::i;:::-;-1:-1:-1;612:9:0;624:5;628:1;624;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;2110:118::-;2196:5;2189:13;2182:21;2175:5;2172:32;2162:60;;2218:1;2215;2208:12;2162:60;2110:118;:::o;2233:315::-;2298:6;2306;2359:2;2347:9;2338:7;2334:23;2330:32;2327:52;;;2375:1;2372;2365:12;2327:52;2398:29;2417:9;2398:29;:::i;:::-;2388:39;;2477:2;2466:9;2462:18;2449:32;2490:28;2512:5;2490:28;:::i;:::-;2537:5;2527:15;;;2233:315;;;;;:::o;2553:322::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2751:9;2738:23;2728:33;;2808:2;2797:9;2793:18;2780:32;2770:42;;2831:38;2865:2;2854:9;2850:18;2831:38;:::i;:::-;2821:48;;2553:322;;;;;:::o;2880:260::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;;3096:38;3130:2;3119:9;3115:18;3096:38;:::i;:::-;3086:48;;2880:260;;;;;:::o;3145:380::-;3224:1;3220:12;;;;3267;;;3288:61;;3342:4;3334:6;3330:17;3320:27;;3288:61;3395:2;3387:6;3384:14;3364:18;3361:38;3358:161;;3441:10;3436:3;3432:20;3429:1;3422:31;3476:4;3473:1;3466:15;3504:4;3501:1;3494:15;3358:161;;3145:380;;;:::o;3939:127::-;4000:10;3995:3;3991:20;3988:1;3981:31;4031:4;4028:1;4021:15;4055:4;4052:1;4045:15;4071:128;4138:9;;;4159:11;;;4156:37;;;4173:18;;:::i;4204:125::-;4269:9;;;4290:10;;;4287:36;;;4303:18;;:::i;4334:356::-;4536:2;4518:21;;;4555:18;;;4548:30;4614:34;4609:2;4594:18;;4587:62;4681:2;4666:18;;4334:356::o;4974:245::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;5142:9;5136:16;5161:28;5183:5;5161:28;:::i;8404:217::-;8444:1;8470;8460:132;;8514:10;8509:3;8505:20;8502:1;8495:31;8549:4;8546:1;8539:15;8577:4;8574:1;8567:15;8460:132;-1:-1:-1;8606:9:1;;8404:217::o

Swarm Source

ipfs://84326d409ee3323ea70cc4670c18918ef6e7e9ddb19c3e805149fe0a852f0155
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.