ETH Price: $2,501.00 (-0.62%)

Token

AMMO (AMMO)
 

Overview

Max Total Supply

280,000,000,000,000 AMMO

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,236,460,782,488.753515625 AMMO

Value
$0.00
0x5793C281e50266d1Cc25FfE051440C4CCd01A8A9
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:
AMMO

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

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

interface IDEXRouter {
   function factory() external pure returns (address);
   function WETH() external pure returns (address);
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

contract AMMO is ERC20, Ownable {

	address public taxWallet;
	address private pair;
	
	uint256 private initialBuyFee;
	uint256 private initialSellFee;
	uint256 private finalBuyFee;
	uint256 private finalSellFee;
	uint256 private buyCount;
	uint256 private reduceBuyFeeAt;
    uint256 private reduceSellFeeAt;
    uint256 private preventSwapBefore;
	
	uint256 public swapThreshold;
	uint256 public maxTokenPerWallet;
	uint256 public maxTokenPerTxn;
	
	bool private swapping;
	bool private tradingEnabled;
    bool private swapEnabled;
	bool public transferDelayEnabled;
	
	IDEXRouter public router;
    
	mapping(address => bool) private isExcludedFromFees;
	mapping(address => bool) public isBot;
	mapping(address => uint256) private holderLastTransferTimestamp;
	
    constructor(address owner) ERC20("AMMO", "AMMO") {
	   taxWallet = address(owner);
	   
	   initialBuyFee = 20;
	   initialSellFee = 20;
	   finalBuyFee = 1;
	   finalSellFee = 1;
	   reduceBuyFeeAt = 20;
       reduceSellFeeAt = 40;
       preventSwapBefore = 40;
	   
	   transferDelayEnabled = true;
	   
	   isExcludedFromFees[address(this)] = true;
	   isExcludedFromFees[address(owner)] = true;
	   isExcludedFromFees[address(taxWallet)] = true;
	   
	   swapThreshold = 840000000000 * (10**18);
	   maxTokenPerWallet = 5600000000000 * (10**18);
	   maxTokenPerTxn = 2800000000000 * (10**18);
	   
       _mint(address(owner), 280000000000000 * (10**18));
	   _transferOwnership(address(owner));
    }
	
	receive() external payable {}
	
	function startTrading() external onlyOwner {
	   require(!tradingEnabled, "Trading already started");
	   
	   router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
       pair = IDEXFactory(router.factory()).createPair(address(this), router.WETH());
	   
	   _approve(address(this), address(router), totalSupply());
       router.addLiquidityETH{value: address(this).balance}(
		 address(this),
		 balanceOf(address(this)),
		 0, 
		 0,
		 owner(),
		 block.timestamp
       );
	   
       tradingEnabled = true;
       swapEnabled = true;
    }
	
	function removeLimits() external onlyOwner {
	   require(transferDelayEnabled, "Limit already removed");
	   
	   maxTokenPerWallet = totalSupply();
	   maxTokenPerTxn = totalSupply();	
       transferDelayEnabled = false;
    }
	
	function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20) {      
        require(sender != address(0), "transfer from the zero address");
        require(recipient != address(0), "transfer to the zero address");
		
		uint256 fees;
		uint256 taxApplicable;
		if(sender != owner() && recipient != owner())
		{
		    require(!isBot[sender] && !isBot[recipient], "transfer:: Bot transaction detected");
			
			taxApplicable = buyCount > reduceBuyFeeAt ? finalBuyFee : initialBuyFee;
			fees = ((amount * taxApplicable) / 100);
			
			if(transferDelayEnabled && sender != address(router) && recipient != address(pair)) 
			{
			   require(holderLastTransferTimestamp[tx.origin] < block.number, "transfer:: Transfer Delay enabled. Only one purchase per block allowed.");
               holderLastTransferTimestamp[tx.origin] = block.number;
            }
			if(sender == address(pair) && recipient != address(router) && !isExcludedFromFees[recipient]) 
			{
			    require(amount <= maxTokenPerTxn, "Buy transfer amount exceeds the maxTokenPerTxn.");
			    require(amount + balanceOf(recipient) <= maxTokenPerWallet, "maxTokenPerWallet exceeded");
			    buyCount++;
			}
			if(recipient == address(pair) && sender != address(this))
			{
                taxApplicable = buyCount > reduceSellFeeAt ? finalSellFee : initialSellFee;
			    fees = ((amount * taxApplicable) / 100);
            }
		}
		
		uint256 contractTokenBalance = balanceOf(address(this));
		bool canSwap = contractTokenBalance >= swapThreshold;
		
		if(!swapping && canSwap && recipient == address(pair) && buyCount > preventSwapBefore) 
		{
			swapping = true;
			
			swapTokensForETH(min(amount, swapThreshold));
			uint256 ethBalance = address(this).balance;
			payable(taxWallet).transfer(ethBalance);
			
			swapping = false; 
		}
		if(fees > 0) 
		{
		   super._transfer(sender, address(this), fees);
		}
		super._transfer(sender, recipient, amount - fees);
    }
	
