ETH Price: $3,455.03 (+1.87%)
Gas: 4 Gwei

Token

Ushi (USHI)
 

Overview

Max Total Supply

21,000,000,000 USHI

Holders

5,626 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (+0.26%)

Onchain Market Cap

$459,900.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,704,064.348612556419742023 USHI

Value
$124.92 ( ~0.0361560083609855 Eth) [0.0272%]
0x8e3745eedae50728df35350b6a2ea0323a967d01
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$USHI is a key to the unique analytics tool for crypto space. It is an artificial intelligence that can train itself using historical data from thousands of crypto social media channels, CEX and DEX exchanges, news websites etc.

Market

Volume (24H):$2,130.19
Market Capitalization:$0.00
Circulating Supply:0.00 USHI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
UshiToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

contract UshiToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 21_000_000_000 * 10 ** 18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Ushi";
    string private _symbol = "USHI";
    uint8 private _decimals = 18;

    // Base Fees
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _burnFee = 2;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _marketingFee = 4;
    address public marketingWallet;
    uint256 private _previousMarketingFee = _marketingFee;

    // Sell Fees
    uint256 public _sellTaxFee = 4;
    uint256 public _sellLiquidityFee = 4;
    uint256 public _sellMarketingFee = 8;
    uint256 public _sellBurnFee = 4;

    // Anti whale
    uint256 public constant MAX_HOLDING_PERCENTS_DIVISOR = 1000;
    uint256 public _maxHoldingPercents = 5;
    bool public antiWhaleEnabled;

    // Anti bot
    mapping(uint => bool) allowedBuyAmount;
    bool public antiBotEnabled;

    // Anti manager
    address public antiManager;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private numTokensSellToAddToLiquidity = 1000000 * 10 ** 18;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(IUniswapV2Router02 _uniswapV2Router, address _marketingWallet, address _antiManager, uint[] memory _allowedBuyAmount) {
        marketingWallet = _marketingWallet;
        antiManager = _antiManager;
        _rOwned[_msgSender()] = _rTotal;

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        //exclude owner, anti manager and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_antiManager] = true;
        _isExcludedFromFee[address(this)] = true;

        // Init anti bot allowed token amounts
        for(uint i; i < _allowedBuyAmount.length; i++) {
            allowedBuyAmount[_allowedBuyAmount[i]] = true;
        }

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(account != address(uniswapV2Router), 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    //to receive ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10 ** 2);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10 ** 2);
    }

    function activateSellFee() private {
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = _sellTaxFee;
        _liquidityFee = _sellLiquidityFee;
        _marketingFee = _sellMarketingFee;
        _burnFee = _sellBurnFee;
    }

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0 && _burnFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _burnFee = _previousBurnFee;
        _marketingFee = _previousMarketingFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (antiBotEnabled && from == uniswapV2Pair) {
            require(allowedBuyAmount[amount], "Only allowed buy amounts");
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount);

        if (antiWhaleEnabled) {
            uint maxAllowed = _tTotal * _maxHoldingPercents / MAX_HOLDING_PERCENTS_DIVISOR;
            if (to == uniswapV2Pair) {
                require(amount <= maxAllowed, "Transacted amount exceed the max allowed value");
            } else {
                require(balanceOf(to) <= maxAllowed, "Wallet balance exceeds the max limit");
            }
        }
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half);
        // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    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
            owner(),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount) private {
        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            removeAllFee();
        } else if (recipient == uniswapV2Pair) {
            activateSellFee();
        }

        //Calculate burn amount and marketing amount
        uint256 burnAmt = amount.mul(_burnFee).div(100);
        uint256 marketingAmt = amount.mul(_marketingFee).div(100);

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        }

        //Temporarily remove fees to transfer to burn address and marketing wallet
        _taxFee = 0;
        _liquidityFee = 0;

        _transferStandard(sender, address(0), burnAmt);
        _transferStandard(sender, marketingWallet, marketingAmt);

        //Restore tax and liquidity fees
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient] || recipient == uniswapV2Pair) {
            restoreAllFee();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        require(taxFee <= 10, "Tax fee cannot be more than 10%");
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 10, "Liquidity fee cannot be more than 10%");
        _liquidityFee = liquidityFee;
    }

    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        require(marketingFee <= 10, "Marketing fee cannot be more than 10%");
        _marketingFee = marketingFee;
    }

    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        require(burnFee <= 10, "Burn fee cannot be more than 10%");
        _burnFee = burnFee;
    }

    function setSellBurnFeePercent(uint256 sellBurnFee) external onlyOwner() {
        require(sellBurnFee <= 10, "Sell burn fee cannot be more than 10%");
        _sellBurnFee = sellBurnFee;
    }

    function setSellMarketingFeePercent(uint256 sellMarketingFee) external onlyOwner() {
        require(sellMarketingFee <= 10, "Sell marketing fee cannot be more than 10%");
        _sellMarketingFee = sellMarketingFee;
    }

    function setSellLiquidityFeePercent(uint256 sellLiquidityFee) external onlyOwner() {
        require(sellLiquidityFee <= 10, "Sell liquidity fee cannot be more than 10%");
        _sellLiquidityFee = sellLiquidityFee;
    }

    function setSellTaxFeePercent(uint256 sellTaxFee) external onlyOwner() {
        require(sellTaxFee <= 10, "Sell tax fee cannot be more than 10%");
        _sellTaxFee = sellTaxFee;
    }

    function setMaxHoldingPercents(uint256 maxHoldingPercents) external onlyOwner() {
        require(maxHoldingPercents >= 1, "Max holding percents cannot be less than 0.1%");
        require(maxHoldingPercents <= 30, "Max holding percents cannot be more than 3%");
        _maxHoldingPercents = maxHoldingPercents;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setAntiWhale(bool enabled) external {
        require(msg.sender == owner() || msg.sender == antiManager, "Only admin or anti manager allowed");
        antiWhaleEnabled = enabled;
    }

    function setAntiBot(bool enabled) external {
        require(msg.sender == owner() || msg.sender == antiManager, "Only admin or anti manager allowed");
        antiBotEnabled = enabled;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 6 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
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 7 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

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

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

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

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

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 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_antiManager","type":"address"},{"internalType":"uint256[]","name":"_allowedBuyAmount","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_HOLDING_PERCENTS_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxHoldingPercents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellBurnFee","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":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiWhaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHoldingPercents","type":"uint256"}],"name":"setMaxHoldingPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellBurnFee","type":"uint256"}],"name":"setSellBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"name":"setSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"}],"name":"setSellMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellTaxFee","type":"uint256"}],"name":"setSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"stateMutability":"payable","type":"receive"}]

