ETH Price: $2,358.29 (+0.23%)

Token

Liquid Share V2 (LShareV2)
 

Overview

Max Total Supply

100,000,000 LShareV2

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.405758756207555223 LShareV2

Value
$0.00
0x17aa953ec1330334c26a5d21838788a18a5738d7
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:
LiquidShare

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : LiquidShare.sol
// SPDX-License-Identifier: MIT
/*

β–ˆβ–ˆβ•—     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  
β–ˆβ–ˆβ•‘     β•šβ•β•β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•  
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β•šβ•β•β•β•β•β•β•β•šβ•β•β•β•β•β•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•β•β•β•β•β•
                                                
Website: https://liquidshare.cash
Revenue Share: https://rewards.liquidshare.cash/
Telegram: https://t.me/liquidshareportal
Twitter: https://twitter.com/liquidsharecash

*/

pragma solidity = 0.8.15;

import "./libs/LSHAREDiv.sol";

contract LiquidShare is ERC20, Ownable {
    IUniswapRouter public router;
    address public pair;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled;
    bool public tradingEnabled;

    LShareDividendTracker public dividendTracker;

    address public mktWallet;
    address public xfPoolShare;
    address private rescueWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    struct Taxes {
        uint256 liquidity;
        uint256 mkt;
        uint256 xf;
    }

    Taxes public buyTaxes = Taxes(2, 3, 1);
    Taxes public sellTaxes = Taxes(2, 3, 1);

    uint256 public totalBuyTax = 6;
    uint256 public totalSellTax = 6;

    mapping(address => bool) public _isBot;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    ///////////////
    //   Events  //
    ///////////////

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor(address _marketingwallet, address _rescueWallet, address _poolShareAddress) ERC20("Liquid Share V2", "LShareV2") {
        dividendTracker = new LShareDividendTracker();
        setMktWallet(_marketingwallet);
        setRescueWallet(_rescueWallet);

        IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        xfPoolShare = _poolShareAddress;
        router = _router;
        pair = _pair;
        setSwapTokensAtAmount(300000); //
        updateMaxWalletAmount(2000000);
        setMaxBuyAndSell(2000000, 2000000);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.updateLP_Token(pair);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0xdead), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        excludeFromMaxWallet(address(_pair), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        _mint(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        LShareDividendTracker newDividendTracker = LShareDividendTracker(
            payable(newAddress)
        );
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker),
            true
        );
        newDividendTracker.excludeFromDividends(address(this), true);
        newDividendTracker.excludeFromDividends(owner(), true);
        newDividendTracker.excludeFromDividends(address(router), true);
        dividendTracker = newDividendTracker;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum >= 1000000, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * 10**18;
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% ");
        require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        swapTokensAtAmount = amount * 10**18;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @dev It will send all ETH to mkt
    function forceSend() external onlyOwner {
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(mktWallet).call{value: ETHbalance}("");
        require(success);
    }

    function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner {
        dividendTracker.trackerRescueETH20Tokens(msg.sender, tokenAddress);
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IUniswapRouter(newRouter);
    }

    /////////////////////////////////
    // Exclude / Include functions //
    /////////////////////////////////

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    /// @dev "true" to exlcude, "false" to include
    function excludeFromDividends(address account, bool value)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }

    function setMktWallet(address newWallet) public onlyOwner {
        mktWallet = newWallet;
    }

    function setRescueWallet(address newWallet) public onlyOwner {
        rescueWallet = newWallet;
    }

    function setBuyTaxes(uint256 _liquidity, uint256 _mkt, uint256 _xfbot) external onlyOwner {
        require(_liquidity + _mkt <= 12, "Fee must be <= 12%");
        buyTaxes = Taxes(_liquidity, _mkt, _xfbot);
        totalBuyTax = _liquidity + _mkt + _xfbot;
    }

    function setSellTaxes(uint256 _liquidity, uint256 _mkt, uint256 _xfbot) external onlyOwner {
        require(_liquidity + _mkt <= 12, "Fee must be <= 12%");
        sellTaxes = Taxes(_liquidity, _mkt, _xfbot);
        totalSellTax = _liquidity + _mkt + _xfbot;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    function setClaimEnabled(bool state) external onlyOwner {
        claimEnabled = state;
    }

    function setAntiBotLaunchFee() external onlyOwner{
        buyTaxes = Taxes(10, 25, 5);
        totalBuyTax = 10 + 25 + 5;

        sellTaxes = Taxes(10, 25, 5);
        totalSellTax = 10 + 25 + 5;

        swapEnabled = true;
        tradingEnabled = true;
    }

    function setStableLaunchFee() external onlyOwner{
        buyTaxes = Taxes(5, 10, 5);
        totalBuyTax = 5 + 10 + 5;

        sellTaxes = Taxes(5, 10, 5);
        totalSellTax = 5 + 10 + 5;
    }

    function setFairLaunchFee() external onlyOwner{
        buyTaxes = Taxes(2, 3, 1);
        totalBuyTax = 2 + 3 + 1;

        sellTaxes = Taxes(2, 3, 1);
        totalSellTax = 2 + 3 + 1;
    }

    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) external onlyOwner {
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setLP_Token(address _lpToken) external onlyOwner {
        dividendTracker.updateLP_Token(_lpToken);
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    //////////////////////
    // Getter Functions //
    //////////////////////

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

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

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.balanceOf(account);
    }

    function getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    ////////////////////////
    // Transfer Functions //
    ////////////////////////

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

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

        try dividendTracker.setBalance(from, balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(to, balanceOf(to)) {} catch {}
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwapForLiq = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 tokensToAddLiquidityWith = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 toSwapForMkt = (tokens * sellTaxes.mkt) / totalSellTax;
        uint256 toSwapForXF = (tokens * sellTaxes.xf) / totalSellTax;

        swapTokensForETH(toSwapForLiq);

        uint256 currentbalance = address(this).balance;

        if (currentbalance > 0) {
            // Add liquidity to uni
            addLiquidity(tokensToAddLiquidityWith, currentbalance);
        }

        swapTokensForETH(toSwapForMkt);

        uint256 EthTaxBalance = address(this).balance;

        // Send ETH to mkt
        uint256 mktAmt = EthTaxBalance;

        if (mktAmt > 0) {
            (bool success, ) = payable(mktWallet).call{value: mktAmt}("");
            require(success, "Failed to send ETH to mkt wallet");
        }

        swapTokensForETH(toSwapForXF);

        uint256 EthTaxBalanceXF = address(this).balance;

        // Send ETH to xfBot PoolShare
        uint256 xfAmt = EthTaxBalanceXF;

        if (xfAmt > 0) {
            (bool success, ) = payable(xfPoolShare).call{value: xfAmt}("");
            require(success, "Failed to send ETH to xfPoolShare address");
        }

        uint256 lpBalance = IERC20(pair).balanceOf(address(this));

        //Send LP to dividends
        uint256 dividends = lpBalance;

        if (dividends > 0) {
            bool success = IERC20(pair).transfer(
                address(dividendTracker),
                dividends
            );
            if (success) {
                dividendTracker.distributeLPDividends(dividends);
                emit SendDividends(tokens, dividends);
            }
        }
    }

    // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling
    function ManualLiquidityDistribution(uint256 amount) public onlyOwner {
        bool success = IERC20(pair).transferFrom(
            msg.sender,
            address(dividendTracker),
            amount
        );
        if (success) {
            dividendTracker.distributeLPDividends(amount);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

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

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

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

contract LShareDividendTracker is Ownable, DividendPayingToken {
    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    event ExcludeFromDividends(address indexed account, bool value);
    event Claim(address indexed account, uint256 amount);

    constructor()
        DividendPayingToken("LShare_Dividend_Tracker", "LShare_Dividend_Tracker")
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function updateLP_Token(address _lpToken) external onlyOwner {
        LP_Token = _lpToken;
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal pure override {
        require(false, "LShare_Dividend_Tracker: No transfers allowed");
    }

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function setBalance(address account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        _setBalance(account, newBalance);
    }

    function processAccount(address payable account)
        external
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 4 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 10 : ILSHAREDiv.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

/*

β–ˆβ–ˆβ•—     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  
β–ˆβ–ˆβ•‘     β•šβ•β•β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•  
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β•šβ•β•β•β•β•β•β•β•šβ•β•β•β•β•β•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•β•β•β•β•β•
                                                
Website: https://liquidshare.cash
Revenue Share: https://rewards.liquidshare.cash/
Telegram: https://t.me/liquidshareportal
Twitter: https://twitter.com/liquidsharecash

*/

interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;
  
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);


  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
  
}

File 9 of 10 : LSHAREDiv.sol
// SPDX-License-Identifier: MIT

/*

β–ˆβ–ˆβ•—     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  
β–ˆβ–ˆβ•‘     β•šβ•β•β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•  
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
β•šβ•β•β•β•β•β•β•β•šβ•β•β•β•β•β•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β•β•šβ•β•β•β•β•β•β•
                                                
Website: https://liquidshare.cash
Revenue Share: https://rewards.liquidshare.cash/
Telegram: https://t.me/liquidshareportal
Twitter: https://twitter.com/liquidsharecash

*/

pragma solidity ^0.8.10;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./SafeMath.sol";
import "./ILSHAREDiv.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";


interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

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

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {

  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public LP_Token;


  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;
  uint256 public totalDividendsWithdrawn;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}

  function distributeLPDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
 function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _withdrawableDividend;
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

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

pragma solidity ^0.8.6;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingwallet","type":"address"},{"internalType":"address","name":"_rescueWallet","type":"address"},{"internalType":"address","name":"_poolShareAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"mkt","type":"uint256"},{"internalType":"uint256","name":"xf","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract LShareDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":"mktWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"mkt","type":"uint256"},{"internalType":"uint256","name":"xf","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setAntiBotLaunchFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_mkt","type":"uint256"},{"internalType":"uint256","name":"_xfbot","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFairLaunchFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setRescueWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_mkt","type":"uint256"},{"internalType":"uint256","name":"_xfbot","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStableLaunchFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xfPoolShare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6007805460ff60a81b1916600160a81b17905560026080819052600360a0819052600160c081905260108390556011829055601281905561014060405260e0839052610100829052610120819052601392909255601455601555600660168190556017553480156200007057600080fd5b5060405162005acf38038062005acf833981016040819052620000939162000c95565b6040518060400160405280600f81526020016e2634b8bab4b21029b430b932902b1960891b815250604051806040016040528060088152602001672629b430b932ab1960c11b8152508160039081620000ed919062000d83565b506004620000fc828262000d83565b50505062000119620001136200066b60201b60201c565b6200066f565b604051620001279062000c6a565b604051809103906000f08015801562000144573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b03929092169190911790556200017083620006c1565b6200017b82620006ed565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fb919062000e4f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f919062000e4f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e3919062000e4f565b600a80546001600160a01b038087166001600160a01b031992831617909255600680548684169083161790556007805492841692909116919091179055905062000330620493e062000719565b6200033e621e84806200073d565b6200034d621e848080620007c5565b6200035a816001620008b7565b60085460075460405163225b5ecf60e11b81526001600160a01b0391821660048201529116906344b6bd9e90602401600060405180830381600087803b158015620003a457600080fd5b505af1158015620003b9573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b0390911660048201819052600160248301529250630483f7a09150604401600060405180830381600087803b1580156200040a57600080fd5b505af11580156200041f573d6000803e3d6000fd5b505060085460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200046f57600080fd5b505af115801562000484573d6000803e3d6000fd5b50506008546001600160a01b03169150630483f7a09050620004ae6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004f757600080fd5b505af11580156200050c573d6000803e3d6000fd5b505060085460405162241fbd60e51b815261dead6004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200055e57600080fd5b505af115801562000573573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b158015620005c557600080fd5b505af1158015620005da573d6000803e3d6000fd5b50505050620005f181600162000a2160201b60201c565b620005fe30600162000a21565b6200060b82600162000a21565b6200062a620006226005546001600160a01b031690565b600162000a56565b6200063730600162000a56565b620006606200064e6005546001600160a01b031690565b6a52b7d2dcc80cd2e400000062000b44565b505050505062000ec7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620006cb62000c07565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b620006f762000c07565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6200072362000c07565b6200073781670de0b6b3a764000062000e8a565b600c5550565b6200074762000c07565b620f4240811015620007ab5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b60648201526084015b60405180910390fd5b620007bf81670de0b6b3a764000062000e8a565b600f5550565b620007cf62000c07565b620f4240821015620008245760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e203125206044820152606401620007a2565b6207a120811015620008855760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b6064820152608401620007a2565b6200089982670de0b6b3a764000062000e8a565b600d55620008b081670de0b6b3a764000062000e8a565b600e555050565b6001600160a01b0382166000908152601a602052604090205481151560ff9091161515036200094f5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401620007a2565b6001600160a01b0382166000908152601a60205260409020805460ff19168215801591909117909155620009e55760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015620009cb57600080fd5b505af1158015620009e0573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b62000a2b62000c07565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b62000a6062000c07565b6001600160a01b03821660009081526019602052604090205481151560ff90911615150362000ae55760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401620007a2565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000b9c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620007a2565b806002600082825462000bb0919062000eac565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0316331462000c635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620007a2565b565b505050565b611a53806200407c83390190565b80516001600160a01b038116811462000c9057600080fd5b919050565b60008060006060848603121562000cab57600080fd5b62000cb68462000c78565b925062000cc66020850162000c78565b915062000cd66040850162000c78565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000d0a57607f821691505b60208210810362000d2b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c6557600081815260208120601f850160051c8101602086101562000d5a5750805b601f850160051c820191505b8181101562000d7b5782815560010162000d66565b505050505050565b81516001600160401b0381111562000d9f5762000d9f62000cdf565b62000db78162000db0845462000cf5565b8462000d31565b602080601f83116001811462000def576000841562000dd65750858301515b600019600386901b1c1916600185901b17855562000d7b565b600085815260208120601f198616915b8281101562000e205788860151825594840194600190910190840162000dff565b508582101562000e3f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e6257600080fd5b62000e6d8262000c78565b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000ea75762000ea762000e74565b500290565b6000821982111562000ec25762000ec262000e74565b500190565b6131a58062000ed76000396000f3fe6080604052600436106103bc5760003560e01c806379b447bd116101f2578063afa4f3b21161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b5f578063f66895a314610b7f578063f887ea4014610b9e578063f8b45b0514610bbe57600080fd5b8063dd62ed3e14610ae9578063e01af92c14610b09578063e2f4560514610b29578063e803cee014610b3f57600080fd5b8063c18bc195116100dc578063c18bc19514610a69578063c851cc3214610a89578063d2fcc00114610aa9578063d984e73c14610ac957600080fd5b8063afa4f3b2146109d9578063b62496f5146109f9578063bdf1436d14610a29578063c024666814610a4957600080fd5b806395d89b4111610185578063a8b9d24011610154578063a8b9d24014610954578063a9059cbb14610974578063abb8105214610994578063ae3dcb47146109c457600080fd5b806395d89b41146108df5780639a7a23d6146108f4578063a457c2d714610914578063a8aa1b311461093457600080fd5b806388e765ff116101c157806388e765ff1461086b5780638c9684f9146108815780638da5cb5b146108a157806392929a09146108bf57600080fd5b806379b447bd1461079f5780637b510fe8146107bf578063864701a51461081157806388bdd9be1461084b57600080fd5b806330bb4cff116102e25780634e71d92d116102755780636843cd84116102445780636843cd84146107135780636ddd17131461073357806370a0823114610754578063715018a61461078a57600080fd5b80634e71d92d1461069a5780634e86fe00146106af5780634fbee193146106c457806366d602ae146106fd57600080fd5b8063446b9b4b116102b1578063446b9b4b1461062e57806346469afb146106435780634ada218b146106595780634c2d56a31461067a57600080fd5b806330bb4cff146105bd578063313ce567146105d2578063342aa8b5146105ee578063395093511461060e57600080fd5b806312b77e8a1161035a57806323b872dd1161032957806323b872dd146105245780632866ed21146105445780632c1f5216146105655780632e1ab9041461059d57600080fd5b806312b77e8a146104ba57806318160ddd146104cf5780631870517a146104ee5780631bff78981461050e57600080fd5b806308733214116103965780630873321414610435578063095ea7b3146104555780630a78097d146104855780630bd05b69146104a557600080fd5b80630483f7a0146103c8578063065e812b146103ea57806306fdde031461040a57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004612d05565b610bd4565b005b3480156103f657600080fd5b506103e8610405366004612d3e565b610c47565b34801561041657600080fd5b5061041f610c71565b60405161042c9190612d62565b60405180910390f35b34801561044157600080fd5b506103e8610450366004612db7565b610d03565b34801561046157600080fd5b50610475610470366004612de3565b610da3565b604051901515815260200161042c565b34801561049157600080fd5b506103e86104a0366004612d3e565b610dbb565b3480156104b157600080fd5b506103e8610ebf565b3480156104c657600080fd5b506103e8610f36565b3480156104db57600080fd5b506002545b60405190815260200161042c565b3480156104fa57600080fd5b506103e8610509366004612db7565b610fa2565b34801561051a57600080fd5b506104e060175481565b34801561053057600080fd5b5061047561053f366004612e0f565b61103d565b34801561055057600080fd5b5060075461047590600160b01b900460ff1681565b34801561057157600080fd5b50600854610585906001600160a01b031681565b6040516001600160a01b03909116815260200161042c565b3480156105a957600080fd5b506103e86105b8366004612d3e565b611061565b3480156105c957600080fd5b506104e06110cc565b3480156105de57600080fd5b506040516012815260200161042c565b3480156105fa57600080fd5b506103e8610609366004612d05565b61113f565b34801561061a57600080fd5b50610475610629366004612de3565b61119f565b34801561063a57600080fd5b506103e86111c1565b34801561064f57600080fd5b506104e060165481565b34801561066557600080fd5b5060075461047590600160b81b900460ff1681565b34801561068657600080fd5b506103e8610695366004612d3e565b611229565b3480156106a657600080fd5b506103e8611253565b3480156106bb57600080fd5b506103e8611311565b3480156106d057600080fd5b506104756106df366004612d3e565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561070957600080fd5b506104e0600e5481565b34801561071f57600080fd5b506104e061072e366004612d3e565b611390565b34801561073f57600080fd5b5060075461047590600160a81b900460ff1681565b34801561076057600080fd5b506104e061076f366004612d3e565b6001600160a01b031660009081526020819052604090205490565b34801561079657600080fd5b506103e8611406565b3480156107ab57600080fd5b506103e86107ba366004612e50565b61141a565b3480156107cb57600080fd5b506107df6107da366004612d3e565b611502565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a00161042c565b34801561081d57600080fd5b5060105460115460125461083092919083565b6040805193845260208401929092529082015260600161042c565b34801561085757600080fd5b506103e8610866366004612d3e565b61158c565b34801561087757600080fd5b506104e0600d5481565b34801561088d57600080fd5b506103e861089c366004612d3e565b61175e565b3480156108ad57600080fd5b506005546001600160a01b0316610585565b3480156108cb57600080fd5b506103e86108da366004612e72565b61179e565b3480156108eb57600080fd5b5061041f6117c4565b34801561090057600080fd5b506103e861090f366004612d05565b6117d3565b34801561092057600080fd5b5061047561092f366004612de3565b6117e5565b34801561094057600080fd5b50600754610585906001600160a01b031681565b34801561096057600080fd5b506104e061096f366004612d3e565b611860565b34801561098057600080fd5b5061047561098f366004612de3565b611893565b3480156109a057600080fd5b506104756109af366004612d3e565b60186020526000908152604090205460ff1681565b3480156109d057600080fd5b506103e86118a1565b3480156109e557600080fd5b506103e86109f4366004612e8f565b611908565b348015610a0557600080fd5b50610475610a14366004612d3e565b601a6020526000908152604090205460ff1681565b348015610a3557600080fd5b506103e8610a44366004612e8f565b611928565b348015610a5557600080fd5b506103e8610a64366004612d05565b6119ed565b348015610a7557600080fd5b506103e8610a84366004612e8f565b611ad7565b348015610a9557600080fd5b506103e8610aa4366004612d3e565b611b55565b348015610ab557600080fd5b506103e8610ac4366004612d05565b611b7f565b348015610ad557600080fd5b50600a54610585906001600160a01b031681565b348015610af557600080fd5b506104e0610b04366004612ea8565b611bb2565b348015610b1557600080fd5b506103e8610b24366004612e72565b611bdd565b348015610b3557600080fd5b506104e0600c5481565b348015610b4b57600080fd5b50600954610585906001600160a01b031681565b348015610b6b57600080fd5b506103e8610b7a366004612d3e565b611c03565b348015610b8b57600080fd5b5060135460145460155461083092919083565b348015610baa57600080fd5b50600654610585906001600160a01b031681565b348015610bca57600080fd5b506104e0600f5481565b610bdc611c79565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610c2b57600080fd5b505af1158015610c3f573d6000803e3d6000fd5b505050505050565b610c4f611c79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c8090612ed6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612ed6565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b610d0b611c79565b600c610d178385612f26565b1115610d5f5760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2031322560701b60448201526064015b60405180910390fd5b60408051606081018252848152602081018490520181905260138390556014829055601581905580610d918385612f26565b610d9b9190612f26565b601755505050565b600033610db1818585611cd3565b5060019392505050565b610dc3611c79565b806001600160a01b031663a9059cbb610de46005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4c9190612f3e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190612f57565b5050565b610ec7611c79565b600754600160b81b900460ff1615610f215760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610d56565b6007805460ff60b81b1916600160b81b179055565b610f3e611c79565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b5050905080610ebb57600080fd5b610faa611c79565b600c610fb68385612f26565b1115610ff95760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2031322560701b6044820152606401610d56565b6040805160608101825284815260208101849052018190526010839055601182905560128190558061102b8385612f26565b6110359190612f26565b601655505050565b60003361104b858285611df7565b611056858585611e71565b506001949350505050565b611069611c79565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b1580156110b157600080fd5b505af11580156110c5573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113a9190612f3e565b905090565b611147611c79565b6001600160a01b03821660009081526018602052604090205481151560ff90911615150361117457600080fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b600033610db18185856111b28383611bb2565b6111bc9190612f26565b611cd3565b6111c9611c79565b60408051606080820183526002808352600360208085018290526001948601859052601083905560118290556012859055600660168190558651948501875283855290840182905292909401839052601355601492909255601555601755565b611231611c79565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600754600160b01b900460ff166112a05760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610d56565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af11580156112ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130e9190612f57565b50565b611319611c79565b6040805160608082018352600a8083526019602080850182905260059486018590526010839055601182905560128590556028601681905586519485018752838552908401829052929094018390526013556014929092556015556017556007805462ff00ff60a81b19166201000160a81b179055565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156113dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114009190612f3e565b92915050565b61140e611c79565b6114186000612454565b565b611422611c79565b620f42408210156114755760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e203125206044820152606401610d56565b6207a1208110156114d45760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b6064820152608401610d56565b6114e682670de0b6b3a7640000612f74565b600d556114fb81670de0b6b3a7640000612f74565b600e555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157a9190612f93565b939a9299509097509550909350915050565b611594611c79565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561163c57600080fd5b505af1158015611650573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06116756005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156116bd57600080fd5b505af11580156116d1573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561172257600080fd5b505af1158015611736573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b611766611c79565b60085460405163497ec82360e01b81523360048201526001600160a01b0383811660248301529091169063497ec82390604401611097565b6117a6611c79565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610c8090612ed6565b6117db611c79565b610ebb82826124a6565b600033816117f38286611bb2565b9050838110156118535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d56565b6110568286868403611cd3565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016113bf565b600033610db1818585611e71565b6118a9611c79565b60408051606080820183526005808352600a602080850182905293850182905260108290556011819055601282905560146016819055855193840186528284529383018190529190930183905260138390558155601591909155601755565b611910611c79565b61192281670de0b6b3a7640000612f74565b600c5550565b611930611c79565b6007546008546040516323b872dd60e01b81523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af1158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190612f57565b90508015610ebb57600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610c11565b6119f5611c79565b6001600160a01b03821660009081526019602052604090205481151560ff909116151503611a785760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610d56565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611adf611c79565b620f4240811015611b3d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610d56565b611b4f81670de0b6b3a7640000612f74565b600f5550565b611b5d611c79565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b611b87611c79565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611be5611c79565b60078054911515600160a81b0260ff60a81b19909216919091179055565b611c0b611c79565b6001600160a01b038116611c705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d56565b61130e81612454565b6005546001600160a01b031633146114185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d56565b6001600160a01b038316611d355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d56565b6001600160a01b038216611d965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d56565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e038484611bb2565b90506000198114611e6b5781811015611e5e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d56565b611e6b8484848403611cd3565b50505050565b6001600160a01b038316611e975760405162461bcd60e51b8152600401610d5690612fdc565b6001600160a01b038216611ebd5760405162461bcd60e51b8152600401610d5690613021565b6001600160a01b03831660009081526019602052604090205460ff16158015611eff57506001600160a01b03821660009081526019602052604090205460ff16155b8015611f155750600754600160a01b900460ff16155b156120e757600754600160b81b900460ff16611f685760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610d56565b6001600160a01b0382166000908152601a602052604090205460ff1615611fe057600e54811115611fdb5760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610d56565b612053565b6001600160a01b0383166000908152601a602052604090205460ff161561205357600d548111156120535760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610d56565b6001600160a01b0382166000908152601b602052604090205460ff166120e757600f546001600160a01b0383166000908152602081905260409020546120999083612f26565b11156120e75760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610d56565b80600003612100576120fb8383600061260b565b505050565b30600090815260208190526040902054600c548110801590819061212e5750600754600160a01b900460ff16155b80156121435750600754600160a81b900460ff165b801561216757506001600160a01b0384166000908152601a602052604090205460ff165b801561218c57506001600160a01b03851660009081526019602052604090205460ff16155b80156121b157506001600160a01b03841660009081526019602052604090205460ff16155b156121ea576007805460ff60a01b1916600160a01b179055601754156121dc576121dc600c54612735565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061223857506001600160a01b03851660009081526019602052604090205460ff165b15612241575060005b6001600160a01b0385166000908152601a602052604090205460ff1615801561228357506001600160a01b0386166000908152601a602052604090205460ff16155b1561228c575060005b801561232b576001600160a01b0385166000908152601a602052604081205460ff16156122d4576064601754866122c39190612f74565b6122cd9190613064565b9050612312565b6001600160a01b0387166000908152601a602052604090205460ff1615612312576064601654866123059190612f74565b61230f9190613064565b90505b61231c8186613086565b945061232987308361260b565b505b61233686868661260b565b6008546001600160a01b031663e30443bc87612367816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156123ad57600080fd5b505af19250505080156123be575060015b506008546001600160a01b031663e30443bc866123f0816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561243657600080fd5b505af1925050508015612447575060015b15610c3f57505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601a602052604090205481151560ff90911615150361253c5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610d56565b6001600160a01b0382166000908152601a60205260409020805460ff191682158015919091179091556125cf5760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156125b657600080fd5b505af11580156125ca573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166126315760405162461bcd60e51b8152600401610d5690612fdc565b6001600160a01b0382166126575760405162461bcd60e51b8152600401610d5690613021565b6001600160a01b038316600090815260208190526040902054818110156126cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d56565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e6b565b60175460135460009160029161274b9085612f74565b6127559190613064565b61275f9190613064565b905060006002601754601360000154856127799190612f74565b6127839190613064565b61278d9190613064565b6017546014549192506000916127a39086612f74565b6127ad9190613064565b6017546015549192506000916127c39087612f74565b6127cd9190613064565b90506127d884612b14565b4780156127e9576127e98482612c38565b6127f283612b14565b4780801561289f576009546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612847576040519150601f19603f3d011682016040523d82523d6000602084013e61284c565b606091505b505090508061289d5760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206d6b742077616c6c65746044820152606401610d56565b505b6128a884612b14565b4780801561296757600a546040516000916001600160a01b03169083908381818185875af1925050503d80600081146128fd576040519150601f19603f3d011682016040523d82523d6000602084013e612902565b606091505b50509050806129655760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f2073656e642045544820746f207866506f6f6c5368617260448201526865206164647265737360b81b6064820152608401610d56565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d49190612f3e565b9050808015612b065760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5b9190612f57565b90508015612b0457600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612aa957600080fd5b505af1158015612abd573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38d83604051612afb929190918252602082015260400190565b60405180910390a15b505b505050505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b4957612b4961309d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bc691906130b3565b81600181518110612bd957612bd961309d565b6001600160a01b039283166020918202929092010152600654612bff9130911684611cd3565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610c119085906000908690309042906004016130d0565b600654612c509030906001600160a01b031684611cd3565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612cbd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110c59190613141565b6001600160a01b038116811461130e57600080fd5b801515811461130e57600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612ce2565b91506020830135612d3381612cf7565b809150509250929050565b600060208284031215612d5057600080fd5b8135612d5b81612ce2565b9392505050565b600060208083528351808285015260005b81811015612d8f57858101830151858201604001528201612d73565b81811115612da1576000604083870101525b50601f01601f1916929092016040019392505050565b600080600060608486031215612dcc57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612df657600080fd5b8235612e0181612ce2565b946020939093013593505050565b600080600060608486031215612e2457600080fd5b8335612e2f81612ce2565b92506020840135612e3f81612ce2565b929592945050506040919091013590565b60008060408385031215612e6357600080fd5b50508035926020909101359150565b600060208284031215612e8457600080fd5b8135612d5b81612cf7565b600060208284031215612ea157600080fd5b5035919050565b60008060408385031215612ebb57600080fd5b8235612ec681612ce2565b91506020830135612d3381612ce2565b600181811c90821680612eea57607f821691505b602082108103612f0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612f3957612f39612f10565b500190565b600060208284031215612f5057600080fd5b5051919050565b600060208284031215612f6957600080fd5b8151612d5b81612cf7565b6000816000190483118215151615612f8e57612f8e612f10565b500290565b600080600080600060a08688031215612fab57600080fd5b8551612fb681612ce2565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261308157634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561309857613098612f10565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130c557600080fd5b8151612d5b81612ce2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131205784516001600160a01b0316835293830193918301916001016130fb565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561315657600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122046e9692298a734dab22a3a748f9db0a1417022af2c134324e7b5dfee3609c91664736f6c634300080f003360806040523480156200001157600080fd5b5060408051808201825260178082527f4c53686172655f4469766964656e645f547261636b65720000000000000000006020808401829052845180860190955291845290830152908181600362000069838262000198565b50600462000078828262000198565b505050620000956200008f6200009d60201b60201c565b620000a1565b505062000264565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011e57607f821691505b6020821081036200013f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019357600081815260208120601f850160051c810160208610156200016e5750805b601f850160051c820191505b818110156200018f578281556001016200017a565b5050505b505050565b81516001600160401b03811115620001b457620001b4620000f3565b620001cc81620001c5845462000109565b8462000145565b602080601f831160018114620002045760008415620001eb5750858301515b600019600386901b1c1916600185901b1785556200018f565b600085815260208120601f198616915b82811015620002355788860151825594840194600190910190840162000214565b5085821015620002545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6117df80620002746000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc1461042d578063ede6ad9c14610440578063f2fde38b14610453578063fbcbc0f11461046657600080fd5b8063a8b9d240146103cb578063a9059cbb146103de578063aafd847a146103f1578063dd62ed3e1461041a57600080fd5b806391b89fba116100de57806391b89fba1461039457806395d89b41146103a75780639e1e0661146103af578063a457c2d7146103b857600080fd5b8063715018a61461035f578063807ab4f71461036757806385a6b3ae1461037a5780638da5cb5b1461038357600080fd5b806327ce014711610187578063497ec82311610156578063497ec823146102f85780634e7b827f1461030b5780636a4740021461032e57806370a082311461033657600080fd5b806327ce0147146102b0578063313ce567146102c357806339509351146102d257806344b6bd9e146102e557600080fd5b80631162c4b6116101c35780631162c4b61461024057806318160ddd1461026b578063226cfa3d1461027d57806323b872dd1461029d57600080fd5b80630483f7a0146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f83660046114d4565b6104ab565b005b61020761058f565b604051610214919061150d565b60405180910390f35b61023061022b366004611562565b610621565b6040519015158152602001610214565b600654610253906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6002545b604051908152602001610214565b61026f61028b36600461158e565b600d6020526000908152604090205481565b6102306102ab3660046115ab565b61063b565b61026f6102be36600461158e565b61065f565b60405160128152602001610214565b6102306102e0366004611562565b6106bb565b6101fd6102f336600461158e565b6106dd565b6101fd6103063660046115ec565b610707565b61023061031936600461158e565b600c6020526000908152604090205460ff1681565b6101fd6107f5565b61026f61034436600461158e565b6001600160a01b031660009081526020819052604090205490565b6101fd610801565b61023061037536600461158e565b610815565b61026f600a5481565b6005546001600160a01b0316610253565b61026f6103a236600461158e565b610899565b6102076108a4565b61026f600b5481565b6102306103c6366004611562565b6108b3565b61026f6103d936600461158e565b610933565b6102306103ec366004611562565b61095f565b61026f6103ff36600461158e565b6001600160a01b031660009081526009602052604090205490565b61026f6104283660046115ec565b61096d565b6101fd61043b366004611562565b610998565b6101fd61044e36600461161a565b6109ce565b6101fd61046136600461158e565b610a69565b61047961047436600461158e565b610adf565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a001610214565b6104b3610b87565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036104e057600080fd5b6001600160a01b0382166000908152600c60205260409020805460ff191682151590811790915560010361051e57610519826000610be1565b610546565b61054682610541846001600160a01b031660009081526020819052604090205490565b610be1565b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610583911515815260200190565b60405180910390a25050565b60606003805461059e90611633565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca90611633565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b60003361062f818585610c40565b60019150505b92915050565b600033610649858285610d64565b610654858585610dd8565b506001949350505050565b6001600160a01b03811660009081526008602090815260408083205491839052822054600754600160801b926106b1926106ac926106a6916106a19190610e36565b610ebf565b90610ecf565b610f0d565b6106359190611683565b60003361062f8185856106ce838361096d565b6106d891906116a5565b610c40565b6106e5610b87565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b61070f610b87565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa15801561075d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078191906116bd565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f091906116d6565b505050565b6107fe33610f20565b50565b610809610b87565b61081360006110ae565b565b600061081f610b87565b600061082a83610f20565b90508015610890576001600160a01b0383166000818152600d602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49061087f9084815260200190565b60405180910390a250600192915050565b50600092915050565b600061063582610933565b60606004805461059e90611633565b600033816108c1828661096d565b9050838110156109265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106548286868403610c40565b6001600160a01b038116600090815260096020526040812054610635906109598461065f565b90611100565b60003361062f818585610dd8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109a0610b87565b6001600160a01b0382166000908152600c602052604090205460ff166109ca576109ca8282610be1565b5050565b6109d6610b87565b60006109e160025490565b116109eb57600080fd5b80156107fe57610a1e6109fd60025490565b610a0b83600160801b610e36565b610a159190611683565b60075490611142565b60075560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600a54610a639082611142565b600a5550565b610a71610b87565b6001600160a01b038116610ad65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091d565b6107fe816110ae565b6000806000806000610b1b604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610b3087610933565b6020820152610b3e8761065f565b60408281019182526001600160a01b03989098166000908152600d60209081529890205460608301819052825198909201519051600b5498999198909750919550909350915050565b6005546001600160a01b031633146108135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091d565b6001600160a01b03821660009081526020819052604090205480821115610c20576000610c0e8383611100565b9050610c1a84826111a1565b50505050565b808210156107f0576000610c348284611100565b9050610c1a8482611205565b6001600160a01b038316610ca25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161091d565b6001600160a01b038216610d035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161091d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d70848461096d565b90506000198114610c1a5781811015610dcb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161091d565b610c1a8484848403610c40565b60405162461bcd60e51b815260206004820152602d60248201527f4c53686172655f4469766964656e645f547261636b65723a204e6f207472616e60448201526c1cd9995c9cc8185b1b1bddd959609a1b606482015260840161091d565b600082600003610e4857506000610635565b6000610e5483856116f3565b905082610e618583611683565b14610eb85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161091d565b9392505050565b6000818181121561063557600080fd5b600080610edc8385611712565b905060008312158015610eef5750838112155b80610f045750600083128015610f0457508381125b610eb857600080fd5b600080821215610f1c57600080fd5b5090565b600080610f2c83610933565b90508015610890576001600160a01b038316600090815260096020526040902054610f579082611142565b6001600160a01b038416600090815260096020526040812091909155600b8054839290610f859084906116a5565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260065460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561101c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104091906116d6565b9050806110a7576001600160a01b03841660009081526009602052604090205461106a9083611100565b6001600160a01b038516600090815260096020526040812091909155600b8054849290611098908490611753565b90915550600095945050505050565b5092915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610eb883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611249565b60008061114f83856116a5565b905083811015610eb85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161091d565b6111ab8282611283565b6111e56111c66106a183600754610e3690919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611342565b6001600160a01b0390921660009081526008602052604090209190915550565b61120f828261137f565b6111e561122a6106a183600754610e3690919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490610ecf565b6000818484111561126d5760405162461bcd60e51b815260040161091d919061150d565b50600061127a8486611753565b95945050505050565b6001600160a01b0382166112d95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161091d565b80600260008282546112eb91906116a5565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008061134f838561176a565b9050600083121580156113625750838113155b80610f045750600083128015610f045750838113610eb857600080fd5b6001600160a01b0382166113df5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161091d565b6001600160a01b038216600090815260208190526040902054818110156114535760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161091d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03811681146107fe57600080fd5b80151581146107fe57600080fd5b600080604083850312156114e757600080fd5b82356114f2816114b1565b91506020830135611502816114c6565b809150509250929050565b600060208083528351808285015260005b8181101561153a5785810183015185820160400152820161151e565b8181111561154c576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561157557600080fd5b8235611580816114b1565b946020939093013593505050565b6000602082840312156115a057600080fd5b8135610eb8816114b1565b6000806000606084860312156115c057600080fd5b83356115cb816114b1565b925060208401356115db816114b1565b929592945050506040919091013590565b600080604083850312156115ff57600080fd5b823561160a816114b1565b91506020830135611502816114b1565b60006020828403121561162c57600080fd5b5035919050565b600181811c9082168061164757607f821691505b60208210810361166757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826116a057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156116b8576116b861166d565b500190565b6000602082840312156116cf57600080fd5b5051919050565b6000602082840312156116e857600080fd5b8151610eb8816114c6565b600081600019048311821515161561170d5761170d61166d565b500290565b600080821280156001600160ff1b03849003851316156117345761173461166d565b600160ff1b839003841281161561174d5761174d61166d565b50500190565b6000828210156117655761176561166d565b500390565b60008083128015600160ff1b8501841216156117885761178861166d565b6001600160ff1b03840183138116156117a3576117a361166d565b5050039056fea264697066735822122059a832e359dbf193ba0a38e4de7957df1f794d3dfec7555e35736bc1b6e7352964736f6c634300080f0033000000000000000000000000dd9086cd080fd4f3139584246c7088e4bbbaaffa000000000000000000000000c4775a490fd53a7c4e4654452984b0860f0a7ad2000000000000000000000000fd236a7fc2c15f5ed9caad99c2c70494e6424fd3

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c806379b447bd116101f2578063afa4f3b21161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b5f578063f66895a314610b7f578063f887ea4014610b9e578063f8b45b0514610bbe57600080fd5b8063dd62ed3e14610ae9578063e01af92c14610b09578063e2f4560514610b29578063e803cee014610b3f57600080fd5b8063c18bc195116100dc578063c18bc19514610a69578063c851cc3214610a89578063d2fcc00114610aa9578063d984e73c14610ac957600080fd5b8063afa4f3b2146109d9578063b62496f5146109f9578063bdf1436d14610a29578063c024666814610a4957600080fd5b806395d89b4111610185578063a8b9d24011610154578063a8b9d24014610954578063a9059cbb14610974578063abb8105214610994578063ae3dcb47146109c457600080fd5b806395d89b41146108df5780639a7a23d6146108f4578063a457c2d714610914578063a8aa1b311461093457600080fd5b806388e765ff116101c157806388e765ff1461086b5780638c9684f9146108815780638da5cb5b146108a157806392929a09146108bf57600080fd5b806379b447bd1461079f5780637b510fe8146107bf578063864701a51461081157806388bdd9be1461084b57600080fd5b806330bb4cff116102e25780634e71d92d116102755780636843cd84116102445780636843cd84146107135780636ddd17131461073357806370a0823114610754578063715018a61461078a57600080fd5b80634e71d92d1461069a5780634e86fe00146106af5780634fbee193146106c457806366d602ae146106fd57600080fd5b8063446b9b4b116102b1578063446b9b4b1461062e57806346469afb146106435780634ada218b146106595780634c2d56a31461067a57600080fd5b806330bb4cff146105bd578063313ce567146105d2578063342aa8b5146105ee578063395093511461060e57600080fd5b806312b77e8a1161035a57806323b872dd1161032957806323b872dd146105245780632866ed21146105445780632c1f5216146105655780632e1ab9041461059d57600080fd5b806312b77e8a146104ba57806318160ddd146104cf5780631870517a146104ee5780631bff78981461050e57600080fd5b806308733214116103965780630873321414610435578063095ea7b3146104555780630a78097d146104855780630bd05b69146104a557600080fd5b80630483f7a0146103c8578063065e812b146103ea57806306fdde031461040a57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004612d05565b610bd4565b005b3480156103f657600080fd5b506103e8610405366004612d3e565b610c47565b34801561041657600080fd5b5061041f610c71565b60405161042c9190612d62565b60405180910390f35b34801561044157600080fd5b506103e8610450366004612db7565b610d03565b34801561046157600080fd5b50610475610470366004612de3565b610da3565b604051901515815260200161042c565b34801561049157600080fd5b506103e86104a0366004612d3e565b610dbb565b3480156104b157600080fd5b506103e8610ebf565b3480156104c657600080fd5b506103e8610f36565b3480156104db57600080fd5b506002545b60405190815260200161042c565b3480156104fa57600080fd5b506103e8610509366004612db7565b610fa2565b34801561051a57600080fd5b506104e060175481565b34801561053057600080fd5b5061047561053f366004612e0f565b61103d565b34801561055057600080fd5b5060075461047590600160b01b900460ff1681565b34801561057157600080fd5b50600854610585906001600160a01b031681565b6040516001600160a01b03909116815260200161042c565b3480156105a957600080fd5b506103e86105b8366004612d3e565b611061565b3480156105c957600080fd5b506104e06110cc565b3480156105de57600080fd5b506040516012815260200161042c565b3480156105fa57600080fd5b506103e8610609366004612d05565b61113f565b34801561061a57600080fd5b50610475610629366004612de3565b61119f565b34801561063a57600080fd5b506103e86111c1565b34801561064f57600080fd5b506104e060165481565b34801561066557600080fd5b5060075461047590600160b81b900460ff1681565b34801561068657600080fd5b506103e8610695366004612d3e565b611229565b3480156106a657600080fd5b506103e8611253565b3480156106bb57600080fd5b506103e8611311565b3480156106d057600080fd5b506104756106df366004612d3e565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561070957600080fd5b506104e0600e5481565b34801561071f57600080fd5b506104e061072e366004612d3e565b611390565b34801561073f57600080fd5b5060075461047590600160a81b900460ff1681565b34801561076057600080fd5b506104e061076f366004612d3e565b6001600160a01b031660009081526020819052604090205490565b34801561079657600080fd5b506103e8611406565b3480156107ab57600080fd5b506103e86107ba366004612e50565b61141a565b3480156107cb57600080fd5b506107df6107da366004612d3e565b611502565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a00161042c565b34801561081d57600080fd5b5060105460115460125461083092919083565b6040805193845260208401929092529082015260600161042c565b34801561085757600080fd5b506103e8610866366004612d3e565b61158c565b34801561087757600080fd5b506104e0600d5481565b34801561088d57600080fd5b506103e861089c366004612d3e565b61175e565b3480156108ad57600080fd5b506005546001600160a01b0316610585565b3480156108cb57600080fd5b506103e86108da366004612e72565b61179e565b3480156108eb57600080fd5b5061041f6117c4565b34801561090057600080fd5b506103e861090f366004612d05565b6117d3565b34801561092057600080fd5b5061047561092f366004612de3565b6117e5565b34801561094057600080fd5b50600754610585906001600160a01b031681565b34801561096057600080fd5b506104e061096f366004612d3e565b611860565b34801561098057600080fd5b5061047561098f366004612de3565b611893565b3480156109a057600080fd5b506104756109af366004612d3e565b60186020526000908152604090205460ff1681565b3480156109d057600080fd5b506103e86118a1565b3480156109e557600080fd5b506103e86109f4366004612e8f565b611908565b348015610a0557600080fd5b50610475610a14366004612d3e565b601a6020526000908152604090205460ff1681565b348015610a3557600080fd5b506103e8610a44366004612e8f565b611928565b348015610a5557600080fd5b506103e8610a64366004612d05565b6119ed565b348015610a7557600080fd5b506103e8610a84366004612e8f565b611ad7565b348015610a9557600080fd5b506103e8610aa4366004612d3e565b611b55565b348015610ab557600080fd5b506103e8610ac4366004612d05565b611b7f565b348015610ad557600080fd5b50600a54610585906001600160a01b031681565b348015610af557600080fd5b506104e0610b04366004612ea8565b611bb2565b348015610b1557600080fd5b506103e8610b24366004612e72565b611bdd565b348015610b3557600080fd5b506104e0600c5481565b348015610b4b57600080fd5b50600954610585906001600160a01b031681565b348015610b6b57600080fd5b506103e8610b7a366004612d3e565b611c03565b348015610b8b57600080fd5b5060135460145460155461083092919083565b348015610baa57600080fd5b50600654610585906001600160a01b031681565b348015610bca57600080fd5b506104e0600f5481565b610bdc611c79565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610c2b57600080fd5b505af1158015610c3f573d6000803e3d6000fd5b505050505050565b610c4f611c79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c8090612ed6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612ed6565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b610d0b611c79565b600c610d178385612f26565b1115610d5f5760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2031322560701b60448201526064015b60405180910390fd5b60408051606081018252848152602081018490520181905260138390556014829055601581905580610d918385612f26565b610d9b9190612f26565b601755505050565b600033610db1818585611cd3565b5060019392505050565b610dc3611c79565b806001600160a01b031663a9059cbb610de46005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4c9190612f3e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190612f57565b5050565b610ec7611c79565b600754600160b81b900460ff1615610f215760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610d56565b6007805460ff60b81b1916600160b81b179055565b610f3e611c79565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b5050905080610ebb57600080fd5b610faa611c79565b600c610fb68385612f26565b1115610ff95760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2031322560701b6044820152606401610d56565b6040805160608101825284815260208101849052018190526010839055601182905560128190558061102b8385612f26565b6110359190612f26565b601655505050565b60003361104b858285611df7565b611056858585611e71565b506001949350505050565b611069611c79565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b1580156110b157600080fd5b505af11580156110c5573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113a9190612f3e565b905090565b611147611c79565b6001600160a01b03821660009081526018602052604090205481151560ff90911615150361117457600080fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b600033610db18185856111b28383611bb2565b6111bc9190612f26565b611cd3565b6111c9611c79565b60408051606080820183526002808352600360208085018290526001948601859052601083905560118290556012859055600660168190558651948501875283855290840182905292909401839052601355601492909255601555601755565b611231611c79565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600754600160b01b900460ff166112a05760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610d56565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af11580156112ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130e9190612f57565b50565b611319611c79565b6040805160608082018352600a8083526019602080850182905260059486018590526010839055601182905560128590556028601681905586519485018752838552908401829052929094018390526013556014929092556015556017556007805462ff00ff60a81b19166201000160a81b179055565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156113dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114009190612f3e565b92915050565b61140e611c79565b6114186000612454565b565b611422611c79565b620f42408210156114755760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e203125206044820152606401610d56565b6207a1208110156114d45760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b6064820152608401610d56565b6114e682670de0b6b3a7640000612f74565b600d556114fb81670de0b6b3a7640000612f74565b600e555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157a9190612f93565b939a9299509097509550909350915050565b611594611c79565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561163c57600080fd5b505af1158015611650573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06116756005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156116bd57600080fd5b505af11580156116d1573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561172257600080fd5b505af1158015611736573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b611766611c79565b60085460405163497ec82360e01b81523360048201526001600160a01b0383811660248301529091169063497ec82390604401611097565b6117a6611c79565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610c8090612ed6565b6117db611c79565b610ebb82826124a6565b600033816117f38286611bb2565b9050838110156118535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d56565b6110568286868403611cd3565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016113bf565b600033610db1818585611e71565b6118a9611c79565b60408051606080820183526005808352600a602080850182905293850182905260108290556011819055601282905560146016819055855193840186528284529383018190529190930183905260138390558155601591909155601755565b611910611c79565b61192281670de0b6b3a7640000612f74565b600c5550565b611930611c79565b6007546008546040516323b872dd60e01b81523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af1158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190612f57565b90508015610ebb57600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610c11565b6119f5611c79565b6001600160a01b03821660009081526019602052604090205481151560ff909116151503611a785760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610d56565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611adf611c79565b620f4240811015611b3d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610d56565b611b4f81670de0b6b3a7640000612f74565b600f5550565b611b5d611c79565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b611b87611c79565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611be5611c79565b60078054911515600160a81b0260ff60a81b19909216919091179055565b611c0b611c79565b6001600160a01b038116611c705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d56565b61130e81612454565b6005546001600160a01b031633146114185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d56565b6001600160a01b038316611d355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d56565b6001600160a01b038216611d965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d56565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e038484611bb2565b90506000198114611e6b5781811015611e5e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d56565b611e6b8484848403611cd3565b50505050565b6001600160a01b038316611e975760405162461bcd60e51b8152600401610d5690612fdc565b6001600160a01b038216611ebd5760405162461bcd60e51b8152600401610d5690613021565b6001600160a01b03831660009081526019602052604090205460ff16158015611eff57506001600160a01b03821660009081526019602052604090205460ff16155b8015611f155750600754600160a01b900460ff16155b156120e757600754600160b81b900460ff16611f685760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610d56565b6001600160a01b0382166000908152601a602052604090205460ff1615611fe057600e54811115611fdb5760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610d56565b612053565b6001600160a01b0383166000908152601a602052604090205460ff161561205357600d548111156120535760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610d56565b6001600160a01b0382166000908152601b602052604090205460ff166120e757600f546001600160a01b0383166000908152602081905260409020546120999083612f26565b11156120e75760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610d56565b80600003612100576120fb8383600061260b565b505050565b30600090815260208190526040902054600c548110801590819061212e5750600754600160a01b900460ff16155b80156121435750600754600160a81b900460ff165b801561216757506001600160a01b0384166000908152601a602052604090205460ff165b801561218c57506001600160a01b03851660009081526019602052604090205460ff16155b80156121b157506001600160a01b03841660009081526019602052604090205460ff16155b156121ea576007805460ff60a01b1916600160a01b179055601754156121dc576121dc600c54612735565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061223857506001600160a01b03851660009081526019602052604090205460ff165b15612241575060005b6001600160a01b0385166000908152601a602052604090205460ff1615801561228357506001600160a01b0386166000908152601a602052604090205460ff16155b1561228c575060005b801561232b576001600160a01b0385166000908152601a602052604081205460ff16156122d4576064601754866122c39190612f74565b6122cd9190613064565b9050612312565b6001600160a01b0387166000908152601a602052604090205460ff1615612312576064601654866123059190612f74565b61230f9190613064565b90505b61231c8186613086565b945061232987308361260b565b505b61233686868661260b565b6008546001600160a01b031663e30443bc87612367816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156123ad57600080fd5b505af19250505080156123be575060015b506008546001600160a01b031663e30443bc866123f0816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561243657600080fd5b505af1925050508015612447575060015b15610c3f57505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601a602052604090205481151560ff90911615150361253c5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610d56565b6001600160a01b0382166000908152601a60205260409020805460ff191682158015919091179091556125cf5760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156125b657600080fd5b505af11580156125ca573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166126315760405162461bcd60e51b8152600401610d5690612fdc565b6001600160a01b0382166126575760405162461bcd60e51b8152600401610d5690613021565b6001600160a01b038316600090815260208190526040902054818110156126cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d56565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e6b565b60175460135460009160029161274b9085612f74565b6127559190613064565b61275f9190613064565b905060006002601754601360000154856127799190612f74565b6127839190613064565b61278d9190613064565b6017546014549192506000916127a39086612f74565b6127ad9190613064565b6017546015549192506000916127c39087612f74565b6127cd9190613064565b90506127d884612b14565b4780156127e9576127e98482612c38565b6127f283612b14565b4780801561289f576009546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612847576040519150601f19603f3d011682016040523d82523d6000602084013e61284c565b606091505b505090508061289d5760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206d6b742077616c6c65746044820152606401610d56565b505b6128a884612b14565b4780801561296757600a546040516000916001600160a01b03169083908381818185875af1925050503d80600081146128fd576040519150601f19603f3d011682016040523d82523d6000602084013e612902565b606091505b50509050806129655760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f2073656e642045544820746f207866506f6f6c5368617260448201526865206164647265737360b81b6064820152608401610d56565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d49190612f3e565b9050808015612b065760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5b9190612f57565b90508015612b0457600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612aa957600080fd5b505af1158015612abd573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38d83604051612afb929190918252602082015260400190565b60405180910390a15b505b505050505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b4957612b4961309d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bc691906130b3565b81600181518110612bd957612bd961309d565b6001600160a01b039283166020918202929092010152600654612bff9130911684611cd3565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610c119085906000908690309042906004016130d0565b600654612c509030906001600160a01b031684611cd3565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612cbd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110c59190613141565b6001600160a01b038116811461130e57600080fd5b801515811461130e57600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612ce2565b91506020830135612d3381612cf7565b809150509250929050565b600060208284031215612d5057600080fd5b8135612d5b81612ce2565b9392505050565b600060208083528351808285015260005b81811015612d8f57858101830151858201604001528201612d73565b81811115612da1576000604083870101525b50601f01601f1916929092016040019392505050565b600080600060608486031215612dcc57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612df657600080fd5b8235612e0181612ce2565b946020939093013593505050565b600080600060608486031215612e2457600080fd5b8335612e2f81612ce2565b92506020840135612e3f81612ce2565b929592945050506040919091013590565b60008060408385031215612e6357600080fd5b50508035926020909101359150565b600060208284031215612e8457600080fd5b8135612d5b81612cf7565b600060208284031215612ea157600080fd5b5035919050565b60008060408385031215612ebb57600080fd5b8235612ec681612ce2565b91506020830135612d3381612ce2565b600181811c90821680612eea57607f821691505b602082108103612f0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612f3957612f39612f10565b500190565b600060208284031215612f5057600080fd5b5051919050565b600060208284031215612f6957600080fd5b8151612d5b81612cf7565b6000816000190483118215151615612f8e57612f8e612f10565b500290565b600080600080600060a08688031215612fab57600080fd5b8551612fb681612ce2565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261308157634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561309857613098612f10565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130c557600080fd5b8151612d5b81612ce2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131205784516001600160a01b0316835293830193918301916001016130fb565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561315657600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122046e9692298a734dab22a3a748f9db0a1417022af2c134324e7b5dfee3609c91664736f6c634300080f0033

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

000000000000000000000000dd9086cd080fd4f3139584246c7088e4bbbaaffa000000000000000000000000c4775a490fd53a7c4e4654452984b0860f0a7ad2000000000000000000000000fd236a7fc2c15f5ed9caad99c2c70494e6424fd3

-----Decoded View---------------
Arg [0] : _marketingwallet (address): 0xDD9086cd080Fd4F3139584246c7088e4BbBAaFfA
Arg [1] : _rescueWallet (address): 0xc4775a490FD53A7c4E4654452984B0860f0a7AD2
Arg [2] : _poolShareAddress (address): 0xFD236a7fc2C15F5eD9CAAD99c2C70494e6424fd3

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000dd9086cd080fd4f3139584246c7088e4bbbaaffa
Arg [1] : 000000000000000000000000c4775a490fd53a7c4e4654452984b0860f0a7ad2
Arg [2] : 000000000000000000000000fd236a7fc2c15f5ed9caad99c2c70494e6424fd3


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.