ETH Price: $2,323.14 (-0.91%)

Token

KWORLD ($KWorld)
 

Overview

Max Total Supply

1,000,000,000 $KWorld

Holders

2

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
KWorld

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 6 : Token.sol
/**
 *Submitted for verification at Etherscan.io on 2022-11-30
*/

// SPDX-License-Identifier: MIT
/* Smartcontract author: @TonyBoyDeFi
Genesis project contract on Ethereum blockchain */
pragma solidity ^0.8.12;

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

interface IUniswapV3Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV3Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// Uniswap & Pancakeswap Router

interface IUniswapV3Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV3Router02 is IUniswapV3Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract KWorld is ERC20, Ownable {
    // using SafeMath for uint256;

    IUniswapV3Router02 public uniswapV3Router;
    address public uniswapV3Pair;
    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    address public rewardWallet;
    address autoLiquidityReceiver;

    // uint256 public percentForMarketing = 50;
    // bool public buyBackEnabled = true;

    uint256 public swapTokensAtAmount;

    uint256 public maxTxAmount;
    uint256 public maxWalletBalance; 

    uint256 constant public feeDivisor = 100;

    // uint256 public totalSellFees;
    uint256 public marketingSellFee;
    uint256 public devSellFee;
    uint256 public rewardSellFee;


    // uint256 public totalBuyFees;
    uint256 public marketingBuyFee;
    uint256 public devBuyFee;
    uint256 public LPBuyFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;
    uint256 private tokensForLP;
    uint256 private tokensForReward;

    mapping (address => bool) private _isExcludedFromFees;

    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
    event rewardWalletUpdated(address indexed newWallet, address indexed oldWallet);
    event WalletUpdated(address indexed newWallet, address indexed oldWallet);
    event UpdateSwapTokensAtAmount(uint256 amount);
    event SetTaxes(uint256 _devSellFee, uint256 _rewardSellFee, uint256 _marketingSellFee, uint256 _devBuyFee, uint256 _marketingBuyFee, uint256 _LPBuyFee);