60806040526b43dacaf91c1a84ff0800000060075560075460001962000026919062000883565b600019620000359190620008ea565b6008556040518060400160405280600481526020017f5573686900000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000859291906200079a565b506040518060400160405280600481526020017f5553484900000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000d39291906200079a565b506012600c60006101000a81548160ff021916908360ff1602179055506002600d55600d54600e556002600f55600f546010556002601155601154601255600460135560135460155560046016556004601755600860185560046019556005601a556000601f60156101000a81548160ff02191690831515021790555069d3c21bcecceda10000006020553480156200016b57600080fd5b5060405162006ad638038062006ad6833981810160405281019062000191919062000b89565b620001b1620001a5620006a560201b60201c565b620006ad60201b60201c565b82601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600854600160006200024a620006a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002cf57600080fd5b505afa158015620002e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030a919062000c1a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036d57600080fd5b505afa15801562000382573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a8919062000c1a565b6040518363ffffffff1660e01b8152600401620003c792919062000c5d565b602060405180830381600087803b158015620003e257600080fd5b505af1158015620003f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041d919062000c1a565b601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000620004b46200077160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b815181101562000621576001601c6000848481518110620005de57620005dd62000c8a565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620006189062000cb9565b915050620005b8565b5062000632620006a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60075460405162000693919062000d18565b60405180910390a35050505062000d9a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620007a89062000d64565b90600052602060002090601f016020900481019282620007cc576000855562000818565b82601f10620007e757805160ff191683800117855562000818565b8280016001018555821562000818579182015b8281111562000817578251825591602001919060010190620007fa565b5b5090506200082791906200082b565b5090565b5b80821115620008465760008160009055506001016200082c565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000890826200084a565b91506200089d836200084a565b925082620008b057620008af62000854565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008f7826200084a565b915062000904836200084a565b9250828210156200091a5762000919620008bb565b5b828203905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009668262000939565b9050919050565b60006200097a8262000959565b9050919050565b6200098c816200096d565b81146200099857600080fd5b50565b600081519050620009ac8162000981565b92915050565b620009bd8162000959565b8114620009c957600080fd5b50565b600081519050620009dd81620009b2565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a3382620009e8565b810181811067ffffffffffffffff8211171562000a555762000a54620009f9565b5b80604052505050565b600062000a6a62000925565b905062000a78828262000a28565b919050565b600067ffffffffffffffff82111562000a9b5762000a9a620009f9565b5b602082029050602081019050919050565b600080fd5b62000abc816200084a565b811462000ac857600080fd5b50565b60008151905062000adc8162000ab1565b92915050565b600062000af962000af38462000a7d565b62000a5e565b9050808382526020820190506020840283018581111562000b1f5762000b1e62000aac565b5b835b8181101562000b4c578062000b37888262000acb565b84526020840193505060208101905062000b21565b5050509392505050565b600082601f83011262000b6e5762000b6d620009e3565b5b815162000b8084826020860162000ae2565b91505092915050565b6000806000806080858703121562000ba65762000ba56200092f565b5b600062000bb6878288016200099b565b945050602062000bc987828801620009cc565b935050604062000bdc87828801620009cc565b925050606085015167ffffffffffffffff81111562000c005762000bff62000934565b5b62000c0e8782880162000b56565b91505092959194509250565b60006020828403121562000c335762000c326200092f565b5b600062000c4384828501620009cc565b91505092915050565b62000c578162000959565b82525050565b600060408201905062000c74600083018562000c4c565b62000c83602083018462000c4c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600062000cc6826200084a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cfc5762000cfb620008bb565b5b600182019050919050565b62000d12816200084a565b82525050565b600060208201905062000d2f600083018462000d07565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d7d57607f821691505b6020821081141562000d945762000d9362000d35565b5b50919050565b615d2c8062000daa6000396000f3fe6080604052600436106103395760003560e01c806364a06e80116101ab578063a9059cbb116100f7578063d0e0352311610095578063dd62ed3e1161006f578063dd62ed3e14610c2b578063ea2f0b3714610c68578063ebf7866314610c91578063f2fde38b14610cba57610340565b8063d0e0352314610bac578063d5bde46c14610bd5578063d8c6404b14610c0057610340565b8063c2c7c03a116100d1578063c2c7c03a14610b06578063c49b9a8014610b2f578063c860795214610b58578063cea2695814610b8357610340565b8063a9059cbb14610a75578063a928681c14610ab2578063c0b0fda214610adb57610340565b806388790a68116101645780638ee88c531161013e5780638ee88c53146109bb57806395d89b41146109e45780639655cab514610a0f578063a457c2d714610a3857610340565b806388790a681461092857806388f82020146109535780638da5cb5b1461099057610340565b806364a06e80146108285780636bc87c3a1461085357806370a082311461087e578063715018a6146108bb57806375f0a874146108d25780637abdc1ca146108fd57610340565b806339509351116102855780634a5566bf116102235780635342acb4116101fd5780635342acb41461076e57806357d87f0d146107ab5780635876ccc5146107d65780635d098b38146107ff57610340565b80634a5566bf146106f15780634a74bb021461071a57806352390c021461074557610340565b8063437823ec1161025f578063437823ec146106375780634549b03914610660578063457c194c1461069d57806349bd5a5e146106c657610340565b806339509351146105a65780633b124fe7146105e35780633bd5d1731461060e57610340565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146104d85780632d83811914610515578063313ce567146105525780633685d4191461057d57610340565b806318160ddd14610457578063200a692d1461048257806322976e0d146104ad57610340565b8063061c82d01461034557806306fdde031461036e578063095ea7b3146103995780630a7d2d87146103d657806313114a9d146104015780631694505e1461042c57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061036c600480360381019061036791906145f2565b610ce3565b005b34801561037a57600080fd5b50610383610d39565b60405161039091906146b8565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190614738565b610dcb565b6040516103cd9190614793565b60405180910390f35b3480156103e257600080fd5b506103eb610de9565b6040516103f891906147bd565b60405180910390f35b34801561040d57600080fd5b50610416610def565b60405161042391906147bd565b60405180910390f35b34801561043857600080fd5b50610441610df9565b60405161044e9190614837565b60405180910390f35b34801561046357600080fd5b5061046c610e1f565b60405161047991906147bd565b60405180910390f35b34801561048e57600080fd5b50610497610e29565b6040516104a491906147bd565b60405180910390f35b3480156104b957600080fd5b506104c2610e2f565b6040516104cf91906147bd565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190614852565b610e35565b60405161050c9190614793565b60405180910390f35b34801561052157600080fd5b5061053c600480360381019061053791906145f2565b610f0e565b60405161054991906147bd565b60405180910390f35b34801561055e57600080fd5b50610567610f7c565b60405161057491906148c1565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906148dc565b610f93565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190614738565b611255565b6040516105da9190614793565b60405180910390f35b3480156105ef57600080fd5b506105f8611308565b60405161060591906147bd565b60405180910390f35b34801561061a57600080fd5b50610635600480360381019061063091906145f2565b61130e565b005b34801561064357600080fd5b5061065e600480360381019061065991906148dc565b611489565b005b34801561066c57600080fd5b5061068760048036038101906106829190614935565b6114ec565b60405161069491906147bd565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906145f2565b611570565b005b3480156106d257600080fd5b506106db6115c6565b6040516106e89190614984565b60405180910390f35b3480156106fd57600080fd5b506107186004803603810190610713919061499f565b6115ec565b005b34801561072657600080fd5b5061072f6116d6565b60405161073c9190614793565b60405180910390f35b34801561075157600080fd5b5061076c600480360381019061076791906148dc565b6116e9565b005b34801561077a57600080fd5b50610795600480360381019061079091906148dc565b6119a1565b6040516107a29190614793565b60405180910390f35b3480156107b757600080fd5b506107c06119f7565b6040516107cd9190614793565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f891906145f2565b611a0a565b005b34801561080b57600080fd5b50610826600480360381019061082191906148dc565b611a60565b005b34801561083457600080fd5b5061083d611aac565b60405161084a91906147bd565b60405180910390f35b34801561085f57600080fd5b50610868611ab2565b60405161087591906147bd565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906148dc565b611ab8565b6040516108b291906147bd565b60405180910390f35b3480156108c757600080fd5b506108d0611ba3565b005b3480156108de57600080fd5b506108e7611bb7565b6040516108f49190614984565b60405180910390f35b34801561090957600080fd5b50610912611bdd565b60405161091f91906147bd565b60405180910390f35b34801561093457600080fd5b5061093d611be3565b60405161094a91906147bd565b60405180910390f35b34801561095f57600080fd5b5061097a600480360381019061097591906148dc565b611be9565b6040516109879190614793565b60405180910390f35b34801561099c57600080fd5b506109a5611c3f565b6040516109b29190614984565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd91906145f2565b611c68565b005b3480156109f057600080fd5b506109f9611cbe565b604051610a0691906146b8565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a3191906145f2565b611d50565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614738565b611dea565b604051610a6c9190614793565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190614738565b611eb7565b604051610aa99190614793565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad491906145f2565b611ed5565b005b348015610ae757600080fd5b50610af0611f2b565b604051610afd91906147bd565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b28919061499f565b611f31565b005b348015610b3b57600080fd5b50610b566004803603810190610b51919061499f565b61201b565b005b348015610b6457600080fd5b50610b6d612077565b604051610b7a91906147bd565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba591906145f2565b61207d565b005b348015610bb857600080fd5b50610bd36004803603810190610bce91906145f2565b6120d3565b005b348015610be157600080fd5b50610bea612129565b604051610bf79190614984565b60405180910390f35b348015610c0c57600080fd5b50610c1561214f565b604051610c229190614793565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d91906149cc565b612162565b604051610c5f91906147bd565b60405180910390f35b348015610c7457600080fd5b50610c8f6004803603810190610c8a91906148dc565b6121e9565b005b348015610c9d57600080fd5b50610cb86004803603810190610cb391906145f2565b61224c565b005b348015610cc657600080fd5b50610ce16004803603810190610cdc91906148dc565b6122a2565b005b610ceb612326565b600a811115610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690614a58565b60405180910390fd5b80600d8190555050565b6060600a8054610d4890614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7490614aa7565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b6000610ddf610dd86123a4565b84846123ac565b6001905092915050565b601a5481565b6000600954905090565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b60165481565b60135481565b6000610e42848484612577565b610f0384610e4e6123a4565b610efe85604051806060016040528060288152602001615caa60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eb46123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128e49092919063ffffffff16565b6123ac565b600190509392505050565b6000600854821115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614b4b565b60405180910390fd5b6000610f5f612939565b9050610f74818461296490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610f9b612326565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614bb7565b60405180910390fd5b60005b600680549050811015611251578173ffffffffffffffffffffffffffffffffffffffff166006828154811061106257611061614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561123e57600660016006805490506110bd9190614c35565b815481106110ce576110cd614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061110d5761110c614bd7565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061120457611203614c69565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611251565b808061124990614c98565b91505061102a565b5050565b60006112fe6112626123a4565b846112f985600360006112736123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b6123ac565b6001905092915050565b600d5481565b60006113186123a4565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90614d53565b60405180910390fd5b60006113b283612990565b5050505050905061140b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611463816008546129ec90919063ffffffff16565b60088190555061147e8360095461297a90919063ffffffff16565b600981905550505050565b611491612326565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90614dbf565b60405180910390fd5b8161155357600061154384612990565b505050505090508091505061156a565b600061155e84612990565b50505050915050809150505b92915050565b611578612326565b600a8111156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614e51565b60405180910390fd5b8060138190555050565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f4611c3f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061167a5750601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090614ee3565b60405180910390fd5b80601b60006101000a81548160ff02191690831515021790555050565b601f60159054906101000a900460ff1681565b6116f1612326565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614f75565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690614bb7565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118e35761189f600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601b60009054906101000a900460ff1681565b611a12612326565b600a811115611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90615007565b60405180910390fd5b8060178190555050565b611a68612326565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b5357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611b9e565b611b9b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0e565b90505b919050565b611bab612326565b611bb56000612a02565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b60175481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c70612326565b600a811115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90615099565b60405180910390fd5b80600f8190555050565b6060600b8054611ccd90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf990614aa7565b8015611d465780601f10611d1b57610100808354040283529160200191611d46565b820191906000526020600020905b815481529060010190602001808311611d2957829003601f168201915b5050505050905090565b611d58612326565b6001811015611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061512b565b60405180910390fd5b601e811115611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd7906151bd565b60405180910390fd5b80601a8190555050565b6000611ead611df76123a4565b84611ea885604051806060016040528060258152602001615cd26025913960036000611e216123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128e49092919063ffffffff16565b6123ac565b6001905092915050565b6000611ecb611ec46123a4565b8484612577565b6001905092915050565b611edd612326565b600a811115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f189061524f565b60405180910390fd5b8060188190555050565b60115481565b611f39611c3f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611fbf5750601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590614ee3565b60405180910390fd5b80601d60006101000a81548160ff02191690831515021790555050565b612023612326565b80601f60156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161206c9190614793565b60405180910390a150565b60185481565b612085612326565b600a8111156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906152bb565b60405180910390fd5b8060118190555050565b6120db612326565b600a81111561211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121169061534d565b60405180910390fd5b8060168190555050565b601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d60009054906101000a900460ff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121f1612326565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612254612326565b600a811115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906153df565b60405180910390fd5b8060198190555050565b6122aa612326565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190615471565b60405180910390fd5b61232381612a02565b50565b61232e6123a4565b73ffffffffffffffffffffffffffffffffffffffff1661234c611c3f565b73ffffffffffffffffffffffffffffffffffffffff16146123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906154dd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561241c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124139061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390615601565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161256a91906147bd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90615693565b60405180910390fd5b6000811161262a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262190615725565b60405180910390fd5b601d60009054906101000a900460ff1680156126935750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156126f957601c600082815260200190815260200160002060009054906101000a900460ff166126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef90615791565b60405180910390fd5b5b600061270430611ab8565b90506000602054821015905080801561272a5750601f60149054906101000a900460ff16155b80156127845750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561279c5750601f60159054906101000a900460ff165b156127b05760205491506127af82612ac6565b5b6127bb858585612b9c565b601b60009054906101000a900460ff16156128dd5760006103e8601a546007546127e591906157b1565b6127ef919061583a565b9050601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561288f578084111561288a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612881906158dd565b60405180910390fd5b6128db565b8061289986611ab8565b11156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d19061596f565b60405180910390fd5b5b505b5050505050565b600083831115829061292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292391906146b8565b60405180910390fd5b5082840390509392505050565b6000806000612946613213565b9150915061295d818361296490919063ffffffff16565b9250505090565b60008183612972919061583a565b905092915050565b60008183612988919061598f565b905092915050565b60008060008060008060008060006129a78a6134c6565b92509250925060008060006129c58d86866129c0612939565b613520565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600081836129fa9190614c35565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601f60146101000a81548160ff0219169083151502179055506000612af760028361296490919063ffffffff16565b90506000612b0e82846129ec90919063ffffffff16565b90506000479050612b1e836135a9565b6000612b3382476129ec90919063ffffffff16565b9050612b3f83826137fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612b72939291906159e5565b60405180910390a1505050506000601f60146101000a81548160ff02191690831515021790555050565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c3d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c4f57612c4a6138ef565b612caf565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cae57612cad613970565b5b5b6000612cd96064612ccb601154856139ba90919063ffffffff16565b61296490919063ffffffff16565b90506000612d056064612cf7601354866139ba90919063ffffffff16565b61296490919063ffffffff16565b9050600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daa5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612de357612dde8585612dd984612dcb87896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b6139d0565b6130aa565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e865750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ebf57612eba8585612eb584612ea787896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613c30565b6130a9565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f635750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f9c57612f978585612f9284612f8487896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613e90565b6130a8565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303e5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307757613072858561306d8461305f87896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b61405b565b6130a7565b6130a685856130a18461309387896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613e90565b5b5b5b5b6000600d819055506000600f819055506130c685600084613e90565b6130f385601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613e90565b600e54600d81905550601054600f81905550600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131a65750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806131fe5750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561320c5761320b614350565b5b5050505050565b600080600060085490506000600754905060005b6006805490508110156134895782600160006006848154811061324d5761324c614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061333b57508160026000600684815481106132d3576132d2614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561335257600854600754945094505050506134c2565b6133e2600160006006848154811061336d5761336c614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846129ec90919063ffffffff16565b925061347460026000600684815481106133ff576133fe614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836129ec90919063ffffffff16565b9150808061348190614c98565b915050613227565b506134a160075460085461296490919063ffffffff16565b8210156134b9576008546007549350935050506134c2565b81819350935050505b9091565b6000806000806134d585614376565b905060006134e2866143a7565b9050600061350b826134fd858a6129ec90919063ffffffff16565b6129ec90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061353985896139ba90919063ffffffff16565b9050600061355086896139ba90919063ffffffff16565b9050600061356787896139ba90919063ffffffff16565b905060006135908261358285876129ec90919063ffffffff16565b6129ec90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156135c6576135c5615a1c565b5b6040519080825280602002602001820160405280156135f45781602001602082028036833780820191505090505b509050308160008151811061360c5761360b614bd7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156136ae57600080fd5b505afa1580156136c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e69190615a60565b816001815181106136fa576136f9614bd7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061376130601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123ac565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137c5959493929190615b86565b600060405180830381600087803b1580156137df57600080fd5b505af11580156137f3573d6000803e3d6000fd5b505050505050565b61382830601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123ac565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613874611c3f565b426040518863ffffffff1660e01b815260040161389696959493929190615be0565b6060604051808303818588803b1580156138af57600080fd5b505af11580156138c3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138e89190615c56565b5050505050565b6000600d5414801561390357506000600f54145b801561391157506000601354145b801561391f57506000601154145b156139295761396e565b600d54600e81905550600f546010819055506011546012819055506013546015819055506000600d819055506000600f81905550600060138190555060006011819055505b565b600d54600e81905550600f54601081905550601154601281905550601354601581905550601654600d81905550601754600f81905550601854601381905550601954601181905550565b600081836139c891906157b1565b905092915050565b6000806000806000806139e287612990565b955095509550955095509550613a4087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ad586600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bb6816143d8565b613bc0848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613c1d91906147bd565b60405180910390a3505050505050505050565b600080600080600080613c4287612990565b955095509550955095509550613ca086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d3583600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613dca85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e16816143d8565b613e20848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613e7d91906147bd565b60405180910390a3505050505050505050565b600080600080600080613ea287612990565b955095509550955095509550613f0086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f9585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe1816143d8565b613feb848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161404891906147bd565b60405180910390a3505050505050505050565b60008060008060008061406d87612990565b9550955095509550955095506140cb87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061416086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141f583600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061428a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142d6816143d8565b6142e0848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161433d91906147bd565b60405180910390a3505050505050505050565b600e54600d81905550601054600f81905550601254601181905550601554601381905550565b60006143a06064614392600d54856139ba90919063ffffffff16565b61296490919063ffffffff16565b9050919050565b60006143d160646143c3600f54856139ba90919063ffffffff16565b61296490919063ffffffff16565b9050919050565b60006143e2612939565b905060006143f982846139ba90919063ffffffff16565b905061444d81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156145785761453483600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614592826008546129ec90919063ffffffff16565b6008819055506145ad8160095461297a90919063ffffffff16565b6009819055505050565b600080fd5b6000819050919050565b6145cf816145bc565b81146145da57600080fd5b50565b6000813590506145ec816145c6565b92915050565b600060208284031215614608576146076145b7565b5b6000614616848285016145dd565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561465957808201518184015260208101905061463e565b83811115614668576000848401525b50505050565b6000601f19601f8301169050919050565b600061468a8261461f565b614694818561462a565b93506146a481856020860161463b565b6146ad8161466e565b840191505092915050565b600060208201905081810360008301526146d2818461467f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614705826146da565b9050919050565b614715816146fa565b811461472057600080fd5b50565b6000813590506147328161470c565b92915050565b6000806040838503121561474f5761474e6145b7565b5b600061475d85828601614723565b925050602061476e858286016145dd565b9150509250929050565b60008115159050919050565b61478d81614778565b82525050565b60006020820190506147a86000830184614784565b92915050565b6147b7816145bc565b82525050565b60006020820190506147d260008301846147ae565b92915050565b6000819050919050565b60006147fd6147f86147f3846146da565b6147d8565b6146da565b9050919050565b600061480f826147e2565b9050919050565b600061482182614804565b9050919050565b61483181614816565b82525050565b600060208201905061484c6000830184614828565b92915050565b60008060006060848603121561486b5761486a6145b7565b5b600061487986828701614723565b935050602061488a86828701614723565b925050604061489b868287016145dd565b9150509250925092565b600060ff82169050919050565b6148bb816148a5565b82525050565b60006020820190506148d660008301846148b2565b92915050565b6000602082840312156148f2576148f16145b7565b5b600061490084828501614723565b91505092915050565b61491281614778565b811461491d57600080fd5b50565b60008135905061492f81614909565b92915050565b6000806040838503121561494c5761494b6145b7565b5b600061495a858286016145dd565b925050602061496b85828601614920565b9150509250929050565b61497e816146fa565b82525050565b60006020820190506149996000830184614975565b92915050565b6000602082840312156149b5576149b46145b7565b5b60006149c384828501614920565b91505092915050565b600080604083850312156149e3576149e26145b7565b5b60006149f185828601614723565b9250506020614a0285828601614723565b9150509250929050565b7f546178206665652063616e6e6f74206265206d6f7265207468616e2031302500600082015250565b6000614a42601f8361462a565b9150614a4d82614a0c565b602082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614abf57607f821691505b60208210811415614ad357614ad2614a78565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614b35602a8361462a565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614ba1601b8361462a565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c40826145bc565b9150614c4b836145bc565b925082821015614c5e57614c5d614c06565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614ca3826145bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cd657614cd5614c06565b5b600182019050919050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614d3d602c8361462a565b9150614d4882614ce1565b604082019050919050565b60006020820190508181036000830152614d6c81614d30565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614da9601f8361462a565b9150614db482614d73565b602082019050919050565b60006020820190508181036000830152614dd881614d9c565b9050919050565b7f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b6000614e3b60258361462a565b9150614e4682614ddf565b604082019050919050565b60006020820190508181036000830152614e6a81614e2e565b9050919050565b7f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ecd60228361462a565b9150614ed882614e71565b604082019050919050565b60006020820190508181036000830152614efc81614ec0565b9050919050565b7f57652063616e206e6f74206578636c75646520556e697377617020726f75746560008201527f722e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f5f60228361462a565b9150614f6a82614f03565b604082019050919050565b60006020820190508181036000830152614f8e81614f52565b9050919050565b7f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260008201527f65207468616e2031302500000000000000000000000000000000000000000000602082015250565b6000614ff1602a8361462a565b9150614ffc82614f95565b604082019050919050565b6000602082019050818103600083015261502081614fe4565b9050919050565b7f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b600061508360258361462a565b915061508e82615027565b604082019050919050565b600060208201905081810360008301526150b281615076565b9050919050565b7f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60008201527f657373207468616e20302e312500000000000000000000000000000000000000602082015250565b6000615115602d8361462a565b9150615120826150b9565b604082019050919050565b6000602082019050818103600083015261514481615108565b9050919050565b7f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60008201527f6f7265207468616e203325000000000000000000000000000000000000000000602082015250565b60006151a7602b8361462a565b91506151b28261514b565b604082019050919050565b600060208201905081810360008301526151d68161519a565b9050919050565b7f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260008201527f65207468616e2031302500000000000000000000000000000000000000000000602082015250565b6000615239602a8361462a565b9150615244826151dd565b604082019050919050565b600060208201905081810360008301526152688161522c565b9050919050565b7f4275726e206665652063616e6e6f74206265206d6f7265207468616e20313025600082015250565b60006152a560208361462a565b91506152b08261526f565b602082019050919050565b600060208201905081810360008301526152d481615298565b9050919050565b7f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60008201527f2031302500000000000000000000000000000000000000000000000000000000602082015250565b600061533760248361462a565b9150615342826152db565b604082019050919050565b600060208201905081810360008301526153668161532a565b9050919050565b7f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b60006153c960258361462a565b91506153d48261536d565b604082019050919050565b600060208201905081810360008301526153f8816153bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061545b60268361462a565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006154c760208361462a565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061555960248361462a565b9150615564826154fd565b604082019050919050565b600060208201905081810360008301526155888161554c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155eb60228361462a565b91506155f68261558f565b604082019050919050565b6000602082019050818103600083015261561a816155de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061567d60258361462a565b915061568882615621565b604082019050919050565b600060208201905081810360008301526156ac81615670565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061570f60298361462a565b915061571a826156b3565b604082019050919050565b6000602082019050818103600083015261573e81615702565b9050919050565b7f4f6e6c7920616c6c6f7765642062757920616d6f756e74730000000000000000600082015250565b600061577b60188361462a565b915061578682615745565b602082019050919050565b600060208201905081810360008301526157aa8161576e565b9050919050565b60006157bc826145bc565b91506157c7836145bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615800576157ff614c06565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615845826145bc565b9150615850836145bc565b9250826158605761585f61580b565b5b828204905092915050565b7f5472616e73616374656420616d6f756e742065786365656420746865206d617860008201527f20616c6c6f7765642076616c7565000000000000000000000000000000000000602082015250565b60006158c7602e8361462a565b91506158d28261586b565b604082019050919050565b600060208201905081810360008301526158f6816158ba565b9050919050565b7f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b600061595960248361462a565b9150615964826158fd565b604082019050919050565b600060208201905081810360008301526159888161594c565b9050919050565b600061599a826145bc565b91506159a5836145bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159da576159d9614c06565b5b828201905092915050565b60006060820190506159fa60008301866147ae565b615a0760208301856147ae565b615a1460408301846147ae565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050615a5a8161470c565b92915050565b600060208284031215615a7657615a756145b7565b5b6000615a8484828501615a4b565b91505092915050565b6000819050919050565b6000615ab2615aad615aa884615a8d565b6147d8565b6145bc565b9050919050565b615ac281615a97565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615afd816146fa565b82525050565b6000615b0f8383615af4565b60208301905092915050565b6000602082019050919050565b6000615b3382615ac8565b615b3d8185615ad3565b9350615b4883615ae4565b8060005b83811015615b79578151615b608882615b03565b9750615b6b83615b1b565b925050600181019050615b4c565b5085935050505092915050565b600060a082019050615b9b60008301886147ae565b615ba86020830187615ab9565b8181036040830152615bba8186615b28565b9050615bc96060830185614975565b615bd660808301846147ae565b9695505050505050565b600060c082019050615bf56000830189614975565b615c0260208301886147ae565b615c0f6040830187615ab9565b615c1c6060830186615ab9565b615c296080830185614975565b615c3660a08301846147ae565b979650505050505050565b600081519050615c50816145c6565b92915050565b600080600060608486031215615c6f57615c6e6145b7565b5b6000615c7d86828701615c41565b9350506020615c8e86828701615c41565b9250506040615c9f86828701615c41565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011b77330776358ae8b42dc328f26e1644abfa7c468a2ccb9044ab2d53849f6b764736f6c634300080900330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000003465180d1c8d5509f5a2569aeff0133dddea52f00000000000000000000000069304855697e2805f2e5a93f3e64dfaa83117d6b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000

