ETH Price: $2,507.60 (-3.12%)

Token

BetSlinger (SLING)
 

Overview

Max Total Supply

1,000,000 SLING

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000 SLING

Value
$0.00
0x732422A4afDe3DaE61657F0731AC1101b061918B
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:
SLING

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : SLING.sol
// Telegram: https://t.me/bet_slinger
// Twitter:  https://x.com/bet_slinger

// $$$$$$$\  $$$$$$$$\ $$$$$$$$\   $$$$$$\  $$\       $$$$$$\ $$\   $$\  $$$$$$\  $$$$$$$$\ $$$$$$$\  
// $$  __$$\ $$  _____|\__$$  __| $$  __$$\ $$ |      \_$$  _|$$$\  $$ |$$  __$$\ $$  _____|$$  __$$\ 
// $$ |  $$ |$$ |         $$ |    $$ /  \__|$$ |        $$ |  $$$$\ $$ |$$ /  \__|$$ |      $$ |  $$ |
// $$$$$$$\ |$$$$$\       $$ |    \$$$$$$\  $$ |        $$ |  $$ $$\$$ |$$ |$$$$\ $$$$$\    $$$$$$$  |
// $$  __$$\ $$  __|      $$ |     \____$$\ $$ |        $$ |  $$ \$$$$ |$$ |\_$$ |$$  __|   $$  __$$< 
// $$ |  $$ |$$ |         $$ |    $$\   $$ |$$ |        $$ |  $$ |\$$$ |$$ |  $$ |$$ |      $$ |  $$ |
// $$$$$$$  |$$$$$$$$\    $$ |    \$$$$$$  |$$$$$$$$\ $$$$$$\ $$ | \$$ |\$$$$$$  |$$$$$$$$\ $$ |  $$ |
// \_______/ \________|   \__|     \______/ \________|\______|\__|  \__| \______/ \________|\__|  \__|

// SPDX-License-Identifier:Unlicensed
pragma solidity ^0.8.20;

pragma experimental ABIEncoderV2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract SLING is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public mktgWallet;
    address public rewardWallet;
    address public operationsWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => bool) public blocked;

    address public routerCA;
    uint256 public buyTotalFees;
    uint256 public buyMktgFee;
    uint256 public buyRewardFee;
    uint256 public buyOperationsFee;

    uint256 public sellTotalFees;
    uint256 public sellMktgFee;
    uint256 public sellRewardFee;
    uint256 public sellOperationsFee;

    uint256 public tokensForMktg;
    uint256 public tokensForLiquidity;
    uint256 public tokensForOperations;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event WalletsUpdated(
        address indexed newMktgWallet,
        address indexed newOperationsWallet,
        address indexed newRewardWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(address _router,address _mktgWallet,address _rewardWallet,address _operationsWallet) ERC20("BetSlinger", "SLING") Ownable(msg.sender) {
        routerCA = _router;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); 

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // launch buy fees
        uint256 _buyMktgFee = 4;
        uint256 _buyRewardFee = 1;
        uint256 _buyOperationsFee = 10;
        
        // launch sell fees
        uint256 _sellMktgFee = 8;
        uint256 _sellRewardFee = 1;
        uint256 _sellOperationsFee = 11;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 1 / 100; // 1% max txn
        maxWallet = totalSupply * 1 / 100; // 1% max wallet
        swapTokensAtAmount = totalSupply * 1 / 100; // 1% swap wallet

        buyMktgFee = _buyMktgFee;
        buyRewardFee = _buyRewardFee;
        buyOperationsFee = _buyOperationsFee;
        buyTotalFees = buyMktgFee + buyRewardFee + buyOperationsFee;

        sellMktgFee = _sellMktgFee;
        sellRewardFee = _sellRewardFee;
        sellOperationsFee = _sellOperationsFee;
        sellTotalFees = sellMktgFee + sellRewardFee + sellOperationsFee;

        mktgWallet = _mktgWallet; 
        rewardWallet = _rewardWallet; 
        operationsWallet = _operationsWallet;

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() virtual external onlyOwner {
        require(!tradingActive, "Token launched");
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 25) / 10000,
            "Swap amount cannot be lower than 0.25% total supply."
        );
        require(
            newAmount <= (totalSupply() * 20) / 1000,
            "Swap amount cannot be higher than 2% total supply."
        ); 
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _mktgFee,
        uint256 _rewardFee,
        uint256 _operationsFee
    ) external onlyOwner {
        buyMktgFee = _mktgFee;
        buyRewardFee = _rewardFee;
        buyOperationsFee = _operationsFee;
        buyTotalFees = buyMktgFee + buyRewardFee + buyOperationsFee;
        require(buyTotalFees <= 99);
    }

    function updateSellFees(
        uint256 _mktgFee,
        uint256 _rewardFee,
        uint256 _operationsFee
    ) external onlyOwner {
        sellMktgFee = _mktgFee;
        sellRewardFee = _rewardFee;
        sellOperationsFee = _operationsFee;
        sellTotalFees = sellMktgFee + sellRewardFee + sellOperationsFee;
        require(sellTotalFees <= 99); 
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateWallets(address newmktgWallet,address newOperationsWallet,address newRewardWallet) external onlyOwner {
        emit WalletsUpdated(newmktgWallet,newOperationsWallet,newRewardWallet);
        mktgWallet = newmktgWallet;
        operationsWallet = newOperationsWallet;
        rewardWallet = newRewardWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                if(from == address(uniswapV2Pair) &&  
                to != routerCA && to != address(this) && to != address(uniswapV2Pair)){
                    blocked[to] = true;
                    emit BoughtEarly(to);
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellRewardFee) / sellTotalFees;
                tokensForMktg += (fees * sellMktgFee) / sellTotalFees;
                tokensForOperations += (fees * sellOperationsFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyRewardFee) / buyTotalFees;
                tokensForMktg += (fees * buyMktgFee) / buyTotalFees;
                tokensForOperations += (fees * buyOperationsFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function multiBlock(address[] calldata blockees, bool shouldBlock) external onlyOwner {
        for(uint256 i = 0;i<blockees.length;i++){
            address blockee = blockees[i];
            if(blockee != address(this) && 
               blockee != routerCA && 
               blockee != address(uniswapV2Pair))
                blocked[blockee] = shouldBlock;
        }
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            rewardWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMktg +
            tokensForOperations;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMktg = ethBalance.mul(tokensForMktg).div(totalTokensToSwap);
        uint256 ethForOperations = ethBalance.mul(tokensForOperations).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMktg- ethForOperations;

        tokensForLiquidity = 0;
        tokensForMktg = 0;
        tokensForOperations = 0;


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
        (success, ) = address(operationsWallet).call{value: ethForOperations}("");
        (success, ) = address(mktgWallet).call{value: address(this).balance}("");
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 11 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) virtual internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 6 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 7 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

File 8 of 11 : IUniswapV2Factory.sol
//SPDX-License-Identifier:MIT

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    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;
}

File 9 of 11 : IUniswapV2Router01.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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);
}

