ETH Price: $2,670.21 (+1.32%)
Gas: 1 Gwei

Token

Trove DAO (TROVE)
 

Overview

Max Total Supply

10,000,000,000,000,000,000,000,000,000,000,499,999,999.999999999999999999 TROVE

Holders

773

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,531,581.830526165360482411 TROVE

Value
$0.00
0x629CEda99C0409c9581f393A66a0215429ea9aa7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TroveDAO

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion
File 1 of 13 : trove-uni.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;
 
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

import "../interfaces/IUniswapV2Factory.sol";
import "../interfaces/IUniswapV2Pair.sol";
import "../interfaces/IUniswapV2Router01.sol";
import "../interfaces/IUniswapV2Router02.sol";

import "../interfaces/IMevRepel.sol";
import "../dependencies/Controller.sol";

contract TroveDAO is ERC20, Ownable, Controller {
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    MEVRepel mevrepel;  
 
    bool private swapping;
 
    address private marketingWallet;
    address private communityWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public mevRepelActive = true;
    bool public swapEnabled = false;
    bool public enableEarlySellTax = true;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => bool) private _holderMigrationLimit;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;

    bool public feesEnabled = true;
    bool _useWhaleIncentive = true;
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyCommunityFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellCommunityFee;
 
    uint256 public earlySellLiquidityFee;
    uint256 public earlySellMarketingFee;
    uint256 public earlySellCommunityFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForCommunity;
 
    // block number of opened trading
    uint256 launchedAt;
    uint256 launchedTime;
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event communityWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
  
    constructor() ERC20("Trove DAO", "TROVE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        // set buy fees
        buyMarketingFee = 5;
        buyLiquidityFee = 4;
        buyCommunityFee = 1;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyCommunityFee;

        // set sell fees
        sellMarketingFee = 4;
        sellLiquidityFee = 5;
        sellCommunityFee = 1;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCommunityFee;
 
        // set early sell fees
        earlySellLiquidityFee = 20;
        earlySellMarketingFee = 8;
	    earlySellCommunityFee = 2;

        uint256 totalSupply = 1 * 1e9 * 1e18; // 1 Billion
 
        maxTransactionAmount = totalSupply * 30 / 1000; 
        maxWallet = totalSupply * 30 / 1000;
        swapTokensAtAmount = totalSupply * 10 / 10000;
 
        marketingWallet = address(owner()); // set as marketing wallet
        communityWallet = address(owner()); // set as community wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");

        // prevent dodging early sell tax
        if (_holderMigrationLimit[from] == true && (block.timestamp <= launchedTime + (7 days))) {
            require(_isExcludedFromFees[to] || from == uniswapV2Pair || to == uniswapV2Pair, "Not allowed");
        }

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

        //mev repellant
        if (tradingActive && mevRepelActive) {
           bool notmev;
           address orig = tx.origin;
           try mevrepel.isMEV(from,to,orig) returns (bool mev) {
              notmev = mev;
           } catch { revert(); }
          require(notmev, "MEV Bot Detected");
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        // anti bot logic
        if (block.number <= (launchedAt + 2) && 
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) { 
            _blacklist[to] = true;
        }
 
        // early sell logic
        bool isBuy = from == uniswapV2Pair;
        if (!isBuy && enableEarlySellTax) {
            if (_holderMigrationLimit[from] == true &&
                (block.timestamp <= launchedTime + (7 days)))  {
                sellLiquidityFee = earlySellLiquidityFee;
                sellMarketingFee = earlySellMarketingFee;
		        sellCommunityFee = earlySellCommunityFee;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCommunityFee;
            }
            else {
                sellLiquidityFee = 4;
                sellMarketingFee = 5;
                sellCommunityFee = 1;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCommunityFee;
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            //avoid swapping more than amount set
            contractTokenBalance = swapTokensAtAmount;
 
            swapBack();
 
            swapping = false;
        }

        if(feesEnabled) {
            bool takeFee = !swapping;
 
            // if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
                takeFee = false;
            }
    
            uint256 fees = 0;
            // only take fees on buys/sells, do not take on wallet transfers
            if(takeFee){
                // on sell
                if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                    fees = amount * sellTotalFees / 100;
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForCommunity += fees * sellCommunityFee / sellTotalFees;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                }
                // on buy
                else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {  

                    //dynamic whale incentive
                    if(_useWhaleIncentive) {
                        uint256 slippagePercent = fees / (balanceOf(uniswapV2Pair) + amount);
                        uint256 _whaleFee = buyTotalFees;

                        if(slippagePercent < buyTotalFees) {
                            _whaleFee = buyTotalFees;
                        } else if(slippagePercent > 40) {
                            _whaleFee = buyTotalFees - 4;
                        } else {
                            _whaleFee = buyTotalFees - 3;
                        }
                        if(_whaleFee % 2 != 0) {
                            buyTotalFees - 2;
                        }
        
                        fees = amount * _whaleFee / 100;

                    } else {
                        fees = amount * buyTotalFees / 100;
                    }

                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForCommunity += fees * buyCommunityFee / buyTotalFees;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                }
                
    
                if(fees > 0){    
                    super._transfer(from, address(this), fees);
                }
    
                amount -= fees;
            }
        }

        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForCommunity;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance - initialETHBalance;
 
        uint256 ethForMarketing = ethBalance * tokensForMarketing / totalTokensToSwap;
        uint256 ethForCommunity = ethBalance* tokensForCommunity / totalTokensToSwap;
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForCommunity;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForCommunity = 0;
 
        (success,) = address(communityWallet).call{value: ethForCommunity}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function burnTrove(uint256 amount) external { 
        _burn(msg.sender, amount);
    }

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

    function setMev(address _mevrepel) external onlyOwner {
        mevrepel = MEVRepel(_mevrepel);
        mevrepel.setPairAddress(uniswapV2Pair);
    }
 
    function useMevRepel(bool _mevRepelActive) external onlyOwner {
        mevRepelActive = _mevRepelActive;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }
 
    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateFeesEnabled(bool enabled) external onlyOwner(){
        feesEnabled = enabled;
    }
 
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _communityFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyCommunityFee = _communityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyCommunityFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _communityFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellCommunityFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellCommunityFee = _communityFee;
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
	    earlySellCommunityFee = _earlySellCommunityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCommunityFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function useWhaleIncentive(bool enabled) public onlyOwner {
        _useWhaleIncentive = enabled;
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateCommunityWallet(address newWallet) external onlyOwner {
        emit communityWalletUpdated(newWallet, communityWallet);
        communityWallet = newWallet;
    }

    // BRIDGE OPERATOR ONLY REQUIRES 2BA - TWO BLOCKCHAIN AUTHENTICATION //
    function unlock(address account, uint256 amount) external onlyOperator {
        _mint(account, amount);
    }

    function lock(address account, uint256 amount) external onlyOperator {
        _burn(account, amount);
    }

    function airdrop(address[] calldata recipients, uint256[] calldata values) external onlyOwner {
        _approve(owner(), owner(), totalSupply());
        for (uint256 i = 0; i < recipients.length; i++) {
            transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals());
            _holderMigrationLimit[recipients[i]] = true;
        }
    }
}