Deployed Bytecode

0x6080604052600436106103395760003560e01c806364a06e80116101ab578063a9059cbb116100f7578063d0e0352311610095578063dd62ed3e1161006f578063dd62ed3e14610c2b578063ea2f0b3714610c68578063ebf7866314610c91578063f2fde38b14610cba57610340565b8063d0e0352314610bac578063d5bde46c14610bd5578063d8c6404b14610c0057610340565b8063c2c7c03a116100d1578063c2c7c03a14610b06578063c49b9a8014610b2f578063c860795214610b58578063cea2695814610b8357610340565b8063a9059cbb14610a75578063a928681c14610ab2578063c0b0fda214610adb57610340565b806388790a68116101645780638ee88c531161013e5780638ee88c53146109bb57806395d89b41146109e45780639655cab514610a0f578063a457c2d714610a3857610340565b806388790a681461092857806388f82020146109535780638da5cb5b1461099057610340565b806364a06e80146108285780636bc87c3a1461085357806370a082311461087e578063715018a6146108bb57806375f0a874146108d25780637abdc1ca146108fd57610340565b806339509351116102855780634a5566bf116102235780635342acb4116101fd5780635342acb41461076e57806357d87f0d146107ab5780635876ccc5146107d65780635d098b38146107ff57610340565b80634a5566bf146106f15780634a74bb021461071a57806352390c021461074557610340565b8063437823ec1161025f578063437823ec146106375780634549b03914610660578063457c194c1461069d57806349bd5a5e146106c657610340565b806339509351146105a65780633b124fe7146105e35780633bd5d1731461060e57610340565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146104d85780632d83811914610515578063313ce567146105525780633685d4191461057d57610340565b806318160ddd14610457578063200a692d1461048257806322976e0d146104ad57610340565b8063061c82d01461034557806306fdde031461036e578063095ea7b3146103995780630a7d2d87146103d657806313114a9d146104015780631694505e1461042c57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061036c600480360381019061036791906145f2565b610ce3565b005b34801561037a57600080fd5b50610383610d39565b60405161039091906146b8565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190614738565b610dcb565b6040516103cd9190614793565b60405180910390f35b3480156103e257600080fd5b506103eb610de9565b6040516103f891906147bd565b60405180910390f35b34801561040d57600080fd5b50610416610def565b60405161042391906147bd565b60405180910390f35b34801561043857600080fd5b50610441610df9565b60405161044e9190614837565b60405180910390f35b34801561046357600080fd5b5061046c610e1f565b60405161047991906147bd565b60405180910390f35b34801561048e57600080fd5b50610497610e29565b6040516104a491906147bd565b60405180910390f35b3480156104b957600080fd5b506104c2610e2f565b6040516104cf91906147bd565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190614852565b610e35565b60405161050c9190614793565b60405180910390f35b34801561052157600080fd5b5061053c600480360381019061053791906145f2565b610f0e565b60405161054991906147bd565b60405180910390f35b34801561055e57600080fd5b50610567610f7c565b60405161057491906148c1565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906148dc565b610f93565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190614738565b611255565b6040516105da9190614793565b60405180910390f35b3480156105ef57600080fd5b506105f8611308565b60405161060591906147bd565b60405180910390f35b34801561061a57600080fd5b50610635600480360381019061063091906145f2565b61130e565b005b34801561064357600080fd5b5061065e600480360381019061065991906148dc565b611489565b005b34801561066c57600080fd5b5061068760048036038101906106829190614935565b6114ec565b60405161069491906147bd565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906145f2565b611570565b005b3480156106d257600080fd5b506106db6115c6565b6040516106e89190614984565b60405180910390f35b3480156106fd57600080fd5b506107186004803603810190610713919061499f565b6115ec565b005b34801561072657600080fd5b5061072f6116d6565b60405161073c9190614793565b60405180910390f35b34801561075157600080fd5b5061076c600480360381019061076791906148dc565b6116e9565b005b34801561077a57600080fd5b50610795600480360381019061079091906148dc565b6119a1565b6040516107a29190614793565b60405180910390f35b3480156107b757600080fd5b506107c06119f7565b6040516107cd9190614793565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f891906145f2565b611a0a565b005b34801561080b57600080fd5b50610826600480360381019061082191906148dc565b611a60565b005b34801561083457600080fd5b5061083d611aac565b60405161084a91906147bd565b60405180910390f35b34801561085f57600080fd5b50610868611ab2565b60405161087591906147bd565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906148dc565b611ab8565b6040516108b291906147bd565b60405180910390f35b3480156108c757600080fd5b506108d0611ba3565b005b3480156108de57600080fd5b506108e7611bb7565b6040516108f49190614984565b60405180910390f35b34801561090957600080fd5b50610912611bdd565b60405161091f91906147bd565b60405180910390f35b34801561093457600080fd5b5061093d611be3565b60405161094a91906147bd565b60405180910390f35b34801561095f57600080fd5b5061097a600480360381019061097591906148dc565b611be9565b6040516109879190614793565b60405180910390f35b34801561099c57600080fd5b506109a5611c3f565b6040516109b29190614984565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd91906145f2565b611c68565b005b3480156109f057600080fd5b506109f9611cbe565b604051610a0691906146b8565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a3191906145f2565b611d50565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614738565b611dea565b604051610a6c9190614793565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190614738565b611eb7565b604051610aa99190614793565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad491906145f2565b611ed5565b005b348015610ae757600080fd5b50610af0611f2b565b604051610afd91906147bd565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b28919061499f565b611f31565b005b348015610b3b57600080fd5b50610b566004803603810190610b51919061499f565b61201b565b005b348015610b6457600080fd5b50610b6d612077565b604051610b7a91906147bd565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba591906145f2565b61207d565b005b348015610bb857600080fd5b50610bd36004803603810190610bce91906145f2565b6120d3565b005b348015610be157600080fd5b50610bea612129565b604051610bf79190614984565b60405180910390f35b348015610c0c57600080fd5b50610c1561214f565b604051610c229190614793565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d91906149cc565b612162565b604051610c5f91906147bd565b60405180910390f35b348015610c7457600080fd5b50610c8f6004803603810190610c8a91906148dc565b6121e9565b005b348015610c9d57600080fd5b50610cb86004803603810190610cb391906145f2565b61224c565b005b348015610cc657600080fd5b50610ce16004803603810190610cdc91906148dc565b6122a2565b005b610ceb612326565b600a811115610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690614a58565b60405180910390fd5b80600d8190555050565b6060600a8054610d4890614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7490614aa7565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b6000610ddf610dd86123a4565b84846123ac565b6001905092915050565b601a5481565b6000600954905090565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b60165481565b60135481565b6000610e42848484612577565b610f0384610e4e6123a4565b610efe85604051806060016040528060288152602001615caa60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eb46123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128e49092919063ffffffff16565b6123ac565b600190509392505050565b6000600854821115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614b4b565b60405180910390fd5b6000610f5f612939565b9050610f74818461296490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610f9b612326565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614bb7565b60405180910390fd5b60005b600680549050811015611251578173ffffffffffffffffffffffffffffffffffffffff166006828154811061106257611061614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561123e57600660016006805490506110bd9190614c35565b815481106110ce576110cd614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061110d5761110c614bd7565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061120457611203614c69565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611251565b808061124990614c98565b91505061102a565b5050565b60006112fe6112626123a4565b846112f985600360006112736123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b6123ac565b6001905092915050565b600d5481565b60006113186123a4565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90614d53565b60405180910390fd5b60006113b283612990565b5050505050905061140b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611463816008546129ec90919063ffffffff16565b60088190555061147e8360095461297a90919063ffffffff16565b600981905550505050565b611491612326565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90614dbf565b60405180910390fd5b8161155357600061154384612990565b505050505090508091505061156a565b600061155e84612990565b50505050915050809150505b92915050565b611578612326565b600a8111156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614e51565b60405180910390fd5b8060138190555050565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f4611c3f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061167a5750601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090614ee3565b60405180910390fd5b80601b60006101000a81548160ff02191690831515021790555050565b601f60159054906101000a900460ff1681565b6116f1612326565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614f75565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690614bb7565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118e35761189f600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601b60009054906101000a900460ff1681565b611a12612326565b600a811115611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90615007565b60405180910390fd5b8060178190555050565b611a68612326565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b5357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611b9e565b611b9b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0e565b90505b919050565b611bab612326565b611bb56000612a02565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b60175481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c70612326565b600a811115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90615099565b60405180910390fd5b80600f8190555050565b6060600b8054611ccd90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf990614aa7565b8015611d465780601f10611d1b57610100808354040283529160200191611d46565b820191906000526020600020905b815481529060010190602001808311611d2957829003601f168201915b5050505050905090565b611d58612326565b6001811015611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061512b565b60405180910390fd5b601e811115611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd7906151bd565b60405180910390fd5b80601a8190555050565b6000611ead611df76123a4565b84611ea885604051806060016040528060258152602001615cd26025913960036000611e216123a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128e49092919063ffffffff16565b6123ac565b6001905092915050565b6000611ecb611ec46123a4565b8484612577565b6001905092915050565b611edd612326565b600a811115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f189061524f565b60405180910390fd5b8060188190555050565b60115481565b611f39611c3f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611fbf5750601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590614ee3565b60405180910390fd5b80601d60006101000a81548160ff02191690831515021790555050565b612023612326565b80601f60156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161206c9190614793565b60405180910390a150565b60185481565b612085612326565b600a8111156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906152bb565b60405180910390fd5b8060118190555050565b6120db612326565b600a81111561211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121169061534d565b60405180910390fd5b8060168190555050565b601d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d60009054906101000a900460ff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121f1612326565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612254612326565b600a811115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906153df565b60405180910390fd5b8060198190555050565b6122aa612326565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190615471565b60405180910390fd5b61232381612a02565b50565b61232e6123a4565b73ffffffffffffffffffffffffffffffffffffffff1661234c611c3f565b73ffffffffffffffffffffffffffffffffffffffff16146123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906154dd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561241c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124139061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390615601565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161256a91906147bd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90615693565b60405180910390fd5b6000811161262a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262190615725565b60405180910390fd5b601d60009054906101000a900460ff1680156126935750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156126f957601c600082815260200190815260200160002060009054906101000a900460ff166126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef90615791565b60405180910390fd5b5b600061270430611ab8565b90506000602054821015905080801561272a5750601f60149054906101000a900460ff16155b80156127845750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561279c5750601f60159054906101000a900460ff165b156127b05760205491506127af82612ac6565b5b6127bb858585612b9c565b601b60009054906101000a900460ff16156128dd5760006103e8601a546007546127e591906157b1565b6127ef919061583a565b9050601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561288f578084111561288a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612881906158dd565b60405180910390fd5b6128db565b8061289986611ab8565b11156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d19061596f565b60405180910390fd5b5b505b5050505050565b600083831115829061292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292391906146b8565b60405180910390fd5b5082840390509392505050565b6000806000612946613213565b9150915061295d818361296490919063ffffffff16565b9250505090565b60008183612972919061583a565b905092915050565b60008183612988919061598f565b905092915050565b60008060008060008060008060006129a78a6134c6565b92509250925060008060006129c58d86866129c0612939565b613520565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600081836129fa9190614c35565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601f60146101000a81548160ff0219169083151502179055506000612af760028361296490919063ffffffff16565b90506000612b0e82846129ec90919063ffffffff16565b90506000479050612b1e836135a9565b6000612b3382476129ec90919063ffffffff16565b9050612b3f83826137fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612b72939291906159e5565b60405180910390a1505050506000601f60146101000a81548160ff02191690831515021790555050565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c3d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c4f57612c4a6138ef565b612caf565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cae57612cad613970565b5b5b6000612cd96064612ccb601154856139ba90919063ffffffff16565b61296490919063ffffffff16565b90506000612d056064612cf7601354866139ba90919063ffffffff16565b61296490919063ffffffff16565b9050600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daa5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612de357612dde8585612dd984612dcb87896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b6139d0565b6130aa565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e865750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ebf57612eba8585612eb584612ea787896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613c30565b6130a9565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f635750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f9c57612f978585612f9284612f8487896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613e90565b6130a8565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303e5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307757613072858561306d8461305f87896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b61405b565b6130a7565b6130a685856130a18461309387896129ec90919063ffffffff16565b6129ec90919063ffffffff16565b613e90565b5b5b5b5b6000600d819055506000600f819055506130c685600084613e90565b6130f385601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613e90565b600e54600d81905550601054600f81905550600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131a65750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806131fe5750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561320c5761320b614350565b5b5050505050565b600080600060085490506000600754905060005b6006805490508110156134895782600160006006848154811061324d5761324c614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061333b57508160026000600684815481106132d3576132d2614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561335257600854600754945094505050506134c2565b6133e2600160006006848154811061336d5761336c614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846129ec90919063ffffffff16565b925061347460026000600684815481106133ff576133fe614bd7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836129ec90919063ffffffff16565b9150808061348190614c98565b915050613227565b506134a160075460085461296490919063ffffffff16565b8210156134b9576008546007549350935050506134c2565b81819350935050505b9091565b6000806000806134d585614376565b905060006134e2866143a7565b9050600061350b826134fd858a6129ec90919063ffffffff16565b6129ec90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061353985896139ba90919063ffffffff16565b9050600061355086896139ba90919063ffffffff16565b9050600061356787896139ba90919063ffffffff16565b905060006135908261358285876129ec90919063ffffffff16565b6129ec90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156135c6576135c5615a1c565b5b6040519080825280602002602001820160405280156135f45781602001602082028036833780820191505090505b509050308160008151811061360c5761360b614bd7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156136ae57600080fd5b505afa1580156136c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e69190615a60565b816001815181106136fa576136f9614bd7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061376130601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123ac565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137c5959493929190615b86565b600060405180830381600087803b1580156137df57600080fd5b505af11580156137f3573d6000803e3d6000fd5b505050505050565b61382830601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123ac565b601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613874611c3f565b426040518863ffffffff1660e01b815260040161389696959493929190615be0565b6060604051808303818588803b1580156138af57600080fd5b505af11580156138c3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138e89190615c56565b5050505050565b6000600d5414801561390357506000600f54145b801561391157506000601354145b801561391f57506000601154145b156139295761396e565b600d54600e81905550600f546010819055506011546012819055506013546015819055506000600d819055506000600f81905550600060138190555060006011819055505b565b600d54600e81905550600f54601081905550601154601281905550601354601581905550601654600d81905550601754600f81905550601854601381905550601954601181905550565b600081836139c891906157b1565b905092915050565b6000806000806000806139e287612990565b955095509550955095509550613a4087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ad586600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bb6816143d8565b613bc0848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613c1d91906147bd565b60405180910390a3505050505050505050565b600080600080600080613c4287612990565b955095509550955095509550613ca086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d3583600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613dca85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e16816143d8565b613e20848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613e7d91906147bd565b60405180910390a3505050505050505050565b600080600080600080613ea287612990565b955095509550955095509550613f0086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f9585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe1816143d8565b613feb848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161404891906147bd565b60405180910390a3505050505050505050565b60008060008060008061406d87612990565b9550955095509550955095506140cb87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061416086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ec90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141f583600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061428a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142d6816143d8565b6142e0848361457d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161433d91906147bd565b60405180910390a3505050505050505050565b600e54600d81905550601054600f81905550601254601181905550601554601381905550565b60006143a06064614392600d54856139ba90919063ffffffff16565b61296490919063ffffffff16565b9050919050565b60006143d160646143c3600f54856139ba90919063ffffffff16565b61296490919063ffffffff16565b9050919050565b60006143e2612939565b905060006143f982846139ba90919063ffffffff16565b905061444d81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156145785761453483600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461297a90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614592826008546129ec90919063ffffffff16565b6008819055506145ad8160095461297a90919063ffffffff16565b6009819055505050565b600080fd5b6000819050919050565b6145cf816145bc565b81146145da57600080fd5b50565b6000813590506145ec816145c6565b92915050565b600060208284031215614608576146076145b7565b5b6000614616848285016145dd565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561465957808201518184015260208101905061463e565b83811115614668576000848401525b50505050565b6000601f19601f8301169050919050565b600061468a8261461f565b614694818561462a565b93506146a481856020860161463b565b6146ad8161466e565b840191505092915050565b600060208201905081810360008301526146d2818461467f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614705826146da565b9050919050565b614715816146fa565b811461472057600080fd5b50565b6000813590506147328161470c565b92915050565b6000806040838503121561474f5761474e6145b7565b5b600061475d85828601614723565b925050602061476e858286016145dd565b9150509250929050565b60008115159050919050565b61478d81614778565b82525050565b60006020820190506147a86000830184614784565b92915050565b6147b7816145bc565b82525050565b60006020820190506147d260008301846147ae565b92915050565b6000819050919050565b60006147fd6147f86147f3846146da565b6147d8565b6146da565b9050919050565b600061480f826147e2565b9050919050565b600061482182614804565b9050919050565b61483181614816565b82525050565b600060208201905061484c6000830184614828565b92915050565b60008060006060848603121561486b5761486a6145b7565b5b600061487986828701614723565b935050602061488a86828701614723565b925050604061489b868287016145dd565b9150509250925092565b600060ff82169050919050565b6148bb816148a5565b82525050565b60006020820190506148d660008301846148b2565b92915050565b6000602082840312156148f2576148f16145b7565b5b600061490084828501614723565b91505092915050565b61491281614778565b811461491d57600080fd5b50565b60008135905061492f81614909565b92915050565b6000806040838503121561494c5761494b6145b7565b5b600061495a858286016145dd565b925050602061496b85828601614920565b9150509250929050565b61497e816146fa565b82525050565b60006020820190506149996000830184614975565b92915050565b6000602082840312156149b5576149b46145b7565b5b60006149c384828501614920565b91505092915050565b600080604083850312156149e3576149e26145b7565b5b60006149f185828601614723565b9250506020614a0285828601614723565b9150509250929050565b7f546178206665652063616e6e6f74206265206d6f7265207468616e2031302500600082015250565b6000614a42601f8361462a565b9150614a4d82614a0c565b602082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614abf57607f821691505b60208210811415614ad357614ad2614a78565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614b35602a8361462a565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614ba1601b8361462a565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c40826145bc565b9150614c4b836145bc565b925082821015614c5e57614c5d614c06565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614ca3826145bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cd657614cd5614c06565b5b600182019050919050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614d3d602c8361462a565b9150614d4882614ce1565b604082019050919050565b60006020820190508181036000830152614d6c81614d30565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614da9601f8361462a565b9150614db482614d73565b602082019050919050565b60006020820190508181036000830152614dd881614d9c565b9050919050565b7f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b6000614e3b60258361462a565b9150614e4682614ddf565b604082019050919050565b60006020820190508181036000830152614e6a81614e2e565b9050919050565b7f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ecd60228361462a565b9150614ed882614e71565b604082019050919050565b60006020820190508181036000830152614efc81614ec0565b9050919050565b7f57652063616e206e6f74206578636c75646520556e697377617020726f75746560008201527f722e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f5f60228361462a565b9150614f6a82614f03565b604082019050919050565b60006020820190508181036000830152614f8e81614f52565b9050919050565b7f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260008201527f65207468616e2031302500000000000000000000000000000000000000000000602082015250565b6000614ff1602a8361462a565b9150614ffc82614f95565b604082019050919050565b6000602082019050818103600083015261502081614fe4565b9050919050565b7f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b600061508360258361462a565b915061508e82615027565b604082019050919050565b600060208201905081810360008301526150b281615076565b9050919050565b7f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60008201527f657373207468616e20302e312500000000000000000000000000000000000000602082015250565b6000615115602d8361462a565b9150615120826150b9565b604082019050919050565b6000602082019050818103600083015261514481615108565b9050919050565b7f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60008201527f6f7265207468616e203325000000000000000000000000000000000000000000602082015250565b60006151a7602b8361462a565b91506151b28261514b565b604082019050919050565b600060208201905081810360008301526151d68161519a565b9050919050565b7f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260008201527f65207468616e2031302500000000000000000000000000000000000000000000602082015250565b6000615239602a8361462a565b9150615244826151dd565b604082019050919050565b600060208201905081810360008301526152688161522c565b9050919050565b7f4275726e206665652063616e6e6f74206265206d6f7265207468616e20313025600082015250565b60006152a560208361462a565b91506152b08261526f565b602082019050919050565b600060208201905081810360008301526152d481615298565b9050919050565b7f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60008201527f2031302500000000000000000000000000000000000000000000000000000000602082015250565b600061533760248361462a565b9150615342826152db565b604082019050919050565b600060208201905081810360008301526153668161532a565b9050919050565b7f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160008201527f6e20313025000000000000000000000000000000000000000000000000000000602082015250565b60006153c960258361462a565b91506153d48261536d565b604082019050919050565b600060208201905081810360008301526153f8816153bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061545b60268361462a565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006154c760208361462a565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061555960248361462a565b9150615564826154fd565b604082019050919050565b600060208201905081810360008301526155888161554c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155eb60228361462a565b91506155f68261558f565b604082019050919050565b6000602082019050818103600083015261561a816155de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061567d60258361462a565b915061568882615621565b604082019050919050565b600060208201905081810360008301526156ac81615670565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061570f60298361462a565b915061571a826156b3565b604082019050919050565b6000602082019050818103600083015261573e81615702565b9050919050565b7f4f6e6c7920616c6c6f7765642062757920616d6f756e74730000000000000000600082015250565b600061577b60188361462a565b915061578682615745565b602082019050919050565b600060208201905081810360008301526157aa8161576e565b9050919050565b60006157bc826145bc565b91506157c7836145bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615800576157ff614c06565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615845826145bc565b9150615850836145bc565b9250826158605761585f61580b565b5b828204905092915050565b7f5472616e73616374656420616d6f756e742065786365656420746865206d617860008201527f20616c6c6f7765642076616c7565000000000000000000000000000000000000602082015250565b60006158c7602e8361462a565b91506158d28261586b565b604082019050919050565b600060208201905081810360008301526158f6816158ba565b9050919050565b7f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b600061595960248361462a565b9150615964826158fd565b604082019050919050565b600060208201905081810360008301526159888161594c565b9050919050565b600061599a826145bc565b91506159a5836145bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159da576159d9614c06565b5b828201905092915050565b60006060820190506159fa60008301866147ae565b615a0760208301856147ae565b615a1460408301846147ae565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050615a5a8161470c565b92915050565b600060208284031215615a7657615a756145b7565b5b6000615a8484828501615a4b565b91505092915050565b6000819050919050565b6000615ab2615aad615aa884615a8d565b6147d8565b6145bc565b9050919050565b615ac281615a97565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615afd816146fa565b82525050565b6000615b0f8383615af4565b60208301905092915050565b6000602082019050919050565b6000615b3382615ac8565b615b3d8185615ad3565b9350615b4883615ae4565b8060005b83811015615b79578151615b608882615b03565b9750615b6b83615b1b565b925050600181019050615b4c565b5085935050505092915050565b600060a082019050615b9b60008301886147ae565b615ba86020830187615ab9565b8181036040830152615bba8186615b28565b9050615bc96060830185614975565b615bd660808301846147ae565b9695505050505050565b600060c082019050615bf56000830189614975565b615c0260208301886147ae565b615c0f6040830187615ab9565b615c1c6060830186615ab9565b615c296080830185614975565b615c3660a08301846147ae565b979650505050505050565b600081519050615c50816145c6565b92915050565b600080600060608486031215615c6f57615c6e6145b7565b5b6000615c7d86828701615c41565b9350506020615c8e86828701615c41565b9250506040615c9f86828701615c41565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011b77330776358ae8b42dc328f26e1644abfa7c468a2ccb9044ab2d53849f6b764736f6c63430008090033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000003465180d1c8d5509f5a2569aeff0133dddea52f00000000000000000000000069304855697e2805f2e5a93f3e64dfaa83117d6b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000001bc16d674ec800000000000