    constructor(address _newOwner, address _marketingWallet, address _devWallet, address _rewardWallet) ERC20("KWORLD", "$KWorld"){

        // address newOwner = address(0x8Eef3f423310EC53B1D1d0d0f8f5fb48B3f9663D);
        address newOwner = _newOwner;

        // Total Supply minted once during deployment and never minted again | Set number in tokens
        uint256 totalSupply = 1_000_000_000 * (10**18);

        // Tokens for SwapAndLiquify and automated BuyBack | Set number in tokens
        swapTokensAtAmount = 7500 * (10**18);

        // Contracts Sell fees
        marketingSellFee = 3;
        devSellFee = 3;
        rewardSellFee = 3;
        // totalSellFees = marketingSellFee + devSellFee;

        // Contracts Buy fees
        marketingBuyFee = 1;
        devBuyFee = 1;
        LPBuyFee = 1;
        // totalBuyFees = marketingBuyFee + devBuyFee;

        // Project Marketing DevWallet | Updateable at a later point if necessary
        // marketingWallet = address(0x583177B38556bA4763F1B0f76B2D08e9F6B345d1);
        marketingWallet = _marketingWallet;

        // Project Dev DevWallet | Updateable at a later point if necessary
        // DevWallet = address(0xb54Fb84E9F8EBD92a7881602f144A071bf3b9A60);
        devWallet = _devWallet;

        autoLiquidityReceiver = _newOwner;

        rewardWallet = _rewardWallet;
        // rewardWallet = 0x1434c08D115c4D4303117CFB403ed5DaEE06b96F;

        // Router settings for Ethereum:
        // Uniswap V3 mainnet: 0xE592427A0AEce92De3Edee1F18E0157C05861564
        // Uniswap V2 testnet: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        // Uniswap V2 mainnet: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

        IUniswapV3Router02 _uniswapV3Router = IUniswapV3Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        address _uniswapV3Pair = IUniswapV3Factory(_uniswapV3Router.factory())
            .createPair(address(this), _uniswapV3Router.WETH());

        uniswapV3Router = _uniswapV3Router;
        uniswapV3Pair = _uniswapV3Pair;

        _setAutomatedMarketMakerPair(_uniswapV3Pair, true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(autoLiquidityReceiver, true);

        _mint(newOwner, totalSupply);
        maxTxAmount = totalSupply / 100;        // 1% of total supply
        maxWalletBalance = totalSupply / 50;    // 2% of total supply
        transferOwnership(newOwner);
    }

    receive() external payable {

    }

    // Change SwapAndLiquidy token swap amounts | Set number in exact tokens
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount < 10000, "too big amount for swap");
          swapTokensAtAmount = newAmount * (10**18);
          emit UpdateSwapTokensAtAmount(newAmount);
          return true;
      }


    // Exclude a wallet from all fees | Only for presale addresses, presale router and the deployer of the contract
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    // Exclude multiple wallets from all fees | Only for presale addresses, presale router and the deployer of the contract
    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) external onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV3Pair, "The UniSwap pair cannot be removed from AutomatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    // Set a new project marketing wallet | DevWallet name can be changed to whatever suites the best
    function updateAutoLiquidityReceiver(address newAutoLiquidityReceiver) external onlyOwner {
        require(newAutoLiquidityReceiver != address(0), "cannot set to 0 address");
        excludeFromFees(newAutoLiquidityReceiver, true);
        autoLiquidityReceiver = newAutoLiquidityReceiver;
    }

    // Set a new project marketing wallet | DevWallet name can be changed to whatever suites the best
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        require(newMarketingWallet != address(0), "cannot set to 0 address");
        excludeFromFees(newMarketingWallet, true);
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    // Set a new project marketing wallet | Reward wallet name can be changed to whatever suites the best
    function updateRewardWallet(address newRewardWallet) external onlyOwner {
        require(newRewardWallet != address(0), "cannot set to 0 address");
        excludeFromFees(newRewardWallet, true);
        emit rewardWalletUpdated(newRewardWallet, marketingWallet);
        rewardWallet = newRewardWallet;
    }

    // Set a new  wallet | DevWallet name can be changed to whatever suites the best
    function updateDevWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "cannot set to 0 address");
        excludeFromFees(newWallet, true);
        emit WalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            require(amount <= maxTxAmount, "Transfer amount exceeds the Max Transaction Amount.");
            swapping = true;
            swapBack();
            swapping = false;
        }

        if ( maxWalletBalance > 0 && !_isExcludedFromFees[to] && !_isExcludedFromFees[from] && !automatedMarketMakerPairs[from] ) {
            uint256 recipientBalance = balanceOf(to);
            require(recipientBalance + amount <= maxWalletBalance, "New balance would exceed the maxWalletBalance");
        }

        bool takeFee = !swapping;


        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;


        if(takeFee){

            // Assets selling process
            if (automatedMarketMakerPairs[to] ){
                uint256 totalSellFees = marketingSellFee + devSellFee + rewardSellFee;
                if(totalSellFees > 0) {
                    fees = amount * totalSellFees/ feeDivisor;
                    tokensForMarketing += fees * marketingSellFee / totalSellFees;
                    tokensForDev += fees * devSellFee / totalSellFees;
                    tokensForReward += fees * rewardSellFee / totalSellFees;
                }
            }
            // Assets buying process
            else if(automatedMarketMakerPairs[from] ) {
                uint256 totalBuyFees = marketingBuyFee + devBuyFee + LPBuyFee;
                if(totalBuyFees > 0) {
                    fees = amount * totalBuyFees / feeDivisor;
                    tokensForMarketing += fees * marketingBuyFee / totalBuyFees;
                    tokensForDev += fees * devBuyFee / totalBuyFees;
                    tokensForLP += fees * LPBuyFee / totalBuyFees;
                }
            }


            if(fees > 0){
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);

    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV3Router.WETH();

        _approve(address(this), address(uniswapV3Router), tokenAmount);

        uniswapV3Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );

    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        _approve(address(this), address(uniswapV3Router), tokenAmount);


        uniswapV3Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            autoLiquidityReceiver,
            block.timestamp
        );

    }

    // Automated buyback to fight sell pressure

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing + tokensForDev + tokensForReward + tokensForLP;

        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        bool success;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(contractBalance - tokensForLP / 2);

        uint256 ethBalance = address(this).balance - (initialETHBalance);

        uint256 ethForMarketing = ethBalance * tokensForMarketing / totalTokensToSwap;
        uint256 ethForDev= ethBalance * tokensForDev / totalTokensToSwap;
        uint256 ethForReward = ethBalance * tokensForReward / totalTokensToSwap;

        (success,) = address(devWallet).call{value: ethForDev}("");
        (success,) = address(rewardWallet).call{value: ethForReward}("");
        (success,) = address(marketingWallet).call{value: ethForMarketing}("");

        if(tokensForLP / 2 > 0 && address(this).balance > 0)
            addLiquidity(tokensForLP / 2, address(this).balance);       // add liquidity
    }

    // Recovery functions for stuck native balances and accidentally sent ERC20 tokens

    function setTaxes(uint256 _devSellFee, uint256 _rewardSellFee, uint256 _marketingSellFee, uint256 _devBuyFee, uint256 _marketingBuyFee, uint256 _LPBuyFee) external onlyOwner {
        require(_devBuyFee + _marketingBuyFee + _LPBuyFee < 25 &&
                _devSellFee + _rewardSellFee + _marketingSellFee < 25,
                "too much fee");
        devBuyFee = _devBuyFee;
        devSellFee = _devSellFee;
        rewardSellFee = _rewardSellFee;
        marketingSellFee = _marketingSellFee;
        marketingBuyFee = _marketingBuyFee;
        LPBuyFee = _LPBuyFee;
        emit SetTaxes(_devBuyFee, _rewardSellFee, _marketingSellFee, _devBuyFee, _marketingBuyFee, _LPBuyFee);
    }

    function setMaxWalletAmount( uint256 _maxWalletAmount ) external onlyOwner {
        require(maxWalletBalance >= totalSupply() / 10000 && maxWalletBalance <= totalSupply() / 50, "not allowed amount");
        maxWalletBalance = _maxWalletAmount;
    }

    function setMaxTxAmount ( uint256 _maxTxAmount ) external onlyOwner {
        require(_maxTxAmount >= totalSupply() / 10000 && _maxTxAmount <= totalSupply() / 100, "not allowed amount");
        maxTxAmount = _maxTxAmount;
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 `sender` to `recipient`.
     *
     * 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 : 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 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"},{"internalType":"address","name":"_rewardWallet","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rewardSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_marketingSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_devBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_marketingBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_LPBuyFee","type":"uint256"}],"name":"SetTaxes","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"rewardWalletUpdated","type":"event"},{"inputs":[],"name":"LPBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"devBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSellFee","type":"uint256"},{"internalType":"uint256","name":"_rewardSellFee","type":"uint256"},{"internalType":"uint256","name":"_marketingSellFee","type":"uint256"},{"internalType":"uint256","name":"_devBuyFee","type":"uint256"},{"internalType":"uint256","name":"_marketingBuyFee","type":"uint256"},{"internalType":"uint256","name":"_LPBuyFee","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"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":[],"name":"uniswapV3Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV3Router","outputs":[{"internalType":"contract IUniswapV3Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAutoLiquidityReceiver","type":"address"}],"name":"updateAutoLiquidityReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardWallet","type":"address"}],"name":"updateRewardWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162002c9038038062002c9083398101604081905262000034916200070a565b604080518082018252600681526512d5d3d4931160d21b6020808301918252835180850190945260078452660912d5dbdc9b1960ca1b908401528151919291620000819160039162000647565b5080516200009790600490602084019062000647565b505050620000b4620000ae6200036460201b60201c565b62000368565b6901969368974c05b00000600c556003600f8190556010819055601155600160128190556013819055601455600880546001600160a01b038086166001600160a01b03199283161790925560098054858416908316179055600b8054838816908316179055600a8054928416929091169190911790556040805163c45a015560e01b8152905185916b033b2e3c9fd0803ce800000091737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048281019260209291908290030181865afa15801562000190573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b6919062000767565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000767565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000767565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002dd816001620003ba565b620002ea8460016200040e565b620002f73060016200040e565b6200030661dead60016200040e565b600b546200031f906001600160a01b031660016200040e565b6200032b8484620004aa565b620003386064846200078c565b600d55620003486032846200078c565b600e5562000356846200058f565b505050505050505062000848565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b336200041962000638565b6001600160a01b0316146200044b5760405162461bcd60e51b81526004016200044290620007af565b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000442565b8060026000828254620005169190620007e4565b90915550506001600160a01b0382166000908152602081905260408120805483929062000545908490620007e4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b336200059a62000638565b6001600160a01b031614620005c35760405162461bcd60e51b81526004016200044290620007af565b6001600160a01b0381166200062a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000442565b620006358162000368565b50565b6005546001600160a01b031690565b82805462000655906200080b565b90600052602060002090601f016020900481019282620006795760008555620006c4565b82601f106200069457805160ff1916838001178555620006c4565b82800160010185558215620006c4579182015b82811115620006c4578251825591602001919060010190620006a7565b50620006d2929150620006d6565b5090565b5b80821115620006d25760008155600101620006d7565b80516001600160a01b03811681146200070557600080fd5b919050565b600080600080608085870312156200072157600080fd5b6200072c85620006ed565b93506200073c60208601620006ed565b92506200074c60408601620006ed565b91506200075c60608601620006ed565b905092959194509250565b6000602082840312156200077a57600080fd5b6200078582620006ed565b9392505050565b600082620007aa57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156200080657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200082057607f821691505b602082108114156200084257634e487b7160e01b600052602260045260246000fd5b50919050565b61243880620008586000396000f3fe6080604052600436106101e55760003560e01c806301143fea146101f157806304d4c9901461021a57806306fdde031461023c578063095ea7b31461025e57806318160ddd1461028e5780631816467f146102a357806323b69468146102c357806323b872dd146102d957806327a14fc2146102f95780632c76d7a614610319578063313ce56714610351578063395093511461036d5780634fbee1931461038d578063516d084b146103c657806368078952146103e657806370a08231146103fc578063715018a61461041c57806375f0a8741461043157806384773e841461045157806388522998146104675780638c0b5e22146104875780638da5cb5b1461049d5780638ea5220f146104b257806395d89b41146104d25780639a36f932146104e75780639a7a23d6146104fc578063a457c2d71461051c578063a9059cbb1461053c578063aacebbe31461055c578063b45e83f81461057c578063b62496f514610592578063bbde77c1146105c2578063c0246668146105d8578063c492f046146105f8578063cc600f9114610618578063d257b34f14610638578063dd62ed3e14610658578063e2f4560514610678578063e7f444b31461068e578063ec28438a146106a4578063f2fde38b146106c4578063fb75b2c7146106e457600080fd5b366101ec57005b600080fd5b3480156101fd57600080fd5b5061020760135481565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a610235366004611e89565b610704565b005b34801561024857600080fd5b5061025161082b565b6040516102119190611ecc565b34801561026a57600080fd5b5061027e610279366004611f36565b6108bd565b6040519015158152602001610211565b34801561029a57600080fd5b50600254610207565b3480156102af57600080fd5b5061023a6102be366004611f62565b6108d5565b3480156102cf57600080fd5b5061020760145481565b3480156102e557600080fd5b5061027e6102f4366004611f86565b610992565b34801561030557600080fd5b5061023a610314366004611fc7565b6109b6565b34801561032557600080fd5b50600654610339906001600160a01b031681565b6040516001600160a01b039091168152602001610211565b34801561035d57600080fd5b5060405160128152602001610211565b34801561037957600080fd5b5061027e610388366004611f36565b610a43565b34801561039957600080fd5b5061027e6103a8366004611f62565b6001600160a01b031660009081526019602052604090205460ff1690565b3480156103d257600080fd5b5061023a6103e1366004611f62565b610a65565b3480156103f257600080fd5b5061020760125481565b34801561040857600080fd5b50610207610417366004611f62565b610ae7565b34801561042857600080fd5b5061023a610b02565b34801561043d57600080fd5b50600854610339906001600160a01b031681565b34801561045d57600080fd5b5061020760115481565b34801561047357600080fd5b50600754610339906001600160a01b031681565b34801561049357600080fd5b50610207600d5481565b3480156104a957600080fd5b50610339610b3d565b3480156104be57600080fd5b50600954610339906001600160a01b031681565b3480156104de57600080fd5b50610251610b4c565b3480156104f357600080fd5b50610207606481565b34801561050857600080fd5b5061023a610517366004611ff0565b610b5b565b34801561052857600080fd5b5061027e610537366004611f36565b610c26565b34801561054857600080fd5b5061027e610557366004611f36565b610ca1565b34801561056857600080fd5b5061023a610577366004611f62565b610caf565b34801561058857600080fd5b5061020760105481565b34801561059e57600080fd5b5061027e6105ad366004611f62565b601a6020526000908152604090205460ff1681565b3480156105ce57600080fd5b50610207600e5481565b3480156105e457600080fd5b5061023a6105f3366004611ff0565b610d6c565b34801561060457600080fd5b5061023a610613366004612025565b610dfa565b34801561062457600080fd5b5061023a610633366004611f62565b610edb565b34801561064457600080fd5b5061027e610653366004611fc7565b610f98565b34801561066457600080fd5b506102076106733660046120a8565b611065565b34801561068457600080fd5b50610207600c5481565b34801561069a57600080fd5b50610207600f5481565b3480156106b057600080fd5b5061023a6106bf366004611fc7565b611090565b3480156106d057600080fd5b5061023a6106df366004611f62565b611119565b3480156106f057600080fd5b50600a54610339906001600160a01b031681565b3361070d610b3d565b6001600160a01b03161461073c5760405162461bcd60e51b8152600401610733906120e1565b60405180910390fd5b601981610749848661212c565b610753919061212c565b1080156107745750601984610768878961212c565b610772919061212c565b105b6107af5760405162461bcd60e51b815260206004820152600c60248201526b746f6f206d7563682066656560a01b6044820152606401610733565b601383905560108690556011859055600f849055601282905560148190556040805184815260208101879052908101859052606081018490526080810183905260a081018290527f2d48f84f3130a21878b850e47d7d1a915c0b5e74d9b2f762d5cb9d2ef13258d99060c00160405180910390a1505050505050565b60606003805461083a90612144565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612144565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b6000336108cb8185856111b9565b5060019392505050565b336108de610b3d565b6001600160a01b0316146109045760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b03811661092a5760405162461bcd60e51b81526004016107339061217f565b610935816001610d6c565b6009546040516001600160a01b03918216918316907f0f37c6733428a3a65d46b7f1853a5ce4bfa3cf92d25322507a50bf23a0b5a0a890600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000336109a08582856112dd565b6109ab858585611357565b506001949350505050565b336109bf610b3d565b6001600160a01b0316146109e55760405162461bcd60e51b8152600401610733906120e1565b6127106109f160025490565b6109fb91906121b0565b600e5410158015610a2257506032610a1260025490565b610a1c91906121b0565b600e5411155b610a3e5760405162461bcd60e51b8152600401610733906121d2565b600e55565b6000336108cb818585610a568383611065565b610a60919061212c565b6111b9565b33610a6e610b3d565b6001600160a01b031614610a945760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610aba5760405162461bcd60e51b81526004016107339061217f565b610ac5816001610d6c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b33610b0b610b3d565b6001600160a01b031614610b315760405162461bcd60e51b8152600401610733906120e1565b610b3b6000611860565b565b6005546001600160a01b031690565b60606004805461083a90612144565b33610b64610b3d565b6001600160a01b031614610b8a5760405162461bcd60e51b8152600401610733906120e1565b6007546001600160a01b0383811691161415610c185760405162461bcd60e51b815260206004820152604160248201527f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d204175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610733565b610c2282826118b2565b5050565b60003381610c348286611065565b905083811015610c945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610733565b6109ab82868684036111b9565b6000336108cb818585611357565b33610cb8610b3d565b6001600160a01b031614610cde5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610d045760405162461bcd60e51b81526004016107339061217f565b610d0f816001610d6c565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b33610d75610b3d565b6001600160a01b031614610d9b5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b33610e03610b3d565b6001600160a01b031614610e295760405162461bcd60e51b8152600401610733906120e1565b60005b82811015610e9a578160196000868685818110610e4b57610e4b6121fe565b9050602002016020810190610e609190611f62565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e9281612214565b915050610e2c565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610ece9392919061222f565b60405180910390a1505050565b33610ee4610b3d565b6001600160a01b031614610f0a5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610f305760405162461bcd60e51b81526004016107339061217f565b610f3b816001610d6c565b6008546040516001600160a01b03918216918316907f29d801bab5fa79905849d9a468a0523298d8fc46e1dcfacb71b6fbe4f253232b90600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610fa3610b3d565b6001600160a01b031614610fc95760405162461bcd60e51b8152600401610733906120e1565b61271082106110145760405162461bcd60e51b81526020600482015260176024820152760746f6f2062696720616d6f756e7420666f72207377617604c1b6044820152606401610733565b61102682670de0b6b3a7640000612288565b600c556040518281527fe82283d0f679a15d3811ecbaa8b6a8afb1b110e22daa33b359c37bcae5a11e489060200160405180910390a15060015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b33611099610b3d565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610733906120e1565b6127106110cb60025490565b6110d591906121b0565b81101580156110f8575060646110ea60025490565b6110f491906121b0565b8111155b6111145760405162461bcd60e51b8152600401610733906121d2565b600d55565b33611122610b3d565b6001600160a01b0316146111485760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b0381166111ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b6111b681611860565b50565b6001600160a01b03831661121b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610733565b6001600160a01b03821661127c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610733565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112e98484611065565b9050600019811461135157818110156113445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610733565b61135184848484036111b9565b50505050565b6001600160a01b03831661137d5760405162461bcd60e51b8152600401610733906122a7565b6001600160a01b0382166113a35760405162461bcd60e51b8152600401610733906122ec565b806113b9576113b483836000611906565b505050565b60006113c430610ae7565b600c54909150811080159081906113e55750600754600160a01b900460ff16155b801561140a57506001600160a01b0385166000908152601a602052604090205460ff16155b801561142f57506001600160a01b03851660009081526019602052604090205460ff16155b801561145457506001600160a01b03841660009081526019602052604090205460ff16155b156114f057600d548311156114c75760405162461bcd60e51b815260206004820152603360248201527f5472616e7366657220616d6f756e74206578636565647320746865204d6178206044820152722a3930b739b0b1ba34b7b71020b6b7bab73a1760691b6064820152608401610733565b6007805460ff60a01b1916600160a01b1790556114e2611a5a565b6007805460ff60a01b191690555b6000600e5411801561151b57506001600160a01b03841660009081526019602052604090205460ff16155b801561154057506001600160a01b03851660009081526019602052604090205460ff16155b801561156557506001600160a01b0385166000908152601a602052604090205460ff16155b156115eb57600061157585610ae7565b600e54909150611585858361212c565b11156115e95760405162461bcd60e51b815260206004820152602d60248201527f4e65772062616c616e636520776f756c642065786365656420746865206d617860448201526c57616c6c657442616c616e636560981b6064820152608401610733565b505b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061163957506001600160a01b03851660009081526019602052604090205460ff165b15611642575060005b6000811561184c576001600160a01b0386166000908152601a602052604090205460ff161561173e576000601154601054600f54611680919061212c565b61168a919061212c565b9050801561173857606461169e8288612288565b6116a891906121b0565b915080600f54836116b99190612288565b6116c391906121b0565b601560008282546116d4919061212c565b909155505060105481906116e89084612288565b6116f291906121b0565b60166000828254611703919061212c565b909155505060115481906117179084612288565b61172191906121b0565b60186000828254611732919061212c565b90915550505b5061182e565b6001600160a01b0387166000908152601a602052604090205460ff161561182e576000601454601354601254611774919061212c565b61177e919061212c565b9050801561182c5760646117928288612288565b61179c91906121b0565b915080601254836117ad9190612288565b6117b791906121b0565b601560008282546117c8919061212c565b909155505060135481906117dc9084612288565b6117e691906121b0565b601660008282546117f7919061212c565b9091555050601454819061180b9084612288565b61181591906121b0565b60176000828254611826919061212c565b90915550505b505b801561183f5761183f873083611906565b611849818661232f565b94505b611857878787611906565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661192c5760405162461bcd60e51b8152600401610733906122a7565b6001600160a01b0382166119525760405162461bcd60e51b8152600401610733906122ec565b6001600160a01b038316600090815260208190526040902054818110156119ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610733565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a0190849061212c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a4d91815260200190565b60405180910390a3611351565b6000611a6530610ae7565b90506000601754601854601654601554611a7f919061212c565b611a89919061212c565b611a93919061212c565b9050811580611aa0575080155b15611aa9575050565b600080479050611ad06002601754611ac191906121b0565b611acb908661232f565b611c7b565b6000611adc824761232f565b905060008460155483611aef9190612288565b611af991906121b0565b905060008560165484611b0c9190612288565b611b1691906121b0565b905060008660185485611b299190612288565b611b3391906121b0565b6009546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611b81576040519150601f19603f3d011682016040523d82523d6000602084013e611b86565b606091505b5050600a546040519197506001600160a01b0316908290600081818185875af1925050503d8060008114611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b50506008546040519197506001600160a01b0316908490600081818185875af1925050503d8060008114611c2b576040519150601f19603f3d011682016040523d82523d6000602084013e611c30565b606091505b50508096505060006002601754611c4791906121b0565b118015611c545750600047115b15611c7157611c716002601754611c6b91906121b0565b47611dd5565b5050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cb057611cb06121fe565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2d9190612346565b81600181518110611d4057611d406121fe565b6001600160a01b039283166020918202929092010152600654611d6691309116846111b9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d9f908590600090869030904290600401612363565b600060405180830381600087803b158015611db957600080fd5b505af1158015611dcd573d6000803e3d6000fd5b505050505050565b600654611ded9030906001600160a01b0316846111b9565b600654600b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611e5d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e8291906123d4565b5050505050565b60008060008060008060c08789031215611ea257600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600060208083528351808285015260005b81811015611ef957858101830151858201604001528201611edd565b81811115611f0b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146111b657600080fd5b60008060408385031215611f4957600080fd5b8235611f5481611f21565b946020939093013593505050565b600060208284031215611f7457600080fd5b8135611f7f81611f21565b9392505050565b600080600060608486031215611f9b57600080fd5b8335611fa681611f21565b92506020840135611fb681611f21565b929592945050506040919091013590565b600060208284031215611fd957600080fd5b5035919050565b8035801515811461106057600080fd5b6000806040838503121561200357600080fd5b823561200e81611f21565b915061201c60208401611fe0565b90509250929050565b60008060006040848603121561203a57600080fd5b83356001600160401b038082111561205157600080fd5b818601915086601f83011261206557600080fd5b81358181111561207457600080fd5b8760208260051b850101111561208957600080fd5b60209283019550935061209f9186019050611fe0565b90509250925092565b600080604083850312156120bb57600080fd5b82356120c681611f21565b915060208301356120d681611f21565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561213f5761213f612116565b500190565b600181811c9082168061215857607f821691505b6020821081141561217957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527663616e6e6f742073657420746f2030206164647265737360481b604082015260600190565b6000826121cd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252601290820152711b9bdd08185b1b1bddd95908185b5bdd5b9d60721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561222857612228612116565b5060010190565b6040808252810183905260008460608301825b8681101561227257823561225581611f21565b6001600160a01b0316825260209283019290910190600101612242565b5080925050508215156020830152949350505050565b60008160001904831182151516156122a2576122a2612116565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561234157612341612116565b500390565b60006020828403121561235857600080fd5b8151611f7f81611f21565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123b35784516001600160a01b03168352938301939183019160010161238e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156123e957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201ef11970957bb7b7d84ff39839ffa9a358f2c12021069968876984f81ec98aa864736f6c634300080c00330000000000000000000000008eef3f423310ec53b1d1d0d0f8f5fb48b3f9663d000000000000000000000000583177b38556ba4763f1b0f76b2d08e9f6b345d1000000000000000000000000b54fb84e9f8ebd92a7881602f144a071bf3b9a600000000000000000000000001434c08d115c4d4303117cfb403ed5daee06b96f