File 10 of 11 : IUniswapV2Router02.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    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;
}

File 11 of 11 : SafeMath.sol
// SPDX-License-Identifier:MIT

pragma solidity ^0.8.20;

library SafeMath {

    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_mktgWallet","type":"address"},{"internalType":"address","name":"_rewardWallet","type":"address"},{"internalType":"address","name":"_operationsWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"sniper","type":"address"}],"name":"BoughtEarly","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":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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newMktgWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newOperationsWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newRewardWallet","type":"address"}],"name":"WalletsUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktgWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"blockees","type":"address[]"},{"internalType":"bool","name":"shouldBlock","type":"bool"}],"name":"multiBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerCA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMktg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mktgFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mktgFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newmktgWallet","type":"address"},{"internalType":"address","name":"newOperationsWallet","type":"address"},{"internalType":"address","name":"newRewardWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191660011790553480156200002057600080fd5b506040516200318a3803806200318a83398101604081905262000043916200071a565b336040518060400160405280600a8152602001692132ba29b634b733b2b960b11b81525060405180604001604052806005815260200164534c494e4760d81b81525081600390816200009691906200081c565b506004620000a582826200081c565b5050506001600160a01b038116620000d857604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000e38162000417565b50600f80546001600160a01b0319166001600160a01b038616179055836200010d81600162000469565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e9190620008e8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f29190620008e8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002669190620008e8565b6001600160a01b031660a08190526200028190600162000469565b60a051620002919060016200049e565b60046001600a600882600b69d3c21bcecceda10000006064620002b5828562000923565b620002c1919062000943565b6009556064620002d382600162000923565b620002df919062000943565b600b556064620002f182600162000923565b620002fd919062000943565b600a55601187905560128690556013859055846200031c878962000966565b62000328919062000966565b6010556015849055601683905560178290558162000347848662000966565b62000353919062000966565b601455600680546001600160a01b03199081166001600160a01b038e8116919091179092556007805482168d8416179055600880549091168b8316179055600554620003a291166001620004f2565b620003af306001620004f2565b620003be61dead6001620004f2565b620003dd620003d56005546001600160a01b031690565b600162000469565b620003ea30600162000469565b620003f961dead600162000469565b6200040533826200055b565b5050505050505050505050506200097c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200047362000599565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004fc62000599565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005875760405163ec442f0560e01b815260006004820152602401620000cf565b6200059560008383620005ca565b5050565b6005546001600160a01b03163314620005c85760405163118cdaa760e01b8152336004820152602401620000cf565b565b6001600160a01b038316620005f9578060026000828254620005ed919062000966565b909155506200066d9050565b6001600160a01b038316600090815260208190526040902054818110156200064e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000cf565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166200068b57600280548290039055620006aa565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006f091815260200190565b60405180910390a3505050565b80516001600160a01b03811681146200071557600080fd5b919050565b600080600080608085870312156200073157600080fd5b6200073c85620006fd565b93506200074c60208601620006fd565b92506200075c60408601620006fd565b91506200076c60608601620006fd565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a257607f821691505b602082108103620007c357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200081757600081815260208120601f850160051c81016020861015620007f25750805b601f850160051c820191505b818110156200081357828155600101620007fe565b5050505b505050565b81516001600160401b0381111562000838576200083862000777565b62000850816200084984546200078d565b84620007c9565b602080601f8311600181146200088857600084156200086f5750858301515b600019600386901b1c1916600185901b17855562000813565b600085815260208120601f198616915b82811015620008b95788860151825594840194600190910190840162000898565b5085821015620008d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008fb57600080fd5b6200090682620006fd565b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200093d576200093d6200090d565b92915050565b6000826200096157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200093d576200093d6200090d565b60805160a0516127a9620009e16000396000818161052c01528181610d4601528181610e75015281816114a7015261151201526000818161040d015281816120f0015281816121a9015281816121e50152818161225f01526122c701526127a96000f3fe60806040526004361061031e5760003560e01c80638095d564116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f8b45b051161006f578063f8b45b0514610974578063fb002c971461098a578063fb75b2c7146109a0578063fd72e22a146109c057600080fd5b8063e2f456051461090e578063e596219514610924578063f2fde38b1461095457600080fd5b8063d257b34f116100d1578063d257b34f1461087c578063d85ba0631461089c578063dd62ed3e146108b2578063de0aad53146108f857600080fd5b8063c17b5b8c14610826578063c18bc19514610846578063c8c8ebe41461086657600080fd5b80639bd9bf5f11610164578063b62496f51161013e578063b62496f5146107a1578063bbc0c742146107d1578063c0246668146107f0578063c0f17acd1461081057600080fd5b80639bd9bf5f1461074b578063a9059cbb14610761578063ae303d071461078157600080fd5b80638095d564146106a35780638a8c523c146106c35780638da5cb5b146106d8578063924de9b7146106f657806395d89b41146107165780639a7a23d61461072b57600080fd5b8063313ce5671161026a5780635a139dd41161022357806370a08231116101fd57806370a0823114610623578063715018a614610659578063751039fc1461066e5780637571336a1461068357600080fd5b80635a139dd4146105d75780636a486a8e146105ed5780636ddd17131461060357600080fd5b8063313ce567146104fe57806349bd5a5e1461051a5780634a62bb651461054e5780634f77f6c0146105685780634fbee1931461057e578063534c0906146105b757600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd1461049257806324afaf8d146104b257806327c8f835146104d2578063312394a0146104e857600080fd5b806318160ddd146104475780631a8145bb1461045c578063203e727e1461047257600080fd5b806306fdde031461032a578063095ea7b3146103555780630cfe2f3f1461038557806310d5de53146103a9578063147c9f6d146103d95780631694505e146103fb57600080fd5b3661032557005b600080fd5b34801561033657600080fd5b5061033f6109e0565b60405161034c919061233f565b60405180910390f35b34801561036157600080fd5b506103756103703660046123a2565b610a72565b604051901515815260200161034c565b34801561039157600080fd5b5061039b60125481565b60405190815260200161034c565b3480156103b557600080fd5b506103756103c43660046123ce565b601c6020526000908152604090205460ff1681565b3480156103e557600080fd5b506103f96103f43660046123eb565b610a8c565b005b34801561040757600080fd5b5061042f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161034c565b34801561045357600080fd5b5060025461039b565b34801561046857600080fd5b5061039b60195481565b34801561047e57600080fd5b506103f961048d366004612436565b610b1d565b34801561049e57600080fd5b506103756104ad36600461244f565b610bdd565b3480156104be57600080fd5b5060065461042f906001600160a01b031681565b3480156104de57600080fd5b5061042f61dead81565b3480156104f457600080fd5b5061039b60155481565b34801561050a57600080fd5b506040516012815260200161034c565b34801561052657600080fd5b5061042f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055a57600080fd5b50600c546103759060ff1681565b34801561057457600080fd5b5061039b60175481565b34801561058a57600080fd5b506103756105993660046123ce565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105c357600080fd5b50600f5461042f906001600160a01b031681565b3480156105e357600080fd5b5061039b60135481565b3480156105f957600080fd5b5061039b60145481565b34801561060f57600080fd5b50600c546103759062010000900460ff1681565b34801561062f57600080fd5b5061039b61063e3660046123ce565b6001600160a01b031660009081526020819052604090205490565b34801561066557600080fd5b506103f9610c01565b34801561067a57600080fd5b50610375610c15565b34801561068f57600080fd5b506103f961069e3660046124a0565b610c2f565b3480156106af57600080fd5b506103f96106be3660046124d5565b610c62565b3480156106cf57600080fd5b506103f9610ca5565b3480156106e457600080fd5b506005546001600160a01b031661042f565b34801561070257600080fd5b506103f9610711366004612501565b610d09565b34801561072257600080fd5b5061033f610d2d565b34801561073757600080fd5b506103f96107463660046124a0565b610d3c565b34801561075757600080fd5b5061039b60185481565b34801561076d57600080fd5b5061037561077c3660046123a2565b610df9565b34801561078d57600080fd5b506103f961079c36600461251c565b610e07565b3480156107ad57600080fd5b506103756107bc3660046123ce565b601d6020526000908152604090205460ff1681565b3480156107dd57600080fd5b50600c5461037590610100900460ff1681565b3480156107fc57600080fd5b506103f961080b3660046124a0565b610eed565b34801561081c57600080fd5b5061039b60115481565b34801561083257600080fd5b506103f96108413660046124d5565b610f54565b34801561085257600080fd5b506103f9610861366004612436565b610f92565b34801561087257600080fd5b5061039b60095481565b34801561088857600080fd5b50610375610897366004612436565b611041565b3480156108a857600080fd5b5061039b60105481565b3480156108be57600080fd5b5061039b6108cd3660046125a0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061039b60165481565b34801561091a57600080fd5b5061039b600a5481565b34801561093057600080fd5b5061037561093f3660046123ce565b600e6020526000908152604090205460ff1681565b34801561096057600080fd5b506103f961096f3660046123ce565b611171565b34801561098057600080fd5b5061039b600b5481565b34801561099657600080fd5b5061039b601a5481565b3480156109ac57600080fd5b5060075461042f906001600160a01b031681565b3480156109cc57600080fd5b5060085461042f906001600160a01b031681565b6060600380546109ef906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906125d9565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b600033610a808185856111af565b60019150505b92915050565b610a946111bc565b806001600160a01b0316826001600160a01b0316846001600160a01b03167f2d4c6aa48812a0ea09474a961613c1a3ae652d39a1580cb1ac46ff277e6d385d60405160405180910390a4600680546001600160a01b039485166001600160a01b031991821617909155600880549385169382169390931790925560078054919093169116179055565b610b256111bc565b670de0b6b3a76400006103e8610b3a60025490565b610b45906001612629565b610b4f9190612640565b610b599190612640565b811015610bc55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610bd781670de0b6b3a7640000612629565b60095550565b600033610beb8582856111e9565b610bf6858585611261565b506001949350505050565b610c096111bc565b610c136000611b31565b565b6000610c1f6111bc565b50600c805460ff19169055600190565b610c376111bc565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610c6a6111bc565b60118390556012829055601381905580610c848385612662565b610c8e9190612662565b601081905560631015610ca057600080fd5b505050565b610cad6111bc565b600c54610100900460ff1615610cf65760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b6044820152606401610bbc565b600c805462ffff00191662010100179055565b610d116111bc565b600c8054911515620100000262ff000019909216919091179055565b6060600480546109ef906125d9565b610d446111bc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610deb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b610df58282611b83565b5050565b600033610a80818585611261565b610e0f6111bc565b60005b82811015610ee7576000848483818110610e2e57610e2e612675565b9050602002016020810190610e4391906123ce565b90506001600160a01b0381163014801590610e6c5750600f546001600160a01b03828116911614155b8015610eaa57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b15610ed4576001600160a01b0381166000908152600e60205260409020805460ff19168415151790555b5080610edf8161268b565b915050610e12565b50505050565b610ef56111bc565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f5c6111bc565b60158390556016829055601781905580610f768385612662565b610f809190612662565b601481905560631015610ca057600080fd5b610f9a6111bc565b670de0b6b3a76400006103e8610faf60025490565b610fba906005612629565b610fc49190612640565b610fce9190612640565b8110156110295760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61103b81670de0b6b3a7640000612629565b600b5550565b600061104b6111bc565b61271061105760025490565b611062906019612629565b61106c9190612640565b8210156110d85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817191a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b6103e86110e460025490565b6110ef906014612629565b6110f99190612640565b8211156111635760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101912903a37ba30b61039bab838363c9760711b6064820152608401610bbc565b50600a81905560015b919050565b6111796111bc565b6001600160a01b0381166111a357604051631e4fbdf760e01b815260006004820152602401610bbc565b6111ac81611b31565b50565b610ca08383836001611bd7565b6005546001600160a01b03163314610c135760405163118cdaa760e01b8152336004820152602401610bbc565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610ee7578181101561125257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610bbc565b610ee784848484036000611bd7565b6001600160a01b0383166112c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bbc565b6001600160a01b0382166113275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bbc565b6001600160a01b0383166000908152600e602052604090205460ff16156113815760405162461bcd60e51b815260206004820152600e60248201526d14db9a5c195c88189b1bd8dad95960921b6044820152606401610bbc565b8060000361139557610ca083836000611cac565b600c5460ff16156117fc576005546001600160a01b038481169116148015906113cc57506005546001600160a01b03838116911614155b80156113e057506001600160a01b03821615155b80156113f757506001600160a01b03821661dead14155b801561140d5750600554600160a01b900460ff16155b156117fc57600c54610100900460ff166114a5576001600160a01b0383166000908152601b602052604090205460ff168061146057506001600160a01b0382166000908152601b602052604090205460ff165b6114a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156114f45750600f546001600160a01b03838116911614155b801561150957506001600160a01b0382163014155b801561154757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611596576001600160a01b0382166000818152600e6020526040808220805460ff19166001179055517fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e29190a25b6001600160a01b0383166000908152601d602052604090205460ff1680156115d757506001600160a01b0382166000908152601c602052604090205460ff16155b156116bb5760095481111561164c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600b546001600160a01b0383166000908152602081905260409020546116729083612662565b11156116b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b6117fc565b6001600160a01b0382166000908152601d602052604090205460ff1680156116fc57506001600160a01b0383166000908152601c602052604090205460ff16155b15611772576009548111156116b65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b0382166000908152601c602052604090205460ff166117fc57600b546001600160a01b0383166000908152602081905260409020546117b89083612662565b11156117fc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b30600090815260208190526040902054600a54811080159081906118285750600c5462010000900460ff165b801561183e5750600554600160a01b900460ff16155b801561186357506001600160a01b0385166000908152601d602052604090205460ff16155b801561188857506001600160a01b0385166000908152601b602052604090205460ff16155b80156118ad57506001600160a01b0384166000908152601b602052604090205460ff16155b156118db576005805460ff60a01b1916600160a01b1790556118cd611d0b565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061192957506001600160a01b0385166000908152601b602052604090205460ff165b15611932575060005b60008115611b1d576001600160a01b0386166000908152601d602052604090205460ff16801561196457506000601454115b15611a2257611989606461198360145488611f4490919063ffffffff16565b90611f57565b90506014546016548261199c9190612629565b6119a69190612640565b601960008282546119b79190612662565b90915550506014546015546119cc9083612629565b6119d69190612640565b601860008282546119e79190612662565b90915550506014546017546119fc9083612629565b611a069190612640565b601a6000828254611a179190612662565b90915550611aff9050565b6001600160a01b0387166000908152601d602052604090205460ff168015611a4c57506000601054115b15611aff57611a6b606461198360105488611f4490919063ffffffff16565b905060105460125482611a7e9190612629565b611a889190612640565b60196000828254611a999190612662565b9091555050601054601154611aae9083612629565b611ab89190612640565b60186000828254611ac99190612662565b9091555050601054601354611ade9083612629565b611ae89190612640565b601a6000828254611af99190612662565b90915550505b8015611b1057611b10873083611cac565b611b1a81866126a4565b94505b611b28878787611cac565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611c015760405163e602df0560e01b815260006004820152602401610bbc565b6001600160a01b038316611c2b57604051634a1406b160e11b815260006004820152602401610bbc565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610ee757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611c9e91815260200190565b60405180910390a350505050565b6001600160a01b038316611cd657604051634b637e8f60e11b815260006004820152602401610bbc565b6001600160a01b038216611d005760405163ec442f0560e01b815260006004820152602401610bbc565b610ca0838383611f63565b3060009081526020819052604081205490506000601a54601854601954611d329190612662565b611d3c9190612662565b90506000821580611d4b575081155b15611d5557505050565b600a54611d63906014612629565b831115611d7b57600a54611d78906014612629565b92505b600060028360195486611d8e9190612629565b611d989190612640565b611da29190612640565b90506000611db0858361208d565b905047611dbc82612099565b6000611dc8478361208d565b90506000611de58761198360185485611f4490919063ffffffff16565b90506000611e0288611983601a5486611f4490919063ffffffff16565b9050600081611e1184866126a4565b611e1b91906126a4565b600060198190556018819055601a5590508615801590611e3b5750600081115b15611e8e57611e4a8782612259565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b50506006546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b50505050505050505050505050565b6000611f508284612629565b9392505050565b6000611f508284612640565b6001600160a01b038316611f8e578060026000828254611f839190612662565b909155506120009050565b6001600160a01b03831660009081526020819052604090205481811015611fe15760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610bbc565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661201c5760028054829003905561203b565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161208091815260200190565b60405180910390a3505050565b6000611f5082846126a4565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ce576120ce612675565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561214c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217091906126b7565b8160018151811061218357612183612675565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ce307f0000000000000000000000000000000000000000000000000000000000000000846111af565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122239085906000908690309042906004016126d4565b600060405180830381600087803b15801561223d57600080fd5b505af1158015612251573d6000803e3d6000fd5b505050505050565b612284307f0000000000000000000000000000000000000000000000000000000000000000846111af565b60075460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612313573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123389190612745565b5050505050565b600060208083528351808285015260005b8181101561236c57858101830151858201604001528201612350565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111ac57600080fd5b600080604083850312156123b557600080fd5b82356123c08161238d565b946020939093013593505050565b6000602082840312156123e057600080fd5b8135611f508161238d565b60008060006060848603121561240057600080fd5b833561240b8161238d565b9250602084013561241b8161238d565b9150604084013561242b8161238d565b809150509250925092565b60006020828403121561244857600080fd5b5035919050565b60008060006060848603121561246457600080fd5b833561246f8161238d565b9250602084013561247f8161238d565b929592945050506040919091013590565b8035801515811461116c57600080fd5b600080604083850312156124b357600080fd5b82356124be8161238d565b91506124cc60208401612490565b90509250929050565b6000806000606084860312156124ea57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561251357600080fd5b611f5082612490565b60008060006040848603121561253157600080fd5b833567ffffffffffffffff8082111561254957600080fd5b818601915086601f83011261255d57600080fd5b81358181111561256c57600080fd5b8760208260051b850101111561258157600080fd5b6020928301955093506125979186019050612490565b90509250925092565b600080604083850312156125b357600080fd5b82356125be8161238d565b915060208301356125ce8161238d565b809150509250929050565b600181811c908216806125ed57607f821691505b60208210810361260d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a8657610a86612613565b60008261265d57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a8657610a86612613565b634e487b7160e01b600052603260045260246000fd5b60006001820161269d5761269d612613565b5060010190565b81810381811115610a8657610a86612613565b6000602082840312156126c957600080fd5b8151611f508161238d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127245784516001600160a01b0316835293830193918301916001016126ff565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561275a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122087ac5944fe260048493c00109d92a9b4364bddfb1b6b15a5e7be62508eb3d98664736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ac409c89cd280ed4e03e6587add1cee4db8ad9bf000000000000000000000000493906559b2f8542e9a15bcb281deeb1e3be0e68000000000000000000000000dbc9574f97238f4408771227ea12818acdcef546

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638095d564116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f8b45b051161006f578063f8b45b0514610974578063fb002c971461098a578063fb75b2c7146109a0578063fd72e22a146109c057600080fd5b8063e2f456051461090e578063e596219514610924578063f2fde38b1461095457600080fd5b8063d257b34f116100d1578063d257b34f1461087c578063d85ba0631461089c578063dd62ed3e146108b2578063de0aad53146108f857600080fd5b8063c17b5b8c14610826578063c18bc19514610846578063c8c8ebe41461086657600080fd5b80639bd9bf5f11610164578063b62496f51161013e578063b62496f5146107a1578063bbc0c742146107d1578063c0246668146107f0578063c0f17acd1461081057600080fd5b80639bd9bf5f1461074b578063a9059cbb14610761578063ae303d071461078157600080fd5b80638095d564146106a35780638a8c523c146106c35780638da5cb5b146106d8578063924de9b7146106f657806395d89b41146107165780639a7a23d61461072b57600080fd5b8063313ce5671161026a5780635a139dd41161022357806370a08231116101fd57806370a0823114610623578063715018a614610659578063751039fc1461066e5780637571336a1461068357600080fd5b80635a139dd4146105d75780636a486a8e146105ed5780636ddd17131461060357600080fd5b8063313ce567146104fe57806349bd5a5e1461051a5780634a62bb651461054e5780634f77f6c0146105685780634fbee1931461057e578063534c0906146105b757600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd1461049257806324afaf8d146104b257806327c8f835146104d2578063312394a0146104e857600080fd5b806318160ddd146104475780631a8145bb1461045c578063203e727e1461047257600080fd5b806306fdde031461032a578063095ea7b3146103555780630cfe2f3f1461038557806310d5de53146103a9578063147c9f6d146103d95780631694505e146103fb57600080fd5b3661032557005b600080fd5b34801561033657600080fd5b5061033f6109e0565b60405161034c919061233f565b60405180910390f35b34801561036157600080fd5b506103756103703660046123a2565b610a72565b604051901515815260200161034c565b34801561039157600080fd5b5061039b60125481565b60405190815260200161034c565b3480156103b557600080fd5b506103756103c43660046123ce565b601c6020526000908152604090205460ff1681565b3480156103e557600080fd5b506103f96103f43660046123eb565b610a8c565b005b34801561040757600080fd5b5061042f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161034c565b34801561045357600080fd5b5060025461039b565b34801561046857600080fd5b5061039b60195481565b34801561047e57600080fd5b506103f961048d366004612436565b610b1d565b34801561049e57600080fd5b506103756104ad36600461244f565b610bdd565b3480156104be57600080fd5b5060065461042f906001600160a01b031681565b3480156104de57600080fd5b5061042f61dead81565b3480156104f457600080fd5b5061039b60155481565b34801561050a57600080fd5b506040516012815260200161034c565b34801561052657600080fd5b5061042f7f00000000000000000000000056cd5a89f9d661eb5acfa45f27ce91a0a1d55fe281565b34801561055a57600080fd5b50600c546103759060ff1681565b34801561057457600080fd5b5061039b60175481565b34801561058a57600080fd5b506103756105993660046123ce565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105c357600080fd5b50600f5461042f906001600160a01b031681565b3480156105e357600080fd5b5061039b60135481565b3480156105f957600080fd5b5061039b60145481565b34801561060f57600080fd5b50600c546103759062010000900460ff1681565b34801561062f57600080fd5b5061039b61063e3660046123ce565b6001600160a01b031660009081526020819052604090205490565b34801561066557600080fd5b506103f9610c01565b34801561067a57600080fd5b50610375610c15565b34801561068f57600080fd5b506103f961069e3660046124a0565b610c2f565b3480156106af57600080fd5b506103f96106be3660046124d5565b610c62565b3480156106cf57600080fd5b506103f9610ca5565b3480156106e457600080fd5b506005546001600160a01b031661042f565b34801561070257600080fd5b506103f9610711366004612501565b610d09565b34801561072257600080fd5b5061033f610d2d565b34801561073757600080fd5b506103f96107463660046124a0565b610d3c565b34801561075757600080fd5b5061039b60185481565b34801561076d57600080fd5b5061037561077c3660046123a2565b610df9565b34801561078d57600080fd5b506103f961079c36600461251c565b610e07565b3480156107ad57600080fd5b506103756107bc3660046123ce565b601d6020526000908152604090205460ff1681565b3480156107dd57600080fd5b50600c5461037590610100900460ff1681565b3480156107fc57600080fd5b506103f961080b3660046124a0565b610eed565b34801561081c57600080fd5b5061039b60115481565b34801561083257600080fd5b506103f96108413660046124d5565b610f54565b34801561085257600080fd5b506103f9610861366004612436565b610f92565b34801561087257600080fd5b5061039b60095481565b34801561088857600080fd5b50610375610897366004612436565b611041565b3480156108a857600080fd5b5061039b60105481565b3480156108be57600080fd5b5061039b6108cd3660046125a0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061039b60165481565b34801561091a57600080fd5b5061039b600a5481565b34801561093057600080fd5b5061037561093f3660046123ce565b600e6020526000908152604090205460ff1681565b34801561096057600080fd5b506103f961096f3660046123ce565b611171565b34801561098057600080fd5b5061039b600b5481565b34801561099657600080fd5b5061039b601a5481565b3480156109ac57600080fd5b5060075461042f906001600160a01b031681565b3480156109cc57600080fd5b5060085461042f906001600160a01b031681565b6060600380546109ef906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906125d9565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b600033610a808185856111af565b60019150505b92915050565b610a946111bc565b806001600160a01b0316826001600160a01b0316846001600160a01b03167f2d4c6aa48812a0ea09474a961613c1a3ae652d39a1580cb1ac46ff277e6d385d60405160405180910390a4600680546001600160a01b039485166001600160a01b031991821617909155600880549385169382169390931790925560078054919093169116179055565b610b256111bc565b670de0b6b3a76400006103e8610b3a60025490565b610b45906001612629565b610b4f9190612640565b610b599190612640565b811015610bc55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610bd781670de0b6b3a7640000612629565b60095550565b600033610beb8582856111e9565b610bf6858585611261565b506001949350505050565b610c096111bc565b610c136000611b31565b565b6000610c1f6111bc565b50600c805460ff19169055600190565b610c376111bc565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610c6a6111bc565b60118390556012829055601381905580610c848385612662565b610c8e9190612662565b601081905560631015610ca057600080fd5b505050565b610cad6111bc565b600c54610100900460ff1615610cf65760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b6044820152606401610bbc565b600c805462ffff00191662010100179055565b610d116111bc565b600c8054911515620100000262ff000019909216919091179055565b6060600480546109ef906125d9565b610d446111bc565b7f00000000000000000000000056cd5a89f9d661eb5acfa45f27ce91a0a1d55fe26001600160a01b0316826001600160a01b031603610deb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbc565b610df58282611b83565b5050565b600033610a80818585611261565b610e0f6111bc565b60005b82811015610ee7576000848483818110610e2e57610e2e612675565b9050602002016020810190610e4391906123ce565b90506001600160a01b0381163014801590610e6c5750600f546001600160a01b03828116911614155b8015610eaa57507f00000000000000000000000056cd5a89f9d661eb5acfa45f27ce91a0a1d55fe26001600160a01b0316816001600160a01b031614155b15610ed4576001600160a01b0381166000908152600e60205260409020805460ff19168415151790555b5080610edf8161268b565b915050610e12565b50505050565b610ef56111bc565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f5c6111bc565b60158390556016829055601781905580610f768385612662565b610f809190612662565b601481905560631015610ca057600080fd5b610f9a6111bc565b670de0b6b3a76400006103e8610faf60025490565b610fba906005612629565b610fc49190612640565b610fce9190612640565b8110156110295760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbc565b61103b81670de0b6b3a7640000612629565b600b5550565b600061104b6111bc565b61271061105760025490565b611062906019612629565b61106c9190612640565b8210156110d85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817191a92903a37ba30b61039bab838363c9760611b6064820152608401610bbc565b6103e86110e460025490565b6110ef906014612629565b6110f99190612640565b8211156111635760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101912903a37ba30b61039bab838363c9760711b6064820152608401610bbc565b50600a81905560015b919050565b6111796111bc565b6001600160a01b0381166111a357604051631e4fbdf760e01b815260006004820152602401610bbc565b6111ac81611b31565b50565b610ca08383836001611bd7565b6005546001600160a01b03163314610c135760405163118cdaa760e01b8152336004820152602401610bbc565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610ee7578181101561125257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610bbc565b610ee784848484036000611bd7565b6001600160a01b0383166112c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bbc565b6001600160a01b0382166113275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bbc565b6001600160a01b0383166000908152600e602052604090205460ff16156113815760405162461bcd60e51b815260206004820152600e60248201526d14db9a5c195c88189b1bd8dad95960921b6044820152606401610bbc565b8060000361139557610ca083836000611cac565b600c5460ff16156117fc576005546001600160a01b038481169116148015906113cc57506005546001600160a01b03838116911614155b80156113e057506001600160a01b03821615155b80156113f757506001600160a01b03821661dead14155b801561140d5750600554600160a01b900460ff16155b156117fc57600c54610100900460ff166114a5576001600160a01b0383166000908152601b602052604090205460ff168061146057506001600160a01b0382166000908152601b602052604090205460ff165b6114a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbc565b7f00000000000000000000000056cd5a89f9d661eb5acfa45f27ce91a0a1d55fe26001600160a01b0316836001600160a01b03161480156114f45750600f546001600160a01b03838116911614155b801561150957506001600160a01b0382163014155b801561154757507f00000000000000000000000056cd5a89f9d661eb5acfa45f27ce91a0a1d55fe26001600160a01b0316826001600160a01b031614155b15611596576001600160a01b0382166000818152600e6020526040808220805460ff19166001179055517fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e29190a25b6001600160a01b0383166000908152601d602052604090205460ff1680156115d757506001600160a01b0382166000908152601c602052604090205460ff16155b156116bb5760095481111561164c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbc565b600b546001600160a01b0383166000908152602081905260409020546116729083612662565b11156116b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b6117fc565b6001600160a01b0382166000908152601d602052604090205460ff1680156116fc57506001600160a01b0383166000908152601c602052604090205460ff16155b15611772576009548111156116b65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbc565b6001600160a01b0382166000908152601c602052604090205460ff166117fc57600b546001600160a01b0383166000908152602081905260409020546117b89083612662565b11156117fc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbc565b30600090815260208190526040902054600a54811080159081906118285750600c5462010000900460ff165b801561183e5750600554600160a01b900460ff16155b801561186357506001600160a01b0385166000908152601d602052604090205460ff16155b801561188857506001600160a01b0385166000908152601b602052604090205460ff16155b80156118ad57506001600160a01b0384166000908152601b602052604090205460ff16155b156118db576005805460ff60a01b1916600160a01b1790556118cd611d0b565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061192957506001600160a01b0385166000908152601b602052604090205460ff165b15611932575060005b60008115611b1d576001600160a01b0386166000908152601d602052604090205460ff16801561196457506000601454115b15611a2257611989606461198360145488611f4490919063ffffffff16565b90611f57565b90506014546016548261199c9190612629565b6119a69190612640565b601960008282546119b79190612662565b90915550506014546015546119cc9083612629565b6119d69190612640565b601860008282546119e79190612662565b90915550506014546017546119fc9083612629565b611a069190612640565b601a6000828254611a179190612662565b90915550611aff9050565b6001600160a01b0387166000908152601d602052604090205460ff168015611a4c57506000601054115b15611aff57611a6b606461198360105488611f4490919063ffffffff16565b905060105460125482611a7e9190612629565b611a889190612640565b60196000828254611a999190612662565b9091555050601054601154611aae9083612629565b611ab89190612640565b60186000828254611ac99190612662565b9091555050601054601354611ade9083612629565b611ae89190612640565b601a6000828254611af99190612662565b90915550505b8015611b1057611b10873083611cac565b611b1a81866126a4565b94505b611b28878787611cac565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611c015760405163e602df0560e01b815260006004820152602401610bbc565b6001600160a01b038316611c2b57604051634a1406b160e11b815260006004820152602401610bbc565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610ee757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611c9e91815260200190565b60405180910390a350505050565b6001600160a01b038316611cd657604051634b637e8f60e11b815260006004820152602401610bbc565b6001600160a01b038216611d005760405163ec442f0560e01b815260006004820152602401610bbc565b610ca0838383611f63565b3060009081526020819052604081205490506000601a54601854601954611d329190612662565b611d3c9190612662565b90506000821580611d4b575081155b15611d5557505050565b600a54611d63906014612629565b831115611d7b57600a54611d78906014612629565b92505b600060028360195486611d8e9190612629565b611d989190612640565b611da29190612640565b90506000611db0858361208d565b905047611dbc82612099565b6000611dc8478361208d565b90506000611de58761198360185485611f4490919063ffffffff16565b90506000611e0288611983601a5486611f4490919063ffffffff16565b9050600081611e1184866126a4565b611e1b91906126a4565b600060198190556018819055601a5590508615801590611e3b5750600081115b15611e8e57611e4a8782612259565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116908390600081818185875af1925050503d8060008114611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b50506006546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b50505050505050505050505050565b6000611f508284612629565b9392505050565b6000611f508284612640565b6001600160a01b038316611f8e578060026000828254611f839190612662565b909155506120009050565b6001600160a01b03831660009081526020819052604090205481811015611fe15760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610bbc565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661201c5760028054829003905561203b565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161208091815260200190565b60405180910390a3505050565b6000611f5082846126a4565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ce576120ce612675565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561214c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217091906126b7565b8160018151811061218357612183612675565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ce307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111af565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122239085906000908690309042906004016126d4565b600060405180830381600087803b15801561223d57600080fd5b505af1158015612251573d6000803e3d6000fd5b505050505050565b612284307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111af565b60075460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612313573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123389190612745565b5050505050565b600060208083528351808285015260005b8181101561236c57858101830151858201604001528201612350565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111ac57600080fd5b600080604083850312156123b557600080fd5b82356123c08161238d565b946020939093013593505050565b6000602082840312156123e057600080fd5b8135611f508161238d565b60008060006060848603121561240057600080fd5b833561240b8161238d565b9250602084013561241b8161238d565b9150604084013561242b8161238d565b809150509250925092565b60006020828403121561244857600080fd5b5035919050565b60008060006060848603121561246457600080fd5b833561246f8161238d565b9250602084013561247f8161238d565b929592945050506040919091013590565b8035801515811461116c57600080fd5b600080604083850312156124b357600080fd5b82356124be8161238d565b91506124cc60208401612490565b90509250929050565b6000806000606084860312156124ea57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561251357600080fd5b611f5082612490565b60008060006040848603121561253157600080fd5b833567ffffffffffffffff8082111561254957600080fd5b818601915086601f83011261255d57600080fd5b81358181111561256c57600080fd5b8760208260051b850101111561258157600080fd5b6020928301955093506125979186019050612490565b90509250925092565b600080604083850312156125b357600080fd5b82356125be8161238d565b915060208301356125ce8161238d565b809150509250929050565b600181811c908216806125ed57607f821691505b60208210810361260d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a8657610a86612613565b60008261265d57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a8657610a86612613565b634e487b7160e01b600052603260045260246000fd5b60006001820161269d5761269d612613565b5060010190565b81810381811115610a8657610a86612613565b6000602082840312156126c957600080fd5b8151611f508161238d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127245784516001600160a01b0316835293830193918301916001016126ff565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561275a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122087ac5944fe260048493c00109d92a9b4364bddfb1b6b15a5e7be62508eb3d98664736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ac409c89cd280ed4e03e6587add1cee4db8ad9bf000000000000000000000000493906559b2f8542e9a15bcb281deeb1e3be0e68000000000000000000000000dbc9574f97238f4408771227ea12818acdcef546

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _mktgWallet (address): 0xAc409c89cd280ED4e03E6587AdD1CEE4db8ad9Bf
Arg [2] : _rewardWallet (address): 0x493906559B2f8542E9A15bCB281DeeB1E3Be0e68
Arg [3] : _operationsWallet (address): 0xdbc9574F97238F4408771227ea12818acDCEF546

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000ac409c89cd280ed4e03e6587add1cee4db8ad9bf
Arg [2] : 000000000000000000000000493906559b2f8542e9a15bcb281deeb1e3be0e68
Arg [3] : 000000000000000000000000dbc9574f97238f4408771227ea12818acdcef546


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.