ETH Price: $3,255.33 (+2.52%)
Gas: 3 Gwei

Token

CASH (CASH)
 

Overview

Max Total Supply

3,000,000,000 CASH

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,000 CASH

Value
$0.00
0x4d1cb1c6cd01b93735619fc1340e413659da1c44
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:
CASH

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : CASH.sol
pragma solidity >=0.8.10;

import { IUniswapV2Router02 } from "./IUniswapV2Router02.sol";
import { IUniswapV2Factory } from "./IUniswapV2Factory.sol";
import { IUniswapV2Pair } from "./IUniswapV2Pair.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol";



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

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

    bool private swapping;

    address public marketingWallet;
    address public stakingWallet;
    address public prjojectWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("CASH", "CASH") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 3_000_000_000 * 1e18;

        maxTransactionAmount = 30_000_000 * 1e18; 
        maxWallet = 30_000_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xDEAD); // set as marketing wallet
        devWallet = address(0xDEAD); // set as dev wallet
        stakingWallet = address(0xd3A964C0bC0C9287dC4FdBA8402b20579B2D82D5);
        prjojectWallet = address(0xf7A1eeC49B5C916BF2e38Da818f2f97Bc8a3634D);

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

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(0xd3A964C0bC0C9287dC4FdBA8402b20579B2D82D5, totalSupply / 2);
        _mint(0xf7A1eeC49B5C916BF2e38Da818f2f97Bc8a3634D, totalSupply / 2);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