-----Decoded View---------------
Arg [0] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketingWallet (address): 0x03465180d1c8d5509f5a2569AEff0133dDDEa52F
Arg [2] : _antiManager (address): 0x69304855697E2805f2e5A93f3E64Dfaa83117D6B
Arg [3] : _allowedBuyAmount (uint256[]): 65536000000000000000000,131072000000000000000000,262144000000000000000000,524288000000000000000000,1048576000000000000000000,2097152000000000000000000,4194304000000000000000000,8388608000000000000000000,16777216000000000000000000,33554432000000000000000000,67108864000000000000000000,134217728000000000000000000,268435456000000000000000000,536870912000000000000000000

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000003465180d1c8d5509f5a2569aeff0133dddea52f
Arg [2] : 00000000000000000000000069304855697e2805f2e5a93f3e64dfaa83117d6b
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 000000000000000000000000000000000000000000000de0b6b3a76400000000
Arg [6] : 000000000000000000000000000000000000000000001bc16d674ec800000000
Arg [7] : 000000000000000000000000000000000000000000003782dace9d9000000000
Arg [8] : 000000000000000000000000000000000000000000006f05b59d3b2000000000
Arg [9] : 00000000000000000000000000000000000000000000de0b6b3a764000000000
Arg [10] : 00000000000000000000000000000000000000000001bc16d674ec8000000000
Arg [11] : 00000000000000000000000000000000000000000003782dace9d90000000000
Arg [12] : 00000000000000000000000000000000000000000006f05b59d3b20000000000
Arg [13] : 0000000000000000000000000000000000000000000de0b6b3a7640000000000
Arg [14] : 0000000000000000000000000000000000000000001bc16d674ec80000000000
Arg [15] : 0000000000000000000000000000000000000000003782dace9d900000000000
Arg [16] : 0000000000000000000000000000000000000000006f05b59d3b200000000000
Arg [17] : 000000000000000000000000000000000000000000de0b6b3a76400000000000
Arg [18] : 000000000000000000000000000000000000000001bc16d674ec800000000000


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.