ETH Price: $3,379.60 (-8.16%)
 

Overview

Max Total Supply

10,000,000 EVOAI

Holders

1,188

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
856.480631560009079216 EVOAI

Value
$0.00
0xac351d7f9dce85bb315084fdfc499dcaab1e6c55
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:
EVOAI

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : EVOAI.sol
/*
EvolvAi
Two sides of innovation in one platform:
Custom AI Agents – Tailored intelligence for personalized problem-solving.
Blockchain Workflow Automation – Streamlining blockchain processes for seamless efficiency.
Together, they redefine what’s possible in crypto.

TG:https://t.me/evolvaiportal
Web:https://evolvai.xyz
X: https://x.com/evolvaieth

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol"; 

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external;
    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);
}
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract EVOAI is ERC20, Ownable {

    uint256 private buyTax = 30;
    uint256 private sellTax = 30;

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;
    mapping(address => bool) public isExempt;

    address private immutable taxAddress;

    uint256 public maxTransaction;
    uint256 public maxWallet;

    bool private launch = false;
    uint256 private blockLaunch;
    uint256 private lastSellBlock;
    uint256 private sellCount;
    uint256 private minSwap;
    uint256 public maxSwap;
    uint256 private _buyCount= 0;
    bool private inSwap;
    modifier lockSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() ERC20("EvolvAi", "EVOAI") Ownable() payable {
        uint256 totalSupply = 10000000 * 10**18;
    
        taxAddress = 0x27A5032c8f64e8Ae960F868C3870b813212b0059;

        isExempt[msg.sender] = true; 
        isExempt[address(this)] = true; 
        isExempt[taxAddress] = true; 

        _mint(address(this), totalSupply * 85 / 100);
        _mint(msg.sender, totalSupply * 15 / 100); 

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = address(
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH())
        );
        
        maxTransaction = totalSupply * 2 / 100;
        maxWallet = totalSupply * 2 / 100; 
        maxSwap = totalSupply / 100;
        minSwap = totalSupply * 2 / 1000;
    }

    function addLiquidityETH() external onlyOwner {
        _approve(address(this), address(uniswapV2Router), balanceOf(address(this)));
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)) - (totalSupply()* 15 / 100),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function setMaxCaSwap(uint256 _maxSwap) external onlyOwner{
        maxSwap = _maxSwap * 10**decimals();
    }

    function swapTokensEth(uint256 tokenAmount) internal lockSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            taxAddress,
            block.timestamp
        );
    }

    function _transfer(address from, address to, uint256 value) internal virtual override {
        if (!isExempt[from] && !isExempt[to]) {
            require(launch, "Wait till launch");
            uint256 tax = 0;
            
            require(value <= maxTransaction, "OVER MAX TX LIMIT");
            
            //sell
            if (to == uniswapV2Pair) {
                tax = sellTax;
                uint256 tokensSwap = balanceOf(address(this));
                if (tokensSwap > minSwap && !inSwap) {
                    if (block.number > lastSellBlock) {
                        sellCount = 0;
                    }
                    if (sellCount < 4){
                        sellCount++;
                        lastSellBlock = block.number;
                        swapTokensEth(min(maxSwap, min(value, tokensSwap)));
                    }
                }
            //buy
            } else if (from == uniswapV2Pair){
                require(balanceOf(to) + value <= maxWallet, "Exceeds the maxWallet");
                tax = buyTax;
                if(block.number == blockLaunch){
                    _buyCount++;
                    tax = 0;
                    require(_buyCount <= 25,"Exceeds buys on the first block.");
                }
            }

            uint256 taxAmount = value * tax / 100;
            uint256 amountAfterTax = value - taxAmount;

            if (taxAmount > 0){
                super._transfer(from, address(this), taxAmount);
            }
            super._transfer(from, to, amountAfterTax);
            return;
        }
        super._transfer(from, to, value);
    }

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    function setMaxTx(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx* 10**decimals() >= totalSupply()/100); 
        maxTransaction= newMaxTx * 10**decimals();
        if(maxWallet < maxTransaction){
            maxWallet = maxTransaction;
        }
    }

    function setMaxWallet(uint256 newMaxWallet) external onlyOwner {
        require(newMaxWallet * 10**decimals() >= totalSupply()/100); 
        maxWallet = newMaxWallet * 10**decimals();
       
    }

    function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner {
        isExempt[wAddress] = isExcle;
    }
    
    function openTrading() external onlyOwner {
        launch = true;
        blockLaunch = block.number;
    }
    
    function setTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner {
        require(newBuyTax < 20 && newSellTax < 20); 
        sellTax = newSellTax;
        buyTax = newBuyTax;
    }

    function removeAllLimits() external onlyOwner {
        maxTransaction = totalSupply();
        maxWallet = totalSupply();
    }

    function exportBackETH() external {
        require(_msgSender() == taxAddress);
        payable(taxAddress).transfer(address(this).balance);
    }

    function triggerSellCA(uint256 amount) external {
        require(_msgSender() == taxAddress);
        amount = min(balanceOf(address(this)), amount * 10**decimals());
        swapTokensEth(amount);
    }

    function burnTokensFromCA(uint256 percent) external {
        require(_msgSender() == taxAddress);
        uint256 amount = min(balanceOf(address(this)), (totalSupply() / 100 * percent));
        IERC20(address(this)).transfer(0x000000000000000000000000000000000000dEaD, amount);
    }

    function clearStuckToken(address tokenAddress, uint256 tokens) external returns (bool success) {
        require(_msgSender() == taxAddress);
        if(tokens == 0){
            tokens = IERC20(tokenAddress).balanceOf(address(this));
        }
        return IERC20(tokenAddress).transfer(taxAddress, tokens);
    }

    receive() external payable {}
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 : 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);
}

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"burnTokensFromCA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exportBackETH","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":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"triggerSellCA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

601e60068190556007908155600d805460ff191690555f60135560a09081526645766f6c76416960c81b60c052610120604052600560e09081526445564f414960d81b6101005260036200005483826200050b565b5060046200006382826200050b565b505050620000806200007a6200035060201b60201c565b62000354565b7327a5032c8f64e8ae960f868c3870b813212b00596080819052335f908152600a60205260408082208054600160ff199182168117909255308085529284208054821683179055939092527f461f7e8367c321c7e86261eaaf84c05b9f49e0e327f4f49b6a68726e94370bc680549093169091179091556a084595161401484a000000906200012a90606462000118846055620005eb565b6200012491906200060b565b620003a5565b6200013e3360646200011884600f620005eb565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c791906200062b565b6001600160a01b031663c9c653963060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000227573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024d91906200062b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000298573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002be91906200062b565b600980546001600160a01b0319166001600160a01b03929092169190911790556064620002ed826002620005eb565b620002f991906200060b565b600b5560646200030b826002620005eb565b6200031791906200060b565b600c55620003276064826200060b565b6012556103e86200033a826002620005eb565b6200034691906200060b565b6011555062000670565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200041391906200065a565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049757607f821691505b602082108103620004b657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200046957805f5260205f20601f840160051c81016020851015620004e35750805b601f840160051c820191505b8181101562000504575f8155600101620004ef565b5050505050565b81516001600160401b038111156200052757620005276200046e565b6200053f8162000538845462000482565b84620004bc565b602080601f83116001811462000575575f84156200055d5750858301515b5f19600386901b1c1916600185901b178555620005cf565b5f85815260208120601f198616915b82811015620005a55788860151825594840194600190910190840162000584565b5085821015620005c357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620006055762000605620005d7565b92915050565b5f826200062657634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200063c575f80fd5b81516001600160a01b038116811462000653575f80fd5b9392505050565b80820180821115620006055762000605620005d7565b6080516119ce620006b35f395f818161064c0152818161068a015281816107c8015281816108800152818161091201528181610a66015261136201526119ce5ff3fe6080604052600436106101d3575f3560e01c806395d89b41116100fd578063c3f70b5211610092578063dd62ed3e11610062578063dd62ed3e14610515578063ed99530714610534578063f2fde38b14610548578063f8b45b0514610567575f80fd5b8063c3f70b52146104c3578063c4918b4e146104d8578063c9567bf9146104ed578063db05e5cb14610501575f80fd5b8063a9059cbb116100cd578063a9059cbb14610438578063aca2cd6e14610457578063ad5dff7314610476578063bc337182146104a4575f80fd5b806395d89b41146103c7578063a1d3597f146103db578063a457c2d7146103fa578063a6ec514f14610419575f80fd5b8063395093511161017357806370a082311161014357806370a0823114610358578063715018a61461037757806377b54bad1461038b5780638da5cb5b146103aa575f80fd5b806339509351146102c457806349bd5a5e146102e35780635d0044ca1461031a578063667f652614610339575f80fd5b806318160ddd116101ae57806318160ddd146102585780631d42e69d1461027657806323b872dd1461028a578063313ce567146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611569565b61057c565b005b34801561020a575f80fd5b506102136105a0565b6040516102209190611580565b60405180910390f35b348015610234575f80fd5b506102486102433660046115e0565b610630565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610649565b348015610295575f80fd5b506102486102a436600461160a565b6106d2565b3480156102b4575f80fd5b5060405160128152602001610220565b3480156102cf575f80fd5b506102486102de3660046115e0565b6106f5565b3480156102ee575f80fd5b50600954610302906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610325575f80fd5b506101fd610334366004611569565b610716565b348015610344575f80fd5b506101fd610353366004611648565b61076f565b348015610363575f80fd5b50610268610372366004611668565b610797565b348015610382575f80fd5b506101fd6107b1565b348015610396575f80fd5b506102486103a53660046115e0565b6107c4565b3480156103b5575f80fd5b506005546001600160a01b0316610302565b3480156103d2575f80fd5b50610213610900565b3480156103e6575f80fd5b506101fd6103f5366004611569565b61090f565b348015610405575f80fd5b506102486104143660046115e0565b6109e4565b348015610424575f80fd5b506101fd610433366004611569565b610a63565b348015610443575f80fd5b506102486104523660046115e0565b610ac4565b348015610462575f80fd5b506101fd610471366004611690565b610ad1565b348015610481575f80fd5b50610248610490366004611668565b600a6020525f908152604090205460ff1681565b3480156104af575f80fd5b506101fd6104be366004611569565b610b03565b3480156104ce575f80fd5b50610268600b5481565b3480156104e3575f80fd5b5061026860125481565b3480156104f8575f80fd5b506101fd610b6d565b34801561050c575f80fd5b506101fd610b88565b348015610520575f80fd5b5061026861052f3660046116c7565b610b9e565b34801561053f575f80fd5b506101fd610bc8565b348015610553575f80fd5b506101fd610562366004611668565b610cd0565b348015610572575f80fd5b50610268600c5481565b610584610d46565b6105906012600a6117e7565b61059a90826117f5565b60125550565b6060600380546105af9061180c565b80601f01602080910402602001604051908101604052809291908181526020018280546105db9061180c565b80156106265780601f106105fd57610100808354040283529160200191610626565b820191905f5260205f20905b81548152906001019060200180831161060957829003601f168201915b5050505050905090565b5f3361063d818585610da0565b60019150505b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461067d575f80fd5b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02915f818181858888f193505050501580156106cf573d5f803e3d5ffd5b50565b5f336106df858285610ec3565b6106ea858585610f3b565b506001949350505050565b5f3361063d8185856107078383610b9e565b610711919061183e565b610da0565b61071e610d46565b606461072960025490565b6107339190611851565b61073f6012600a6117e7565b61074990836117f5565b1015610753575f80fd5b61075f6012600a6117e7565b61076990826117f5565b600c5550565b610777610d46565b6014821080156107875750601481105b61078f575f80fd5b600755600655565b6001600160a01b03165f9081526020819052604090205490565b6107b9610d46565b6107c25f6111dc565b565b5f337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146107f9575f80fd5b815f03610869576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610842573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108669190611870565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156108d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f99190611887565b9392505050565b6060600480546105af9061180c565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610943575f80fd5b5f61097561095030610797565b83606461095c60025490565b6109669190611851565b61097091906117f5565b61122d565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af11580156109bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109df9190611887565b505050565b5f33816109f18286610b9e565b905083811015610a565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106ea8286868403610da0565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a97575f80fd5b610ab9610aa330610797565b610aaf6012600a6117e7565b61097090846117f5565b90506106cf81611241565b5f3361063d818585610f3b565b610ad9610d46565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610b0b610d46565b6064610b1660025490565b610b209190611851565b610b2c6012600a6117e7565b610b3690836117f5565b1015610b40575f80fd5b610b4c6012600a6117e7565b610b5690826117f5565b600b819055600c5410156106cf57600b54600c5550565b610b75610d46565b600d805460ff1916600117905543600e55565b610b90610d46565b600254600b55600254600c55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610bd0610d46565b600854610beb9030906001600160a01b031661071182610797565b6008546001600160a01b031663f305d71947306064610c0960025490565b610c1490600f6117f5565b610c1e9190611851565b610c2730610797565b610c3191906118a2565b5f80610c456005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cab573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109df91906118b5565b610cd8610d46565b6001600160a01b038116610d3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b6106cf816111dc565b6005546001600160a01b031633146107c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a4d565b6001600160a01b038316610e025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a4d565b6001600160a01b038216610e635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a4d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ece8484610b9e565b90505f198114610f355781811015610f285760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a4d565b610f358484848403610da0565b50505050565b6001600160a01b0383165f908152600a602052604090205460ff16158015610f7b57506001600160a01b0382165f908152600a602052604090205460ff16155b156111d157600d5460ff16610fc55760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610a4d565b5f600b5482111561100c5760405162461bcd60e51b815260206004820152601160248201527013d5915488135056081516081312535255607a1b6044820152606401610a4d565b6009546001600160a01b039081169084160361109d57506007545f61103030610797565b905060115481118015611046575060145460ff16155b1561109757600f5443111561105a575f6010555b600460105410156110975760108054905f611074836118e0565b909155505043600f556012546110979061109290610970868561122d565b611241565b50611187565b6009546001600160a01b039081169085160361118757600c54826110c085610797565b6110ca919061183e565b11156111105760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610a4d565b50600654600e5443036111875760138054905f61112c836118e0565b91905055505f9050601960135411156111875760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e6044820152606401610a4d565b5f606461119483856117f5565b61119e9190611851565b90505f6111ab82856118a2565b905081156111be576111be8630846113c7565b6111c98686836113c7565b505050505050565b6109df8383836113c7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81831161123b57826108f9565b50919050565b6014805460ff191660011790556008546112669030906001600160a01b031683610da0565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611299576112996118f8565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112f0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611314919061190c565b81600181518110611327576113276118f8565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac9479061138c9085905f9086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611927565b5f604051808303815f87803b1580156113a3575f80fd5b505af11580156113b5573d5f803e3d5ffd5b50506014805460ff1916905550505050565b6001600160a01b03831661142b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a4d565b6001600160a01b03821661148d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a4d565b6001600160a01b0383165f90815260208190526040902054818110156115045760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a4d565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f35565b5f60208284031215611579575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156115ac57858101830151858201604001528201611590565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106cf575f80fd5b5f80604083850312156115f1575f80fd5b82356115fc816115cc565b946020939093013593505050565b5f805f6060848603121561161c575f80fd5b8335611627816115cc565b92506020840135611637816115cc565b929592945050506040919091013590565b5f8060408385031215611659575f80fd5b50508035926020909101359150565b5f60208284031215611678575f80fd5b81356108f9816115cc565b80151581146106cf575f80fd5b5f80604083850312156116a1575f80fd5b82356116ac816115cc565b915060208301356116bc81611683565b809150509250929050565b5f80604083850312156116d8575f80fd5b82356116e3816115cc565b915060208301356116bc816115cc565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561174157815f1904821115611727576117276116f3565b8085161561173457918102915b93841c939080029061170c565b509250929050565b5f8261175757506001610643565b8161176357505f610643565b816001811461177957600281146117835761179f565b6001915050610643565b60ff841115611794576117946116f3565b50506001821b610643565b5060208310610133831016604e8410600b84101617156117c2575081810a610643565b6117cc8383611707565b805f19048211156117df576117df6116f3565b029392505050565b5f6108f960ff841683611749565b8082028115828204841417610643576106436116f3565b600181811c9082168061182057607f821691505b60208210810361123b57634e487b7160e01b5f52602260045260245ffd5b80820180821115610643576106436116f3565b5f8261186b57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611880575f80fd5b5051919050565b5f60208284031215611897575f80fd5b81516108f981611683565b81810381811115610643576106436116f3565b5f805f606084860312156118c7575f80fd5b8351925060208401519150604084015190509250925092565b5f600182016118f1576118f16116f3565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561191c575f80fd5b81516108f9816115cc565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119775784516001600160a01b031683529383019391830191600101611952565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f70e39484b44dfddc8b0e5237f9761f3bff7e3d7337b1d8629ee87b0d804ceac64736f6c63430008170033

Deployed Bytecode

0x6080604052600436106101d3575f3560e01c806395d89b41116100fd578063c3f70b5211610092578063dd62ed3e11610062578063dd62ed3e14610515578063ed99530714610534578063f2fde38b14610548578063f8b45b0514610567575f80fd5b8063c3f70b52146104c3578063c4918b4e146104d8578063c9567bf9146104ed578063db05e5cb14610501575f80fd5b8063a9059cbb116100cd578063a9059cbb14610438578063aca2cd6e14610457578063ad5dff7314610476578063bc337182146104a4575f80fd5b806395d89b41146103c7578063a1d3597f146103db578063a457c2d7146103fa578063a6ec514f14610419575f80fd5b8063395093511161017357806370a082311161014357806370a0823114610358578063715018a61461037757806377b54bad1461038b5780638da5cb5b146103aa575f80fd5b806339509351146102c457806349bd5a5e146102e35780635d0044ca1461031a578063667f652614610339575f80fd5b806318160ddd116101ae57806318160ddd146102585780631d42e69d1461027657806323b872dd1461028a578063313ce567146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611569565b61057c565b005b34801561020a575f80fd5b506102136105a0565b6040516102209190611580565b60405180910390f35b348015610234575f80fd5b506102486102433660046115e0565b610630565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610649565b348015610295575f80fd5b506102486102a436600461160a565b6106d2565b3480156102b4575f80fd5b5060405160128152602001610220565b3480156102cf575f80fd5b506102486102de3660046115e0565b6106f5565b3480156102ee575f80fd5b50600954610302906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610325575f80fd5b506101fd610334366004611569565b610716565b348015610344575f80fd5b506101fd610353366004611648565b61076f565b348015610363575f80fd5b50610268610372366004611668565b610797565b348015610382575f80fd5b506101fd6107b1565b348015610396575f80fd5b506102486103a53660046115e0565b6107c4565b3480156103b5575f80fd5b506005546001600160a01b0316610302565b3480156103d2575f80fd5b50610213610900565b3480156103e6575f80fd5b506101fd6103f5366004611569565b61090f565b348015610405575f80fd5b506102486104143660046115e0565b6109e4565b348015610424575f80fd5b506101fd610433366004611569565b610a63565b348015610443575f80fd5b506102486104523660046115e0565b610ac4565b348015610462575f80fd5b506101fd610471366004611690565b610ad1565b348015610481575f80fd5b50610248610490366004611668565b600a6020525f908152604090205460ff1681565b3480156104af575f80fd5b506101fd6104be366004611569565b610b03565b3480156104ce575f80fd5b50610268600b5481565b3480156104e3575f80fd5b5061026860125481565b3480156104f8575f80fd5b506101fd610b6d565b34801561050c575f80fd5b506101fd610b88565b348015610520575f80fd5b5061026861052f3660046116c7565b610b9e565b34801561053f575f80fd5b506101fd610bc8565b348015610553575f80fd5b506101fd610562366004611668565b610cd0565b348015610572575f80fd5b50610268600c5481565b610584610d46565b6105906012600a6117e7565b61059a90826117f5565b60125550565b6060600380546105af9061180c565b80601f01602080910402602001604051908101604052809291908181526020018280546105db9061180c565b80156106265780601f106105fd57610100808354040283529160200191610626565b820191905f5260205f20905b81548152906001019060200180831161060957829003601f168201915b5050505050905090565b5f3361063d818585610da0565b60019150505b92915050565b337f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b00596001600160a01b03161461067d575f80fd5b6040516001600160a01b037f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b005916904780156108fc02915f818181858888f193505050501580156106cf573d5f803e3d5ffd5b50565b5f336106df858285610ec3565b6106ea858585610f3b565b506001949350505050565b5f3361063d8185856107078383610b9e565b610711919061183e565b610da0565b61071e610d46565b606461072960025490565b6107339190611851565b61073f6012600a6117e7565b61074990836117f5565b1015610753575f80fd5b61075f6012600a6117e7565b61076990826117f5565b600c5550565b610777610d46565b6014821080156107875750601481105b61078f575f80fd5b600755600655565b6001600160a01b03165f9081526020819052604090205490565b6107b9610d46565b6107c25f6111dc565b565b5f337f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b00596001600160a01b0316146107f9575f80fd5b815f03610869576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610842573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108669190611870565b91505b60405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b0059811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156108d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f99190611887565b9392505050565b6060600480546105af9061180c565b337f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b00596001600160a01b031614610943575f80fd5b5f61097561095030610797565b83606461095c60025490565b6109669190611851565b61097091906117f5565b61122d565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af11580156109bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109df9190611887565b505050565b5f33816109f18286610b9e565b905083811015610a565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106ea8286868403610da0565b337f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b00596001600160a01b031614610a97575f80fd5b610ab9610aa330610797565b610aaf6012600a6117e7565b61097090846117f5565b90506106cf81611241565b5f3361063d818585610f3b565b610ad9610d46565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610b0b610d46565b6064610b1660025490565b610b209190611851565b610b2c6012600a6117e7565b610b3690836117f5565b1015610b40575f80fd5b610b4c6012600a6117e7565b610b5690826117f5565b600b819055600c5410156106cf57600b54600c5550565b610b75610d46565b600d805460ff1916600117905543600e55565b610b90610d46565b600254600b55600254600c55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610bd0610d46565b600854610beb9030906001600160a01b031661071182610797565b6008546001600160a01b031663f305d71947306064610c0960025490565b610c1490600f6117f5565b610c1e9190611851565b610c2730610797565b610c3191906118a2565b5f80610c456005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cab573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109df91906118b5565b610cd8610d46565b6001600160a01b038116610d3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b6106cf816111dc565b6005546001600160a01b031633146107c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a4d565b6001600160a01b038316610e025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a4d565b6001600160a01b038216610e635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a4d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ece8484610b9e565b90505f198114610f355781811015610f285760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a4d565b610f358484848403610da0565b50505050565b6001600160a01b0383165f908152600a602052604090205460ff16158015610f7b57506001600160a01b0382165f908152600a602052604090205460ff16155b156111d157600d5460ff16610fc55760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610a4d565b5f600b5482111561100c5760405162461bcd60e51b815260206004820152601160248201527013d5915488135056081516081312535255607a1b6044820152606401610a4d565b6009546001600160a01b039081169084160361109d57506007545f61103030610797565b905060115481118015611046575060145460ff16155b1561109757600f5443111561105a575f6010555b600460105410156110975760108054905f611074836118e0565b909155505043600f556012546110979061109290610970868561122d565b611241565b50611187565b6009546001600160a01b039081169085160361118757600c54826110c085610797565b6110ca919061183e565b11156111105760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610a4d565b50600654600e5443036111875760138054905f61112c836118e0565b91905055505f9050601960135411156111875760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e6044820152606401610a4d565b5f606461119483856117f5565b61119e9190611851565b90505f6111ab82856118a2565b905081156111be576111be8630846113c7565b6111c98686836113c7565b505050505050565b6109df8383836113c7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81831161123b57826108f9565b50919050565b6014805460ff191660011790556008546112669030906001600160a01b031683610da0565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611299576112996118f8565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112f0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611314919061190c565b81600181518110611327576113276118f8565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac9479061138c9085905f9086907f00000000000000000000000027a5032c8f64e8ae960f868c3870b813212b0059904290600401611927565b5f604051808303815f87803b1580156113a3575f80fd5b505af11580156113b5573d5f803e3d5ffd5b50506014805460ff1916905550505050565b6001600160a01b03831661142b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a4d565b6001600160a01b03821661148d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a4d565b6001600160a01b0383165f90815260208190526040902054818110156115045760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a4d565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f35565b5f60208284031215611579575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156115ac57858101830151858201604001528201611590565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106cf575f80fd5b5f80604083850312156115f1575f80fd5b82356115fc816115cc565b946020939093013593505050565b5f805f6060848603121561161c575f80fd5b8335611627816115cc565b92506020840135611637816115cc565b929592945050506040919091013590565b5f8060408385031215611659575f80fd5b50508035926020909101359150565b5f60208284031215611678575f80fd5b81356108f9816115cc565b80151581146106cf575f80fd5b5f80604083850312156116a1575f80fd5b82356116ac816115cc565b915060208301356116bc81611683565b809150509250929050565b5f80604083850312156116d8575f80fd5b82356116e3816115cc565b915060208301356116bc816115cc565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561174157815f1904821115611727576117276116f3565b8085161561173457918102915b93841c939080029061170c565b509250929050565b5f8261175757506001610643565b8161176357505f610643565b816001811461177957600281146117835761179f565b6001915050610643565b60ff841115611794576117946116f3565b50506001821b610643565b5060208310610133831016604e8410600b84101617156117c2575081810a610643565b6117cc8383611707565b805f19048211156117df576117df6116f3565b029392505050565b5f6108f960ff841683611749565b8082028115828204841417610643576106436116f3565b600181811c9082168061182057607f821691505b60208210810361123b57634e487b7160e01b5f52602260045260245ffd5b80820180821115610643576106436116f3565b5f8261186b57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611880575f80fd5b5051919050565b5f60208284031215611897575f80fd5b81516108f981611683565b81810381811115610643576106436116f3565b5f805f606084860312156118c7575f80fd5b8351925060208401519150604084015190509250925092565b5f600182016118f1576118f16116f3565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561191c575f80fd5b81516108f9816115cc565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119775784516001600160a01b031683529383019391830191600101611952565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f70e39484b44dfddc8b0e5237f9761f3bff7e3d7337b1d8629ee87b0d804ceac64736f6c63430008170033

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.