File 2 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.8.10;
pragma experimental ABIEncoderV2;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 3 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.8.10;
pragma experimental ABIEncoderV2;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 4 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.8.10;
pragma experimental ABIEncoderV2;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 5 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 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 7 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 8 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 9 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // 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 10 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prjojectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600d556001600e60006101000a81548160ff021916908315150217905550610e10600f556107086011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601560006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f43415348000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4341534800000000000000000000000000000000000000000000000000000000815250816003908162000127919062000ea7565b50806004908162000139919062000ea7565b5050506200015c620001506200076660201b60201c565b6200076e60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200083460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ff8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ff8565b6040518363ffffffff1660e01b8152600401620002db9291906200103b565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ff8565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200083460201b60201c565b6200037e60a05160016200089f60201b60201c565b60008060008060008060006b09b18ab5df7180b6b800000090506a18d0bf423c03d8de000000600a819055506a18d0bf423c03d8de000000600c81905550612710600582620003ce919062001097565b620003da919062001111565b600b819055508660178190555085601881905550846019819055506019546018546017546200040a919062001149565b62000416919062001149565b60168190555083601b8190555082601c8190555081601d81905550601d54601c54601b5462000446919062001149565b62000452919062001149565b601a8190555061dead600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d3a964c0bc0c9287dc4fdba8402b20579b2d82d5600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f7a1eec49b5c916bf2e38da818f2f97bc8a3634d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005aa6200059c6200094060201b60201c565b60016200096a60201b60201c565b620005bd3060016200096a60201b60201c565b620005d261dead60016200096a60201b60201c565b62000607600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096a60201b60201c565b6200063c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096a60201b60201c565b6200065e620006506200094060201b60201c565b60016200083460201b60201c565b620006713060016200083460201b60201c565b620006a6600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083460201b60201c565b620006db600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083460201b60201c565b620006f061dead60016200083460201b60201c565b6200072473d3a964c0bc0c9287dc4fdba8402b20579b2d82d560028362000718919062001111565b62000a2560201b60201c565b6200075873f7a1eec49b5c916bf2e38da818f2f97bc8a3634d6002836200074c919062001111565b62000a2560201b60201c565b5050505050505050620012e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200084462000b9260201b60201c565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200097a62000b9260201b60201c565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a199190620011a1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8e906200121f565b60405180910390fd5b62000aab6000838362000c2360201b60201c565b806002600082825462000abf919062001149565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b72919062001252565b60405180910390a362000b8e6000838362000c2860201b60201c565b5050565b62000ba26200076660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000bc86200094060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1890620012bf565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000caf57607f821691505b60208210810362000cc55762000cc462000c67565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d2f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cf0565b62000d3b868362000cf0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d8862000d8262000d7c8462000d53565b62000d5d565b62000d53565b9050919050565b6000819050919050565b62000da48362000d67565b62000dbc62000db38262000d8f565b84845462000cfd565b825550505050565b600090565b62000dd362000dc4565b62000de081848462000d99565b505050565b5b8181101562000e085762000dfc60008262000dc9565b60018101905062000de6565b5050565b601f82111562000e575762000e218162000ccb565b62000e2c8462000ce0565b8101602085101562000e3c578190505b62000e5462000e4b8562000ce0565b83018262000de5565b50505b505050565b600082821c905092915050565b600062000e7c6000198460080262000e5c565b1980831691505092915050565b600062000e97838362000e69565b9150826002028217905092915050565b62000eb28262000c2d565b67ffffffffffffffff81111562000ece5762000ecd62000c38565b5b62000eda825462000c96565b62000ee782828562000e0c565b600060209050601f83116001811462000f1f576000841562000f0a578287015190505b62000f16858262000e89565b86555062000f86565b601f19841662000f2f8662000ccb565b60005b8281101562000f595784890151825560018201915060208501945060208101905062000f32565b8683101562000f79578489015162000f75601f89168262000e69565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fc08262000f93565b9050919050565b62000fd28162000fb3565b811462000fde57600080fd5b50565b60008151905062000ff28162000fc7565b92915050565b60006020828403121562001011576200101062000f8e565b5b6000620010218482850162000fe1565b91505092915050565b620010358162000fb3565b82525050565b60006040820190506200105260008301856200102a565b6200106160208301846200102a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010a48262000d53565b9150620010b18362000d53565b9250828202620010c18162000d53565b91508282048414831517620010db57620010da62001068565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200111e8262000d53565b91506200112b8362000d53565b9250826200113e576200113d620010e2565b5b828204905092915050565b6000620011568262000d53565b9150620011638362000d53565b92508282019050808211156200117e576200117d62001068565b5b92915050565b60008115159050919050565b6200119b8162001184565b82525050565b6000602082019050620011b8600083018462001190565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001207601f83620011be565b91506200121482620011cf565b602082019050919050565b600060208201905081810360008301526200123a81620011f8565b9050919050565b6200124c8162000d53565b82525050565b600060208201905062001269600083018462001241565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012a7602083620011be565b9150620012b4826200126f565b602082019050919050565b60006020820190508181036000830152620012da8162001298565b9050919050565b60805160a0516153af620013696000396000818161125f015281816116cf01528181611e2e01528181611ee501528181611f120152818161265b015281816137540152818161380d015261383a01526000818161102801528181612603015281816139b001528181613a9101528181613ab801528181613b540152613b7b01526153af6000f3fe6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e6f578063f637434214610e98578063f8b45b0514610ec3578063fe72b27a14610eee576103ce565b8063dd62ed3e14610db1578063e2f4560514610dee578063e884f26014610e19578063f11a24d314610e44576103ce565b8063c876d0b9116100dc578063c876d0b914610cf3578063c8c8ebe414610d1e578063d257b34f14610d49578063d85ba06314610d86576103ce565b8063bbc0c74214610c4d578063c024666814610c78578063c17b5b8c14610ca1578063c18bc19514610cca576103ce565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b7f578063aacebbe314610bbc578063ae0e5a9114610be5578063b62496f514610c10576103ce565b80639fccce3214610ac1578063a0d82dc514610aec578063a457c2d714610b17578063a4c82a0014610b54576103ce565b806395d89b41116101c157806395d89b4114610a175780639a7a23d614610a425780639c3b4fdc14610a6b5780639ec22c0e14610a96576103ce565b80638da5cb5b1461096d5780638ea5220f1461099857806392136913146109c3578063924de9b7146109ee576103ce565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108d75780637bce5a04146109025780638095d5641461092d5780638a8c523c14610956576103ce565b8063715018a614610843578063730c18881461085a578063751039fc146108835780637571336a146108ae576103ce565b80634fbee193116102b15780634fbee193146107735780636a486a8e146107b05780636ddd1713146107db57806370a0823114610806576103ce565b8063313ce567146106b557806339509351146106e057806349bd5a5e1461071d5780634a62bb6514610748576103ce565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105f757806327c8f835146106345780632c3e486c1461065f5780632e82f1a01461068a576103ce565b8063199ffc721461054d5780631a8145bb146105785780631f3fed8f146105a3578063203e727e146105ce576103ce565b80631694505e116103965780631694505e146104a357806318160ddd146104ce5780631816467f146104f9578063184c16c514610522576103ce565b806306ee6ad8146103d357806306fdde03146103fe578063095ea7b31461042957806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f2b565b6040516103f59190613c6b565b60405180910390f35b34801561040a57600080fd5b50610413610f51565b6040516104209190613d16565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613d9f565b610fe3565b60405161045d9190613dfa565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613e15565b611006565b60405161049a9190613dfa565b60405180910390f35b3480156104af57600080fd5b506104b8611026565b6040516104c59190613ea1565b60405180910390f35b3480156104da57600080fd5b506104e361104a565b6040516104f09190613ecb565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613e15565b611054565b005b34801561052e57600080fd5b5061053761111c565b6040516105449190613ecb565b60405180910390f35b34801561055957600080fd5b50610562611122565b60405161056f9190613ecb565b60405180910390f35b34801561058457600080fd5b5061058d611128565b60405161059a9190613ecb565b60405180910390f35b3480156105af57600080fd5b506105b861112e565b6040516105c59190613ecb565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190613ee6565b611134565b005b34801561060357600080fd5b5061061e60048036038101906106199190613f13565b6111cf565b60405161062b9190613dfa565b60405180910390f35b34801561064057600080fd5b506106496111fe565b6040516106569190613c6b565b60405180910390f35b34801561066b57600080fd5b50610674611204565b6040516106819190613ecb565b60405180910390f35b34801561069657600080fd5b5061069f61120a565b6040516106ac9190613dfa565b60405180910390f35b3480156106c157600080fd5b506106ca61121d565b6040516106d79190613f82565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190613d9f565b611226565b6040516107149190613dfa565b60405180910390f35b34801561072957600080fd5b5061073261125d565b60405161073f9190613c6b565b60405180910390f35b34801561075457600080fd5b5061075d611281565b60405161076a9190613dfa565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613e15565b611294565b6040516107a79190613dfa565b60405180910390f35b3480156107bc57600080fd5b506107c56112ea565b6040516107d29190613ecb565b60405180910390f35b3480156107e757600080fd5b506107f06112f0565b6040516107fd9190613dfa565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613e15565b611303565b60405161083a9190613ecb565b60405180910390f35b34801561084f57600080fd5b5061085861134b565b005b34801561086657600080fd5b50610881600480360381019061087c9190613fc9565b61135f565b005b34801561088f57600080fd5b5061089861142b565b6040516108a59190613dfa565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d0919061401c565b611457565b005b3480156108e357600080fd5b506108ec6114ba565b6040516108f99190613c6b565b60405180910390f35b34801561090e57600080fd5b506109176114e0565b6040516109249190613ecb565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f919061405c565b6114e6565b005b34801561096257600080fd5b5061096b611571565b005b34801561097957600080fd5b506109826115b8565b60405161098f9190613c6b565b60405180910390f35b3480156109a457600080fd5b506109ad6115e2565b6040516109ba9190613c6b565b60405180910390f35b3480156109cf57600080fd5b506109d8611608565b6040516109e59190613ecb565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906140af565b61160e565b005b348015610a2357600080fd5b50610a2c611633565b604051610a399190613d16565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a64919061401c565b6116c5565b005b348015610a7757600080fd5b50610a80611769565b604051610a8d9190613ecb565b60405180910390f35b348015610aa257600080fd5b50610aab61176f565b604051610ab89190613ecb565b60405180910390f35b348015610acd57600080fd5b50610ad6611775565b604051610ae39190613ecb565b60405180910390f35b348015610af857600080fd5b50610b0161177b565b604051610b0e9190613ecb565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b399190613d9f565b611781565b604051610b4b9190613dfa565b60405180910390f35b348015610b6057600080fd5b50610b696117f8565b604051610b769190613ecb565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba19190613d9f565b6117fe565b604051610bb39190613dfa565b60405180910390f35b348015610bc857600080fd5b50610be36004803603810190610bde9190613e15565b611821565b005b348015610bf157600080fd5b50610bfa6118e9565b604051610c079190613c6b565b60405180910390f35b348015610c1c57600080fd5b50610c376004803603810190610c329190613e15565b61190f565b604051610c449190613dfa565b60405180910390f35b348015610c5957600080fd5b50610c6261192f565b604051610c6f9190613dfa565b60405180910390f35b348015610c8457600080fd5b50610c9f6004803603810190610c9a919061401c565b611942565b005b348015610cad57600080fd5b50610cc86004803603810190610cc3919061405c565b6119f3565b005b348015610cd657600080fd5b50610cf16004803603810190610cec9190613ee6565b611a7e565b005b348015610cff57600080fd5b50610d08611b19565b604051610d159190613dfa565b60405180910390f35b348015610d2a57600080fd5b50610d33611b2c565b604051610d409190613ecb565b60405180910390f35b348015610d5557600080fd5b50610d706004803603810190610d6b9190613ee6565b611b32565b604051610d7d9190613dfa565b60405180910390f35b348015610d9257600080fd5b50610d9b611c13565b604051610da89190613ecb565b60405180910390f35b348015610dbd57600080fd5b50610dd86004803603810190610dd391906140dc565b611c19565b604051610de59190613ecb565b60405180910390f35b348015610dfa57600080fd5b50610e03611ca0565b604051610e109190613ecb565b60405180910390f35b348015610e2557600080fd5b50610e2e611ca6565b604051610e3b9190613dfa565b60405180910390f35b348015610e5057600080fd5b50610e59611cd2565b604051610e669190613ecb565b60405180910390f35b348015610e7b57600080fd5b50610e966004803603810190610e919190613e15565b611cd8565b005b348015610ea457600080fd5b50610ead611d5b565b604051610eba9190613ecb565b60405180910390f35b348015610ecf57600080fd5b50610ed8611d61565b604051610ee59190613ecb565b60405180910390f35b348015610efa57600080fd5b50610f156004803603810190610f109190613ee6565b611d67565b604051610f229190613dfa565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f609061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8c9061414b565b8015610fd95780601f10610fae57610100808354040283529160200191610fd9565b820191906000526020600020905b815481529060010190602001808311610fbc57829003601f168201915b5050505050905090565b600080610fee611fcb565b9050610ffb818585611fd3565b600191505092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61105c61219c565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601f5481565b601e5481565b61113c61219c565b670de0b6b3a76400006103e8600161115261104a565b61115c91906141ab565b611166919061421c565b611170919061421c565b8110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906142bf565b60405180910390fd5b670de0b6b3a7640000816111c691906141ab565b600a8190555050565b6000806111da611fcb565b90506111e785828561221a565b6111f28585856122a6565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b600080611231611fcb565b90506112528185856112438589611c19565b61124d91906142df565b611fd3565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135361219c565b61135d600061303b565b565b61136761219c565b6102588310156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390614385565b60405180910390fd5b6103e882111580156113bf575060008210155b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590614417565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061143561219c565b6000601360006101000a81548160ff0219169083151502179055506001905090565b61145f61219c565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6114ee61219c565b82601781905550816018819055508060198190555060195460185460175461151691906142df565b61152091906142df565b6016819055506014601654111561156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614483565b60405180910390fd5b505050565b61157961219c565b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b61161661219c565b80601360026101000a81548160ff02191690831515021790555050565b6060600480546116429061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461166e9061414b565b80156116bb5780601f10611690576101008083540402835291602001916116bb565b820191906000526020600020905b81548152906001019060200180831161169e57829003601f168201915b5050505050905090565b6116cd61219c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614515565b60405180910390fd5b6117658282613101565b5050565b60195481565b60125481565b60205481565b601d5481565b60008061178c611fcb565b9050600061179a8286611c19565b9050838110156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906145a7565b60405180910390fd5b6117ec8286868403611fd3565b60019250505092915050565b60105481565b600080611809611fcb565b90506118168185856122a6565b600191505092915050565b61182961219c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61194a61219c565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e79190613dfa565b60405180910390a25050565b6119fb61219c565b82601b8190555081601c8190555080601d81905550601d54601c54601b54611a2391906142df565b611a2d91906142df565b601a819055506019601a541115611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614613565b60405180910390fd5b505050565b611a8661219c565b670de0b6b3a76400006103e86005611a9c61104a565b611aa691906141ab565b611ab0919061421c565b611aba919061421c565b811015611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af3906146a5565b60405180910390fd5b670de0b6b3a764000081611b1091906141ab565b600c8190555050565b601560009054906101000a900460ff1681565b600a5481565b6000611b3c61219c565b620186a06001611b4a61104a565b611b5491906141ab565b611b5e919061421c565b821015611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614737565b60405180910390fd5b6103e86005611bad61104a565b611bb791906141ab565b611bc1919061421c565b821115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906147c9565b60405180910390fd5b81600b8190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6000611cb061219c565b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b611ce061219c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d469061485b565b60405180910390fd5b611d588161303b565b50565b601c5481565b600c5481565b6000611d7161219c565b601154601254611d8191906142df565b4211611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906148c7565b60405180910390fd5b6103e8821115611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614959565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611e699190613c6b565b602060405180830381865afa158015611e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eaa919061498e565b90506000611ed5612710611ec786856131a290919063ffffffff16565b6131b890919063ffffffff16565b90506000811115611f0e57611f0d7f000000000000000000000000000000000000000000000000000000000000000061dead836131ce565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f7b57600080fd5b505af1158015611f8f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614a2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890614abf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161218f9190613ecb565b60405180910390a3505050565b6121a4611fcb565b73ffffffffffffffffffffffffffffffffffffffff166121c26115b8565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614b2b565b60405180910390fd5b565b60006122268484611c19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122a05781811015612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614b97565b60405180910390fd5b61229f8484848403611fd3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90614cbb565b60405180910390fd5b6000810361239d57612398838360006131ce565b613036565b601360009054906101000a900460ff1615612a60576123ba6115b8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561242857506123f86115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124615750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561249b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124b45750600560149054906101000a900460ff16155b15612a5f57601360019054906101000a900460ff166125ae57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061256e5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a490614d27565b60405180910390fd5b5b601560009054906101000a900460ff1615612776576125cb6115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561265257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126aa57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127755743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614ddf565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128195750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128c057600a54811115612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614e71565b60405180910390fd5b600c5461286f83611303565b8261287a91906142df565b11156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614edd565b60405180910390fd5b612a5e565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129635750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b257600a548111156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614f6f565b60405180910390fd5b612a5d565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a5c57600c54612a0f83611303565b82612a1a91906142df565b1115612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614edd565b60405180910390fd5b5b5b5b5b5b6000612a6b30611303565b90506000600b548210159050808015612a905750601360029054906101000a900460ff165b8015612aa95750600560149054906101000a900460ff16155b8015612aff5750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b555750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bab5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bef576001600560146101000a81548160ff021916908315150217905550612bd3613444565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612c555750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612c6d5750600e60009054906101000a900460ff165b8015612c885750600f54601054612c8491906142df565b4210155b8015612cde5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ced57612ceb61372b565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612da35750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612dad57600090505b6000811561302657602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1057506000601a54115b15612edd57612e3d6064612e2f601a54886131a290919063ffffffff16565b6131b890919063ffffffff16565b9050601a54601c5482612e5091906141ab565b612e5a919061421c565b601f6000828254612e6b91906142df565b92505081905550601a54601d5482612e8391906141ab565b612e8d919061421c565b60206000828254612e9e91906142df565b92505081905550601a54601b5482612eb691906141ab565b612ec0919061421c565b601e6000828254612ed191906142df565b92505081905550613002565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f3857506000601654115b1561300157612f656064612f57601654886131a290919063ffffffff16565b6131b890919063ffffffff16565b905060165460185482612f7891906141ab565b612f82919061421c565b601f6000828254612f9391906142df565b9250508190555060165460195482612fab91906141ab565b612fb5919061421c565b60206000828254612fc691906142df565b9250508190555060165460175482612fde91906141ab565b612fe8919061421c565b601e6000828254612ff991906142df565b925050819055505b5b6000811115613017576130168730836131ce565b5b80856130239190614f8f565b94505b6130318787876131ce565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836131b091906141ab565b905092915050565b600081836131c6919061421c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a390614cbb565b60405180910390fd5b6132b78383836138f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561333d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333490615035565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342b9190613ecb565b60405180910390a361343e8484846138f6565b50505050565b600061344f30611303565b90506000602054601e54601f5461346691906142df565b61347091906142df565b90506000808314806134825750600082145b1561348f57505050613729565b6014600b5461349e91906141ab565b8311156134b7576014600b546134b491906141ab565b92505b6000600283601f54866134ca91906141ab565b6134d4919061421c565b6134de919061421c565b905060006134f582866138fb90919063ffffffff16565b9050600047905061350582613911565b600061351a82476138fb90919063ffffffff16565b9050600061354587613537601e54856131a290919063ffffffff16565b6131b890919063ffffffff16565b9050600061357088613562602054866131a290919063ffffffff16565b6131b890919063ffffffff16565b905060008183856135819190614f8f565b61358b9190614f8f565b90506000601f819055506000601e819055506000602081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135eb90615086565b60006040518083038185875af1925050503d8060008114613628576040519150601f19603f3d011682016040523d82523d6000602084013e61362d565b606091505b5050809850506000871180156136435750600081115b15613690576136528782613b4e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516136879392919061509b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136d690615086565b60006040518083038185875af1925050503d8060008114613713576040519150601f19603f3d011682016040523d82523d6000602084013e613718565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161378f9190613c6b565b602060405180830381865afa1580156137ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d0919061498e565b905060006137fd6127106137ef600d54856131a290919063ffffffff16565b6131b890919063ffffffff16565b90506000811115613836576138357f000000000000000000000000000000000000000000000000000000000000000061dead836131ce565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156138a357600080fd5b505af11580156138b7573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836139099190614f8f565b905092915050565b6000600267ffffffffffffffff81111561392e5761392d6150d2565b5b60405190808252806020026020018201604052801561395c5781602001602082028036833780820191505090505b509050308160008151811061397457613973615101565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3d9190615145565b81600181518110613a5157613a50615101565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ab6307f000000000000000000000000000000000000000000000000000000000000000084611fd3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b1895949392919061526b565b600060405180830381600087803b158015613b3257600080fd5b505af1158015613b46573d6000803e3d6000fd5b505050505050565b613b79307f000000000000000000000000000000000000000000000000000000000000000084611fd3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613be0969594939291906152c5565b60606040518083038185885af1158015613bfe573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c239190615326565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5582613c2a565b9050919050565b613c6581613c4a565b82525050565b6000602082019050613c806000830184613c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cc0578082015181840152602081019050613ca5565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ce882613c86565b613cf28185613c91565b9350613d02818560208601613ca2565b613d0b81613ccc565b840191505092915050565b60006020820190508181036000830152613d308184613cdd565b905092915050565b600080fd5b613d4681613c4a565b8114613d5157600080fd5b50565b600081359050613d6381613d3d565b92915050565b6000819050919050565b613d7c81613d69565b8114613d8757600080fd5b50565b600081359050613d9981613d73565b92915050565b60008060408385031215613db657613db5613d38565b5b6000613dc485828601613d54565b9250506020613dd585828601613d8a565b9150509250929050565b60008115159050919050565b613df481613ddf565b82525050565b6000602082019050613e0f6000830184613deb565b92915050565b600060208284031215613e2b57613e2a613d38565b5b6000613e3984828501613d54565b91505092915050565b6000819050919050565b6000613e67613e62613e5d84613c2a565b613e42565b613c2a565b9050919050565b6000613e7982613e4c565b9050919050565b6000613e8b82613e6e565b9050919050565b613e9b81613e80565b82525050565b6000602082019050613eb66000830184613e92565b92915050565b613ec581613d69565b82525050565b6000602082019050613ee06000830184613ebc565b92915050565b600060208284031215613efc57613efb613d38565b5b6000613f0a84828501613d8a565b91505092915050565b600080600060608486031215613f2c57613f2b613d38565b5b6000613f3a86828701613d54565b9350506020613f4b86828701613d54565b9250506040613f5c86828701613d8a565b9150509250925092565b600060ff82169050919050565b613f7c81613f66565b82525050565b6000602082019050613f976000830184613f73565b92915050565b613fa681613ddf565b8114613fb157600080fd5b50565b600081359050613fc381613f9d565b92915050565b600080600060608486031215613fe257613fe1613d38565b5b6000613ff086828701613d8a565b935050602061400186828701613d8a565b925050604061401286828701613fb4565b9150509250925092565b6000806040838503121561403357614032613d38565b5b600061404185828601613d54565b925050602061405285828601613fb4565b9150509250929050565b60008060006060848603121561407557614074613d38565b5b600061408386828701613d8a565b935050602061409486828701613d8a565b92505060406140a586828701613d8a565b9150509250925092565b6000602082840312156140c5576140c4613d38565b5b60006140d384828501613fb4565b91505092915050565b600080604083850312156140f3576140f2613d38565b5b600061410185828601613d54565b925050602061411285828601613d54565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141b682613d69565b91506141c183613d69565b92508282026141cf81613d69565b915082820484148315176141e6576141e561417c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061422782613d69565b915061423283613d69565b925082614242576142416141ed565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142a9602f83613c91565b91506142b48261424d565b604082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b60006142ea82613d69565b91506142f583613d69565b925082820190508082111561430d5761430c61417c565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b600061436f603383613c91565b915061437a82614313565b604082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614401603083613c91565b915061440c826143a5565b604082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061446d601d83613c91565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144ff603983613c91565b915061450a826144a3565b604082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614591602583613c91565b915061459c82614535565b604082019050919050565b600060208201905081810360008301526145c081614584565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145fd601d83613c91565b9150614608826145c7565b602082019050919050565b6000602082019050818103600083015261462c816145f0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061468f602483613c91565b915061469a82614633565b604082019050919050565b600060208201905081810360008301526146be81614682565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614721603583613c91565b915061472c826146c5565b604082019050919050565b6000602082019050818103600083015261475081614714565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147b3603483613c91565b91506147be82614757565b604082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614845602683613c91565b9150614850826147e9565b604082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006148b1602083613c91565b91506148bc8261487b565b602082019050919050565b600060208201905081810360008301526148e0816148a4565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614943602a83613c91565b915061494e826148e7565b604082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b60008151905061498881613d73565b92915050565b6000602082840312156149a4576149a3613d38565b5b60006149b284828501614979565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a17602483613c91565b9150614a22826149bb565b604082019050919050565b60006020820190508181036000830152614a4681614a0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa9602283613c91565b9150614ab482614a4d565b604082019050919050565b60006020820190508181036000830152614ad881614a9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b15602083613c91565b9150614b2082614adf565b602082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b81601d83613c91565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c13602583613c91565b9150614c1e82614bb7565b604082019050919050565b60006020820190508181036000830152614c4281614c06565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca5602383613c91565b9150614cb082614c49565b604082019050919050565b60006020820190508181036000830152614cd481614c98565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d11601683613c91565b9150614d1c82614cdb565b602082019050919050565b60006020820190508181036000830152614d4081614d04565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614dc9604983613c91565b9150614dd482614d47565b606082019050919050565b60006020820190508181036000830152614df881614dbc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614e5b603583613c91565b9150614e6682614dff565b604082019050919050565b60006020820190508181036000830152614e8a81614e4e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ec7601383613c91565b9150614ed282614e91565b602082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614f59603683613c91565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a82613d69565b9150614fa583613d69565b9250828203905081811115614fbd57614fbc61417c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061501f602683613c91565b915061502a82614fc3565b604082019050919050565b6000602082019050818103600083015261504e81615012565b9050919050565b600081905092915050565b50565b6000615070600083615055565b915061507b82615060565b600082019050919050565b600061509182615063565b9150819050919050565b60006060820190506150b06000830186613ebc565b6150bd6020830185613ebc565b6150ca6040830184613ebc565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061513f81613d3d565b92915050565b60006020828403121561515b5761515a613d38565b5b600061516984828501615130565b91505092915050565b6000819050919050565b600061519761519261518d84615172565b613e42565b613d69565b9050919050565b6151a78161517c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151e281613c4a565b82525050565b60006151f483836151d9565b60208301905092915050565b6000602082019050919050565b6000615218826151ad565b61522281856151b8565b935061522d836151c9565b8060005b8381101561525e57815161524588826151e8565b975061525083615200565b925050600181019050615231565b5085935050505092915050565b600060a0820190506152806000830188613ebc565b61528d602083018761519e565b818103604083015261529f818661520d565b90506152ae6060830185613c5c565b6152bb6080830184613ebc565b9695505050505050565b600060c0820190506152da6000830189613c5c565b6152e76020830188613ebc565b6152f4604083018761519e565b615301606083018661519e565b61530e6080830185613c5c565b61531b60a0830184613ebc565b979650505050505050565b60008060006060848603121561533f5761533e613d38565b5b600061534d86828701614979565b935050602061535e86828701614979565b925050604061536f86828701614979565b915050925092509256fea264697066735822122055ecfb64d9de93388562aeef934ee35b2315c031158fcf906f142bbef3600ee864736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e6f578063f637434214610e98578063f8b45b0514610ec3578063fe72b27a14610eee576103ce565b8063dd62ed3e14610db1578063e2f4560514610dee578063e884f26014610e19578063f11a24d314610e44576103ce565b8063c876d0b9116100dc578063c876d0b914610cf3578063c8c8ebe414610d1e578063d257b34f14610d49578063d85ba06314610d86576103ce565b8063bbc0c74214610c4d578063c024666814610c78578063c17b5b8c14610ca1578063c18bc19514610cca576103ce565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b7f578063aacebbe314610bbc578063ae0e5a9114610be5578063b62496f514610c10576103ce565b80639fccce3214610ac1578063a0d82dc514610aec578063a457c2d714610b17578063a4c82a0014610b54576103ce565b806395d89b41116101c157806395d89b4114610a175780639a7a23d614610a425780639c3b4fdc14610a6b5780639ec22c0e14610a96576103ce565b80638da5cb5b1461096d5780638ea5220f1461099857806392136913146109c3578063924de9b7146109ee576103ce565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108d75780637bce5a04146109025780638095d5641461092d5780638a8c523c14610956576103ce565b8063715018a614610843578063730c18881461085a578063751039fc146108835780637571336a146108ae576103ce565b80634fbee193116102b15780634fbee193146107735780636a486a8e146107b05780636ddd1713146107db57806370a0823114610806576103ce565b8063313ce567146106b557806339509351146106e057806349bd5a5e1461071d5780634a62bb6514610748576103ce565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105f757806327c8f835146106345780632c3e486c1461065f5780632e82f1a01461068a576103ce565b8063199ffc721461054d5780631a8145bb146105785780631f3fed8f146105a3578063203e727e146105ce576103ce565b80631694505e116103965780631694505e146104a357806318160ddd146104ce5780631816467f146104f9578063184c16c514610522576103ce565b806306ee6ad8146103d357806306fdde03146103fe578063095ea7b31461042957806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f2b565b6040516103f59190613c6b565b60405180910390f35b34801561040a57600080fd5b50610413610f51565b6040516104209190613d16565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613d9f565b610fe3565b60405161045d9190613dfa565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613e15565b611006565b60405161049a9190613dfa565b60405180910390f35b3480156104af57600080fd5b506104b8611026565b6040516104c59190613ea1565b60405180910390f35b3480156104da57600080fd5b506104e361104a565b6040516104f09190613ecb565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613e15565b611054565b005b34801561052e57600080fd5b5061053761111c565b6040516105449190613ecb565b60405180910390f35b34801561055957600080fd5b50610562611122565b60405161056f9190613ecb565b60405180910390f35b34801561058457600080fd5b5061058d611128565b60405161059a9190613ecb565b60405180910390f35b3480156105af57600080fd5b506105b861112e565b6040516105c59190613ecb565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190613ee6565b611134565b005b34801561060357600080fd5b5061061e60048036038101906106199190613f13565b6111cf565b60405161062b9190613dfa565b60405180910390f35b34801561064057600080fd5b506106496111fe565b6040516106569190613c6b565b60405180910390f35b34801561066b57600080fd5b50610674611204565b6040516106819190613ecb565b60405180910390f35b34801561069657600080fd5b5061069f61120a565b6040516106ac9190613dfa565b60405180910390f35b3480156106c157600080fd5b506106ca61121d565b6040516106d79190613f82565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190613d9f565b611226565b6040516107149190613dfa565b60405180910390f35b34801561072957600080fd5b5061073261125d565b60405161073f9190613c6b565b60405180910390f35b34801561075457600080fd5b5061075d611281565b60405161076a9190613dfa565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613e15565b611294565b6040516107a79190613dfa565b60405180910390f35b3480156107bc57600080fd5b506107c56112ea565b6040516107d29190613ecb565b60405180910390f35b3480156107e757600080fd5b506107f06112f0565b6040516107fd9190613dfa565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613e15565b611303565b60405161083a9190613ecb565b60405180910390f35b34801561084f57600080fd5b5061085861134b565b005b34801561086657600080fd5b50610881600480360381019061087c9190613fc9565b61135f565b005b34801561088f57600080fd5b5061089861142b565b6040516108a59190613dfa565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d0919061401c565b611457565b005b3480156108e357600080fd5b506108ec6114ba565b6040516108f99190613c6b565b60405180910390f35b34801561090e57600080fd5b506109176114e0565b6040516109249190613ecb565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f919061405c565b6114e6565b005b34801561096257600080fd5b5061096b611571565b005b34801561097957600080fd5b506109826115b8565b60405161098f9190613c6b565b60405180910390f35b3480156109a457600080fd5b506109ad6115e2565b6040516109ba9190613c6b565b60405180910390f35b3480156109cf57600080fd5b506109d8611608565b6040516109e59190613ecb565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906140af565b61160e565b005b348015610a2357600080fd5b50610a2c611633565b604051610a399190613d16565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a64919061401c565b6116c5565b005b348015610a7757600080fd5b50610a80611769565b604051610a8d9190613ecb565b60405180910390f35b348015610aa257600080fd5b50610aab61176f565b604051610ab89190613ecb565b60405180910390f35b348015610acd57600080fd5b50610ad6611775565b604051610ae39190613ecb565b60405180910390f35b348015610af857600080fd5b50610b0161177b565b604051610b0e9190613ecb565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b399190613d9f565b611781565b604051610b4b9190613dfa565b60405180910390f35b348015610b6057600080fd5b50610b696117f8565b604051610b769190613ecb565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba19190613d9f565b6117fe565b604051610bb39190613dfa565b60405180910390f35b348015610bc857600080fd5b50610be36004803603810190610bde9190613e15565b611821565b005b348015610bf157600080fd5b50610bfa6118e9565b604051610c079190613c6b565b60405180910390f35b348015610c1c57600080fd5b50610c376004803603810190610c329190613e15565b61190f565b604051610c449190613dfa565b60405180910390f35b348015610c5957600080fd5b50610c6261192f565b604051610c6f9190613dfa565b60405180910390f35b348015610c8457600080fd5b50610c9f6004803603810190610c9a919061401c565b611942565b005b348015610cad57600080fd5b50610cc86004803603810190610cc3919061405c565b6119f3565b005b348015610cd657600080fd5b50610cf16004803603810190610cec9190613ee6565b611a7e565b005b348015610cff57600080fd5b50610d08611b19565b604051610d159190613dfa565b60405180910390f35b348015610d2a57600080fd5b50610d33611b2c565b604051610d409190613ecb565b60405180910390f35b348015610d5557600080fd5b50610d706004803603810190610d6b9190613ee6565b611b32565b604051610d7d9190613dfa565b60405180910390f35b348015610d9257600080fd5b50610d9b611c13565b604051610da89190613ecb565b60405180910390f35b348015610dbd57600080fd5b50610dd86004803603810190610dd391906140dc565b611c19565b604051610de59190613ecb565b60405180910390f35b348015610dfa57600080fd5b50610e03611ca0565b604051610e109190613ecb565b60405180910390f35b348015610e2557600080fd5b50610e2e611ca6565b604051610e3b9190613dfa565b60405180910390f35b348015610e5057600080fd5b50610e59611cd2565b604051610e669190613ecb565b60405180910390f35b348015610e7b57600080fd5b50610e966004803603810190610e919190613e15565b611cd8565b005b348015610ea457600080fd5b50610ead611d5b565b604051610eba9190613ecb565b60405180910390f35b348015610ecf57600080fd5b50610ed8611d61565b604051610ee59190613ecb565b60405180910390f35b348015610efa57600080fd5b50610f156004803603810190610f109190613ee6565b611d67565b604051610f229190613dfa565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f609061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8c9061414b565b8015610fd95780601f10610fae57610100808354040283529160200191610fd9565b820191906000526020600020905b815481529060010190602001808311610fbc57829003601f168201915b5050505050905090565b600080610fee611fcb565b9050610ffb818585611fd3565b600191505092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61105c61219c565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601f5481565b601e5481565b61113c61219c565b670de0b6b3a76400006103e8600161115261104a565b61115c91906141ab565b611166919061421c565b611170919061421c565b8110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906142bf565b60405180910390fd5b670de0b6b3a7640000816111c691906141ab565b600a8190555050565b6000806111da611fcb565b90506111e785828561221a565b6111f28585856122a6565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b600080611231611fcb565b90506112528185856112438589611c19565b61124d91906142df565b611fd3565b600191505092915050565b7f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975181565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135361219c565b61135d600061303b565b565b61136761219c565b6102588310156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390614385565b60405180910390fd5b6103e882111580156113bf575060008210155b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590614417565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061143561219c565b6000601360006101000a81548160ff0219169083151502179055506001905090565b61145f61219c565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6114ee61219c565b82601781905550816018819055508060198190555060195460185460175461151691906142df565b61152091906142df565b6016819055506014601654111561156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614483565b60405180910390fd5b505050565b61157961219c565b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b61161661219c565b80601360026101000a81548160ff02191690831515021790555050565b6060600480546116429061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461166e9061414b565b80156116bb5780601f10611690576101008083540402835291602001916116bb565b820191906000526020600020905b81548152906001019060200180831161169e57829003601f168201915b5050505050905090565b6116cd61219c565b7f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614515565b60405180910390fd5b6117658282613101565b5050565b60195481565b60125481565b60205481565b601d5481565b60008061178c611fcb565b9050600061179a8286611c19565b9050838110156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906145a7565b60405180910390fd5b6117ec8286868403611fd3565b60019250505092915050565b60105481565b600080611809611fcb565b90506118168185856122a6565b600191505092915050565b61182961219c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61194a61219c565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e79190613dfa565b60405180910390a25050565b6119fb61219c565b82601b8190555081601c8190555080601d81905550601d54601c54601b54611a2391906142df565b611a2d91906142df565b601a819055506019601a541115611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614613565b60405180910390fd5b505050565b611a8661219c565b670de0b6b3a76400006103e86005611a9c61104a565b611aa691906141ab565b611ab0919061421c565b611aba919061421c565b811015611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af3906146a5565b60405180910390fd5b670de0b6b3a764000081611b1091906141ab565b600c8190555050565b601560009054906101000a900460ff1681565b600a5481565b6000611b3c61219c565b620186a06001611b4a61104a565b611b5491906141ab565b611b5e919061421c565b821015611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614737565b60405180910390fd5b6103e86005611bad61104a565b611bb791906141ab565b611bc1919061421c565b821115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906147c9565b60405180910390fd5b81600b8190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6000611cb061219c565b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b611ce061219c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d469061485b565b60405180910390fd5b611d588161303b565b50565b601c5481565b600c5481565b6000611d7161219c565b601154601254611d8191906142df565b4211611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906148c7565b60405180910390fd5b6103e8821115611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614959565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf9197516040518263ffffffff1660e01b8152600401611e699190613c6b565b602060405180830381865afa158015611e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eaa919061498e565b90506000611ed5612710611ec786856131a290919063ffffffff16565b6131b890919063ffffffff16565b90506000811115611f0e57611f0d7f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975161dead836131ce565b5b60007f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f7b57600080fd5b505af1158015611f8f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614a2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890614abf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161218f9190613ecb565b60405180910390a3505050565b6121a4611fcb565b73ffffffffffffffffffffffffffffffffffffffff166121c26115b8565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614b2b565b60405180910390fd5b565b60006122268484611c19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122a05781811015612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614b97565b60405180910390fd5b61229f8484848403611fd3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90614cbb565b60405180910390fd5b6000810361239d57612398838360006131ce565b613036565b601360009054906101000a900460ff1615612a60576123ba6115b8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561242857506123f86115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124615750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561249b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124b45750600560149054906101000a900460ff16155b15612a5f57601360019054906101000a900460ff166125ae57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061256e5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a490614d27565b60405180910390fd5b5b601560009054906101000a900460ff1615612776576125cb6115b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561265257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126aa57507f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127755743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614ddf565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128195750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128c057600a54811115612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614e71565b60405180910390fd5b600c5461286f83611303565b8261287a91906142df565b11156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614edd565b60405180910390fd5b612a5e565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129635750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b257600a548111156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614f6f565b60405180910390fd5b612a5d565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a5c57600c54612a0f83611303565b82612a1a91906142df565b1115612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614edd565b60405180910390fd5b5b5b5b5b5b6000612a6b30611303565b90506000600b548210159050808015612a905750601360029054906101000a900460ff165b8015612aa95750600560149054906101000a900460ff16155b8015612aff5750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b555750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bab5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bef576001600560146101000a81548160ff021916908315150217905550612bd3613444565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612c555750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612c6d5750600e60009054906101000a900460ff165b8015612c885750600f54601054612c8491906142df565b4210155b8015612cde5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ced57612ceb61372b565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612da35750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612dad57600090505b6000811561302657602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1057506000601a54115b15612edd57612e3d6064612e2f601a54886131a290919063ffffffff16565b6131b890919063ffffffff16565b9050601a54601c5482612e5091906141ab565b612e5a919061421c565b601f6000828254612e6b91906142df565b92505081905550601a54601d5482612e8391906141ab565b612e8d919061421c565b60206000828254612e9e91906142df565b92505081905550601a54601b5482612eb691906141ab565b612ec0919061421c565b601e6000828254612ed191906142df565b92505081905550613002565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f3857506000601654115b1561300157612f656064612f57601654886131a290919063ffffffff16565b6131b890919063ffffffff16565b905060165460185482612f7891906141ab565b612f82919061421c565b601f6000828254612f9391906142df565b9250508190555060165460195482612fab91906141ab565b612fb5919061421c565b60206000828254612fc691906142df565b9250508190555060165460175482612fde91906141ab565b612fe8919061421c565b601e6000828254612ff991906142df565b925050819055505b5b6000811115613017576130168730836131ce565b5b80856130239190614f8f565b94505b6130318787876131ce565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836131b091906141ab565b905092915050565b600081836131c6919061421c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a390614cbb565b60405180910390fd5b6132b78383836138f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561333d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333490615035565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342b9190613ecb565b60405180910390a361343e8484846138f6565b50505050565b600061344f30611303565b90506000602054601e54601f5461346691906142df565b61347091906142df565b90506000808314806134825750600082145b1561348f57505050613729565b6014600b5461349e91906141ab565b8311156134b7576014600b546134b491906141ab565b92505b6000600283601f54866134ca91906141ab565b6134d4919061421c565b6134de919061421c565b905060006134f582866138fb90919063ffffffff16565b9050600047905061350582613911565b600061351a82476138fb90919063ffffffff16565b9050600061354587613537601e54856131a290919063ffffffff16565b6131b890919063ffffffff16565b9050600061357088613562602054866131a290919063ffffffff16565b6131b890919063ffffffff16565b905060008183856135819190614f8f565b61358b9190614f8f565b90506000601f819055506000601e819055506000602081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135eb90615086565b60006040518083038185875af1925050503d8060008114613628576040519150601f19603f3d011682016040523d82523d6000602084013e61362d565b606091505b5050809850506000871180156136435750600081115b15613690576136528782613b4e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516136879392919061509b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136d690615086565b60006040518083038185875af1925050503d8060008114613713576040519150601f19603f3d011682016040523d82523d6000602084013e613718565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf9197516040518263ffffffff1660e01b815260040161378f9190613c6b565b602060405180830381865afa1580156137ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d0919061498e565b905060006137fd6127106137ef600d54856131a290919063ffffffff16565b6131b890919063ffffffff16565b90506000811115613836576138357f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975161dead836131ce565b5b60007f000000000000000000000000e93541e6625dd10a6fa8265f1e992d59cf91975190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156138a357600080fd5b505af11580156138b7573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836139099190614f8f565b905092915050565b6000600267ffffffffffffffff81111561392e5761392d6150d2565b5b60405190808252806020026020018201604052801561395c5781602001602082028036833780820191505090505b509050308160008151811061397457613973615101565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3d9190615145565b81600181518110613a5157613a50615101565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ab6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fd3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b1895949392919061526b565b600060405180830381600087803b158015613b3257600080fd5b505af1158015613b46573d6000803e3d6000fd5b505050505050565b613b79307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fd3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613be0969594939291906152c5565b60606040518083038185885af1158015613bfe573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c239190615326565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5582613c2a565b9050919050565b613c6581613c4a565b82525050565b6000602082019050613c806000830184613c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cc0578082015181840152602081019050613ca5565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ce882613c86565b613cf28185613c91565b9350613d02818560208601613ca2565b613d0b81613ccc565b840191505092915050565b60006020820190508181036000830152613d308184613cdd565b905092915050565b600080fd5b613d4681613c4a565b8114613d5157600080fd5b50565b600081359050613d6381613d3d565b92915050565b6000819050919050565b613d7c81613d69565b8114613d8757600080fd5b50565b600081359050613d9981613d73565b92915050565b60008060408385031215613db657613db5613d38565b5b6000613dc485828601613d54565b9250506020613dd585828601613d8a565b9150509250929050565b60008115159050919050565b613df481613ddf565b82525050565b6000602082019050613e0f6000830184613deb565b92915050565b600060208284031215613e2b57613e2a613d38565b5b6000613e3984828501613d54565b91505092915050565b6000819050919050565b6000613e67613e62613e5d84613c2a565b613e42565b613c2a565b9050919050565b6000613e7982613e4c565b9050919050565b6000613e8b82613e6e565b9050919050565b613e9b81613e80565b82525050565b6000602082019050613eb66000830184613e92565b92915050565b613ec581613d69565b82525050565b6000602082019050613ee06000830184613ebc565b92915050565b600060208284031215613efc57613efb613d38565b5b6000613f0a84828501613d8a565b91505092915050565b600080600060608486031215613f2c57613f2b613d38565b5b6000613f3a86828701613d54565b9350506020613f4b86828701613d54565b9250506040613f5c86828701613d8a565b9150509250925092565b600060ff82169050919050565b613f7c81613f66565b82525050565b6000602082019050613f976000830184613f73565b92915050565b613fa681613ddf565b8114613fb157600080fd5b50565b600081359050613fc381613f9d565b92915050565b600080600060608486031215613fe257613fe1613d38565b5b6000613ff086828701613d8a565b935050602061400186828701613d8a565b925050604061401286828701613fb4565b9150509250925092565b6000806040838503121561403357614032613d38565b5b600061404185828601613d54565b925050602061405285828601613fb4565b9150509250929050565b60008060006060848603121561407557614074613d38565b5b600061408386828701613d8a565b935050602061409486828701613d8a565b92505060406140a586828701613d8a565b9150509250925092565b6000602082840312156140c5576140c4613d38565b5b60006140d384828501613fb4565b91505092915050565b600080604083850312156140f3576140f2613d38565b5b600061410185828601613d54565b925050602061411285828601613d54565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141b682613d69565b91506141c183613d69565b92508282026141cf81613d69565b915082820484148315176141e6576141e561417c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061422782613d69565b915061423283613d69565b925082614242576142416141ed565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142a9602f83613c91565b91506142b48261424d565b604082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b60006142ea82613d69565b91506142f583613d69565b925082820190508082111561430d5761430c61417c565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b600061436f603383613c91565b915061437a82614313565b604082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614401603083613c91565b915061440c826143a5565b604082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061446d601d83613c91565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144ff603983613c91565b915061450a826144a3565b604082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614591602583613c91565b915061459c82614535565b604082019050919050565b600060208201905081810360008301526145c081614584565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145fd601d83613c91565b9150614608826145c7565b602082019050919050565b6000602082019050818103600083015261462c816145f0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061468f602483613c91565b915061469a82614633565b604082019050919050565b600060208201905081810360008301526146be81614682565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614721603583613c91565b915061472c826146c5565b604082019050919050565b6000602082019050818103600083015261475081614714565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147b3603483613c91565b91506147be82614757565b604082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614845602683613c91565b9150614850826147e9565b604082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006148b1602083613c91565b91506148bc8261487b565b602082019050919050565b600060208201905081810360008301526148e0816148a4565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614943602a83613c91565b915061494e826148e7565b604082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b60008151905061498881613d73565b92915050565b6000602082840312156149a4576149a3613d38565b5b60006149b284828501614979565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a17602483613c91565b9150614a22826149bb565b604082019050919050565b60006020820190508181036000830152614a4681614a0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa9602283613c91565b9150614ab482614a4d565b604082019050919050565b60006020820190508181036000830152614ad881614a9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b15602083613c91565b9150614b2082614adf565b602082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b81601d83613c91565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c13602583613c91565b9150614c1e82614bb7565b604082019050919050565b60006020820190508181036000830152614c4281614c06565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca5602383613c91565b9150614cb082614c49565b604082019050919050565b60006020820190508181036000830152614cd481614c98565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d11601683613c91565b9150614d1c82614cdb565b602082019050919050565b60006020820190508181036000830152614d4081614d04565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614dc9604983613c91565b9150614dd482614d47565b606082019050919050565b60006020820190508181036000830152614df881614dbc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614e5b603583613c91565b9150614e6682614dff565b604082019050919050565b60006020820190508181036000830152614e8a81614e4e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ec7601383613c91565b9150614ed282614e91565b602082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614f59603683613c91565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a82613d69565b9150614fa583613d69565b9250828203905081811115614fbd57614fbc61417c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061501f602683613c91565b915061502a82614fc3565b604082019050919050565b6000602082019050818103600083015261504e81615012565b9050919050565b600081905092915050565b50565b6000615070600083615055565b915061507b82615060565b600082019050919050565b600061509182615063565b9150819050919050565b60006060820190506150b06000830186613ebc565b6150bd6020830185613ebc565b6150ca6040830184613ebc565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061513f81613d3d565b92915050565b60006020828403121561515b5761515a613d38565b5b600061516984828501615130565b91505092915050565b6000819050919050565b600061519761519261518d84615172565b613e42565b613d69565b9050919050565b6151a78161517c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151e281613c4a565b82525050565b60006151f483836151d9565b60208301905092915050565b6000602082019050919050565b6000615218826151ad565b61522281856151b8565b935061522d836151c9565b8060005b8381101561525e57815161524588826151e8565b975061525083615200565b925050600181019050615231565b5085935050505092915050565b600060a0820190506152806000830188613ebc565b61528d602083018761519e565b818103604083015261529f818661520d565b90506152ae6060830185613c5c565b6152bb6080830184613ebc565b9695505050505050565b600060c0820190506152da6000830189613c5c565b6152e76020830188613ebc565b6152f4604083018761519e565b615301606083018661519e565b61530e6080830185613c5c565b61531b60a0830184613ebc565b979650505050505050565b60008060006060848603121561533f5761533e613d38565b5b600061534d86828701614979565b935050602061535e86828701614979565b925050604061536f86828701614979565b915050925092509256fea264697066735822122055ecfb64d9de93388562aeef934ee35b2315c031158fcf906f142bbef3600ee864736f6c63430008120033

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.