Deployed Bytecode

0x6080604052600436106101e55760003560e01c806301143fea146101f157806304d4c9901461021a57806306fdde031461023c578063095ea7b31461025e57806318160ddd1461028e5780631816467f146102a357806323b69468146102c357806323b872dd146102d957806327a14fc2146102f95780632c76d7a614610319578063313ce56714610351578063395093511461036d5780634fbee1931461038d578063516d084b146103c657806368078952146103e657806370a08231146103fc578063715018a61461041c57806375f0a8741461043157806384773e841461045157806388522998146104675780638c0b5e22146104875780638da5cb5b1461049d5780638ea5220f146104b257806395d89b41146104d25780639a36f932146104e75780639a7a23d6146104fc578063a457c2d71461051c578063a9059cbb1461053c578063aacebbe31461055c578063b45e83f81461057c578063b62496f514610592578063bbde77c1146105c2578063c0246668146105d8578063c492f046146105f8578063cc600f9114610618578063d257b34f14610638578063dd62ed3e14610658578063e2f4560514610678578063e7f444b31461068e578063ec28438a146106a4578063f2fde38b146106c4578063fb75b2c7146106e457600080fd5b366101ec57005b600080fd5b3480156101fd57600080fd5b5061020760135481565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a610235366004611e89565b610704565b005b34801561024857600080fd5b5061025161082b565b6040516102119190611ecc565b34801561026a57600080fd5b5061027e610279366004611f36565b6108bd565b6040519015158152602001610211565b34801561029a57600080fd5b50600254610207565b3480156102af57600080fd5b5061023a6102be366004611f62565b6108d5565b3480156102cf57600080fd5b5061020760145481565b3480156102e557600080fd5b5061027e6102f4366004611f86565b610992565b34801561030557600080fd5b5061023a610314366004611fc7565b6109b6565b34801561032557600080fd5b50600654610339906001600160a01b031681565b6040516001600160a01b039091168152602001610211565b34801561035d57600080fd5b5060405160128152602001610211565b34801561037957600080fd5b5061027e610388366004611f36565b610a43565b34801561039957600080fd5b5061027e6103a8366004611f62565b6001600160a01b031660009081526019602052604090205460ff1690565b3480156103d257600080fd5b5061023a6103e1366004611f62565b610a65565b3480156103f257600080fd5b5061020760125481565b34801561040857600080fd5b50610207610417366004611f62565b610ae7565b34801561042857600080fd5b5061023a610b02565b34801561043d57600080fd5b50600854610339906001600160a01b031681565b34801561045d57600080fd5b5061020760115481565b34801561047357600080fd5b50600754610339906001600160a01b031681565b34801561049357600080fd5b50610207600d5481565b3480156104a957600080fd5b50610339610b3d565b3480156104be57600080fd5b50600954610339906001600160a01b031681565b3480156104de57600080fd5b50610251610b4c565b3480156104f357600080fd5b50610207606481565b34801561050857600080fd5b5061023a610517366004611ff0565b610b5b565b34801561052857600080fd5b5061027e610537366004611f36565b610c26565b34801561054857600080fd5b5061027e610557366004611f36565b610ca1565b34801561056857600080fd5b5061023a610577366004611f62565b610caf565b34801561058857600080fd5b5061020760105481565b34801561059e57600080fd5b5061027e6105ad366004611f62565b601a6020526000908152604090205460ff1681565b3480156105ce57600080fd5b50610207600e5481565b3480156105e457600080fd5b5061023a6105f3366004611ff0565b610d6c565b34801561060457600080fd5b5061023a610613366004612025565b610dfa565b34801561062457600080fd5b5061023a610633366004611f62565b610edb565b34801561064457600080fd5b5061027e610653366004611fc7565b610f98565b34801561066457600080fd5b506102076106733660046120a8565b611065565b34801561068457600080fd5b50610207600c5481565b34801561069a57600080fd5b50610207600f5481565b3480156106b057600080fd5b5061023a6106bf366004611fc7565b611090565b3480156106d057600080fd5b5061023a6106df366004611f62565b611119565b3480156106f057600080fd5b50600a54610339906001600160a01b031681565b3361070d610b3d565b6001600160a01b03161461073c5760405162461bcd60e51b8152600401610733906120e1565b60405180910390fd5b601981610749848661212c565b610753919061212c565b1080156107745750601984610768878961212c565b610772919061212c565b105b6107af5760405162461bcd60e51b815260206004820152600c60248201526b746f6f206d7563682066656560a01b6044820152606401610733565b601383905560108690556011859055600f849055601282905560148190556040805184815260208101879052908101859052606081018490526080810183905260a081018290527f2d48f84f3130a21878b850e47d7d1a915c0b5e74d9b2f762d5cb9d2ef13258d99060c00160405180910390a1505050505050565b60606003805461083a90612144565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612144565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b6000336108cb8185856111b9565b5060019392505050565b336108de610b3d565b6001600160a01b0316146109045760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b03811661092a5760405162461bcd60e51b81526004016107339061217f565b610935816001610d6c565b6009546040516001600160a01b03918216918316907f0f37c6733428a3a65d46b7f1853a5ce4bfa3cf92d25322507a50bf23a0b5a0a890600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000336109a08582856112dd565b6109ab858585611357565b506001949350505050565b336109bf610b3d565b6001600160a01b0316146109e55760405162461bcd60e51b8152600401610733906120e1565b6127106109f160025490565b6109fb91906121b0565b600e5410158015610a2257506032610a1260025490565b610a1c91906121b0565b600e5411155b610a3e5760405162461bcd60e51b8152600401610733906121d2565b600e55565b6000336108cb818585610a568383611065565b610a60919061212c565b6111b9565b33610a6e610b3d565b6001600160a01b031614610a945760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610aba5760405162461bcd60e51b81526004016107339061217f565b610ac5816001610d6c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b33610b0b610b3d565b6001600160a01b031614610b315760405162461bcd60e51b8152600401610733906120e1565b610b3b6000611860565b565b6005546001600160a01b031690565b60606004805461083a90612144565b33610b64610b3d565b6001600160a01b031614610b8a5760405162461bcd60e51b8152600401610733906120e1565b6007546001600160a01b0383811691161415610c185760405162461bcd60e51b815260206004820152604160248201527f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d204175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610733565b610c2282826118b2565b5050565b60003381610c348286611065565b905083811015610c945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610733565b6109ab82868684036111b9565b6000336108cb818585611357565b33610cb8610b3d565b6001600160a01b031614610cde5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610d045760405162461bcd60e51b81526004016107339061217f565b610d0f816001610d6c565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b33610d75610b3d565b6001600160a01b031614610d9b5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b33610e03610b3d565b6001600160a01b031614610e295760405162461bcd60e51b8152600401610733906120e1565b60005b82811015610e9a578160196000868685818110610e4b57610e4b6121fe565b9050602002016020810190610e609190611f62565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e9281612214565b915050610e2c565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610ece9392919061222f565b60405180910390a1505050565b33610ee4610b3d565b6001600160a01b031614610f0a5760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b038116610f305760405162461bcd60e51b81526004016107339061217f565b610f3b816001610d6c565b6008546040516001600160a01b03918216918316907f29d801bab5fa79905849d9a468a0523298d8fc46e1dcfacb71b6fbe4f253232b90600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610fa3610b3d565b6001600160a01b031614610fc95760405162461bcd60e51b8152600401610733906120e1565b61271082106110145760405162461bcd60e51b81526020600482015260176024820152760746f6f2062696720616d6f756e7420666f72207377617604c1b6044820152606401610733565b61102682670de0b6b3a7640000612288565b600c556040518281527fe82283d0f679a15d3811ecbaa8b6a8afb1b110e22daa33b359c37bcae5a11e489060200160405180910390a15060015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b33611099610b3d565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610733906120e1565b6127106110cb60025490565b6110d591906121b0565b81101580156110f8575060646110ea60025490565b6110f491906121b0565b8111155b6111145760405162461bcd60e51b8152600401610733906121d2565b600d55565b33611122610b3d565b6001600160a01b0316146111485760405162461bcd60e51b8152600401610733906120e1565b6001600160a01b0381166111ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b6111b681611860565b50565b6001600160a01b03831661121b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610733565b6001600160a01b03821661127c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610733565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112e98484611065565b9050600019811461135157818110156113445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610733565b61135184848484036111b9565b50505050565b6001600160a01b03831661137d5760405162461bcd60e51b8152600401610733906122a7565b6001600160a01b0382166113a35760405162461bcd60e51b8152600401610733906122ec565b806113b9576113b483836000611906565b505050565b60006113c430610ae7565b600c54909150811080159081906113e55750600754600160a01b900460ff16155b801561140a57506001600160a01b0385166000908152601a602052604090205460ff16155b801561142f57506001600160a01b03851660009081526019602052604090205460ff16155b801561145457506001600160a01b03841660009081526019602052604090205460ff16155b156114f057600d548311156114c75760405162461bcd60e51b815260206004820152603360248201527f5472616e7366657220616d6f756e74206578636565647320746865204d6178206044820152722a3930b739b0b1ba34b7b71020b6b7bab73a1760691b6064820152608401610733565b6007805460ff60a01b1916600160a01b1790556114e2611a5a565b6007805460ff60a01b191690555b6000600e5411801561151b57506001600160a01b03841660009081526019602052604090205460ff16155b801561154057506001600160a01b03851660009081526019602052604090205460ff16155b801561156557506001600160a01b0385166000908152601a602052604090205460ff16155b156115eb57600061157585610ae7565b600e54909150611585858361212c565b11156115e95760405162461bcd60e51b815260206004820152602d60248201527f4e65772062616c616e636520776f756c642065786365656420746865206d617860448201526c57616c6c657442616c616e636560981b6064820152608401610733565b505b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061163957506001600160a01b03851660009081526019602052604090205460ff165b15611642575060005b6000811561184c576001600160a01b0386166000908152601a602052604090205460ff161561173e576000601154601054600f54611680919061212c565b61168a919061212c565b9050801561173857606461169e8288612288565b6116a891906121b0565b915080600f54836116b99190612288565b6116c391906121b0565b601560008282546116d4919061212c565b909155505060105481906116e89084612288565b6116f291906121b0565b60166000828254611703919061212c565b909155505060115481906117179084612288565b61172191906121b0565b60186000828254611732919061212c565b90915550505b5061182e565b6001600160a01b0387166000908152601a602052604090205460ff161561182e576000601454601354601254611774919061212c565b61177e919061212c565b9050801561182c5760646117928288612288565b61179c91906121b0565b915080601254836117ad9190612288565b6117b791906121b0565b601560008282546117c8919061212c565b909155505060135481906117dc9084612288565b6117e691906121b0565b601660008282546117f7919061212c565b9091555050601454819061180b9084612288565b61181591906121b0565b60176000828254611826919061212c565b90915550505b505b801561183f5761183f873083611906565b611849818661232f565b94505b611857878787611906565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661192c5760405162461bcd60e51b8152600401610733906122a7565b6001600160a01b0382166119525760405162461bcd60e51b8152600401610733906122ec565b6001600160a01b038316600090815260208190526040902054818110156119ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610733565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a0190849061212c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a4d91815260200190565b60405180910390a3611351565b6000611a6530610ae7565b90506000601754601854601654601554611a7f919061212c565b611a89919061212c565b611a93919061212c565b9050811580611aa0575080155b15611aa9575050565b600080479050611ad06002601754611ac191906121b0565b611acb908661232f565b611c7b565b6000611adc824761232f565b905060008460155483611aef9190612288565b611af991906121b0565b905060008560165484611b0c9190612288565b611b1691906121b0565b905060008660185485611b299190612288565b611b3391906121b0565b6009546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611b81576040519150601f19603f3d011682016040523d82523d6000602084013e611b86565b606091505b5050600a546040519197506001600160a01b0316908290600081818185875af1925050503d8060008114611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b50506008546040519197506001600160a01b0316908490600081818185875af1925050503d8060008114611c2b576040519150601f19603f3d011682016040523d82523d6000602084013e611c30565b606091505b50508096505060006002601754611c4791906121b0565b118015611c545750600047115b15611c7157611c716002601754611c6b91906121b0565b47611dd5565b5050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cb057611cb06121fe565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2d9190612346565b81600181518110611d4057611d406121fe565b6001600160a01b039283166020918202929092010152600654611d6691309116846111b9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d9f908590600090869030904290600401612363565b600060405180830381600087803b158015611db957600080fd5b505af1158015611dcd573d6000803e3d6000fd5b505050505050565b600654611ded9030906001600160a01b0316846111b9565b600654600b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611e5d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e8291906123d4565b5050505050565b60008060008060008060c08789031215611ea257600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600060208083528351808285015260005b81811015611ef957858101830151858201604001528201611edd565b81811115611f0b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146111b657600080fd5b60008060408385031215611f4957600080fd5b8235611f5481611f21565b946020939093013593505050565b600060208284031215611f7457600080fd5b8135611f7f81611f21565b9392505050565b600080600060608486031215611f9b57600080fd5b8335611fa681611f21565b92506020840135611fb681611f21565b929592945050506040919091013590565b600060208284031215611fd957600080fd5b5035919050565b8035801515811461106057600080fd5b6000806040838503121561200357600080fd5b823561200e81611f21565b915061201c60208401611fe0565b90509250929050565b60008060006040848603121561203a57600080fd5b83356001600160401b038082111561205157600080fd5b818601915086601f83011261206557600080fd5b81358181111561207457600080fd5b8760208260051b850101111561208957600080fd5b60209283019550935061209f9186019050611fe0565b90509250925092565b600080604083850312156120bb57600080fd5b82356120c681611f21565b915060208301356120d681611f21565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561213f5761213f612116565b500190565b600181811c9082168061215857607f821691505b6020821081141561217957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527663616e6e6f742073657420746f2030206164647265737360481b604082015260600190565b6000826121cd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252601290820152711b9bdd08185b1b1bddd95908185b5bdd5b9d60721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561222857612228612116565b5060010190565b6040808252810183905260008460608301825b8681101561227257823561225581611f21565b6001600160a01b0316825260209283019290910190600101612242565b5080925050508215156020830152949350505050565b60008160001904831182151516156122a2576122a2612116565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561234157612341612116565b500390565b60006020828403121561235857600080fd5b8151611f7f81611f21565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123b35784516001600160a01b03168352938301939183019160010161238e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156123e957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201ef11970957bb7b7d84ff39839ffa9a358f2c12021069968876984f81ec98aa864736f6c634300080c0033

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

