ETH Price: $3,251.51 (+2.41%)
Gas: 3 Gwei

Token

King Of Kings (KOK)
 

Overview

Max Total Supply

1,000,000,000 KOK

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,362,992.813739672975057838 KOK

Value
$0.00
0xb809aeff162300e46f1c90c82a45452010000000
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:
KingOfKings

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : KOK.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.17;
pragma experimental ABIEncoderV2;

import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

contract KingOfKings 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 devWallet;

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

    uint256 public percentForLPBurn = 100; // 1%
    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('King Of Kings', 'KOK') {
        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 = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18;
        // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18;
        // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 1000;
        // 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(0x1cc2FA36d16A2ac695c2f494bcFD7f084b7a53a4);
        // set as marketing wallet
        devWallet = owner();
        // set as dev wallet

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

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

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

    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() * 10) / 1000) / 1e18, 'Cannot set maxTransactionAmount lower than 1%');
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= ((totalSupply() * 20) / 1000) / 1e18, 'Cannot set maxWallet lower than 2%');
        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 <= 25, 'Old Cheese');
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, 'Old Cheese');
    }

    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 11 : 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 3 of 11 : 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);
    }
}

File 4 of 11 : 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 5 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

File 7 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 8 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

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

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

    function initialize(address, address) external;
}

File 9 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 10 of 11 : 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 11 of 11 : 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);
}

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

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":"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":"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"}]