	function min(uint256 a, uint256 b) private pure returns (uint256){
        return (a > b) ? b : a;
    }
	
	function swapTokensForETH(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
		
        _approve(address(this), address(router), amount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
	
	function manualSwap() external {
        require(address(msg.sender)== taxWallet, 'Incorrect request');
		
        uint256 tokenBalance = balanceOf(address(this));
        if(tokenBalance > 0)
		{
           swapTokensForETH(tokenBalance);
        }
        uint256 ethBalance = address(this).balance;
        if(ethBalance > 0)
		{
           payable(taxWallet).transfer(ethBalance);
        }
    }
	
	function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) 
		{
           isBot[bots_[i]] = true;
        }
    }

    function delBots(address[] memory notbot) public onlyOwner {
       for (uint i = 0; i < notbot.length; i++) 
	   {
          isBot[notbot[i]] = false;
       }
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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 {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 Contracts guidelines: functions revert
 * instead 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 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 (uint8) {
        return 18;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"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":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162001f6338038062001f63833981016040819052620000349162000383565b604080518082018252600480825263414d4d4f60e01b6020808401828152855180870190965292855284015281519192916200007391600391620002dd565b50805162000089906004906020840190620002dd565b505050620000a6620000a06200019f60201b60201c565b620001a3565b600680546001600160a01b038084166001600160a01b0319909216821783556014600881905560098190556001600a819055600b819055600d8290556028600e819055600f556013805463ff000000191663010000001790553060009081526020929092526040808320805460ff19908116841790915594835280832080548616831790559454909216815292909220805490911690911790556c0a9a2fb6ec6424c7d9400000006010556c46ae936e27f0f53453000000006011556c235749b713f87a9a29800000006012556200018d816d0dce18cb83cd0fe4383600000000620001f5565b6200019881620001a3565b5062000419565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002649190620003b5565b90915550506001600160a01b0382166000908152602081905260408120805483929062000293908490620003b5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002eb90620003dc565b90600052602060002090601f0160209004810192826200030f57600085556200035a565b82601f106200032a57805160ff19168380011785556200035a565b828001600101855582156200035a579182015b828111156200035a5782518255916020019190600101906200033d565b50620003689291506200036c565b5090565b5b808211156200036857600081556001016200036d565b6000602082840312156200039657600080fd5b81516001600160a01b0381168114620003ae57600080fd5b9392505050565b60008219821115620003d757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b611b3a80620004296000396000f3fe6080604052600436106101855760003560e01c806370a08231116100d1578063a457c2d71161008a578063d34628cc11610064578063d34628cc14610451578063dd62ed3e14610471578063f2fde38b14610491578063f887ea40146104b157600080fd5b8063a457c2d7146103f0578063a9059cbb14610410578063c876d0b91461043057600080fd5b806370a0823114610347578063715018a61461037d578063751039fc146103925780637a8baf52146103a75780638da5cb5b146103bd57806395d89b41146103db57600080fd5b80632dc0562d1161013e578063395093511161011857806339509351146102cc5780633bbac579146102ec578063510622d51461031c57806351bc3c851461033257600080fd5b80632dc0562d14610258578063313ce5671461029057806331c2d847146102ac57600080fd5b80630445b6671461019157806306fdde03146101ba578063095ea7b3146101dc57806318160ddd1461020c57806323b872dd14610221578063293230b81461024157600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a760105481565b6040519081526020015b60405180910390f35b3480156101c657600080fd5b506101cf6104d8565b6040516101b1919061173e565b3480156101e857600080fd5b506101fc6101f73660046117b8565b61056a565b60405190151581526020016101b1565b34801561021857600080fd5b506002546101a7565b34801561022d57600080fd5b506101fc61023c3660046117e4565b610582565b34801561024d57600080fd5b506102566105a6565b005b34801561026457600080fd5b50600654610278906001600160a01b031681565b6040516001600160a01b0390911681526020016101b1565b34801561029c57600080fd5b50604051601281526020016101b1565b3480156102b857600080fd5b506102566102c736600461183b565b6108c5565b3480156102d857600080fd5b506101fc6102e73660046117b8565b610939565b3480156102f857600080fd5b506101fc610307366004611900565b60156020526000908152604090205460ff1681565b34801561032857600080fd5b506101a760125481565b34801561033e57600080fd5b50610256610956565b34801561035357600080fd5b506101a7610362366004611900565b6001600160a01b031660009081526020819052604090205490565b34801561038957600080fd5b50610256610a09565b34801561039e57600080fd5b50610256610a1d565b3480156103b357600080fd5b506101a760115481565b3480156103c957600080fd5b506005546001600160a01b0316610278565b3480156103e757600080fd5b506101cf610a91565b3480156103fc57600080fd5b506101fc61040b3660046117b8565b610aa0565b34801561041c57600080fd5b506101fc61042b3660046117b8565b610b1b565b34801561043c57600080fd5b506013546101fc906301000000900460ff1681565b34801561045d57600080fd5b5061025661046c36600461183b565b610b29565b34801561047d57600080fd5b506101a761048c36600461191d565b610b99565b34801561049d57600080fd5b506102566104ac366004611900565b610bc4565b3480156104bd57600080fd5b5060135461027890600160201b90046001600160a01b031681565b6060600380546104e790611956565b80601f016020809104026020016040519081016040528092919081815260200182805461051390611956565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600033610578818585610c3d565b5060019392505050565b600033610590858285610d61565b61059b858585610ddb565b506001949350505050565b6105ae61132b565b601354610100900460ff161561060b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479207374617274656400000000000000000060448201526064015b60405180910390fd5b60138054777a250d5630b4cf539739df2c5dacb4c659f2488d00000000640100000000600160c01b031990911617908190556040805163c45a015560e01b81529051600160201b9092046001600160a01b03169163c45a0155916004818101926020929091908290030181865afa15801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190611991565b6001600160a01b031663c9c6539630601360049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610710573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107349190611991565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a59190611991565b600780546001600160a01b0319166001600160a01b039283161790556013546002546107e0923092600160201b90041690610c3d565b610c3d565b60135430600081815260208190526040902054600160201b9092046001600160a01b03169163f305d7199147916000806108226005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561088a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108af91906119ae565b50506013805462ffff0019166201010017905550565b6108cd61132b565b60005b8151811015610935576000601560008484815181106108f1576108f16119dc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061092d81611a08565b9150506108d0565b5050565b60003361057881858561094c8383610b99565b6107db9190611a23565b6006546001600160a01b031633146109a45760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c995c5d595cdd607a1b6044820152606401610602565b3060009081526020819052604090205480156109c3576109c381611385565b478015610935576006546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a04573d6000803e3d6000fd5b505050565b610a1161132b565b610a1b6000611506565b565b610a2561132b565b6013546301000000900460ff16610a765760405162461bcd60e51b8152602060048201526015602482015274131a5b5a5d08185b1c9958591e481c995b5bdd9959605a1b6044820152606401610602565b6002546011556002546012556013805463ff00000019169055565b6060600480546104e790611956565b60003381610aae8286610b99565b905083811015610b0e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610602565b61059b8286868403610c3d565b600033610578818585610ddb565b610b3161132b565b60005b815181101561093557600160156000848481518110610b5557610b556119dc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b9181611a08565b915050610b34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bcc61132b565b6001600160a01b038116610c315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610602565b610c3a81611506565b50565b6001600160a01b038316610c9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610602565b6001600160a01b038216610d005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610602565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d6d8484610b99565b90506000198114610dd55781811015610dc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610602565b610dd58484848403610c3d565b50505050565b6001600160a01b038316610e315760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610602565b6001600160a01b038216610e875760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610602565b600080610e9c6005546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015610ecb57506005546001600160a01b03858116911614155b1561123d576001600160a01b03851660009081526015602052604090205460ff16158015610f1257506001600160a01b03841660009081526015602052604090205460ff16155b610f6a5760405162461bcd60e51b815260206004820152602360248201527f7472616e736665723a3a20426f74207472616e73616374696f6e2064657465636044820152621d195960ea1b6064820152608401610602565b600d54600c5411610f7d57600854610f81565b600a545b90506064610f8f8285611a3b565b610f999190611a5a565b6013549092506301000000900460ff168015610fca57506013546001600160a01b03868116600160201b9092041614155b8015610fe457506007546001600160a01b03858116911614155b156110905732600090815260166020526040902054431161107d5760405162461bcd60e51b815260206004820152604760248201527f7472616e736665723a3a205472616e736665722044656c617920656e61626c6560448201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610602565b3260009081526016602052604090204390555b6007546001600160a01b0386811691161480156110c257506013546001600160a01b03858116600160201b9092041614155b80156110e757506001600160a01b03841660009081526014602052604090205460ff16155b156111e0576012548311156111565760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a37b5b2b72832b92a3c371760891b6064820152608401610602565b6011546001600160a01b03851660009081526020819052604090205461117c9085611a23565b11156111ca5760405162461bcd60e51b815260206004820152601a60248201527f6d6178546f6b656e50657257616c6c65742065786365656465640000000000006044820152606401610602565b600c80549060006111da83611a08565b91905055505b6007546001600160a01b03858116911614801561120657506001600160a01b0385163014155b1561123d57600e54600c541161121e57600954611222565b600b545b905060646112308285611a3b565b61123a9190611a5a565b91505b30600090815260208190526040902054601054601354908210159060ff161580156112655750805b801561127e57506007546001600160a01b038781169116145b801561128d5750600f54600c54115b156112fd576013805460ff191660011790556010546112b6906112b1908790611558565b611385565b60065460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156112f0573d6000803e3d6000fd5b50506013805460ff191690555b831561130e5761130e873086611570565b611322878761131d8789611a7c565b611570565b50505050505050565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610602565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113ba576113ba6119dc565b60200260200101906001600160a01b031690816001600160a01b031681525050601360049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561142d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114519190611991565b81600181518110611464576114646119dc565b6001600160a01b039283166020918202929092010152601354611491913091600160201b90041684610c3d565b60135460405163791ac94760e01b8152600160201b9091046001600160a01b03169063791ac947906114d0908590600090869030904290600401611a93565b600060405180830381600087803b1580156114ea57600080fd5b505af11580156114fe573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183116115675782611569565b815b9392505050565b6001600160a01b0383166115d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610602565b6001600160a01b0382166116365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610602565b6001600160a01b038316600090815260208190526040902054818110156116ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610602565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116e5908490611a23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173191815260200190565b60405180910390a3610dd5565b600060208083528351808285015260005b8181101561176b5785810183015185820160400152820161174f565b8181111561177d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c3a57600080fd5b80356117b381611793565b919050565b600080604083850312156117cb57600080fd5b82356117d681611793565b946020939093013593505050565b6000806000606084860312156117f957600080fd5b833561180481611793565b9250602084013561181481611793565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561184e57600080fd5b823567ffffffffffffffff8082111561186657600080fd5b818501915085601f83011261187a57600080fd5b81358181111561188c5761188c611825565b8060051b604051601f19603f830116810181811085821117156118b1576118b1611825565b6040529182528482019250838101850191888311156118cf57600080fd5b938501935b828510156118f4576118e5856117a8565b845293850193928501926118d4565b98975050505050505050565b60006020828403121561191257600080fd5b813561156981611793565b6000806040838503121561193057600080fd5b823561193b81611793565b9150602083013561194b81611793565b809150509250929050565b600181811c9082168061196a57607f821691505b6020821081141561198b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156119a357600080fd5b815161156981611793565b6000806000606084860312156119c357600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611a1c57611a1c6119f2565b5060010190565b60008219821115611a3657611a366119f2565b500190565b6000816000190483118215151615611a5557611a556119f2565b500290565b600082611a7757634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a8e57611a8e6119f2565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae35784516001600160a01b031683529383019391830191600101611abe565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122070f4c0ae22bc9a10f1883ef1147e386c32af5d818e3fc762b820a9eb8cdcf93064736f6c634300080a00330000000000000000000000009e07a93aeaad69d3a26bc3f736201aabf4bce609

Deployed Bytecode

0x6080604052600436106101855760003560e01c806370a08231116100d1578063a457c2d71161008a578063d34628cc11610064578063d34628cc14610451578063dd62ed3e14610471578063f2fde38b14610491578063f887ea40146104b157600080fd5b8063a457c2d7146103f0578063a9059cbb14610410578063c876d0b91461043057600080fd5b806370a0823114610347578063715018a61461037d578063751039fc146103925780637a8baf52146103a75780638da5cb5b146103bd57806395d89b41146103db57600080fd5b80632dc0562d1161013e578063395093511161011857806339509351146102cc5780633bbac579146102ec578063510622d51461031c57806351bc3c851461033257600080fd5b80632dc0562d14610258578063313ce5671461029057806331c2d847146102ac57600080fd5b80630445b6671461019157806306fdde03146101ba578063095ea7b3146101dc57806318160ddd1461020c57806323b872dd14610221578063293230b81461024157600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a760105481565b6040519081526020015b60405180910390f35b3480156101c657600080fd5b506101cf6104d8565b6040516101b1919061173e565b3480156101e857600080fd5b506101fc6101f73660046117b8565b61056a565b60405190151581526020016101b1565b34801561021857600080fd5b506002546101a7565b34801561022d57600080fd5b506101fc61023c3660046117e4565b610582565b34801561024d57600080fd5b506102566105a6565b005b34801561026457600080fd5b50600654610278906001600160a01b031681565b6040516001600160a01b0390911681526020016101b1565b34801561029c57600080fd5b50604051601281526020016101b1565b3480156102b857600080fd5b506102566102c736600461183b565b6108c5565b3480156102d857600080fd5b506101fc6102e73660046117b8565b610939565b3480156102f857600080fd5b506101fc610307366004611900565b60156020526000908152604090205460ff1681565b34801561032857600080fd5b506101a760125481565b34801561033e57600080fd5b50610256610956565b34801561035357600080fd5b506101a7610362366004611900565b6001600160a01b031660009081526020819052604090205490565b34801561038957600080fd5b50610256610a09565b34801561039e57600080fd5b50610256610a1d565b3480156103b357600080fd5b506101a760115481565b3480156103c957600080fd5b506005546001600160a01b0316610278565b3480156103e757600080fd5b506101cf610a91565b3480156103fc57600080fd5b506101fc61040b3660046117b8565b610aa0565b34801561041c57600080fd5b506101fc61042b3660046117b8565b610b1b565b34801561043c57600080fd5b506013546101fc906301000000900460ff1681565b34801561045d57600080fd5b5061025661046c36600461183b565b610b29565b34801561047d57600080fd5b506101a761048c36600461191d565b610b99565b34801561049d57600080fd5b506102566104ac366004611900565b610bc4565b3480156104bd57600080fd5b5060135461027890600160201b90046001600160a01b031681565b6060600380546104e790611956565b80601f016020809104026020016040519081016040528092919081815260200182805461051390611956565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600033610578818585610c3d565b5060019392505050565b600033610590858285610d61565b61059b858585610ddb565b506001949350505050565b6105ae61132b565b601354610100900460ff161561060b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479207374617274656400000000000000000060448201526064015b60405180910390fd5b60138054777a250d5630b4cf539739df2c5dacb4c659f2488d00000000640100000000600160c01b031990911617908190556040805163c45a015560e01b81529051600160201b9092046001600160a01b03169163c45a0155916004818101926020929091908290030181865afa15801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190611991565b6001600160a01b031663c9c6539630601360049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610710573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107349190611991565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a59190611991565b600780546001600160a01b0319166001600160a01b039283161790556013546002546107e0923092600160201b90041690610c3d565b610c3d565b60135430600081815260208190526040902054600160201b9092046001600160a01b03169163f305d7199147916000806108226005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561088a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108af91906119ae565b50506013805462ffff0019166201010017905550565b6108cd61132b565b60005b8151811015610935576000601560008484815181106108f1576108f16119dc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061092d81611a08565b9150506108d0565b5050565b60003361057881858561094c8383610b99565b6107db9190611a23565b6006546001600160a01b031633146109a45760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c995c5d595cdd607a1b6044820152606401610602565b3060009081526020819052604090205480156109c3576109c381611385565b478015610935576006546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a04573d6000803e3d6000fd5b505050565b610a1161132b565b610a1b6000611506565b565b610a2561132b565b6013546301000000900460ff16610a765760405162461bcd60e51b8152602060048201526015602482015274131a5b5a5d08185b1c9958591e481c995b5bdd9959605a1b6044820152606401610602565b6002546011556002546012556013805463ff00000019169055565b6060600480546104e790611956565b60003381610aae8286610b99565b905083811015610b0e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610602565b61059b8286868403610c3d565b600033610578818585610ddb565b610b3161132b565b60005b815181101561093557600160156000848481518110610b5557610b556119dc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b9181611a08565b915050610b34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bcc61132b565b6001600160a01b038116610c315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610602565b610c3a81611506565b50565b6001600160a01b038316610c9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610602565b6001600160a01b038216610d005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610602565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d6d8484610b99565b90506000198114610dd55781811015610dc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610602565b610dd58484848403610c3d565b50505050565b6001600160a01b038316610e315760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610602565b6001600160a01b038216610e875760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610602565b600080610e9c6005546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015610ecb57506005546001600160a01b03858116911614155b1561123d576001600160a01b03851660009081526015602052604090205460ff16158015610f1257506001600160a01b03841660009081526015602052604090205460ff16155b610f6a5760405162461bcd60e51b815260206004820152602360248201527f7472616e736665723a3a20426f74207472616e73616374696f6e2064657465636044820152621d195960ea1b6064820152608401610602565b600d54600c5411610f7d57600854610f81565b600a545b90506064610f8f8285611a3b565b610f999190611a5a565b6013549092506301000000900460ff168015610fca57506013546001600160a01b03868116600160201b9092041614155b8015610fe457506007546001600160a01b03858116911614155b156110905732600090815260166020526040902054431161107d5760405162461bcd60e51b815260206004820152604760248201527f7472616e736665723a3a205472616e736665722044656c617920656e61626c6560448201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610602565b3260009081526016602052604090204390555b6007546001600160a01b0386811691161480156110c257506013546001600160a01b03858116600160201b9092041614155b80156110e757506001600160a01b03841660009081526014602052604090205460ff16155b156111e0576012548311156111565760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a37b5b2b72832b92a3c371760891b6064820152608401610602565b6011546001600160a01b03851660009081526020819052604090205461117c9085611a23565b11156111ca5760405162461bcd60e51b815260206004820152601a60248201527f6d6178546f6b656e50657257616c6c65742065786365656465640000000000006044820152606401610602565b600c80549060006111da83611a08565b91905055505b6007546001600160a01b03858116911614801561120657506001600160a01b0385163014155b1561123d57600e54600c541161121e57600954611222565b600b545b905060646112308285611a3b565b61123a9190611a5a565b91505b30600090815260208190526040902054601054601354908210159060ff161580156112655750805b801561127e57506007546001600160a01b038781169116145b801561128d5750600f54600c54115b156112fd576013805460ff191660011790556010546112b6906112b1908790611558565b611385565b60065460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156112f0573d6000803e3d6000fd5b50506013805460ff191690555b831561130e5761130e873086611570565b611322878761131d8789611a7c565b611570565b50505050505050565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610602565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113ba576113ba6119dc565b60200260200101906001600160a01b031690816001600160a01b031681525050601360049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561142d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114519190611991565b81600181518110611464576114646119dc565b6001600160a01b039283166020918202929092010152601354611491913091600160201b90041684610c3d565b60135460405163791ac94760e01b8152600160201b9091046001600160a01b03169063791ac947906114d0908590600090869030904290600401611a93565b600060405180830381600087803b1580156114ea57600080fd5b505af11580156114fe573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183116115675782611569565b815b9392505050565b6001600160a01b0383166115d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610602565b6001600160a01b0382166116365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610602565b6001600160a01b038316600090815260208190526040902054818110156116ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610602565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116e5908490611a23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173191815260200190565b60405180910390a3610dd5565b600060208083528351808285015260005b8181101561176b5785810183015185820160400152820161174f565b8181111561177d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c3a57600080fd5b80356117b381611793565b919050565b600080604083850312156117cb57600080fd5b82356117d681611793565b946020939093013593505050565b6000806000606084860312156117f957600080fd5b833561180481611793565b9250602084013561181481611793565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561184e57600080fd5b823567ffffffffffffffff8082111561186657600080fd5b818501915085601f83011261187a57600080fd5b81358181111561188c5761188c611825565b8060051b604051601f19603f830116810181811085821117156118b1576118b1611825565b6040529182528482019250838101850191888311156118cf57600080fd5b938501935b828510156118f4576118e5856117a8565b845293850193928501926118d4565b98975050505050505050565b60006020828403121561191257600080fd5b813561156981611793565b6000806040838503121561193057600080fd5b823561193b81611793565b9150602083013561194b81611793565b809150509250929050565b600181811c9082168061196a57607f821691505b6020821081141561198b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156119a357600080fd5b815161156981611793565b6000806000606084860312156119c357600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611a1c57611a1c6119f2565b5060010190565b60008219821115611a3657611a366119f2565b500190565b6000816000190483118215151615611a5557611a556119f2565b500290565b600082611a7757634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a8e57611a8e6119f2565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ae35784516001600160a01b031683529383019391830191600101611abe565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122070f4c0ae22bc9a10f1883ef1147e386c32af5d818e3fc762b820a9eb8cdcf93064736f6c634300080a0033

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

0000000000000000000000009e07a93aeaad69d3a26bc3f736201aabf4bce609

-----Decoded View---------------
Arg [0] : owner (address): 0x9e07A93aEAAd69d3a26BC3F736201AaBf4bCE609

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009e07a93aeaad69d3a26bc3f736201aabf4bce609


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.