0000000000000000000000008eef3f423310ec53b1d1d0d0f8f5fb48b3f9663d000000000000000000000000583177b38556ba4763f1b0f76b2d08e9f6b345d1000000000000000000000000b54fb84e9f8ebd92a7881602f144a071bf3b9a600000000000000000000000001434c08d115c4d4303117cfb403ed5daee06b96f

-----Decoded View---------------
Arg [0] : _newOwner (address): 0x8Eef3f423310EC53B1D1d0d0f8f5fb48B3f9663D
Arg [1] : _marketingWallet (address): 0x583177B38556bA4763F1B0f76B2D08e9F6B345d1
Arg [2] : _devWallet (address): 0xb54Fb84E9F8EBD92a7881602f144A071bf3b9A60
Arg [3] : _rewardWallet (address): 0x1434c08D115c4D4303117CFB403ed5DaEE06b96F

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000008eef3f423310ec53b1d1d0d0f8f5fb48b3f9663d
Arg [1] : 000000000000000000000000583177b38556ba4763f1b0f76b2d08e9f6b345d1
Arg [2] : 000000000000000000000000b54fb84e9f8ebd92a7881602f144a071bf3b9a60
Arg [3] : 0000000000000000000000001434c08d115c4d4303117cfb403ed5daee06b96f


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.