60c06040526064600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600d81526020017f4b696e67204f66204b696e6773000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b4f4b0000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d18565b50806004908162000139919062000d18565b5050506200015c62000150620005cc60201b60201c565b620005d460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000e69565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000e69565b6040518363ffffffff1660e01b8152600401620002db92919062000eac565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000e69565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069a60201b60201c565b6200037e60a05160016200070560201b60201c565b60006002905060006001905060006002905060006002905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a819055506103e8600582620003e9919062000f08565b620003f5919062000f82565b60098190555086601581905550856016819055508460178190555060175460165460155462000425919062000fba565b62000431919062000fba565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000461919062000fba565b6200046d919062000fba565b601881905550731cc2fa36d16a2ac695c2f494bcfd7f084b7a53a4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d8620007a660201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053a6200052c620007a660201b60201c565b6001620007d060201b60201c565b6200054d306001620007d060201b60201c565b6200056261dead6001620007d060201b60201c565b6200058462000576620007a660201b60201c565b60016200069a60201b60201c565b620005973060016200069a60201b60201c565b620005ac61dead60016200069a60201b60201c565b620005be33826200088b60201b60201c565b505050505050505062001152565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006aa62000a0360201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e062000a0360201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200087f919062001012565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f49062001090565b60405180910390fd5b620009116000838362000a9460201b60201c565b806002600082825462000925919062000fba565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200097c919062000fba565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e39190620010c3565b60405180910390a3620009ff6000838362000a9960201b60201c565b5050565b62000a13620005cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a39620007a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a899062001130565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b2057607f821691505b60208210810362000b365762000b3562000ad8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ba07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b61565b62000bac868362000b61565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bf962000bf362000bed8462000bc4565b62000bce565b62000bc4565b9050919050565b6000819050919050565b62000c158362000bd8565b62000c2d62000c248262000c00565b84845462000b6e565b825550505050565b600090565b62000c4462000c35565b62000c5181848462000c0a565b505050565b5b8181101562000c795762000c6d60008262000c3a565b60018101905062000c57565b5050565b601f82111562000cc85762000c928162000b3c565b62000c9d8462000b51565b8101602085101562000cad578190505b62000cc562000cbc8562000b51565b83018262000c56565b50505b505050565b600082821c905092915050565b600062000ced6000198460080262000ccd565b1980831691505092915050565b600062000d08838362000cda565b9150826002028217905092915050565b62000d238262000a9e565b67ffffffffffffffff81111562000d3f5762000d3e62000aa9565b5b62000d4b825462000b07565b62000d5882828562000c7d565b600060209050601f83116001811462000d90576000841562000d7b578287015190505b62000d87858262000cfa565b86555062000df7565b601f19841662000da08662000b3c565b60005b8281101562000dca5784890151825560018201915060208501945060208101905062000da3565b8683101562000dea578489015162000de6601f89168262000cda565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e318262000e04565b9050919050565b62000e438162000e24565b811462000e4f57600080fd5b50565b60008151905062000e638162000e38565b92915050565b60006020828403121562000e825762000e8162000dff565b5b600062000e928482850162000e52565b91505092915050565b62000ea68162000e24565b82525050565b600060408201905062000ec3600083018562000e9b565b62000ed2602083018462000e9b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f158262000bc4565b915062000f228362000bc4565b925082820262000f328162000bc4565b9150828204841483151762000f4c5762000f4b62000ed9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f8f8262000bc4565b915062000f9c8362000bc4565b92508262000faf5762000fae62000f53565b5b828204905092915050565b600062000fc78262000bc4565b915062000fd48362000bc4565b925082820190508082111562000fef5762000fee62000ed9565b5b92915050565b60008115159050919050565b6200100c8162000ff5565b82525050565b600060208201905062001029600083018462001001565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001078601f836200102f565b9150620010858262001040565b602082019050919050565b60006020820190508181036000830152620010ab8162001069565b9050919050565b620010bd8162000bc4565b82525050565b6000602082019050620010da6000830184620010b2565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011186020836200102f565b91506200112582620010e0565b602082019050919050565b600060208201905081810360008301526200114b8162001109565b9050919050565b60805160a051615293620011da600039600081816111cc0152818161163c01528181611d7501528181611e2c01528181611e59015281816125a2015281816136a40152818161375d015261378a015260008181610f950152818161254a01528181613900015281816139e101528181613a0801528181613aa40152613acb01526152936000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613c0a565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613cc5565b610f51565b60405161041c9190613d20565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613d3b565b610f74565b6040516104599190613d20565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613dc7565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613df1565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613d3b565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613df1565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613df1565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613df1565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613df1565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613e0c565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613e39565b61113c565b6040516105ea9190613d20565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190613e9b565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613df1565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613d20565b60405180910390f35b34801561068057600080fd5b5061068961118a565b6040516106969190613ed2565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613cc5565b611193565b6040516106d39190613d20565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190613e9b565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613d20565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613d3b565b611201565b6040516107669190613d20565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613df1565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613d20565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613d3b565b611270565b6040516107f99190613df1565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190613f19565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613d20565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613f6c565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190613e9b565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613df1565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613fac565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190613e9b565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190613e9b565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613df1565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613fff565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613c0a565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613f6c565b611632565b005b348015610a3657600080fd5b50610a3f6116d6565b604051610a4c9190613df1565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dc565b604051610a779190613df1565b60405180910390f35b348015610a8c57600080fd5b50610a956116e2565b604051610aa29190613df1565b60405180910390f35b348015610ab757600080fd5b50610ac06116e8565b604051610acd9190613df1565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613cc5565b6116ee565b604051610b0a9190613d20565b60405180910390f35b348015610b1f57600080fd5b50610b28611765565b604051610b359190613df1565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613cc5565b61176b565b604051610b729190613d20565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613d3b565b61178e565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613d3b565b611856565b604051610bd89190613d20565b60405180910390f35b348015610bed57600080fd5b50610bf6611876565b604051610c039190613d20565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f6c565b611889565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613fac565b61193a565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613e0c565b6119c5565b005b348015610c9357600080fd5b50610c9c611a60565b604051610ca99190613d20565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a73565b604051610cd49190613df1565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613e0c565b611a79565b604051610d119190613d20565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5a565b604051610d3c9190613df1565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061402c565b611b60565b604051610d799190613df1565b60405180910390f35b348015610d8e57600080fd5b50610d97611be7565b604051610da49190613df1565b60405180910390f35b348015610db957600080fd5b50610dc2611bed565b604051610dcf9190613d20565b60405180910390f35b348015610de457600080fd5b50610ded611c19565b604051610dfa9190613df1565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613d3b565b611c1f565b005b348015610e3857600080fd5b50610e41611ca2565b604051610e4e9190613df1565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca8565b604051610e799190613df1565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613e0c565b611cae565b604051610eb69190613d20565b60405180910390f35b606060038054610ece9061409b565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061409b565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f12565b9050610f69818585611f1a565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc96120e3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e3565b670de0b6b3a76400006103e8600a6110bf610fb7565b6110c991906140fb565b6110d3919061416c565b6110dd919061416c565b81101561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061420f565b60405180910390fd5b670de0b6b3a76400008161113391906140fb565b60088190555050565b600080611147611f12565b9050611154858285612161565b61115f8585856121ed565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f12565b90506111bf8185856111b08589611b60565b6111ba919061422f565b611f1a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e3565b6112ca6000612f82565b565b6112d46120e3565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906142d5565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290614367565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e3565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e3565b826015819055508160168190555080601781905550601754601654601554611483919061422f565b61148d919061422f565b601481905550601960145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906143d3565b60405180910390fd5b505050565b6114e66120e3565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e3565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af9061409b565b80601f01602080910402602001604051908101604052809291908181526020018280546115db9061409b565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614465565b60405180910390fd5b6116d28282613048565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116f9611f12565b905060006117078286611b60565b90508381101561174c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611743906144f7565b60405180910390fd5b6117598286868403611f1a565b60019250505092915050565b600e5481565b600080611776611f12565b90506117838185856121ed565b600191505092915050565b6117966120e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118916120e3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192e9190613d20565b60405180910390a25050565b6119426120e3565b8260198190555081601a8190555080601b81905550601b54601a5460195461196a919061422f565b611974919061422f565b601881905550601960185411156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143d3565b60405180910390fd5b505050565b6119cd6120e3565b670de0b6b3a76400006103e860146119e3610fb7565b6119ed91906140fb565b6119f7919061416c565b611a01919061416c565b811015611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90614589565b60405180910390fd5b670de0b6b3a764000081611a5791906140fb565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a836120e3565b620186a06001611a91610fb7565b611a9b91906140fb565b611aa5919061416c565b821015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade9061461b565b60405180910390fd5b6103e86005611af4610fb7565b611afe91906140fb565b611b08919061416c565b821115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906146ad565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf76120e3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c276120e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d9061473f565b60405180910390fd5b611c9f81612f82565b50565b601a5481565b600a5481565b6000611cb86120e3565b600f54601054611cc8919061422f565b4211611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906147ab565b60405180910390fd5b6103e8821115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d459061483d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611db09190613e9b565b602060405180830381865afa158015611dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df19190614872565b90506000611e1c612710611e0e86856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115611e5557611e547f000000000000000000000000000000000000000000000000000000000000000061dead83613115565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef906149a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d69190613df1565b60405180910390a3505050565b6120eb611f12565b73ffffffffffffffffffffffffffffffffffffffff16612109611525565b73ffffffffffffffffffffffffffffffffffffffff161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690614a0f565b60405180910390fd5b565b600061216d8484611b60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e757818110156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614a7b565b60405180910390fd5b6121e68484848403611f1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290614b9f565b60405180910390fd5b600081036122e4576122df83836000613115565b612f7d565b601160009054906101000a900460ff16156129a757612301611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561236f575061233f611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123fb5750600560149054906101000a900460ff16155b156129a657601160019054906101000a900460ff166124f557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124b55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614c0b565b60405180910390fd5b5b601360009054906101000a900460ff16156126bd57612512611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126bc5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614cc3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127605750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612807576008548111156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614d55565b60405180910390fd5b600a546127b683611270565b826127c1919061422f565b1115612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990614dc1565b60405180910390fd5b6129a5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128aa5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f9576008548111156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90614e53565b60405180910390fd5b6129a4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a357600a5461295683611270565b82612961919061422f565b11156129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614dc1565b60405180910390fd5b5b5b5b5b5b60006129b230611270565b9050600060095482101590508080156129d75750601160029054906101000a900460ff165b80156129f05750600560149054906101000a900460ff16155b8015612a465750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af25750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b36576001600560146101000a81548160ff021916908315150217905550612b1a613394565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b9c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bb45750600c60009054906101000a900460ff165b8015612bcf5750600d54600e54612bcb919061422f565b4210155b8015612c255750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3457612c3261367b565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cea5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cf457600090505b60008115612f6d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5757506000601854115b15612e2457612d846064612d76601854886130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050601854601a5482612d9791906140fb565b612da1919061416c565b601d6000828254612db2919061422f565b92505081905550601854601b5482612dca91906140fb565b612dd4919061416c565b601e6000828254612de5919061422f565b9250508190555060185460195482612dfd91906140fb565b612e07919061416c565b601c6000828254612e18919061422f565b92505081905550612f49565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7f57506000601454115b15612f4857612eac6064612e9e601454886130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060145460165482612ebf91906140fb565b612ec9919061416c565b601d6000828254612eda919061422f565b9250508190555060145460175482612ef291906140fb565b612efc919061416c565b601e6000828254612f0d919061422f565b9250508190555060145460155482612f2591906140fb565b612f2f919061416c565b601c6000828254612f40919061422f565b925050819055505b5b6000811115612f5e57612f5d873083613115565b5b8085612f6a9190614e73565b94505b612f78878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f791906140fb565b905092915050565b6000818361310d919061416c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea90614b9f565b60405180910390fd5b6131fe838383613841565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b90614f19565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613317919061422f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613df1565b60405180910390a361338e848484613846565b50505050565b600061339f30611270565b90506000601e54601c54601d546133b6919061422f565b6133c0919061422f565b90506000808314806133d25750600082145b156133df57505050613679565b60146009546133ee91906140fb565b83111561340757601460095461340491906140fb565b92505b6000600283601d548661341a91906140fb565b613424919061416c565b61342e919061416c565b90506000613445828661384b90919063ffffffff16565b9050600047905061345582613861565b600061346a824761384b90919063ffffffff16565b9050600061349587613487601c54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060006134c0886134b2601e54866130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060008183856134d19190614e73565b6134db9190614e73565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161353b90614f6a565b60006040518083038185875af1925050503d8060008114613578576040519150601f19603f3d011682016040523d82523d6000602084013e61357d565b606091505b5050809850506000871180156135935750600081115b156135e0576135a28782613a9e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516135d793929190614f7f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161362690614f6a565b60006040518083038185875af1925050503d8060008114613663576040519150601f19603f3d011682016040523d82523d6000602084013e613668565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016136df9190613e9b565b602060405180830381865afa1580156136fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137209190614872565b9050600061374d61271061373f600b54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115613786576137857f000000000000000000000000000000000000000000000000000000000000000061dead83613115565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137f357600080fd5b505af1158015613807573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138599190614e73565b905092915050565b6000600267ffffffffffffffff81111561387e5761387d614fb6565b5b6040519080825280602002602001820160405280156138ac5781602001602082028036833780820191505090505b50905030816000815181106138c4576138c3614fe5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613969573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061398d9190615029565b816001815181106139a1576139a0614fe5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a06307f000000000000000000000000000000000000000000000000000000000000000084611f1a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a6895949392919061514f565b600060405180830381600087803b158015613a8257600080fd5b505af1158015613a96573d6000803e3d6000fd5b505050505050565b613ac9307f000000000000000000000000000000000000000000000000000000000000000084611f1a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b30969594939291906151a9565b60606040518083038185885af1158015613b4e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b73919061520a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bb4578082015181840152602081019050613b99565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bdc82613b7a565b613be68185613b85565b9350613bf6818560208601613b96565b613bff81613bc0565b840191505092915050565b60006020820190508181036000830152613c248184613bd1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5c82613c31565b9050919050565b613c6c81613c51565b8114613c7757600080fd5b50565b600081359050613c8981613c63565b92915050565b6000819050919050565b613ca281613c8f565b8114613cad57600080fd5b50565b600081359050613cbf81613c99565b92915050565b60008060408385031215613cdc57613cdb613c2c565b5b6000613cea85828601613c7a565b9250506020613cfb85828601613cb0565b9150509250929050565b60008115159050919050565b613d1a81613d05565b82525050565b6000602082019050613d356000830184613d11565b92915050565b600060208284031215613d5157613d50613c2c565b5b6000613d5f84828501613c7a565b91505092915050565b6000819050919050565b6000613d8d613d88613d8384613c31565b613d68565b613c31565b9050919050565b6000613d9f82613d72565b9050919050565b6000613db182613d94565b9050919050565b613dc181613da6565b82525050565b6000602082019050613ddc6000830184613db8565b92915050565b613deb81613c8f565b82525050565b6000602082019050613e066000830184613de2565b92915050565b600060208284031215613e2257613e21613c2c565b5b6000613e3084828501613cb0565b91505092915050565b600080600060608486031215613e5257613e51613c2c565b5b6000613e6086828701613c7a565b9350506020613e7186828701613c7a565b9250506040613e8286828701613cb0565b9150509250925092565b613e9581613c51565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b600060ff82169050919050565b613ecc81613eb6565b82525050565b6000602082019050613ee76000830184613ec3565b92915050565b613ef681613d05565b8114613f0157600080fd5b50565b600081359050613f1381613eed565b92915050565b600080600060608486031215613f3257613f31613c2c565b5b6000613f4086828701613cb0565b9350506020613f5186828701613cb0565b9250506040613f6286828701613f04565b9150509250925092565b60008060408385031215613f8357613f82613c2c565b5b6000613f9185828601613c7a565b9250506020613fa285828601613f04565b9150509250929050565b600080600060608486031215613fc557613fc4613c2c565b5b6000613fd386828701613cb0565b9350506020613fe486828701613cb0565b9250506040613ff586828701613cb0565b9150509250925092565b60006020828403121561401557614014613c2c565b5b600061402384828501613f04565b91505092915050565b6000806040838503121561404357614042613c2c565b5b600061405185828601613c7a565b925050602061406285828601613c7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140b357607f821691505b6020821081036140c6576140c561406c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410682613c8f565b915061411183613c8f565b925082820261411f81613c8f565b91508282048414831517614136576141356140cc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417782613c8f565b915061418283613c8f565b9250826141925761419161413d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b60006141f9602d83613b85565b91506142048261419d565b604082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b600061423a82613c8f565b915061424583613c8f565b925082820190508082111561425d5761425c6140cc565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006142bf603383613b85565b91506142ca82614263565b604082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614351603083613b85565b915061435c826142f5565b604082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b7f4f6c642043686565736500000000000000000000000000000000000000000000600082015250565b60006143bd600a83613b85565b91506143c882614387565b602082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061444f603983613b85565b915061445a826143f3565b604082019050919050565b6000602082019050818103600083015261447e81614442565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e1602583613b85565b91506144ec82614485565b604082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614573602283613b85565b915061457e82614517565b604082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614605603583613b85565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614697603483613b85565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614729602683613b85565b9150614734826146cd565b604082019050919050565b600060208201905081810360008301526147588161471c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614795602083613b85565b91506147a08261475f565b602082019050919050565b600060208201905081810360008301526147c481614788565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614827602a83613b85565b9150614832826147cb565b604082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b60008151905061486c81613c99565b92915050565b60006020828403121561488857614887613c2c565b5b60006148968482850161485d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148fb602483613b85565b91506149068261489f565b604082019050919050565b6000602082019050818103600083015261492a816148ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061498d602283613b85565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149f9602083613b85565b9150614a04826149c3565b602082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a65601d83613b85565b9150614a7082614a2f565b602082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614af7602583613b85565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b89602383613b85565b9150614b9482614b2d565b604082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bf5601683613b85565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cad604983613b85565b9150614cb882614c2b565b606082019050919050565b60006020820190508181036000830152614cdc81614ca0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d3f603583613b85565b9150614d4a82614ce3565b604082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dab601383613b85565b9150614db682614d75565b602082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e3d603683613b85565b9150614e4882614de1565b604082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b6000614e7e82613c8f565b9150614e8983613c8f565b9250828203905081811115614ea157614ea06140cc565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f03602683613b85565b9150614f0e82614ea7565b604082019050919050565b60006020820190508181036000830152614f3281614ef6565b9050919050565b600081905092915050565b50565b6000614f54600083614f39565b9150614f5f82614f44565b600082019050919050565b6000614f7582614f47565b9150819050919050565b6000606082019050614f946000830186613de2565b614fa16020830185613de2565b614fae6040830184613de2565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061502381613c63565b92915050565b60006020828403121561503f5761503e613c2c565b5b600061504d84828501615014565b91505092915050565b6000819050919050565b600061507b61507661507184615056565b613d68565b613c8f565b9050919050565b61508b81615060565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150c681613c51565b82525050565b60006150d883836150bd565b60208301905092915050565b6000602082019050919050565b60006150fc82615091565b615106818561509c565b9350615111836150ad565b8060005b8381101561514257815161512988826150cc565b9750615134836150e4565b925050600181019050615115565b5085935050505092915050565b600060a0820190506151646000830188613de2565b6151716020830187615082565b818103604083015261518381866150f1565b90506151926060830185613e8c565b61519f6080830184613de2565b9695505050505050565b600060c0820190506151be6000830189613e8c565b6151cb6020830188613de2565b6151d86040830187615082565b6151e56060830186615082565b6151f26080830185613e8c565b6151ff60a0830184613de2565b979650505050505050565b60008060006060848603121561522357615222613c2c565b5b60006152318682870161485d565b93505060206152428682870161485d565b92505060406152538682870161485d565b915050925092509256fea2646970667358221220b7ec6a9ab2dc4c76b1b454d3543333d3bd2d8b506a861de6ccef1257222fe3a864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613c0a565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613cc5565b610f51565b60405161041c9190613d20565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613d3b565b610f74565b6040516104599190613d20565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613dc7565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613df1565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613d3b565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613df1565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613df1565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613df1565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613df1565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613e0c565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613e39565b61113c565b6040516105ea9190613d20565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190613e9b565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613df1565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613d20565b60405180910390f35b34801561068057600080fd5b5061068961118a565b6040516106969190613ed2565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613cc5565b611193565b6040516106d39190613d20565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190613e9b565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613d20565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613d3b565b611201565b6040516107669190613d20565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613df1565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613d20565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613d3b565b611270565b6040516107f99190613df1565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190613f19565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613d20565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613f6c565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190613e9b565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613df1565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613fac565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190613e9b565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190613e9b565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613df1565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613fff565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613c0a565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613f6c565b611632565b005b348015610a3657600080fd5b50610a3f6116d6565b604051610a4c9190613df1565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dc565b604051610a779190613df1565b60405180910390f35b348015610a8c57600080fd5b50610a956116e2565b604051610aa29190613df1565b60405180910390f35b348015610ab757600080fd5b50610ac06116e8565b604051610acd9190613df1565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613cc5565b6116ee565b604051610b0a9190613d20565b60405180910390f35b348015610b1f57600080fd5b50610b28611765565b604051610b359190613df1565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613cc5565b61176b565b604051610b729190613d20565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613d3b565b61178e565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613d3b565b611856565b604051610bd89190613d20565b60405180910390f35b348015610bed57600080fd5b50610bf6611876565b604051610c039190613d20565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f6c565b611889565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613fac565b61193a565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613e0c565b6119c5565b005b348015610c9357600080fd5b50610c9c611a60565b604051610ca99190613d20565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a73565b604051610cd49190613df1565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613e0c565b611a79565b604051610d119190613d20565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5a565b604051610d3c9190613df1565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061402c565b611b60565b604051610d799190613df1565b60405180910390f35b348015610d8e57600080fd5b50610d97611be7565b604051610da49190613df1565b60405180910390f35b348015610db957600080fd5b50610dc2611bed565b604051610dcf9190613d20565b60405180910390f35b348015610de457600080fd5b50610ded611c19565b604051610dfa9190613df1565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613d3b565b611c1f565b005b348015610e3857600080fd5b50610e41611ca2565b604051610e4e9190613df1565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca8565b604051610e799190613df1565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613e0c565b611cae565b604051610eb69190613d20565b60405180910390f35b606060038054610ece9061409b565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061409b565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f12565b9050610f69818585611f1a565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc96120e3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e3565b670de0b6b3a76400006103e8600a6110bf610fb7565b6110c991906140fb565b6110d3919061416c565b6110dd919061416c565b81101561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061420f565b60405180910390fd5b670de0b6b3a76400008161113391906140fb565b60088190555050565b600080611147611f12565b9050611154858285612161565b61115f8585856121ed565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f12565b90506111bf8185856111b08589611b60565b6111ba919061422f565b611f1a565b600191505092915050565b7f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e3565b6112ca6000612f82565b565b6112d46120e3565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906142d5565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290614367565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e3565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e3565b826015819055508160168190555080601781905550601754601654601554611483919061422f565b61148d919061422f565b601481905550601960145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906143d3565b60405180910390fd5b505050565b6114e66120e3565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e3565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af9061409b565b80601f01602080910402602001604051908101604052809291908181526020018280546115db9061409b565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e3565b7f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614465565b60405180910390fd5b6116d28282613048565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116f9611f12565b905060006117078286611b60565b90508381101561174c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611743906144f7565b60405180910390fd5b6117598286868403611f1a565b60019250505092915050565b600e5481565b600080611776611f12565b90506117838185856121ed565b600191505092915050565b6117966120e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118916120e3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192e9190613d20565b60405180910390a25050565b6119426120e3565b8260198190555081601a8190555080601b81905550601b54601a5460195461196a919061422f565b611974919061422f565b601881905550601960185411156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143d3565b60405180910390fd5b505050565b6119cd6120e3565b670de0b6b3a76400006103e860146119e3610fb7565b6119ed91906140fb565b6119f7919061416c565b611a01919061416c565b811015611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90614589565b60405180910390fd5b670de0b6b3a764000081611a5791906140fb565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a836120e3565b620186a06001611a91610fb7565b611a9b91906140fb565b611aa5919061416c565b821015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade9061461b565b60405180910390fd5b6103e86005611af4610fb7565b611afe91906140fb565b611b08919061416c565b821115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906146ad565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf76120e3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c276120e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d9061473f565b60405180910390fd5b611c9f81612f82565b50565b601a5481565b600a5481565b6000611cb86120e3565b600f54601054611cc8919061422f565b4211611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906147ab565b60405180910390fd5b6103e8821115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d459061483d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b6040518263ffffffff1660e01b8152600401611db09190613e9b565b602060405180830381865afa158015611dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df19190614872565b90506000611e1c612710611e0e86856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115611e5557611e547f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b61dead83613115565b5b60007f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef906149a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d69190613df1565b60405180910390a3505050565b6120eb611f12565b73ffffffffffffffffffffffffffffffffffffffff16612109611525565b73ffffffffffffffffffffffffffffffffffffffff161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690614a0f565b60405180910390fd5b565b600061216d8484611b60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e757818110156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614a7b565b60405180910390fd5b6121e68484848403611f1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290614b9f565b60405180910390fd5b600081036122e4576122df83836000613115565b612f7d565b601160009054906101000a900460ff16156129a757612301611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561236f575061233f611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123fb5750600560149054906101000a900460ff16155b156129a657601160019054906101000a900460ff166124f557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124b55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614c0b565b60405180910390fd5b5b601360009054906101000a900460ff16156126bd57612512611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f157507f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126bc5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614cc3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127605750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612807576008548111156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614d55565b60405180910390fd5b600a546127b683611270565b826127c1919061422f565b1115612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990614dc1565b60405180910390fd5b6129a5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128aa5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f9576008548111156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90614e53565b60405180910390fd5b6129a4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a357600a5461295683611270565b82612961919061422f565b11156129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614dc1565b60405180910390fd5b5b5b5b5b5b60006129b230611270565b9050600060095482101590508080156129d75750601160029054906101000a900460ff165b80156129f05750600560149054906101000a900460ff16155b8015612a465750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af25750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b36576001600560146101000a81548160ff021916908315150217905550612b1a613394565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b9c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bb45750600c60009054906101000a900460ff165b8015612bcf5750600d54600e54612bcb919061422f565b4210155b8015612c255750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3457612c3261367b565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cea5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cf457600090505b60008115612f6d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5757506000601854115b15612e2457612d846064612d76601854886130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050601854601a5482612d9791906140fb565b612da1919061416c565b601d6000828254612db2919061422f565b92505081905550601854601b5482612dca91906140fb565b612dd4919061416c565b601e6000828254612de5919061422f565b9250508190555060185460195482612dfd91906140fb565b612e07919061416c565b601c6000828254612e18919061422f565b92505081905550612f49565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7f57506000601454115b15612f4857612eac6064612e9e601454886130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060145460165482612ebf91906140fb565b612ec9919061416c565b601d6000828254612eda919061422f565b9250508190555060145460175482612ef291906140fb565b612efc919061416c565b601e6000828254612f0d919061422f565b9250508190555060145460155482612f2591906140fb565b612f2f919061416c565b601c6000828254612f40919061422f565b925050819055505b5b6000811115612f5e57612f5d873083613115565b5b8085612f6a9190614e73565b94505b612f78878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f791906140fb565b905092915050565b6000818361310d919061416c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea90614b9f565b60405180910390fd5b6131fe838383613841565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b90614f19565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613317919061422f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613df1565b60405180910390a361338e848484613846565b50505050565b600061339f30611270565b90506000601e54601c54601d546133b6919061422f565b6133c0919061422f565b90506000808314806133d25750600082145b156133df57505050613679565b60146009546133ee91906140fb565b83111561340757601460095461340491906140fb565b92505b6000600283601d548661341a91906140fb565b613424919061416c565b61342e919061416c565b90506000613445828661384b90919063ffffffff16565b9050600047905061345582613861565b600061346a824761384b90919063ffffffff16565b9050600061349587613487601c54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060006134c0886134b2601e54866130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060008183856134d19190614e73565b6134db9190614e73565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161353b90614f6a565b60006040518083038185875af1925050503d8060008114613578576040519150601f19603f3d011682016040523d82523d6000602084013e61357d565b606091505b5050809850506000871180156135935750600081115b156135e0576135a28782613a9e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516135d793929190614f7f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161362690614f6a565b60006040518083038185875af1925050503d8060008114613663576040519150601f19603f3d011682016040523d82523d6000602084013e613668565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b6040518263ffffffff1660e01b81526004016136df9190613e9b565b602060405180830381865afa1580156136fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137209190614872565b9050600061374d61271061373f600b54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115613786576137857f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b61dead83613115565b5b60007f000000000000000000000000eaec41fab55ac92730771be20866182ee68e2b3b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137f357600080fd5b505af1158015613807573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138599190614e73565b905092915050565b6000600267ffffffffffffffff81111561387e5761387d614fb6565b5b6040519080825280602002602001820160405280156138ac5781602001602082028036833780820191505090505b50905030816000815181106138c4576138c3614fe5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613969573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061398d9190615029565b816001815181106139a1576139a0614fe5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a06307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a6895949392919061514f565b600060405180830381600087803b158015613a8257600080fd5b505af1158015613a96573d6000803e3d6000fd5b505050505050565b613ac9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b30969594939291906151a9565b60606040518083038185885af1158015613b4e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b73919061520a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bb4578082015181840152602081019050613b99565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bdc82613b7a565b613be68185613b85565b9350613bf6818560208601613b96565b613bff81613bc0565b840191505092915050565b60006020820190508181036000830152613c248184613bd1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5c82613c31565b9050919050565b613c6c81613c51565b8114613c7757600080fd5b50565b600081359050613c8981613c63565b92915050565b6000819050919050565b613ca281613c8f565b8114613cad57600080fd5b50565b600081359050613cbf81613c99565b92915050565b60008060408385031215613cdc57613cdb613c2c565b5b6000613cea85828601613c7a565b9250506020613cfb85828601613cb0565b9150509250929050565b60008115159050919050565b613d1a81613d05565b82525050565b6000602082019050613d356000830184613d11565b92915050565b600060208284031215613d5157613d50613c2c565b5b6000613d5f84828501613c7a565b91505092915050565b6000819050919050565b6000613d8d613d88613d8384613c31565b613d68565b613c31565b9050919050565b6000613d9f82613d72565b9050919050565b6000613db182613d94565b9050919050565b613dc181613da6565b82525050565b6000602082019050613ddc6000830184613db8565b92915050565b613deb81613c8f565b82525050565b6000602082019050613e066000830184613de2565b92915050565b600060208284031215613e2257613e21613c2c565b5b6000613e3084828501613cb0565b91505092915050565b600080600060608486031215613e5257613e51613c2c565b5b6000613e6086828701613c7a565b9350506020613e7186828701613c7a565b9250506040613e8286828701613cb0565b9150509250925092565b613e9581613c51565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b600060ff82169050919050565b613ecc81613eb6565b82525050565b6000602082019050613ee76000830184613ec3565b92915050565b613ef681613d05565b8114613f0157600080fd5b50565b600081359050613f1381613eed565b92915050565b600080600060608486031215613f3257613f31613c2c565b5b6000613f4086828701613cb0565b9350506020613f5186828701613cb0565b9250506040613f6286828701613f04565b9150509250925092565b60008060408385031215613f8357613f82613c2c565b5b6000613f9185828601613c7a565b9250506020613fa285828601613f04565b9150509250929050565b600080600060608486031215613fc557613fc4613c2c565b5b6000613fd386828701613cb0565b9350506020613fe486828701613cb0565b9250506040613ff586828701613cb0565b9150509250925092565b60006020828403121561401557614014613c2c565b5b600061402384828501613f04565b91505092915050565b6000806040838503121561404357614042613c2c565b5b600061405185828601613c7a565b925050602061406285828601613c7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140b357607f821691505b6020821081036140c6576140c561406c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410682613c8f565b915061411183613c8f565b925082820261411f81613c8f565b91508282048414831517614136576141356140cc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417782613c8f565b915061418283613c8f565b9250826141925761419161413d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b60006141f9602d83613b85565b91506142048261419d565b604082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b600061423a82613c8f565b915061424583613c8f565b925082820190508082111561425d5761425c6140cc565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006142bf603383613b85565b91506142ca82614263565b604082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614351603083613b85565b915061435c826142f5565b604082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b7f4f6c642043686565736500000000000000000000000000000000000000000000600082015250565b60006143bd600a83613b85565b91506143c882614387565b602082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061444f603983613b85565b915061445a826143f3565b604082019050919050565b6000602082019050818103600083015261447e81614442565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e1602583613b85565b91506144ec82614485565b604082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614573602283613b85565b915061457e82614517565b604082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614605603583613b85565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614697603483613b85565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614729602683613b85565b9150614734826146cd565b604082019050919050565b600060208201905081810360008301526147588161471c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614795602083613b85565b91506147a08261475f565b602082019050919050565b600060208201905081810360008301526147c481614788565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614827602a83613b85565b9150614832826147cb565b604082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b60008151905061486c81613c99565b92915050565b60006020828403121561488857614887613c2c565b5b60006148968482850161485d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148fb602483613b85565b91506149068261489f565b604082019050919050565b6000602082019050818103600083015261492a816148ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061498d602283613b85565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149f9602083613b85565b9150614a04826149c3565b602082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a65601d83613b85565b9150614a7082614a2f565b602082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614af7602583613b85565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b89602383613b85565b9150614b9482614b2d565b604082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bf5601683613b85565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cad604983613b85565b9150614cb882614c2b565b606082019050919050565b60006020820190508181036000830152614cdc81614ca0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d3f603583613b85565b9150614d4a82614ce3565b604082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dab601383613b85565b9150614db682614d75565b602082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e3d603683613b85565b9150614e4882614de1565b604082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b6000614e7e82613c8f565b9150614e8983613c8f565b9250828203905081811115614ea157614ea06140cc565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f03602683613b85565b9150614f0e82614ea7565b604082019050919050565b60006020820190508181036000830152614f3281614ef6565b9050919050565b600081905092915050565b50565b6000614f54600083614f39565b9150614f5f82614f44565b600082019050919050565b6000614f7582614f47565b9150819050919050565b6000606082019050614f946000830186613de2565b614fa16020830185613de2565b614fae6040830184613de2565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061502381613c63565b92915050565b60006020828403121561503f5761503e613c2c565b5b600061504d84828501615014565b91505092915050565b6000819050919050565b600061507b61507661507184615056565b613d68565b613c8f565b9050919050565b61508b81615060565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150c681613c51565b82525050565b60006150d883836150bd565b60208301905092915050565b6000602082019050919050565b60006150fc82615091565b615106818561509c565b9350615111836150ad565b8060005b8381101561514257815161512988826150cc565b9750615134836150e4565b925050600181019050615115565b5085935050505092915050565b600060a0820190506151646000830188613de2565b6151716020830187615082565b818103604083015261518381866150f1565b90506151926060830185613e8c565b61519f6080830184613de2565b9695505050505050565b600060c0820190506151be6000830189613e8c565b6151cb6020830188613de2565b6151d86040830187615082565b6151e56060830186615082565b6151f26080830185613e8c565b6151ff60a0830184613de2565b979650505050505050565b60008060006060848603121561522357615222613c2c565b5b60006152318682870161485d565b93505060206152428682870161485d565b92505060406152538682870161485d565b915050925092509256fea2646970667358221220b7ec6a9ab2dc4c76b1b454d3543333d3bd2d8b506a861de6ccef1257222fe3a864736f6c63430008110033

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.