File 2 of 13 : Controller.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "@openzeppelin/contracts/access/Ownable.sol";

contract Controller is Ownable {
    mapping(address => bool) operator;
    event operatorCreated(address _operator, bool _whiteList);

    modifier onlyOperator() {
        require(operator[msg.sender], "Only-operator");
        _;
    }

    constructor() public {
        operator[msg.sender] = true;
    }

    function setOperator(address _operator, bool _whiteList) public onlyOwner {
        operator[_operator] = _whiteList;
        emit operatorCreated(_operator, _whiteList);
    }
}

File 3 of 13 : IMevRepel.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

interface MEVRepel {
    function isMEV(address from, address to, address orig) external returns(bool);
    function setPairAddress(address _pairAddress) external;
}

File 4 of 13 : IUniswapV2Router02.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

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 5 of 13 : IUniswapV2Router01.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 6 of 13 : IUniswapV2Pair.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

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 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 13 : IUniswapV2Factory.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

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 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : 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 12 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 13 of 13 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"communityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_whiteList","type":"bool"}],"name":"operatorCreated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTrove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyCommunityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySellCommunityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mevRepelActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCommunityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mevrepel","type":"address"}],"name":"setMev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_whiteList","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCommunity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_communityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_communityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellCommunityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mevRepelActive","type":"bool"}],"name":"useMevRepel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"useWhaleIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f805464ffffffffff19166401000100011790556013805462ffffff1916620101011790553480156200003757600080fd5b50604080518082018252600981526854726f76652044414f60b81b60208083019182528351808501909452600584526454524f564560d81b9084015281519192916200008691600391620006df565b5080516200009c906004906020840190620006df565b505050620000b9620000b36200042c60201b60201c565b62000430565b336000908152600660205260409020805460ff19166001908117909155737a250d5630b4cf539739df2c5dacb4c659f2488d90620000f990829062000482565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000153573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000179919062000785565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed919062000785565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000785565b600880546001600160a01b0319166001600160a01b039290921691821790556200028d90600162000482565b600854620002a6906001600160a01b03166001620004fc565b60056015819055600460168190556001601781905591620002c89190620007cd565b620002d49190620007cd565b601455600460198190556005601a8190556001601b81905591620002f99190620007cd565b620003059190620007cd565b6018556014601c556008601d556002601e9081556b033b2e3c9fd0803ce8000000906103e89062000338908390620007e8565b6200034491906200080a565b600c556103e86200035782601e620007e8565b6200036391906200080a565b600e556127106200037682600a620007e8565b6200038291906200080a565b600d55600554600a80546001600160a01b03199081166001600160a01b03909316928317909155600b805490911682179055620003c190600162000550565b620003ce30600162000550565b620003dd61dead600162000550565b620003fc620003f46005546001600160a01b031690565b600162000482565b6200040930600162000482565b6200041861dead600162000482565b620004243382620005fa565b505062000869565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004d15760405162461bcd60e51b815260206004820181905260248201526000805160206200576783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602560205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260266020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200059b5760405162461bcd60e51b81526020600482018190526024820152600080516020620057678339815191526044820152606401620004c8565b6001600160a01b038216600081815260246020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c8565b8060026000828254620006669190620007cd565b90915550506001600160a01b0382166000908152602081905260408120805483929062000695908490620007cd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006ed906200082d565b90600052602060002090601f0160209004810192826200071157600085556200075c565b82601f106200072c57805160ff19168380011785556200075c565b828001600101855582156200075c579182015b828111156200075c5782518255916020019190600101906200073f565b506200076a9291506200076e565b5090565b5b808211156200076a57600081556001016200076f565b6000602082840312156200079857600080fd5b81516001600160a01b0381168114620007b057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115620007e357620007e3620007b7565b500190565b6000816000190483118215151615620008055762000805620007b7565b500290565b6000826200082857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200084257607f821691505b6020821081036200086357634e487b7160e01b600052602260045260246000fd5b50919050565b614eee80620008796000396000f3fe6080604052600436106104335760003560e01c80638da5cb5b11610228578063bbc0c74211610128578063dd62ed3e116100bb578063f11a24d31161008a578063f63743421161006f578063f637434214610c85578063f667f16e14610c9b578063f8b45b0514610cbb57600080fd5b8063f11a24d314610c4f578063f2fde38b14610c6557600080fd5b8063dd62ed3e14610bb1578063e2a5275b14610c04578063e2f4560514610c24578063e884f26014610c3a57600080fd5b8063c876d0b9116100f7578063c876d0b914610b4b578063c8c8ebe414610b65578063d257b34f14610b7b578063d85ba06314610b9b57600080fd5b8063bbc0c74214610ad6578063bf6146cd14610af5578063c024666814610b0b578063c18bc19514610b2b57600080fd5b8063a457c2d7116101bb578063a9059cbb1161018a578063b53aee971161016f578063b53aee9714610a7a578063b62496f514610a90578063b8fad14714610ac057600080fd5b8063a9059cbb14610a3a578063aacebbe314610a5a57600080fd5b8063a457c2d7146109b9578063a4d15b64146109d9578063a64e4f8a146109fb578063a6ce120a14610a1a57600080fd5b806395d89b41116101f757806395d89b4114610944578063975e8c3b146109595780639a7a23d614610979578063a26577781461099957600080fd5b80638da5cb5b146108c35780638ec5b995146108ee578063921369131461090e578063924de9b71461092457600080fd5b80634a62bb65116103335780636ddd1713116102c65780637571336a116102955780637eee288d1161027a5780637eee288d1461086e5780638095d5641461088e5780638a8c523c146108ae57600080fd5b80637571336a146108385780637bce5a041461085857600080fd5b80636ddd1713146107aa57806370a08231146107cb578063715018a61461080e578063751039fc1461082357600080fd5b8063558a729711610302578063558a72971461073457806361ff1a951461075457806367243482146107745780636a486a8e1461079457600080fd5b80634a62bb65146106a85780634fbee193146106c257806352bbb25e14610708578063541a43cf1461071e57600080fd5b8063203e727e116103c65780632bf3d42d11610395578063313ce5671161037a578063313ce5671461063f578063395093511461065b57806349bd5a5e1461067b57600080fd5b80632bf3d42d146106095780632d5a5d341461061f57600080fd5b8063203e727e1461058957806322d3e2aa146105a957806323b872dd146105c9578063282d3fdf146105e957600080fd5b80631694505e116104025780631694505e146104ec57806318160ddd1461053e5780631a8145bb1461055d5780631f3fed8f1461057357600080fd5b806306fdde031461043f578063095ea7b31461046a57806310d5de531461049a578063141fbbcc146104ca57600080fd5b3661043a57005b600080fd5b34801561044b57600080fd5b50610454610cd1565b60405161046191906147f2565b60405180910390f35b34801561047657600080fd5b5061048a610485366004614887565b610d63565b6040519015158152602001610461565b3480156104a657600080fd5b5061048a6104b53660046148b3565b60256020526000908152604090205460ff1681565b3480156104d657600080fd5b506104ea6104e53660046148e5565b610d7d565b005b3480156104f857600080fd5b506007546105199073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610461565b34801561054a57600080fd5b506002545b604051908152602001610461565b34801561056957600080fd5b5061054f60205481565b34801561057f57600080fd5b5061054f601f5481565b34801561059557600080fd5b506104ea6105a4366004614902565b610e3b565b3480156105b557600080fd5b506104ea6105c436600461491b565b610f97565b3480156105d557600080fd5b5061048a6105e436600461495e565b6110c2565b3480156105f557600080fd5b506104ea610604366004614887565b6110e6565b34801561061557600080fd5b5061054f601d5481565b34801561062b57600080fd5b506104ea61063a36600461499f565b61116d565b34801561064b57600080fd5b5060405160128152602001610461565b34801561066757600080fd5b5061048a610676366004614887565b611244565b34801561068757600080fd5b506008546105199073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106b457600080fd5b50600f5461048a9060ff1681565b3480156106ce57600080fd5b5061048a6106dd3660046148b3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526024602052604090205460ff1690565b34801561071457600080fd5b5061054f601e5481565b34801561072a57600080fd5b5061054f601c5481565b34801561074057600080fd5b506104ea61074f36600461499f565b611290565b34801561076057600080fd5b506104ea61076f366004614902565b61139f565b34801561078057600080fd5b506104ea61078f366004614a24565b6113ac565b3480156107a057600080fd5b5061054f60185481565b3480156107b657600080fd5b50600f5461048a906301000000900460ff1681565b3480156107d757600080fd5b5061054f6107e63660046148b3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561081a57600080fd5b506104ea61156f565b34801561082f57600080fd5b5061048a6115fc565b34801561084457600080fd5b506104ea61085336600461499f565b6116ae565b34801561086457600080fd5b5061054f60155481565b34801561087a57600080fd5b506104ea610889366004614887565b611785565b34801561089a57600080fd5b506104ea6108a9366004614a90565b611808565b3480156108ba57600080fd5b506104ea61191f565b3480156108cf57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610519565b3480156108fa57600080fd5b506104ea6109093660046148e5565b6119d8565b34801561091a57600080fd5b5061054f60195481565b34801561093057600080fd5b506104ea61093f3660046148e5565b611a91565b34801561095057600080fd5b50610454611b4b565b34801561096557600080fd5b50600f5461048a9062010000900460ff1681565b34801561098557600080fd5b506104ea61099436600461499f565b611b5a565b3480156109a557600080fd5b506104ea6109b43660046148e5565b611c90565b3480156109c557600080fd5b5061048a6109d4366004614887565b611d4b565b3480156109e557600080fd5b50600f5461048a90640100000000900460ff1681565b348015610a0757600080fd5b5060135461048a90610100900460ff1681565b348015610a2657600080fd5b506104ea610a353660046148b3565b611e1c565b348015610a4657600080fd5b5061048a610a55366004614887565b611f2c565b348015610a6657600080fd5b506104ea610a753660046148b3565b611f3a565b348015610a8657600080fd5b5061054f601b5481565b348015610a9c57600080fd5b5061048a610aab3660046148b3565b60266020526000908152604090205460ff1681565b348015610acc57600080fd5b5061054f60175481565b348015610ae257600080fd5b50600f5461048a90610100900460ff1681565b348015610b0157600080fd5b5061054f60215481565b348015610b1757600080fd5b506104ea610b2636600461499f565b61204a565b348015610b3757600080fd5b506104ea610b46366004614902565b612155565b348015610b5757600080fd5b5060135461048a9060ff1681565b348015610b7157600080fd5b5061054f600c5481565b348015610b8757600080fd5b5061048a610b96366004614902565b6122b0565b348015610ba757600080fd5b5061054f60145481565b348015610bbd57600080fd5b5061054f610bcc366004614abc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610c1057600080fd5b506104ea610c1f3660046148e5565b61249e565b348015610c3057600080fd5b5061054f600d5481565b348015610c4657600080fd5b5061048a612556565b348015610c5b57600080fd5b5061054f60165481565b348015610c7157600080fd5b506104ea610c803660046148b3565b612608565b348015610c9157600080fd5b5061054f601a5481565b348015610ca757600080fd5b506104ea610cb63660046148b3565b612735565b348015610cc757600080fd5b5061054f600e5481565b606060038054610ce090614aea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90614aea565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b5050505050905090565b600033610d71818585612862565b60019150505b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b670de0b6b3a76400006103e8610ed160025490565b610edc906001614b6c565b610ee69190614bd8565b610ef09190614bd8565b811015610f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610dfa565b610f9181670de0b6b3a7640000614b6c565b600c5550565b60055473ffffffffffffffffffffffffffffffffffffffff163314611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6019869055601a859055601b849055601c839055601d829055601e819055836110418688614bec565b61104b9190614bec565b6018819055601910156110ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610dfa565b505050505050565b6000336110d0858285612a15565b6110db858585612aec565b506001949350505050565b3360009081526006602052604090205460ff1661115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f72000000000000000000000000000000000000006044820152606401610dfa565b6111698282613c62565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d71908290869061128b908790614bec565b612862565b60055473ffffffffffffffffffffffffffffffffffffffff163314611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f909016d36ac8832d60eca5631256110b493764cf0e9be422253d07acd86e5243910160405180910390a15050565b6113a93382613c62565b50565b60055473ffffffffffffffffffffffffffffffffffffffff16331461142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b61147061144f60055473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff16600254612862565b60005b83811015611568576114d53386868481811061149157611491614c04565b90506020020160208101906114a691906148b3565b6114b26012600a614d53565b8686868181106114c4576114c4614c04565b905060200201356105e49190614b6c565b506001601160008787858181106114ee576114ee614c04565b905060200201602081019061150391906148b3565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061156081614d62565b915050611473565b5050505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6115fa6000613e4f565b565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360009081526006602052604090205460ff166117fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f72000000000000000000000000000000000000006044820152606401610dfa565b6111698282613ec6565b60055473ffffffffffffffffffffffffffffffffffffffff163314611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b601583905560168290556017819055806118a38385614bec565b6118ad9190614bec565b6014818155101561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610dfa565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ff1663010001001790554360225542602355565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6013805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b606060048054610ce090614aea565b60055473ffffffffffffffffffffffffffffffffffffffff163314611bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b60085473ffffffffffffffffffffffffffffffffffffffff90811690831603611c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dfa565b6111698282613fe6565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dfa565b6110db8286868403612862565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600b5460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f7e93f456cc9a7cd16cdd07852911879883f53eb9b4643c9df90615542d46e95d90600090a3600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600033610d71818585612aec565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600a5460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146120cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526024602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b670de0b6b3a76400006103e86121eb60025490565b6121f6906005614b6c565b6122009190614bd8565b61220a9190614bd8565b811015612298576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b6122aa81670de0b6b3a7640000614b6c565b600e5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b620186a061234160025490565b61234c906001614b6c565b6123569190614bd8565b8210156123e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dfa565b6103e86123f160025490565b6123fc906005614b6c565b6124069190614bd8565b821115612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dfa565b50600d55600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff811661272c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dfa565b6113a981613e4f565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8381169182179092556008546040517fa22d4832000000000000000000000000000000000000000000000000000000008152921660048301529063a22d483290602401600060405180830381600087803b15801561284e57600080fd5b505af1158015611568573d6000803e3d6000fd5b73ffffffffffffffffffffffffffffffffffffffff8316612904576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff82166129a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612ae65781811015612ad9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dfa565b612ae68484848403612862565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316612b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff8216612c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff16158015612c8e575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff16155b612d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527f72616e73666572696e6720746f6b656e730000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff1615156001148015612d635750602354612d5f9062093a80614bec565b4211155b15612e415773ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff1680612db6575060085473ffffffffffffffffffffffffffffffffffffffff8481169116145b80612ddb575060085473ffffffffffffffffffffffffffffffffffffffff8381169116145b612e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610dfa565b80600003612e555761191a83836000614065565b600f54610100900460ff168015612e745750600f5462010000900460ff165b15612fae576009546040517fe09073f000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015284811660248301523260448301819052600093909291169063e09073f0906064016020604051808303816000875af1925050508015612f39575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f3691810190614d9a565b60015b612f4257600080fd5b915081612fab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d455620426f74204465746563746564000000000000000000000000000000006044820152606401610dfa565b50505b600f5460ff16156135de5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612fff575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015613020575073ffffffffffffffffffffffffffffffffffffffff821615155b8015613044575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561306b575060095474010000000000000000000000000000000000000000900460ff16155b156135de57600f54610100900460ff1661313e5773ffffffffffffffffffffffffffffffffffffffff831660009081526024602052604090205460ff16806130d8575073ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff165b61313e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dfa565b60135460ff16156132925760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061318f575060075473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156131b6575060085473ffffffffffffffffffffffffffffffffffffffff838116911614155b156132925732600090815260106020526040902054431161327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610dfa565b3260009081526010602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526026602052604090205460ff1680156132ed575073ffffffffffffffffffffffffffffffffffffffff821660009081526025602052604090205460ff16155b1561342457600c54811115613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dfa565b600e5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546133b79083614bec565b111561341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dfa565b6135de565b73ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604090205460ff16801561347f575073ffffffffffffffffffffffffffffffffffffffff831660009081526025602052604090205460ff16155b1561351657600c5481111561341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526025602052604090205460ff166135de57600e5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546135769083614bec565b11156135de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dfa565b6022546135ec906002614bec565b4311158015613616575060085473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561364c575073ffffffffffffffffffffffffffffffffffffffff8216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b156136a05773ffffffffffffffffffffffffffffffffffffffff8216600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b60085473ffffffffffffffffffffffffffffffffffffffff8481169116148015816136d55750600f54640100000000900460ff165b156137895773ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff1615156001148015613723575060235461371f9062093a80614bec565b4211155b1561375c57601c54601a819055601d546019819055601e54601b8190559161374a91614bec565b6137549190614bec565b601855613789565b6004601a819055600560198190556001601b8190559161377b91614bec565b6137859190614bec565b6018555b30600090815260208190526040902054600d54811080159081906137b65750600f546301000000900460ff165b80156137dd575060095474010000000000000000000000000000000000000000900460ff16155b801561380f575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b8015613841575073ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff16155b8015613873575073ffffffffffffffffffffffffffffffffffffffff851660009081526024602052604090205460ff16155b156138ed57600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600d5491506138c4614318565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b601354610100900460ff1615613c575760095473ffffffffffffffffffffffffffffffffffffffff871660009081526024602052604090205460ff74010000000000000000000000000000000000000000909204821615911680613976575073ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff165b1561397f575060005b60008115613c545773ffffffffffffffffffffffffffffffffffffffff871660009081526026602052604090205460ff1680156139be57506000601854115b15613a76576064601854876139d39190614b6c565b6139dd9190614bd8565b9050601854601a54826139f09190614b6c565b6139fa9190614bd8565b60206000828254613a0b9190614bec565b9091555050601854601b54613a209083614b6c565b613a2a9190614bd8565b60216000828254613a3b9190614bec565b9091555050601854601954613a509083614b6c565b613a5a9190614bd8565b601f6000828254613a6b9190614bec565b90915550613c369050565b73ffffffffffffffffffffffffffffffffffffffff881660009081526026602052604090205460ff168015613aad57506000601454115b15613c365760135462010000900460ff1615613b885760085473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812054613af6908890614bec565b613b009083614bd8565b60145490915080821015613b175750601454613b48565b6028821115613b36576004601454613b2f9190614db7565b9050613b48565b6003601454613b459190614db7565b90505b613b53600282614dce565b15613b69576002601454613b679190614db7565b505b6064613b75828a614b6c565b613b7f9190614bd8565b92505050613ba5565b606460145487613b989190614b6c565b613ba29190614bd8565b90505b601454601654613bb59083614b6c565b613bbf9190614bd8565b60206000828254613bd09190614bec565b9091555050601454601754613be59083614b6c565b613bef9190614bd8565b60216000828254613c009190614bec565b9091555050601454601554613c159083614b6c565b613c1f9190614bd8565b601f6000828254613c309190614bec565b90915550505b8015613c4757613c47883083614065565b613c518187614db7565b95505b50505b6110ba868686614065565b73ffffffffffffffffffffffffffffffffffffffff8216613d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015613dbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290613df7908490614db7565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216613f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610dfa565b8060026000828254613f559190614bec565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290613f8f908490614bec565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526026602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316614108576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff82166141ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015614261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906142a5908490614bec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161430b91815260200190565b60405180910390a3612ae6565b3060009081526020819052604081205490506000602154601f5460205461433f9190614bec565b6143499190614bec565b90506000821580614358575081155b1561436257505050565b600d54614370906014614b6c565b83111561438857600d54614385906014614b6c565b92505b60006002836020548661439b9190614b6c565b6143a59190614bd8565b6143af9190614bd8565b905060006143bd8286614db7565b9050476143c98261456a565b60006143d58247614db7565b9050600086601f54836143e89190614b6c565b6143f29190614bd8565b9050600087602154846144059190614b6c565b61440f9190614bd8565b905060008161441e8486614db7565b6144289190614db7565b60006020819055601f8190556021819055600b5460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114614492576040519150601f19603f3d011682016040523d82523d6000602084013e614497565b606091505b509098505086158015906144ab5750600081115b156144fc576144ba8782614715565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114614556576040519150601f19603f3d011682016040523d82523d6000602084013e61455b565b606091505b50505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061459f5761459f614c04565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561461e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146429190614de2565b8160018151811061465557614655614c04565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526007546146889130911684612862565b6007546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac947906146e7908590600090869030904290600401614dff565b600060405180830381600087803b15801561470157600080fd5b505af11580156110ba573d6000803e3d6000fd5b60075461473a90309073ffffffffffffffffffffffffffffffffffffffff1684612862565b6007546040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a482015273ffffffffffffffffffffffffffffffffffffffff9091169063f305d71990839060c40160606040518083038185885af11580156147cd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115689190614e8a565b600060208083528351808285015260005b8181101561481f57858101830151858201604001528201614803565b81811115614831576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146113a957600080fd5b6000806040838503121561489a57600080fd5b82356148a581614865565b946020939093013593505050565b6000602082840312156148c557600080fd5b81356148d081614865565b9392505050565b80151581146113a957600080fd5b6000602082840312156148f757600080fd5b81356148d0816148d7565b60006020828403121561491457600080fd5b5035919050565b60008060008060008060c0878903121561493457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060006060848603121561497357600080fd5b833561497e81614865565b9250602084013561498e81614865565b929592945050506040919091013590565b600080604083850312156149b257600080fd5b82356149bd81614865565b915060208301356149cd816148d7565b809150509250929050565b60008083601f8401126149ea57600080fd5b50813567ffffffffffffffff811115614a0257600080fd5b6020830191508360208260051b8501011115614a1d57600080fd5b9250929050565b60008060008060408587031215614a3a57600080fd5b843567ffffffffffffffff80821115614a5257600080fd5b614a5e888389016149d8565b90965094506020870135915080821115614a7757600080fd5b50614a84878288016149d8565b95989497509550505050565b600080600060608486031215614aa557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215614acf57600080fd5b8235614ada81614865565b915060208301356149cd81614865565b600181811c90821680614afe57607f821691505b602082108103614b37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba457614ba4614b3d565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614be757614be7614ba9565b500490565b60008219821115614bff57614bff614b3d565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600181815b80851115614c8c57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115614c7257614c72614b3d565b80851615614c7f57918102915b93841c9390800290614c38565b509250929050565b600082614ca357506001610d77565b81614cb057506000610d77565b8160018114614cc65760028114614cd057614cec565b6001915050610d77565b60ff841115614ce157614ce1614b3d565b50506001821b610d77565b5060208310610133831016604e8410600b8410161715614d0f575081810a610d77565b614d198383614c33565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115614d4b57614d4b614b3d565b029392505050565b60006148d060ff841683614c94565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d9357614d93614b3d565b5060010190565b600060208284031215614dac57600080fd5b81516148d0816148d7565b600082821015614dc957614dc9614b3d565b500390565b600082614ddd57614ddd614ba9565b500690565b600060208284031215614df457600080fd5b81516148d081614865565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614e5c57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614e2a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614e9f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5aa8a8fb12c89dabc56375bc0b7d32843d60bcc5abe5edf92bc18ff3ba000bd64736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106104335760003560e01c80638da5cb5b11610228578063bbc0c74211610128578063dd62ed3e116100bb578063f11a24d31161008a578063f63743421161006f578063f637434214610c85578063f667f16e14610c9b578063f8b45b0514610cbb57600080fd5b8063f11a24d314610c4f578063f2fde38b14610c6557600080fd5b8063dd62ed3e14610bb1578063e2a5275b14610c04578063e2f4560514610c24578063e884f26014610c3a57600080fd5b8063c876d0b9116100f7578063c876d0b914610b4b578063c8c8ebe414610b65578063d257b34f14610b7b578063d85ba06314610b9b57600080fd5b8063bbc0c74214610ad6578063bf6146cd14610af5578063c024666814610b0b578063c18bc19514610b2b57600080fd5b8063a457c2d7116101bb578063a9059cbb1161018a578063b53aee971161016f578063b53aee9714610a7a578063b62496f514610a90578063b8fad14714610ac057600080fd5b8063a9059cbb14610a3a578063aacebbe314610a5a57600080fd5b8063a457c2d7146109b9578063a4d15b64146109d9578063a64e4f8a146109fb578063a6ce120a14610a1a57600080fd5b806395d89b41116101f757806395d89b4114610944578063975e8c3b146109595780639a7a23d614610979578063a26577781461099957600080fd5b80638da5cb5b146108c35780638ec5b995146108ee578063921369131461090e578063924de9b71461092457600080fd5b80634a62bb65116103335780636ddd1713116102c65780637571336a116102955780637eee288d1161027a5780637eee288d1461086e5780638095d5641461088e5780638a8c523c146108ae57600080fd5b80637571336a146108385780637bce5a041461085857600080fd5b80636ddd1713146107aa57806370a08231146107cb578063715018a61461080e578063751039fc1461082357600080fd5b8063558a729711610302578063558a72971461073457806361ff1a951461075457806367243482146107745780636a486a8e1461079457600080fd5b80634a62bb65146106a85780634fbee193146106c257806352bbb25e14610708578063541a43cf1461071e57600080fd5b8063203e727e116103c65780632bf3d42d11610395578063313ce5671161037a578063313ce5671461063f578063395093511461065b57806349bd5a5e1461067b57600080fd5b80632bf3d42d146106095780632d5a5d341461061f57600080fd5b8063203e727e1461058957806322d3e2aa146105a957806323b872dd146105c9578063282d3fdf146105e957600080fd5b80631694505e116104025780631694505e146104ec57806318160ddd1461053e5780631a8145bb1461055d5780631f3fed8f1461057357600080fd5b806306fdde031461043f578063095ea7b31461046a57806310d5de531461049a578063141fbbcc146104ca57600080fd5b3661043a57005b600080fd5b34801561044b57600080fd5b50610454610cd1565b60405161046191906147f2565b60405180910390f35b34801561047657600080fd5b5061048a610485366004614887565b610d63565b6040519015158152602001610461565b3480156104a657600080fd5b5061048a6104b53660046148b3565b60256020526000908152604090205460ff1681565b3480156104d657600080fd5b506104ea6104e53660046148e5565b610d7d565b005b3480156104f857600080fd5b506007546105199073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610461565b34801561054a57600080fd5b506002545b604051908152602001610461565b34801561056957600080fd5b5061054f60205481565b34801561057f57600080fd5b5061054f601f5481565b34801561059557600080fd5b506104ea6105a4366004614902565b610e3b565b3480156105b557600080fd5b506104ea6105c436600461491b565b610f97565b3480156105d557600080fd5b5061048a6105e436600461495e565b6110c2565b3480156105f557600080fd5b506104ea610604366004614887565b6110e6565b34801561061557600080fd5b5061054f601d5481565b34801561062b57600080fd5b506104ea61063a36600461499f565b61116d565b34801561064b57600080fd5b5060405160128152602001610461565b34801561066757600080fd5b5061048a610676366004614887565b611244565b34801561068757600080fd5b506008546105199073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106b457600080fd5b50600f5461048a9060ff1681565b3480156106ce57600080fd5b5061048a6106dd3660046148b3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526024602052604090205460ff1690565b34801561071457600080fd5b5061054f601e5481565b34801561072a57600080fd5b5061054f601c5481565b34801561074057600080fd5b506104ea61074f36600461499f565b611290565b34801561076057600080fd5b506104ea61076f366004614902565b61139f565b34801561078057600080fd5b506104ea61078f366004614a24565b6113ac565b3480156107a057600080fd5b5061054f60185481565b3480156107b657600080fd5b50600f5461048a906301000000900460ff1681565b3480156107d757600080fd5b5061054f6107e63660046148b3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561081a57600080fd5b506104ea61156f565b34801561082f57600080fd5b5061048a6115fc565b34801561084457600080fd5b506104ea61085336600461499f565b6116ae565b34801561086457600080fd5b5061054f60155481565b34801561087a57600080fd5b506104ea610889366004614887565b611785565b34801561089a57600080fd5b506104ea6108a9366004614a90565b611808565b3480156108ba57600080fd5b506104ea61191f565b3480156108cf57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610519565b3480156108fa57600080fd5b506104ea6109093660046148e5565b6119d8565b34801561091a57600080fd5b5061054f60195481565b34801561093057600080fd5b506104ea61093f3660046148e5565b611a91565b34801561095057600080fd5b50610454611b4b565b34801561096557600080fd5b50600f5461048a9062010000900460ff1681565b34801561098557600080fd5b506104ea61099436600461499f565b611b5a565b3480156109a557600080fd5b506104ea6109b43660046148e5565b611c90565b3480156109c557600080fd5b5061048a6109d4366004614887565b611d4b565b3480156109e557600080fd5b50600f5461048a90640100000000900460ff1681565b348015610a0757600080fd5b5060135461048a90610100900460ff1681565b348015610a2657600080fd5b506104ea610a353660046148b3565b611e1c565b348015610a4657600080fd5b5061048a610a55366004614887565b611f2c565b348015610a6657600080fd5b506104ea610a753660046148b3565b611f3a565b348015610a8657600080fd5b5061054f601b5481565b348015610a9c57600080fd5b5061048a610aab3660046148b3565b60266020526000908152604090205460ff1681565b348015610acc57600080fd5b5061054f60175481565b348015610ae257600080fd5b50600f5461048a90610100900460ff1681565b348015610b0157600080fd5b5061054f60215481565b348015610b1757600080fd5b506104ea610b2636600461499f565b61204a565b348015610b3757600080fd5b506104ea610b46366004614902565b612155565b348015610b5757600080fd5b5060135461048a9060ff1681565b348015610b7157600080fd5b5061054f600c5481565b348015610b8757600080fd5b5061048a610b96366004614902565b6122b0565b348015610ba757600080fd5b5061054f60145481565b348015610bbd57600080fd5b5061054f610bcc366004614abc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610c1057600080fd5b506104ea610c1f3660046148e5565b61249e565b348015610c3057600080fd5b5061054f600d5481565b348015610c4657600080fd5b5061048a612556565b348015610c5b57600080fd5b5061054f60165481565b348015610c7157600080fd5b506104ea610c803660046148b3565b612608565b348015610c9157600080fd5b5061054f601a5481565b348015610ca757600080fd5b506104ea610cb63660046148b3565b612735565b348015610cc757600080fd5b5061054f600e5481565b606060038054610ce090614aea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90614aea565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b5050505050905090565b600033610d71818585612862565b60019150505b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b670de0b6b3a76400006103e8610ed160025490565b610edc906001614b6c565b610ee69190614bd8565b610ef09190614bd8565b811015610f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610dfa565b610f9181670de0b6b3a7640000614b6c565b600c5550565b60055473ffffffffffffffffffffffffffffffffffffffff163314611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6019869055601a859055601b849055601c839055601d829055601e819055836110418688614bec565b61104b9190614bec565b6018819055601910156110ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610dfa565b505050505050565b6000336110d0858285612a15565b6110db858585612aec565b506001949350505050565b3360009081526006602052604090205460ff1661115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f72000000000000000000000000000000000000006044820152606401610dfa565b6111698282613c62565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d71908290869061128b908790614bec565b612862565b60055473ffffffffffffffffffffffffffffffffffffffff163314611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f909016d36ac8832d60eca5631256110b493764cf0e9be422253d07acd86e5243910160405180910390a15050565b6113a93382613c62565b50565b60055473ffffffffffffffffffffffffffffffffffffffff16331461142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b61147061144f60055473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff16600254612862565b60005b83811015611568576114d53386868481811061149157611491614c04565b90506020020160208101906114a691906148b3565b6114b26012600a614d53565b8686868181106114c4576114c4614c04565b905060200201356105e49190614b6c565b506001601160008787858181106114ee576114ee614c04565b905060200201602081019061150391906148b3565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061156081614d62565b915050611473565b5050505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6115fa6000613e4f565b565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360009081526006602052604090205460ff166117fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f72000000000000000000000000000000000000006044820152606401610dfa565b6111698282613ec6565b60055473ffffffffffffffffffffffffffffffffffffffff163314611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b601583905560168290556017819055806118a38385614bec565b6118ad9190614bec565b6014818155101561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610dfa565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ff1663010001001790554360225542602355565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b6013805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b606060048054610ce090614aea565b60055473ffffffffffffffffffffffffffffffffffffffff163314611bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b60085473ffffffffffffffffffffffffffffffffffffffff90811690831603611c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dfa565b6111698282613fe6565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600f8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dfa565b6110db8286868403612862565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600b5460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f7e93f456cc9a7cd16cdd07852911879883f53eb9b4643c9df90615542d46e95d90600090a3600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600033610d71818585612aec565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600a5460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146120cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526024602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b670de0b6b3a76400006103e86121eb60025490565b6121f6906005614b6c565b6122009190614bd8565b61220a9190614bd8565b811015612298576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b6122aa81670de0b6b3a7640000614b6c565b600e5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b620186a061234160025490565b61234c906001614b6c565b6123569190614bd8565b8210156123e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dfa565b6103e86123f160025490565b6123fc906005614b6c565b6124069190614bd8565b821115612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dfa565b50600d55600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b73ffffffffffffffffffffffffffffffffffffffff811661272c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dfa565b6113a981613e4f565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dfa565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8381169182179092556008546040517fa22d4832000000000000000000000000000000000000000000000000000000008152921660048301529063a22d483290602401600060405180830381600087803b15801561284e57600080fd5b505af1158015611568573d6000803e3d6000fd5b73ffffffffffffffffffffffffffffffffffffffff8316612904576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff82166129a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612ae65781811015612ad9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dfa565b612ae68484848403612862565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316612b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff8216612c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff16158015612c8e575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff16155b612d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527f72616e73666572696e6720746f6b656e730000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff1615156001148015612d635750602354612d5f9062093a80614bec565b4211155b15612e415773ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff1680612db6575060085473ffffffffffffffffffffffffffffffffffffffff8481169116145b80612ddb575060085473ffffffffffffffffffffffffffffffffffffffff8381169116145b612e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610dfa565b80600003612e555761191a83836000614065565b600f54610100900460ff168015612e745750600f5462010000900460ff165b15612fae576009546040517fe09073f000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015284811660248301523260448301819052600093909291169063e09073f0906064016020604051808303816000875af1925050508015612f39575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f3691810190614d9a565b60015b612f4257600080fd5b915081612fab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d455620426f74204465746563746564000000000000000000000000000000006044820152606401610dfa565b50505b600f5460ff16156135de5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612fff575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015613020575073ffffffffffffffffffffffffffffffffffffffff821615155b8015613044575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561306b575060095474010000000000000000000000000000000000000000900460ff16155b156135de57600f54610100900460ff1661313e5773ffffffffffffffffffffffffffffffffffffffff831660009081526024602052604090205460ff16806130d8575073ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff165b61313e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dfa565b60135460ff16156132925760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061318f575060075473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156131b6575060085473ffffffffffffffffffffffffffffffffffffffff838116911614155b156132925732600090815260106020526040902054431161327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610dfa565b3260009081526010602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526026602052604090205460ff1680156132ed575073ffffffffffffffffffffffffffffffffffffffff821660009081526025602052604090205460ff16155b1561342457600c54811115613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dfa565b600e5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546133b79083614bec565b111561341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dfa565b6135de565b73ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604090205460ff16801561347f575073ffffffffffffffffffffffffffffffffffffffff831660009081526025602052604090205460ff16155b1561351657600c5481111561341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526025602052604090205460ff166135de57600e5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546135769083614bec565b11156135de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dfa565b6022546135ec906002614bec565b4311158015613616575060085473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561364c575073ffffffffffffffffffffffffffffffffffffffff8216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b156136a05773ffffffffffffffffffffffffffffffffffffffff8216600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b60085473ffffffffffffffffffffffffffffffffffffffff8481169116148015816136d55750600f54640100000000900460ff165b156137895773ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff1615156001148015613723575060235461371f9062093a80614bec565b4211155b1561375c57601c54601a819055601d546019819055601e54601b8190559161374a91614bec565b6137549190614bec565b601855613789565b6004601a819055600560198190556001601b8190559161377b91614bec565b6137859190614bec565b6018555b30600090815260208190526040902054600d54811080159081906137b65750600f546301000000900460ff165b80156137dd575060095474010000000000000000000000000000000000000000900460ff16155b801561380f575073ffffffffffffffffffffffffffffffffffffffff861660009081526026602052604090205460ff16155b8015613841575073ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff16155b8015613873575073ffffffffffffffffffffffffffffffffffffffff851660009081526024602052604090205460ff16155b156138ed57600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600d5491506138c4614318565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b601354610100900460ff1615613c575760095473ffffffffffffffffffffffffffffffffffffffff871660009081526024602052604090205460ff74010000000000000000000000000000000000000000909204821615911680613976575073ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff165b1561397f575060005b60008115613c545773ffffffffffffffffffffffffffffffffffffffff871660009081526026602052604090205460ff1680156139be57506000601854115b15613a76576064601854876139d39190614b6c565b6139dd9190614bd8565b9050601854601a54826139f09190614b6c565b6139fa9190614bd8565b60206000828254613a0b9190614bec565b9091555050601854601b54613a209083614b6c565b613a2a9190614bd8565b60216000828254613a3b9190614bec565b9091555050601854601954613a509083614b6c565b613a5a9190614bd8565b601f6000828254613a6b9190614bec565b90915550613c369050565b73ffffffffffffffffffffffffffffffffffffffff881660009081526026602052604090205460ff168015613aad57506000601454115b15613c365760135462010000900460ff1615613b885760085473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812054613af6908890614bec565b613b009083614bd8565b60145490915080821015613b175750601454613b48565b6028821115613b36576004601454613b2f9190614db7565b9050613b48565b6003601454613b459190614db7565b90505b613b53600282614dce565b15613b69576002601454613b679190614db7565b505b6064613b75828a614b6c565b613b7f9190614bd8565b92505050613ba5565b606460145487613b989190614b6c565b613ba29190614bd8565b90505b601454601654613bb59083614b6c565b613bbf9190614bd8565b60206000828254613bd09190614bec565b9091555050601454601754613be59083614b6c565b613bef9190614bd8565b60216000828254613c009190614bec565b9091555050601454601554613c159083614b6c565b613c1f9190614bd8565b601f6000828254613c309190614bec565b90915550505b8015613c4757613c47883083614065565b613c518187614db7565b95505b50505b6110ba868686614065565b73ffffffffffffffffffffffffffffffffffffffff8216613d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015613dbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290613df7908490614db7565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216613f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610dfa565b8060026000828254613f559190614bec565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290613f8f908490614bec565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526026602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316614108576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff82166141ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015614261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dfa565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906142a5908490614bec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161430b91815260200190565b60405180910390a3612ae6565b3060009081526020819052604081205490506000602154601f5460205461433f9190614bec565b6143499190614bec565b90506000821580614358575081155b1561436257505050565b600d54614370906014614b6c565b83111561438857600d54614385906014614b6c565b92505b60006002836020548661439b9190614b6c565b6143a59190614bd8565b6143af9190614bd8565b905060006143bd8286614db7565b9050476143c98261456a565b60006143d58247614db7565b9050600086601f54836143e89190614b6c565b6143f29190614bd8565b9050600087602154846144059190614b6c565b61440f9190614bd8565b905060008161441e8486614db7565b6144289190614db7565b60006020819055601f8190556021819055600b5460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114614492576040519150601f19603f3d011682016040523d82523d6000602084013e614497565b606091505b509098505086158015906144ab5750600081115b156144fc576144ba8782614715565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114614556576040519150601f19603f3d011682016040523d82523d6000602084013e61455b565b606091505b50505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061459f5761459f614c04565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561461e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146429190614de2565b8160018151811061465557614655614c04565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526007546146889130911684612862565b6007546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac947906146e7908590600090869030904290600401614dff565b600060405180830381600087803b15801561470157600080fd5b505af11580156110ba573d6000803e3d6000fd5b60075461473a90309073ffffffffffffffffffffffffffffffffffffffff1684612862565b6007546040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a482015273ffffffffffffffffffffffffffffffffffffffff9091169063f305d71990839060c40160606040518083038185885af11580156147cd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115689190614e8a565b600060208083528351808285015260005b8181101561481f57858101830151858201604001528201614803565b81811115614831576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146113a957600080fd5b6000806040838503121561489a57600080fd5b82356148a581614865565b946020939093013593505050565b6000602082840312156148c557600080fd5b81356148d081614865565b9392505050565b80151581146113a957600080fd5b6000602082840312156148f757600080fd5b81356148d0816148d7565b60006020828403121561491457600080fd5b5035919050565b60008060008060008060c0878903121561493457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060006060848603121561497357600080fd5b833561497e81614865565b9250602084013561498e81614865565b929592945050506040919091013590565b600080604083850312156149b257600080fd5b82356149bd81614865565b915060208301356149cd816148d7565b809150509250929050565b60008083601f8401126149ea57600080fd5b50813567ffffffffffffffff811115614a0257600080fd5b6020830191508360208260051b8501011115614a1d57600080fd5b9250929050565b60008060008060408587031215614a3a57600080fd5b843567ffffffffffffffff80821115614a5257600080fd5b614a5e888389016149d8565b90965094506020870135915080821115614a7757600080fd5b50614a84878288016149d8565b95989497509550505050565b600080600060608486031215614aa557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215614acf57600080fd5b8235614ada81614865565b915060208301356149cd81614865565b600181811c90821680614afe57607f821691505b602082108103614b37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba457614ba4614b3d565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614be757614be7614ba9565b500490565b60008219821115614bff57614bff614b3d565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600181815b80851115614c8c57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115614c7257614c72614b3d565b80851615614c7f57918102915b93841c9390800290614c38565b509250929050565b600082614ca357506001610d77565b81614cb057506000610d77565b8160018114614cc65760028114614cd057614cec565b6001915050610d77565b60ff841115614ce157614ce1614b3d565b50506001821b610d77565b5060208310610133831016604e8410600b8410161715614d0f575081810a610d77565b614d198383614c33565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115614d4b57614d4b614b3d565b029392505050565b60006148d060ff841683614c94565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d9357614d93614b3d565b5060010190565b600060208284031215614dac57600080fd5b81516148d0816148d7565b600082821015614dc957614dc9614b3d565b500390565b600082614ddd57614ddd614ba9565b500690565b600060208284031215614df457600080fd5b81516148d081614865565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614e5c57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614e2a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614e9f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5aa8a8fb12c89dabc56375bc0b7d32843d60bcc5abe5edf92bc18ff3ba000bd64736f6c634300080e0033

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.