ETH Price: $2,677.01 (-2.54%)
Gas: 0.75 Gwei

Token

Dust to Riches (D2R)
 

Overview

Max Total Supply

45,402,060.284192848597018207 D2R

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
thealphawhale.eth
Balance
874.480966408697272728 D2R

Value
$0.00
0xd4f7c12a0047bae4cb274f18e84f8c26deec6a22
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:
Dust_to_Riches

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 11 : Token.sol
/*

###########################################
## Token generated with ❤️ on 20lab.app ##
##########################################

*/

// SPDX-License-Identifier: No License

pragma solidity 0.8.7;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol"; 
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";

contract Dust_to_Riches is ERC20, ERC20Burnable, Ownable {
    
    uint256 public swapThreshold;
    
    uint256 private _gamesprizesanddevelopmentPending;
    uint256 private _schillcreateandearnPending;
    uint256 private _communitymodsPending;
    uint256 private _communitytreasurydaoPending;
    uint256 private _operatingcostsPending;
    uint256 private _liquidityPending;

    address public gamesprizesanddevelopmentAddress;
    uint16[3] public gamesprizesanddevelopmentFees;

    address public schillcreateandearnAddress;
    uint16[3] public schillcreateandearnFees;

    address public communitymodsAddress;
    uint16[3] public communitymodsFees;

    address public communitytreasurydaoAddress;
    uint16[3] public communitytreasurydaoFees;

    address public operatingcostsAddress;
    uint16[3] public operatingcostsFees;

    uint16[3] public autoBurnFees;

    address public lpTokensReceiver;
    uint16[3] public liquidityFees;

    mapping (address => bool) public isExcludedFromFees;

    uint16[3] public totalFees;
    bool private _swapping;

    IUniswapV2Router02 public routerV2;
    address public pairV2;
    mapping (address => bool) public AMMPairs;

    mapping (address => bool) public isExcludedFromLimits;

    uint256 public maxWalletAmount;

    uint256 public maxTxAmount;

    mapping (address => uint256) public lastTrade;
    uint256 public tradeCooldownTime;
 
    event SwapThresholdUpdated(uint256 swapThreshold);

    event gamesprizesanddevelopmentAddressUpdated(address gamesprizesanddevelopmentAddress);
    event gamesprizesanddevelopmentFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event gamesprizesanddevelopmentFeeSent(address recipient, uint256 amount);

    event schillcreateandearnAddressUpdated(address schillcreateandearnAddress);
    event schillcreateandearnFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event schillcreateandearnFeeSent(address recipient, uint256 amount);

    event communitymodsAddressUpdated(address communitymodsAddress);
    event communitymodsFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event communitymodsFeeSent(address recipient, uint256 amount);

    event communitytreasurydaoAddressUpdated(address communitytreasurydaoAddress);
    event communitytreasurydaoFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event communitytreasurydaoFeeSent(address recipient, uint256 amount);

    event operatingcostsAddressUpdated(address operatingcostsAddress);
    event operatingcostsFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event operatingcostsFeeSent(address recipient, uint256 amount);

    event autoBurnFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event autoBurned(uint256 amount);

    event LpTokensReceiverUpdated(address lpTokensReceiver);
    event liquidityFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event liquidityAdded(uint amountToken, uint amountCoin, uint liquidity);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event RouterV2Updated(address indexed routerV2);
    event AMMPairsUpdated(address indexed AMMPair, bool isPair);

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event MaxWalletAmountUpdated(uint256 maxWalletAmount);

    event MaxTxAmountUpdated(uint256 maxTxAmount);

    event TradeCooldownTimeUpdated(uint256 tradeCooldownTime);
 
    constructor()
        ERC20(unicode"Dust to Riches", unicode"D2R") 
    {
        address supplyRecipient = 0xA2a1BD3FAa19d08e26aa6629B1E5F82772B7E811;
        
        updateSwapThreshold(25000 * (10 ** decimals()));

        gamesprizesanddevelopmentAddressSetup(0x7C485edb71e52Fd43c4613E8c27De543A223aB38);
        gamesprizesanddevelopmentFeesSetup(175, 175, 0);

        schillcreateandearnAddressSetup(0xc768F178cA451A25104dAAa729D40d9D3c700A29);
        schillcreateandearnFeesSetup(100, 0, 0);

        communitymodsAddressSetup(0x41c27C64F30E68D8c25f8722D67c321df4916537);
        communitymodsFeesSetup(25, 25, 0);

        communitytreasurydaoAddressSetup(0x4AccDed53EE120CaA75ced42213C28e59F9DD536);
        communitytreasurydaoFeesSetup(50, 50, 0);

        operatingcostsAddressSetup(0xF13A0143a63346B19eE59B426f4457D457A27Bc8);
        operatingcostsFeesSetup(50, 50, 0);

        autoBurnFeesSetup(0, 100, 0);

        lpTokensReceiverSetup(0x0000000000000000000000000000000000000000);
        liquidityFeesSetup(100, 100, 0);

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

        _updateRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromLimits(supplyRecipient, true);
        excludeFromLimits(address(this), true);
        excludeFromLimits(address(0), true); 
        excludeFromLimits(gamesprizesanddevelopmentAddress, true);
        excludeFromLimits(schillcreateandearnAddress, true);
        excludeFromLimits(communitymodsAddress, true);
        excludeFromLimits(communitytreasurydaoAddress, true);
        excludeFromLimits(operatingcostsAddress, true);

        updateMaxWalletAmount(250000 * (10 ** decimals()));

        updateMaxTxAmount(125000 * (10 ** decimals()));

        updateTradeCooldownTime(600);

        _mint(supplyRecipient, 50000000 * (10 ** decimals()));
        _transferOwnership(0xA2a1BD3FAa19d08e26aa6629B1E5F82772B7E811);
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 18;
    }
    
    function _swapTokensForCoin(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = routerV2.WETH();

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

        routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function updateSwapThreshold(uint256 _swapThreshold) public onlyOwner {
        swapThreshold = _swapThreshold;
        
        emit SwapThresholdUpdated(_swapThreshold);
    }

    function gamesprizesanddevelopmentAddressSetup(address _newAddress) public onlyOwner {
        gamesprizesanddevelopmentAddress = _newAddress;

        excludeFromFees(_newAddress, true);

        emit gamesprizesanddevelopmentAddressUpdated(_newAddress);
    }

    function gamesprizesanddevelopmentFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        gamesprizesanddevelopmentFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit gamesprizesanddevelopmentFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function schillcreateandearnAddressSetup(address _newAddress) public onlyOwner {
        schillcreateandearnAddress = _newAddress;

        excludeFromFees(_newAddress, true);

        emit schillcreateandearnAddressUpdated(_newAddress);
    }

    function schillcreateandearnFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        schillcreateandearnFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit schillcreateandearnFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function communitymodsAddressSetup(address _newAddress) public onlyOwner {
        communitymodsAddress = _newAddress;

        excludeFromFees(_newAddress, true);

        emit communitymodsAddressUpdated(_newAddress);
    }

    function communitymodsFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        communitymodsFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit communitymodsFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function communitytreasurydaoAddressSetup(address _newAddress) public onlyOwner {
        communitytreasurydaoAddress = _newAddress;

        excludeFromFees(_newAddress, true);

        emit communitytreasurydaoAddressUpdated(_newAddress);
    }

    function communitytreasurydaoFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        communitytreasurydaoFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit communitytreasurydaoFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function operatingcostsAddressSetup(address _newAddress) public onlyOwner {
        operatingcostsAddress = _newAddress;

        excludeFromFees(_newAddress, true);

        emit operatingcostsAddressUpdated(_newAddress);
    }

    function operatingcostsFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        operatingcostsFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit operatingcostsFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function autoBurnFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        autoBurnFees = [_buyFee, _sellFee, _transferFee];
        
        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");
            
        emit autoBurnFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function _swapAndLiquify(uint256 tokenAmount) private returns (uint256 leftover) {
        // Sub-optimal method for supplying liquidity
        uint256 halfAmount = tokenAmount / 2;
        uint256 otherHalf = tokenAmount - halfAmount;

        _swapTokensForCoin(halfAmount);

        uint256 coinBalance = address(this).balance;

        if (coinBalance > 0) {
            (uint amountToken, uint amountCoin, uint liquidity) = _addLiquidity(otherHalf, coinBalance);

            emit liquidityAdded(amountToken, amountCoin, liquidity);

            return otherHalf - amountToken;
        } else {
            return otherHalf;
        }
    }

    function _addLiquidity(uint256 tokenAmount, uint256 coinAmount) private returns (uint, uint, uint) {
        _approve(address(this), address(routerV2), tokenAmount);

        return routerV2.addLiquidityETH{value: coinAmount}(address(this), tokenAmount, 0, 0, lpTokensReceiver, block.timestamp);
    }

    function lpTokensReceiverSetup(address _newAddress) public onlyOwner {
        lpTokensReceiver = _newAddress;

        emit LpTokensReceiverUpdated(_newAddress);
    }

    function liquidityFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        liquidityFees = [_buyFee, _sellFee, _transferFee];

        totalFees[0] = 0 + gamesprizesanddevelopmentFees[0] + schillcreateandearnFees[0] + communitymodsFees[0] + communitytreasurydaoFees[0] + operatingcostsFees[0] + autoBurnFees[0] + liquidityFees[0];
        totalFees[1] = 0 + gamesprizesanddevelopmentFees[1] + schillcreateandearnFees[1] + communitymodsFees[1] + communitytreasurydaoFees[1] + operatingcostsFees[1] + autoBurnFees[1] + liquidityFees[1];
        totalFees[2] = 0 + gamesprizesanddevelopmentFees[2] + schillcreateandearnFees[2] + communitymodsFees[2] + communitytreasurydaoFees[2] + operatingcostsFees[2] + autoBurnFees[2] + liquidityFees[2];
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        emit liquidityFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        
        bool canSwap = 0 + _gamesprizesanddevelopmentPending + _schillcreateandearnPending + _communitymodsPending + _communitytreasurydaoPending + _operatingcostsPending + _liquidityPending >= swapThreshold;
        
        if (!_swapping && !AMMPairs[from] && canSwap) {
            _swapping = true;
            
            if (false || _gamesprizesanddevelopmentPending > 0 || _schillcreateandearnPending > 0 || _communitymodsPending > 0 || _communitytreasurydaoPending > 0 || _operatingcostsPending > 0) {
                uint256 token2Swap = 0 + _gamesprizesanddevelopmentPending + _schillcreateandearnPending + _communitymodsPending + _communitytreasurydaoPending + _operatingcostsPending;
                bool success = false;

                _swapTokensForCoin(token2Swap);
                uint256 coinsReceived = address(this).balance;
                
                uint256 gamesprizesanddevelopmentPortion = coinsReceived * _gamesprizesanddevelopmentPending / token2Swap;
                if (gamesprizesanddevelopmentPortion > 0) {
                    (success,) = payable(address(gamesprizesanddevelopmentAddress)).call{value: gamesprizesanddevelopmentPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit gamesprizesanddevelopmentFeeSent(gamesprizesanddevelopmentAddress, gamesprizesanddevelopmentPortion);
                }
                _gamesprizesanddevelopmentPending = 0;

                uint256 schillcreateandearnPortion = coinsReceived * _schillcreateandearnPending / token2Swap;
                if (schillcreateandearnPortion > 0) {
                    (success,) = payable(address(schillcreateandearnAddress)).call{value: schillcreateandearnPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit schillcreateandearnFeeSent(schillcreateandearnAddress, schillcreateandearnPortion);
                }
                _schillcreateandearnPending = 0;

                uint256 communitymodsPortion = coinsReceived * _communitymodsPending / token2Swap;
                if (communitymodsPortion > 0) {
                    (success,) = payable(address(communitymodsAddress)).call{value: communitymodsPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit communitymodsFeeSent(communitymodsAddress, communitymodsPortion);
                }
                _communitymodsPending = 0;

                uint256 communitytreasurydaoPortion = coinsReceived * _communitytreasurydaoPending / token2Swap;
                if (communitytreasurydaoPortion > 0) {
                    (success,) = payable(address(communitytreasurydaoAddress)).call{value: communitytreasurydaoPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit communitytreasurydaoFeeSent(communitytreasurydaoAddress, communitytreasurydaoPortion);
                }
                _communitytreasurydaoPending = 0;

                uint256 operatingcostsPortion = coinsReceived * _operatingcostsPending / token2Swap;
                if (operatingcostsPortion > 0) {
                    (success,) = payable(address(operatingcostsAddress)).call{value: operatingcostsPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit operatingcostsFeeSent(operatingcostsAddress, operatingcostsPortion);
                }
                _operatingcostsPending = 0;

            }

            if (_liquidityPending > 10) {
                _liquidityPending = _swapAndLiquify(_liquidityPending);
            }

            _swapping = false;
        }

        if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            uint256 fees = 0;
            uint8 txType = 3;
            
            if (AMMPairs[from]) {
                if (totalFees[0] > 0) txType = 0;
            }
            else if (AMMPairs[to]) {
                if (totalFees[1] > 0) txType = 1;
            }
            else if (totalFees[2] > 0) txType = 2;
            
            if (txType < 3) {
                
                uint256 autoBurnPortion = 0;

                fees = amount * totalFees[txType] / 10000;
                amount -= fees;
                
                _gamesprizesanddevelopmentPending += fees * gamesprizesanddevelopmentFees[txType] / totalFees[txType];

                _schillcreateandearnPending += fees * schillcreateandearnFees[txType] / totalFees[txType];

                _communitymodsPending += fees * communitymodsFees[txType] / totalFees[txType];

                _communitytreasurydaoPending += fees * communitytreasurydaoFees[txType] / totalFees[txType];

                _operatingcostsPending += fees * operatingcostsFees[txType] / totalFees[txType];

                if (autoBurnFees[txType] > 0) {
                    autoBurnPortion = fees * autoBurnFees[txType] / totalFees[txType];
                    _burn(from, autoBurnPortion);
                    emit autoBurned(autoBurnPortion);
                }

                _liquidityPending += fees * liquidityFees[txType] / totalFees[txType];

                fees = fees - autoBurnPortion;
            }

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

    function _updateRouterV2(address router) private {
        routerV2 = IUniswapV2Router02(router);
        pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());
        
        excludeFromLimits(router, true);

        _setAMMPair(pairV2, true);

        emit RouterV2Updated(router);
    }

    function setAMMPair(address pair, bool isPair) public onlyOwner {
        require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list");

        _setAMMPair(pair, isPair);
    }

    function _setAMMPair(address pair, bool isPair) private {
        AMMPairs[pair] = isPair;

        if (isPair) { 
            excludeFromLimits(pair, true);

        }

        emit AMMPairsUpdated(pair, isPair);
    }

    function excludeFromLimits(address account, bool isExcluded) public onlyOwner {
        isExcludedFromLimits[account] = isExcluded;

        emit ExcludeFromLimits(account, isExcluded);
    }

    function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        maxWalletAmount = _maxWalletAmount;
        
        emit MaxWalletAmountUpdated(_maxWalletAmount);
    }

    function updateMaxTxAmount(uint256 _maxTxAmount) public onlyOwner {
        maxTxAmount = _maxTxAmount;
        
        emit MaxTxAmountUpdated(_maxTxAmount);
    }

    function updateTradeCooldownTime(uint256 _tradeCooldownTime) public onlyOwner {
        require(_tradeCooldownTime <= 7 days, "Antibot: Trade cooldown too long.");
            
        tradeCooldownTime = _tradeCooldownTime;
        
        emit TradeCooldownTimeUpdated(_tradeCooldownTime);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (AMMPairs[to] && !isExcludedFromLimits[from]) { // SELL
            require(amount <= maxTxAmount, "MaxTx: Cannot exceed max sell limit");
        }
    
        if(!isExcludedFromLimits[from])
            require(lastTrade[from] + tradeCooldownTime <= block.timestamp, "Antibot: Transaction sender is in anti-bot cooldown");
        if(!isExcludedFromLimits[to])
            require(lastTrade[to] + tradeCooldownTime <= block.timestamp, "Antibot: Transaction recipient is in anti-bot cooldown");

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

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (!isExcludedFromLimits[to]) {
            require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit");
        }

        if (AMMPairs[from] && !isExcludedFromLimits[to]) lastTrade[to] = block.timestamp;
        else if (AMMPairs[to] && !isExcludedFromLimits[from]) lastTrade[from] = block.timestamp;

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

File 8 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "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":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpTokensReceiver","type":"address"}],"name":"LpTokensReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tradeCooldownTime","type":"uint256"}],"name":"TradeCooldownTimeUpdated","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":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"autoBurnFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"autoBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"communitymodsAddress","type":"address"}],"name":"communitymodsAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"communitymodsFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"communitymodsFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"communitytreasurydaoAddress","type":"address"}],"name":"communitytreasurydaoAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"communitytreasurydaoFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"communitytreasurydaoFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"gamesprizesanddevelopmentAddress","type":"address"}],"name":"gamesprizesanddevelopmentAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gamesprizesanddevelopmentFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"gamesprizesanddevelopmentFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountCoin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"liquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"liquidityFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"operatingcostsAddress","type":"address"}],"name":"operatingcostsAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"operatingcostsFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"operatingcostsFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"schillcreateandearnAddress","type":"address"}],"name":"schillcreateandearnAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"schillcreateandearnFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"schillcreateandearnFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"autoBurnFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"autoBurnFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communitymodsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"communitymodsAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"communitymodsFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"communitymodsFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communitytreasurydaoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"communitytreasurydaoAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"communitytreasurydaoFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"communitytreasurydaoFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gamesprizesanddevelopmentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"gamesprizesanddevelopmentAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gamesprizesanddevelopmentFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"gamesprizesanddevelopmentFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"liquidityFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpTokensReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"lpTokensReceiverSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatingcostsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"operatingcostsAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"operatingcostsFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"operatingcostsFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"schillcreateandearnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"schillcreateandearnAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"schillcreateandearnFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"schillcreateandearnFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeCooldownTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tradeCooldownTime","type":"uint256"}],"name":"updateTradeCooldownTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020016d4475737420746f2052696368657360901b8152506040518060400160405280600381526020016222192960e91b81525081600390805190602001906200006d9291906200265b565b508051620000839060049060208401906200265b565b505050620000a06200009a6200037360201b60201c565b62000377565b73a2a1bd3faa19d08e26aa6629b1e5f82772b7e811620000db620000c76012600a62002853565b620000d5906161a862002914565b620003c9565b620000fa737c485edb71e52fd43c4613e8c27de543a223ab386200040f565b6200010960af8060006200047b565b6200012873c768f178ca451a25104daaa729d40d9d3c700a29620007ae565b6200013760646000806200081a565b620001567341c27c64f30e68d8c25f8722d67c321df491653762000b41565b62000165601980600062000bad565b62000184734accded53ee120caa75ced42213c28e59f9dd53662000ed4565b62000193603280600062000f40565b620001b273f13a0143a63346b19ee59b426f4457d457a27bc862001267565b620001c16032806000620012d3565b620001d06000606481620015fa565b620001dc600062001921565b620001eb60648060006200197a565b620001f881600162001ca1565b6200020530600162001ca1565b62000224737a250d5630b4cf539739df2c5dacb4c659f2488d62001d0b565b6200023181600162001f56565b6200023e30600162001f56565b6200024c6000600162001f56565b600d5462000265906001600160a01b0316600162001f56565b600f546200027e906001600160a01b0316600162001f56565b60115462000297906001600160a01b0316600162001f56565b601354620002b0906001600160a01b0316600162001f56565b601554620002c9906001600160a01b0316600162001f56565b620002f0620002db6012600a62002853565b620002ea906203d09062002914565b62001fb9565b62000317620003026012600a62002853565b62000311906201e84862002914565b62001ff7565b6200032461025862002037565b6200034d81620003376012600a62002853565b62000347906302faf08062002914565b620020d6565b6200036c73a2a1bd3faa19d08e26aa6629b1e5f82772b7e81162000377565b5062002989565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003d3620021b5565b60068190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476906020015b60405180910390a150565b62000419620021b5565b600d80546001600160a01b0319166001600160a01b0383161790556200044181600162001ca1565b6040516001600160a01b03821681527f1bc982389b598218d8b35a4e32ccf01ef8a747487c46fba7be8016ce977d6f3a9060200162000404565b62000485620021b5565b6040805160608101825261ffff80861682528481166020830152831691810191909152620004b890600e906003620026ea565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691620004f791166000620027c6565b620005039190620027c6565b6200050f9190620027c6565b6200051b9190620027c6565b620005279190620027c6565b620005339190620027c6565b6200053f9190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692620005a4929104166000620027c6565b620005b09190620027c6565b620005bc9190620027c6565b620005c89190620027c6565b620005d49190620027c6565b620005e09190620027c6565b620005ec9190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e546401000000009687900488169795879004861696948590048616959385900484169492839004841693918390048216926200065a929104166000620027c6565b620006669190620027c6565b620006729190620027c6565b6200067e9190620027c6565b6200068a9190620027c6565b620006969190620027c6565b620006a29190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620006ea5750601b546109c46201000090910461ffff1611155b8015620007085750601b546109c464010000000090910461ffff1611155b6200075e5760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb83398151915260648201526084015b60405180910390fd5b6040805161ffff808616825280851660208301528316918101919091527f7fd735ce1d9ce9c7092f8fe08f4ac9efbadb4b277656d047f90df0c2e188b0ee906060015b60405180910390a1505050565b620007b8620021b5565b600f80546001600160a01b0319166001600160a01b038316179055620007e081600162001ca1565b6040516001600160a01b03821681527f997cd196d32939f53a97d1ae211358ed10f6fbd87804ff19a0a6ab048af6927c9060200162000404565b62000824620021b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000857906010906003620026ea565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916200089691166000620027c6565b620008a29190620027c6565b620008ae9190620027c6565b620008ba9190620027c6565b620008c69190620027c6565b620008d29190620027c6565b620008de9190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262000943929104166000620027c6565b6200094f9190620027c6565b6200095b9190620027c6565b620009679190620027c6565b620009739190620027c6565b6200097f9190620027c6565b6200098b9190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54640100000000968790048816979587900486169694859004861695938590048416949283900484169391839004821692620009f9929104166000620027c6565b62000a059190620027c6565b62000a119190620027c6565b62000a1d9190620027c6565b62000a299190620027c6565b62000a359190620027c6565b62000a419190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000a895750601b546109c46201000090910461ffff1611155b801562000aa75750601b546109c464010000000090910461ffff1611155b62000af95760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527fcb02d72ccbd4a1bacc8c52edc190f8e18e86d4eb2f903a44e19aea3f47d273b090606001620007a1565b62000b4b620021b5565b601180546001600160a01b0319166001600160a01b03831617905562000b7381600162001ca1565b6040516001600160a01b03821681527f3eaeac26153f7bfa536e87a54d6ea7d8110b59023b8054d9e4187a5c1faa79c79060200162000404565b62000bb7620021b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000bea906012906003620026ea565b50601954601754601654601454601254601054600e5461ffff96871696958616959485169493841693928316929182169162000c2991166000620027c6565b62000c359190620027c6565b62000c419190620027c6565b62000c4d9190620027c6565b62000c599190620027c6565b62000c659190620027c6565b62000c719190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262000cd6929104166000620027c6565b62000ce29190620027c6565b62000cee9190620027c6565b62000cfa9190620027c6565b62000d069190620027c6565b62000d129190620027c6565b62000d1e9190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e5464010000000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262000d8c929104166000620027c6565b62000d989190620027c6565b62000da49190620027c6565b62000db09190620027c6565b62000dbc9190620027c6565b62000dc89190620027c6565b62000dd49190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000e1c5750601b546109c46201000090910461ffff1611155b801562000e3a5750601b546109c464010000000090910461ffff1611155b62000e8c5760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527fbe0ab82149b2579e200d3f5d88969e612078da3dbadede862073f5fc7599747f90606001620007a1565b62000ede620021b5565b601380546001600160a01b0319166001600160a01b03831617905562000f0681600162001ca1565b6040516001600160a01b03821681527f68adcd98055e26e06910e4ca2f4576b804704ae7e06ee71654957fad430cb7ad9060200162000404565b62000f4a620021b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000f7d906014906003620026ea565b50601954601754601654601454601254601054600e5461ffff96871696958616959485169493841693928316929182169162000fbc91166000620027c6565b62000fc89190620027c6565b62000fd49190620027c6565b62000fe09190620027c6565b62000fec9190620027c6565b62000ff89190620027c6565b620010049190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262001069929104166000620027c6565b620010759190620027c6565b620010819190620027c6565b6200108d9190620027c6565b620010999190620027c6565b620010a59190620027c6565b620010b19190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e546401000000009687900488169795879004861696948590048616959385900484169492839004841693918390048216926200111f929104166000620027c6565b6200112b9190620027c6565b620011379190620027c6565b620011439190620027c6565b6200114f9190620027c6565b6200115b9190620027c6565b620011679190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620011af5750601b546109c46201000090910461ffff1611155b8015620011cd5750601b546109c464010000000090910461ffff1611155b6200121f5760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527f6e4891da8a55ec9a654df0d9df0b49aff2027ada32b3ba3fdbf9d65e900accd390606001620007a1565b62001271620021b5565b601580546001600160a01b0319166001600160a01b0383161790556200129981600162001ca1565b6040516001600160a01b03821681527fae2a5a7a102a165faa3ab63d4b48ff7941a2d8381731dde7a8195c91a8b1482e9060200162000404565b620012dd620021b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262001310906016906003620026ea565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916200134f91166000620027c6565b6200135b9190620027c6565b620013679190620027c6565b620013739190620027c6565b6200137f9190620027c6565b6200138b9190620027c6565b620013979190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692620013fc929104166000620027c6565b620014089190620027c6565b620014149190620027c6565b620014209190620027c6565b6200142c9190620027c6565b620014389190620027c6565b620014449190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54640100000000968790048816979587900486169694859004861695938590048416949283900484169391839004821692620014b2929104166000620027c6565b620014be9190620027c6565b620014ca9190620027c6565b620014d69190620027c6565b620014e29190620027c6565b620014ee9190620027c6565b620014fa9190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620015425750601b546109c46201000090910461ffff1611155b8015620015605750601b546109c464010000000090910461ffff1611155b620015b25760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527ffb7efd7da050f885931226c17601f8801c911e64c7b4858ed93705618ef709c490606001620007a1565b62001604620021b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262001637906017906003620026ea565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916200167691166000620027c6565b620016829190620027c6565b6200168e9190620027c6565b6200169a9190620027c6565b620016a69190620027c6565b620016b29190620027c6565b620016be9190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262001723929104166000620027c6565b6200172f9190620027c6565b6200173b9190620027c6565b620017479190620027c6565b620017539190620027c6565b6200175f9190620027c6565b6200176b9190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54640100000000968790048816979587900486169694859004861695938590048416949283900484169391839004821692620017d9929104166000620027c6565b620017e59190620027c6565b620017f19190620027c6565b620017fd9190620027c6565b620018099190620027c6565b620018159190620027c6565b620018219190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620018695750601b546109c46201000090910461ffff1611155b8015620018875750601b546109c464010000000090910461ffff1611155b620018d95760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c890606001620007a1565b6200192b620021b5565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f9060200162000404565b62001984620021b5565b6040805160608101825261ffff80861682528481166020830152831691810191909152620019b7906019906003620026ea565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691620019f691166000620027c6565b62001a029190620027c6565b62001a0e9190620027c6565b62001a1a9190620027c6565b62001a269190620027c6565b62001a329190620027c6565b62001a3e9190620027c6565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262001aa3929104166000620027c6565b62001aaf9190620027c6565b62001abb9190620027c6565b62001ac79190620027c6565b62001ad39190620027c6565b62001adf9190620027c6565b62001aeb9190620027c6565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e5464010000000096879004881697958790048616969485900486169593859004841694928390048416939183900482169262001b59929104166000620027c6565b62001b659190620027c6565b62001b719190620027c6565b62001b7d9190620027c6565b62001b899190620027c6565b62001b959190620027c6565b62001ba19190620027c6565b601b805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062001be95750601b546109c46201000090910461ffff1611155b801562001c075750601b546109c464010000000090910461ffff1611155b62001c595760405162461bcd60e51b8152602060048201526036602482015260008051602062006d9b833981519152604482015260008051602062006dbb833981519152606482015260840162000755565b6040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001620007a1565b62001cab620021b5565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b80601c60016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601c60019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801562001d8157600080fd5b505afa15801562001d96573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001dbc919062002794565b6001600160a01b031663c9c6539630601c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801562001e1a57600080fd5b505afa15801562001e2f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e55919062002794565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801562001e9e57600080fd5b505af115801562001eb3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ed9919062002794565b601d80546001600160a01b0319166001600160a01b039290921691909117905562001f0681600162001f56565b601d5462001f1f906001600160a01b0316600162002213565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b62001f60620021b5565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162001cff565b62001fc3620021b5565b60208181556040518281527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001910162000404565b62002001620021b5565b60218190556040518181527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200162000404565b62002041620021b5565b62093a80811115620020a05760405162461bcd60e51b815260206004820152602160248201527f416e7469626f743a20547261646520636f6f6c646f776e20746f6f206c6f6e676044820152601760f91b606482015260840162000755565b60238190556040518181527f07583f92fee444c67f59bbc03e68bfda63fc2e087769ccc4f2b40360336a54679060200162000404565b6001600160a01b0382166200212e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000755565b6200213c600083836200228c565b8060026000828254620021509190620027ef565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620021b160008383620024d1565b5050565b6005546001600160a01b03163314620022115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000755565b565b6001600160a01b0382166000908152601e60205260409020805460ff191682158015919091179091556200224e576200224e82600162001f56565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405162001cff911515815260200190565b6001600160a01b0382166000908152601e602052604090205460ff168015620022ce57506001600160a01b0383166000908152601f602052604090205460ff16155b156200233457602154811115620023345760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b606482015260840162000755565b6001600160a01b0383166000908152601f602052604090205460ff16620023f4576023546001600160a01b03841660009081526022602052604090205442916200237e91620027ef565b1115620023f45760405162461bcd60e51b815260206004820152603360248201527f416e7469626f743a205472616e73616374696f6e2073656e646572206973206960448201527f6e20616e74692d626f7420636f6f6c646f776e00000000000000000000000000606482015260840162000755565b6001600160a01b0382166000908152601f602052604090205460ff16620024b4576023546001600160a01b03831660009081526022602052604090205442916200243e91620027ef565b1115620024b45760405162461bcd60e51b815260206004820152603660248201527f416e7469626f743a205472616e73616374696f6e20726563697069656e74206960448201527f7320696e20616e74692d626f7420636f6f6c646f776e00000000000000000000606482015260840162000755565b620024cc838383620024cc60201b620026c31760201c565b505050565b6001600160a01b0382166000908152601f602052604090205460ff16620025775760205462002515836001600160a01b031660009081526020819052604090205490565b1115620025775760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b606482015260840162000755565b6001600160a01b0383166000908152601e602052604090205460ff168015620025b957506001600160a01b0382166000908152601f602052604090205460ff16155b15620025e0576001600160a01b0382166000908152602260205260409020429055620024b4565b6001600160a01b0382166000908152601e602052604090205460ff1680156200262257506001600160a01b0383166000908152601f602052604090205460ff16155b15620024b4576001600160a01b0383166000908152602260205260409020429055620024cc838383620024cc60201b620026c31760201c565b828054620026699062002936565b90600052602060002090601f0160209004810192826200268d5760008555620026d8565b82601f10620026a857805160ff1916838001178555620026d8565b82800160010185558215620026d8579182015b82811115620026d8578251825591602001919060010190620026bb565b50620026e69291506200277d565b5090565b600183019183908215620026d85791602002820160005b838211156200274357835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262002701565b8015620027735782816101000a81549061ffff021916905560020160208160010104928301926001030262002743565b5050620026e69291505b5b80821115620026e657600081556001016200277e565b600060208284031215620027a757600080fd5b81516001600160a01b0381168114620027bf57600080fd5b9392505050565b600061ffff808316818516808303821115620027e657620027e662002973565b01949350505050565b6000821982111562002805576200280562002973565b500190565b600181815b808511156200284b5781600019048211156200282f576200282f62002973565b808516156200283d57918102915b93841c93908002906200280f565b509250929050565b6000620027bf60ff8416836000826200286f575060016200290e565b816200287e575060006200290e565b8160018114620028975760028114620028a257620028c2565b60019150506200290e565b60ff841115620028b657620028b662002973565b50506001821b6200290e565b5060208310610133831016604e8410600b8410161715620028e7575081810a6200290e565b620028f383836200280a565b80600019048211156200290a576200290a62002973565b0290505b92915050565b600081600019048311821515161562002931576200293162002973565b500290565b600181811c908216806200294b57607f821691505b602082108114156200296d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61440280620029996000396000f3fe60806040526004361061039b5760003560e01c806381610dcd116101dc578063c18bc19511610102578063e6268158116100a0578063f3bf087e1161006f578063f3bf087e14610b0c578063f7dcdcce14610b2c578063fa61cd0214610b4c578063fd11601914610b6c57600080fd5b8063e626815814610a8c578063e7b2e25f14610aac578063f0b4b2db14610acc578063f2fde38b14610aec57600080fd5b8063cc274b29116100dc578063cc274b2914610a0c578063d56d916614610a2c578063d8ed1e4f14610a4c578063dd62ed3e14610a6c57600080fd5b8063c18bc1951461099f578063c26d7be0146109bf578063c5a31225146109ec57600080fd5b8063a14b2f181161017a578063b99937aa11610149578063b99937aa1461091f578063be25b3d41461093f578063c02466681461095f578063c0a904a21461097f57600080fd5b8063a14b2f18146108a9578063a457c2d7146108c9578063a9059cbb146108e9578063aa4bde281461090957600080fd5b80638eeca6d9116101b65780638eeca6d9146108345780638fffabed1461085457806395d89b4114610874578063966b53c41461088957600080fd5b806381610dcd146107e05780638c0b5e22146108005780638da5cb5b1461081657600080fd5b80634fbee193116102c15780636c9e28aa1161025f578063768565571161022e578063768565571461075057806379cc6790146107805780637ad16d35146107a05780638089dbfd146107c057600080fd5b80636c9e28aa146106c5578063703054ce146106e557806370a0823114610705578063715018a61461073b57600080fd5b80635cce86cd1161029b5780635cce86cd146106355780636256d18114610665578063686003c6146106855780636a3e8f3d146106a557600080fd5b80634fbee193146105a8578063502f7446146105d8578063552ea78f1461061557600080fd5b80632d99d32e11610339578063408ccbdf11610308578063408ccbdf1461052857806342966c681461054857806346d58f2a146105685780634c8a55dc1461058857600080fd5b80632d99d32e146104ac578063313ce567146104cc57806339509351146104e85780633a863d011461050857600080fd5b8063095ea7b311610375578063095ea7b31461041457806318160ddd1461044457806323b872dd146104595780632b7bd4cc1461047957600080fd5b806301d6d6c1146103a75780630445b667146103c957806306fdde03146103f257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c23660046140c4565b610b82565b005b3480156103d557600080fd5b506103df60065481565b6040519081526020015b60405180910390f35b3480156103fe57600080fd5b50610407610e51565b6040516103e9919061414e565b34801561042057600080fd5b5061043461042f366004614098565b610ee3565b60405190151581526020016103e9565b34801561045057600080fd5b506002546103df565b34801561046557600080fd5b50610434610474366004614024565b610efb565b34801561048557600080fd5b50610499610494366004614107565b610f1f565b60405161ffff90911681526020016103e9565b3480156104b857600080fd5b506103c76104c7366004614065565b610f4d565b3480156104d857600080fd5b50604051601281526020016103e9565b3480156104f457600080fd5b50610434610503366004614098565b610fdd565b34801561051457600080fd5b50610499610523366004614107565b610fff565b34801561053457600080fd5b50610499610543366004614107565b61100f565b34801561055457600080fd5b506103c7610563366004614107565b61101f565b34801561057457600080fd5b506103c76105833660046140c4565b61102c565b34801561059457600080fd5b506103c76105a3366004613faa565b6112e9565b3480156105b457600080fd5b506104346105c3366004613faa565b601a6020526000908152604090205460ff1681565b3480156105e457600080fd5b50601c546105fd9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103e9565b34801561062157600080fd5b506103c76106303660046140c4565b611357565b34801561064157600080fd5b50610434610650366004613faa565b601f6020526000908152604090205460ff1681565b34801561067157600080fd5b506103c7610680366004614107565b611614565b34801561069157600080fd5b50600f546105fd906001600160a01b031681565b3480156106b157600080fd5b506103c76106c0366004614107565b611651565b3480156106d157600080fd5b506103c76106e03660046140c4565b6116eb565b3480156106f157600080fd5b50600d546105fd906001600160a01b031681565b34801561071157600080fd5b506103df610720366004613faa565b6001600160a01b031660009081526020819052604090205490565b34801561074757600080fd5b506103c76119a8565b34801561075c57600080fd5b5061043461076b366004613faa565b601e6020526000908152604090205460ff1681565b34801561078c57600080fd5b506103c761079b366004614098565b6119bc565b3480156107ac57600080fd5b506104996107bb366004614107565b6119d1565b3480156107cc57600080fd5b506018546105fd906001600160a01b031681565b3480156107ec57600080fd5b506015546105fd906001600160a01b031681565b34801561080c57600080fd5b506103df60215481565b34801561082257600080fd5b506005546001600160a01b03166105fd565b34801561084057600080fd5b506103c761084f366004613faa565b6119e1565b34801561086057600080fd5b50601d546105fd906001600160a01b031681565b34801561088057600080fd5b50610407611a48565b34801561089557600080fd5b506104996108a4366004614107565b611a57565b3480156108b557600080fd5b506103c76108c4366004613faa565b611a67565b3480156108d557600080fd5b506104346108e4366004614098565b611ace565b3480156108f557600080fd5b50610434610904366004614098565b611b49565b34801561091557600080fd5b506103df60205481565b34801561092b57600080fd5b5061049961093a366004614107565b611b57565b34801561094b57600080fd5b506103c761095a3660046140c4565b611b67565b34801561096b57600080fd5b506103c761097a366004614065565b611e24565b34801561098b57600080fd5b506103c761099a366004614065565b611e8c565b3480156109ab57600080fd5b506103c76109ba366004614107565b611eec565b3480156109cb57600080fd5b506103df6109da366004613faa565b60226020526000908152604090205481565b3480156109f857600080fd5b506011546105fd906001600160a01b031681565b348015610a1857600080fd5b506103c7610a27366004614107565b611f27565b348015610a3857600080fd5b506103c7610a47366004613faa565b611f64565b348015610a5857600080fd5b50610499610a67366004614107565b611fcb565b348015610a7857600080fd5b506103df610a87366004613feb565b611fdb565b348015610a9857600080fd5b506103c7610aa73660046140c4565b612006565b348015610ab857600080fd5b506103c7610ac73660046140c4565b6122c3565b348015610ad857600080fd5b506103c7610ae7366004613faa565b612580565b348015610af857600080fd5b506103c7610b07366004613faa565b6125e7565b348015610b1857600080fd5b506103c7610b27366004613faa565b61265d565b348015610b3857600080fd5b50610499610b47366004614107565b6126b3565b348015610b5857600080fd5b506013546105fd906001600160a01b031681565b348015610b7857600080fd5b506103df60235481565b610b8a6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152610bbb906010906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691610bf8911660006142ba565b610c0291906142ba565b610c0c91906142ba565b610c1691906142ba565b610c2091906142ba565b610c2a91906142ba565b610c3491906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692610c979291041660006142ba565b610ca191906142ba565b610cab91906142ba565b610cb591906142ba565b610cbf91906142ba565b610cc991906142ba565b610cd391906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b968790048816979587900486169694859004861695938590048416949283900484169391839004821692610d3e9291041660006142ba565b610d4891906142ba565b610d5291906142ba565b610d5c91906142ba565b610d6691906142ba565b610d7091906142ba565b610d7a91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590610dc05750601b546109c46201000090910461ffff1611155b8015610ddc5750601b546109c4600160201b90910461ffff1611155b610e015760405162461bcd60e51b8152600401610df8906141f3565b60405180910390fd5b6040805161ffff808616825280851660208301528316918101919091527fcb02d72ccbd4a1bacc8c52edc190f8e18e86d4eb2f903a44e19aea3f47d273b0906060015b60405180910390a1505050565b606060038054610e6090614350565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8c90614350565b8015610ed95780601f10610eae57610100808354040283529160200191610ed9565b820191906000526020600020905b815481529060010190602001808311610ebc57829003601f168201915b5050505050905090565b600033610ef1818585612722565b5060019392505050565b600033610f09858285612846565b610f148585856128c0565b506001949350505050565b60148160038110610f2f57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610f556126c8565b601d546001600160a01b0383811691161415610fcf5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610df8565b610fd982826134a9565b5050565b600033610ef1818585610ff08383611fdb565b610ffa91906142e0565b612722565b60108160038110610f2f57600080fd5b601b8160038110610f2f57600080fd5b611029338261351e565b50565b6110346126c8565b6040805160608101825261ffff8086168252848116602083015283169181019190915261106590600e906003613ee8565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916110a2911660006142ba565b6110ac91906142ba565b6110b691906142ba565b6110c091906142ba565b6110ca91906142ba565b6110d491906142ba565b6110de91906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926111419291041660006142ba565b61114b91906142ba565b61115591906142ba565b61115f91906142ba565b61116991906142ba565b61117391906142ba565b61117d91906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926111e89291041660006142ba565b6111f291906142ba565b6111fc91906142ba565b61120691906142ba565b61121091906142ba565b61121a91906142ba565b61122491906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c490831691909216171180159061126a5750601b546109c46201000090910461ffff1611155b80156112865750601b546109c4600160201b90910461ffff1611155b6112a25760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f7fd735ce1d9ce9c7092f8fe08f4ac9efbadb4b277656d047f90df0c2e188b0ee90606001610e44565b6112f16126c8565b601380546001600160a01b0319166001600160a01b038316179055611317816001611e24565b6040516001600160a01b03821681527f68adcd98055e26e06910e4ca2f4576b804704ae7e06ee71654957fad430cb7ad906020015b60405180910390a150565b61135f6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611390906012906003613ee8565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916113cd911660006142ba565b6113d791906142ba565b6113e191906142ba565b6113eb91906142ba565b6113f591906142ba565b6113ff91906142ba565b61140991906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169261146c9291041660006142ba565b61147691906142ba565b61148091906142ba565b61148a91906142ba565b61149491906142ba565b61149e91906142ba565b6114a891906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926115139291041660006142ba565b61151d91906142ba565b61152791906142ba565b61153191906142ba565b61153b91906142ba565b61154591906142ba565b61154f91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906115955750601b546109c46201000090910461ffff1611155b80156115b15750601b546109c4600160201b90910461ffff1611155b6115cd5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527fbe0ab82149b2579e200d3f5d88969e612078da3dbadede862073f5fc7599747f90606001610e44565b61161c6126c8565b60218190556040518181527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161134c565b6116596126c8565b62093a808111156116b65760405162461bcd60e51b815260206004820152602160248201527f416e7469626f743a20547261646520636f6f6c646f776e20746f6f206c6f6e676044820152601760f91b6064820152608401610df8565b60238190556040518181527f07583f92fee444c67f59bbc03e68bfda63fc2e087769ccc4f2b40360336a54679060200161134c565b6116f36126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611724906017906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691611761911660006142ba565b61176b91906142ba565b61177591906142ba565b61177f91906142ba565b61178991906142ba565b61179391906142ba565b61179d91906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926118009291041660006142ba565b61180a91906142ba565b61181491906142ba565b61181e91906142ba565b61182891906142ba565b61183291906142ba565b61183c91906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926118a79291041660006142ba565b6118b191906142ba565b6118bb91906142ba565b6118c591906142ba565b6118cf91906142ba565b6118d991906142ba565b6118e391906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906119295750601b546109c46201000090910461ffff1611155b80156119455750601b546109c4600160201b90910461ffff1611155b6119615760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c890606001610e44565b6119b06126c8565b6119ba6000613663565b565b6119c7823383612846565b610fd9828261351e565b600e8160038110610f2f57600080fd5b6119e96126c8565b600f80546001600160a01b0319166001600160a01b038316179055611a0f816001611e24565b6040516001600160a01b03821681527f997cd196d32939f53a97d1ae211358ed10f6fbd87804ff19a0a6ab048af6927c9060200161134c565b606060048054610e6090614350565b60198160038110610f2f57600080fd5b611a6f6126c8565b601180546001600160a01b0319166001600160a01b038316179055611a95816001611e24565b6040516001600160a01b03821681527f3eaeac26153f7bfa536e87a54d6ea7d8110b59023b8054d9e4187a5c1faa79c79060200161134c565b60003381611adc8286611fdb565b905083811015611b3c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610df8565b610f148286868403612722565b600033610ef18185856128c0565b60168160038110610f2f57600080fd5b611b6f6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611ba0906014906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691611bdd911660006142ba565b611be791906142ba565b611bf191906142ba565b611bfb91906142ba565b611c0591906142ba565b611c0f91906142ba565b611c1991906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692611c7c9291041660006142ba565b611c8691906142ba565b611c9091906142ba565b611c9a91906142ba565b611ca491906142ba565b611cae91906142ba565b611cb891906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b968790048816979587900486169694859004861695938590048416949283900484169391839004821692611d239291041660006142ba565b611d2d91906142ba565b611d3791906142ba565b611d4191906142ba565b611d4b91906142ba565b611d5591906142ba565b611d5f91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611da55750601b546109c46201000090910461ffff1611155b8015611dc15750601b546109c4600160201b90910461ffff1611155b611ddd5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f6e4891da8a55ec9a654df0d9df0b49aff2027ada32b3ba3fdbf9d65e900accd390606001610e44565b611e2c6126c8565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611e946126c8565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611e80565b611ef46126c8565b60208181556040518281527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001910161134c565b611f2f6126c8565b60068190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd064769060200161134c565b611f6c6126c8565b600d80546001600160a01b0319166001600160a01b038316179055611f92816001611e24565b6040516001600160a01b03821681527f1bc982389b598218d8b35a4e32ccf01ef8a747487c46fba7be8016ce977d6f3a9060200161134c565b60128160038110610f2f57600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61200e6126c8565b6040805160608101825261ffff8086168252848116602083015283169181019190915261203f906019906003613ee8565b50601954601754601654601454601254601054600e5461ffff96871696958616959485169493841693928316929182169161207c911660006142ba565b61208691906142ba565b61209091906142ba565b61209a91906142ba565b6120a491906142ba565b6120ae91906142ba565b6120b891906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169261211b9291041660006142ba565b61212591906142ba565b61212f91906142ba565b61213991906142ba565b61214391906142ba565b61214d91906142ba565b61215791906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926121c29291041660006142ba565b6121cc91906142ba565b6121d691906142ba565b6121e091906142ba565b6121ea91906142ba565b6121f491906142ba565b6121fe91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906122445750601b546109c46201000090910461ffff1611155b80156122605750601b546109c4600160201b90910461ffff1611155b61227c5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610e44565b6122cb6126c8565b6040805160608101825261ffff808616825284811660208301528316918101919091526122fc906016906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691612339911660006142ba565b61234391906142ba565b61234d91906142ba565b61235791906142ba565b61236191906142ba565b61236b91906142ba565b61237591906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926123d89291041660006142ba565b6123e291906142ba565b6123ec91906142ba565b6123f691906142ba565b61240091906142ba565b61240a91906142ba565b61241491906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b96879004881697958790048616969485900486169593859004841694928390048416939183900482169261247f9291041660006142ba565b61248991906142ba565b61249391906142ba565b61249d91906142ba565b6124a791906142ba565b6124b191906142ba565b6124bb91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906125015750601b546109c46201000090910461ffff1611155b801561251d5750601b546109c4600160201b90910461ffff1611155b6125395760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527ffb7efd7da050f885931226c17601f8801c911e64c7b4858ed93705618ef709c490606001610e44565b6125886126c8565b601580546001600160a01b0319166001600160a01b0383161790556125ae816001611e24565b6040516001600160a01b03821681527fae2a5a7a102a165faa3ab63d4b48ff7941a2d8381731dde7a8195c91a8b1482e9060200161134c565b6125ef6126c8565b6001600160a01b0381166126545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610df8565b61102981613663565b6126656126c8565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f9060200161134c565b60178160038110610f2f57600080fd5b505050565b6005546001600160a01b031633146119ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610df8565b6001600160a01b0383166127845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610df8565b6001600160a01b0382166127e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610df8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006128528484611fdb565b905060001981146128ba57818110156128ad5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610df8565b6128ba8484848403612722565b50505050565b6000600654600c54600b54600a5460095460085460075460006128e391906142e0565b6128ed91906142e0565b6128f791906142e0565b61290191906142e0565b61290b91906142e0565b61291591906142e0565b601c54911115915060ff1615801561294657506001600160a01b0384166000908152601e602052604090205460ff16155b801561294f5750805b15612e9757601c805460ff191660011790556000600754118061297457506000600854115b8061298157506000600954115b8061298e57506000600a54115b8061299b57506000600b54115b15612e72576000600b54600a5460095460085460075460006129bd91906142e0565b6129c791906142e0565b6129d191906142e0565b6129db91906142e0565b6129e591906142e0565b905060006129f2826136b5565b60075447906000908490612a06908461431a565b612a1091906142f8565b90508015612ad457600d546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612a65576040519150601f19603f3d011682016040523d82523d6000602084013e612a6a565b606091505b50508093505082612a8d5760405162461bcd60e51b8152600401610df8906141a3565b600d54604080516001600160a01b039092168252602082018390527ff4d2ba4032a649e929b26768ec616dc56d14d93785891eee31989851d91f5895910160405180910390a15b600060078190556008548590612aea908561431a565b612af491906142f8565b90508015612bb857600f546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612b49576040519150601f19603f3d011682016040523d82523d6000602084013e612b4e565b606091505b50508094505083612b715760405162461bcd60e51b8152600401610df8906141a3565b600f54604080516001600160a01b039092168252602082018390527fe572dbd759b8cfc696b876c781cb9702a2a95019fcb1f6b97424ddc4cb124eca910160405180910390a15b600060088190556009548690612bce908661431a565b612bd891906142f8565b90508015612c9c576011546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b50508095505084612c555760405162461bcd60e51b8152600401610df8906141a3565b601154604080516001600160a01b039092168252602082018390527f742d7ff2729b54b9a1d5c0934c8a46f61d69bc5a026e1bd6fd9ecfebeb2dc954910160405180910390a15b60006009819055600a548790612cb2908761431a565b612cbc91906142f8565b90508015612d80576013546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612d11576040519150601f19603f3d011682016040523d82523d6000602084013e612d16565b606091505b50508096505085612d395760405162461bcd60e51b8152600401610df8906141a3565b601354604080516001600160a01b039092168252602082018390527fccbbc05a74fd4d96df86d1d01728156e12afe2d49142a12d3a75af177257656b910160405180910390a15b6000600a819055600b548890612d96908861431a565b612da091906142f8565b90508015612e64576015546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612df5576040519150601f19603f3d011682016040523d82523d6000602084013e612dfa565b606091505b50508097505086612e1d5760405162461bcd60e51b8152600401610df8906141a3565b601554604080516001600160a01b039092168252602082018390527f0b3c5e87c23545b437348b1beb5aa530b7acc05d586323f765e761926bbf6ff9910160405180910390a15b50506000600b555050505050505b600a600c541115612e8c57612e88600c54613841565b600c555b601c805460ff191690555b601c5460ff16158015612eaa5750600082115b8015612ec95750601c546001600160a01b038481166101009092041614155b8015612eee57506001600160a01b0384166000908152601a602052604090205460ff16155b8015612f1357506001600160a01b0383166000908152601a602052604090205460ff16155b1561349e576001600160a01b0384166000908152601e602052604081205460039060ff1615612f5157601b5461ffff1615612f4c575060005b612fa3565b6001600160a01b0385166000908152601e602052604090205460ff1615612f8c57601b5462010000900461ffff1615612f4c57506001612fa3565b601b54600160201b900461ffff1615612fa3575060025b60038160ff16101561348a576000612710601b8360ff1660038110612fca57612fca6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1686612ff3919061431a565b612ffd91906142f8565b92506130098386614339565b9450601b8260ff1660038110613021576130216143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8360ff1660038110613055576130556143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461307e919061431a565b61308891906142f8565b6007600082825461309991906142e0565b90915550601b905060ff8316600381106130b5576130b56143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660108360ff16600381106130e9576130e96143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1684613112919061431a565b61311c91906142f8565b6008600082825461312d91906142e0565b90915550601b905060ff831660038110613149576131496143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660128360ff166003811061317d5761317d6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16846131a6919061431a565b6131b091906142f8565b600960008282546131c191906142e0565b90915550601b905060ff8316600381106131dd576131dd6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660148360ff1660038110613211576132116143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461323a919061431a565b61324491906142f8565b600a600082825461325591906142e0565b90915550601b905060ff831660038110613271576132716143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660168360ff16600381106132a5576132a56143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16846132ce919061431a565b6132d891906142f8565b600b60008282546132e991906142e0565b9091555060009050601760ff841660038110613307576133076143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1611156133e857601b8260ff1660038110613341576133416143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660178360ff1660038110613375576133756143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461339e919061431a565b6133a891906142f8565b90506133b4878261351e565b6040518181527f7c76b725c3bdd88cc239c1cbdc4c37e260fc0650dd4784ce22d4fbd64d98c4d99060200160405180910390a15b601b8260ff16600381106133fe576133fe6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660198360ff1660038110613432576134326143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461345b919061431a565b61346591906142f8565b600c600082825461347691906142e0565b9091555061348690508184614339565b9250505b811561349b5761349b8630846138e5565b50505b6128ba8484846138e5565b6001600160a01b0382166000908152601e60205260409020805460ff191682158015919091179091556134e1576134e1826001611e8c565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611e80911515815260200190565b6001600160a01b03821661357e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610df8565b61358a82600083613a9a565b6001600160a01b038216600090815260208190526040902054818110156135fe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610df8565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36126c383600084613ca3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106136ea576136ea6143a1565b60200260200101906001600160a01b031690816001600160a01b031681525050601c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561375857600080fd5b505afa15801561376c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137909190613fce565b816001815181106137a3576137a36143a1565b6001600160a01b039283166020918202929092010152601c546137ce91309161010090041684612722565b601c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061380b908590600090869030904290600401614249565b600060405180830381600087803b15801561382557600080fd5b505af1158015613839573d6000803e3d6000fd5b505050505050565b60008061384f6002846142f8565b9050600061385d8285614339565b9050613868826136b5565b4780156138dd57600080600061387e8585613e0d565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a16138d18386614339565b98975050505050505050565b509392505050565b6001600160a01b0383166139495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610df8565b6001600160a01b0382166139ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610df8565b6139b6838383613a9a565b6001600160a01b03831660009081526020819052604090205481811015613a2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610df8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36128ba848484613ca3565b6001600160a01b0382166000908152601e602052604090205460ff168015613adb57506001600160a01b0383166000908152601f602052604090205460ff16155b15613b3e57602154811115613b3e5760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610df8565b6001600160a01b0383166000908152601f602052604090205460ff16613bef576023546001600160a01b0384166000908152602260205260409020544291613b85916142e0565b1115613bef5760405162461bcd60e51b815260206004820152603360248201527f416e7469626f743a205472616e73616374696f6e2073656e6465722069732069604482015272371030b73a3496b137ba1031b7b7b63237bbb760691b6064820152608401610df8565b6001600160a01b0382166000908152601f602052604090205460ff166126c3576023546001600160a01b0383166000908152602260205260409020544291613c36916142e0565b11156126c35760405162461bcd60e51b815260206004820152603660248201527f416e7469626f743a205472616e73616374696f6e20726563697069656e742069604482015275399034b71030b73a3496b137ba1031b7b7b63237bbb760511b6064820152608401610df8565b6001600160a01b0382166000908152601f602052604090205460ff16613d4557602054613ce5836001600160a01b031660009081526020819052604090205490565b1115613d455760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610df8565b6001600160a01b0383166000908152601e602052604090205460ff168015613d8657506001600160a01b0382166000908152601f602052604090205460ff16155b15613da957506001600160a01b0316600090815260226020526040902042905550565b6001600160a01b0382166000908152601e602052604090205460ff168015613dea57506001600160a01b0383166000908152601f602052604090205460ff16155b156126c35750506001600160a01b03166000908152602260205260409020429055565b6000806000613e3230601c60019054906101000a90046001600160a01b031687612722565b601c5460185460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c4016060604051808303818588803b158015613ea257600080fd5b505af1158015613eb6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613edb9190614120565b9250925092509250925092565b600183019183908215613f6e5791602002820160005b83821115613f3e57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613efe565b8015613f6c5782816101000a81549061ffff0219169055600201602081600101049283019260010302613f3e565b505b50613f7a929150613f7e565b5090565b5b80821115613f7a5760008155600101613f7f565b803561ffff81168114613fa557600080fd5b919050565b600060208284031215613fbc57600080fd5b8135613fc7816143b7565b9392505050565b600060208284031215613fe057600080fd5b8151613fc7816143b7565b60008060408385031215613ffe57600080fd5b8235614009816143b7565b91506020830135614019816143b7565b809150509250929050565b60008060006060848603121561403957600080fd5b8335614044816143b7565b92506020840135614054816143b7565b929592945050506040919091013590565b6000806040838503121561407857600080fd5b8235614083816143b7565b91506020830135801515811461401957600080fd5b600080604083850312156140ab57600080fd5b82356140b6816143b7565b946020939093013593505050565b6000806000606084860312156140d957600080fd5b6140e284613f93565b92506140f060208501613f93565b91506140fe60408501613f93565b90509250925092565b60006020828403121561411957600080fd5b5035919050565b60008060006060848603121561413557600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b8181101561417b5785810183015185820160400152820161415f565b8181111561418d576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526030908201527f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560408201526f32903a3930b739b332b91032b93937b960811b606082015260800190565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156142995784516001600160a01b031683529383019391830191600101614274565b50506001600160a01b03969096166060850152505050608001529392505050565b600061ffff8083168185168083038211156142d7576142d761438b565b01949350505050565b600082198211156142f3576142f361438b565b500190565b60008261431557634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156143345761433461438b565b500290565b60008282101561434b5761434b61438b565b500390565b600181811c9082168061436457607f821691505b6020821081141561438557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461102957600080fdfea26469706673582212204efd9bad1832c30d26e2b7f78c77817b6e7291520ddcb784e718e9cb5ef0b07464736f6c63430008070033546178657344656661756c74526f757465723a2043616e6e6f7420657863656564206d617820746f74616c20666565206f662032352500000000000000000000

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806381610dcd116101dc578063c18bc19511610102578063e6268158116100a0578063f3bf087e1161006f578063f3bf087e14610b0c578063f7dcdcce14610b2c578063fa61cd0214610b4c578063fd11601914610b6c57600080fd5b8063e626815814610a8c578063e7b2e25f14610aac578063f0b4b2db14610acc578063f2fde38b14610aec57600080fd5b8063cc274b29116100dc578063cc274b2914610a0c578063d56d916614610a2c578063d8ed1e4f14610a4c578063dd62ed3e14610a6c57600080fd5b8063c18bc1951461099f578063c26d7be0146109bf578063c5a31225146109ec57600080fd5b8063a14b2f181161017a578063b99937aa11610149578063b99937aa1461091f578063be25b3d41461093f578063c02466681461095f578063c0a904a21461097f57600080fd5b8063a14b2f18146108a9578063a457c2d7146108c9578063a9059cbb146108e9578063aa4bde281461090957600080fd5b80638eeca6d9116101b65780638eeca6d9146108345780638fffabed1461085457806395d89b4114610874578063966b53c41461088957600080fd5b806381610dcd146107e05780638c0b5e22146108005780638da5cb5b1461081657600080fd5b80634fbee193116102c15780636c9e28aa1161025f578063768565571161022e578063768565571461075057806379cc6790146107805780637ad16d35146107a05780638089dbfd146107c057600080fd5b80636c9e28aa146106c5578063703054ce146106e557806370a0823114610705578063715018a61461073b57600080fd5b80635cce86cd1161029b5780635cce86cd146106355780636256d18114610665578063686003c6146106855780636a3e8f3d146106a557600080fd5b80634fbee193146105a8578063502f7446146105d8578063552ea78f1461061557600080fd5b80632d99d32e11610339578063408ccbdf11610308578063408ccbdf1461052857806342966c681461054857806346d58f2a146105685780634c8a55dc1461058857600080fd5b80632d99d32e146104ac578063313ce567146104cc57806339509351146104e85780633a863d011461050857600080fd5b8063095ea7b311610375578063095ea7b31461041457806318160ddd1461044457806323b872dd146104595780632b7bd4cc1461047957600080fd5b806301d6d6c1146103a75780630445b667146103c957806306fdde03146103f257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c23660046140c4565b610b82565b005b3480156103d557600080fd5b506103df60065481565b6040519081526020015b60405180910390f35b3480156103fe57600080fd5b50610407610e51565b6040516103e9919061414e565b34801561042057600080fd5b5061043461042f366004614098565b610ee3565b60405190151581526020016103e9565b34801561045057600080fd5b506002546103df565b34801561046557600080fd5b50610434610474366004614024565b610efb565b34801561048557600080fd5b50610499610494366004614107565b610f1f565b60405161ffff90911681526020016103e9565b3480156104b857600080fd5b506103c76104c7366004614065565b610f4d565b3480156104d857600080fd5b50604051601281526020016103e9565b3480156104f457600080fd5b50610434610503366004614098565b610fdd565b34801561051457600080fd5b50610499610523366004614107565b610fff565b34801561053457600080fd5b50610499610543366004614107565b61100f565b34801561055457600080fd5b506103c7610563366004614107565b61101f565b34801561057457600080fd5b506103c76105833660046140c4565b61102c565b34801561059457600080fd5b506103c76105a3366004613faa565b6112e9565b3480156105b457600080fd5b506104346105c3366004613faa565b601a6020526000908152604090205460ff1681565b3480156105e457600080fd5b50601c546105fd9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103e9565b34801561062157600080fd5b506103c76106303660046140c4565b611357565b34801561064157600080fd5b50610434610650366004613faa565b601f6020526000908152604090205460ff1681565b34801561067157600080fd5b506103c7610680366004614107565b611614565b34801561069157600080fd5b50600f546105fd906001600160a01b031681565b3480156106b157600080fd5b506103c76106c0366004614107565b611651565b3480156106d157600080fd5b506103c76106e03660046140c4565b6116eb565b3480156106f157600080fd5b50600d546105fd906001600160a01b031681565b34801561071157600080fd5b506103df610720366004613faa565b6001600160a01b031660009081526020819052604090205490565b34801561074757600080fd5b506103c76119a8565b34801561075c57600080fd5b5061043461076b366004613faa565b601e6020526000908152604090205460ff1681565b34801561078c57600080fd5b506103c761079b366004614098565b6119bc565b3480156107ac57600080fd5b506104996107bb366004614107565b6119d1565b3480156107cc57600080fd5b506018546105fd906001600160a01b031681565b3480156107ec57600080fd5b506015546105fd906001600160a01b031681565b34801561080c57600080fd5b506103df60215481565b34801561082257600080fd5b506005546001600160a01b03166105fd565b34801561084057600080fd5b506103c761084f366004613faa565b6119e1565b34801561086057600080fd5b50601d546105fd906001600160a01b031681565b34801561088057600080fd5b50610407611a48565b34801561089557600080fd5b506104996108a4366004614107565b611a57565b3480156108b557600080fd5b506103c76108c4366004613faa565b611a67565b3480156108d557600080fd5b506104346108e4366004614098565b611ace565b3480156108f557600080fd5b50610434610904366004614098565b611b49565b34801561091557600080fd5b506103df60205481565b34801561092b57600080fd5b5061049961093a366004614107565b611b57565b34801561094b57600080fd5b506103c761095a3660046140c4565b611b67565b34801561096b57600080fd5b506103c761097a366004614065565b611e24565b34801561098b57600080fd5b506103c761099a366004614065565b611e8c565b3480156109ab57600080fd5b506103c76109ba366004614107565b611eec565b3480156109cb57600080fd5b506103df6109da366004613faa565b60226020526000908152604090205481565b3480156109f857600080fd5b506011546105fd906001600160a01b031681565b348015610a1857600080fd5b506103c7610a27366004614107565b611f27565b348015610a3857600080fd5b506103c7610a47366004613faa565b611f64565b348015610a5857600080fd5b50610499610a67366004614107565b611fcb565b348015610a7857600080fd5b506103df610a87366004613feb565b611fdb565b348015610a9857600080fd5b506103c7610aa73660046140c4565b612006565b348015610ab857600080fd5b506103c7610ac73660046140c4565b6122c3565b348015610ad857600080fd5b506103c7610ae7366004613faa565b612580565b348015610af857600080fd5b506103c7610b07366004613faa565b6125e7565b348015610b1857600080fd5b506103c7610b27366004613faa565b61265d565b348015610b3857600080fd5b50610499610b47366004614107565b6126b3565b348015610b5857600080fd5b506013546105fd906001600160a01b031681565b348015610b7857600080fd5b506103df60235481565b610b8a6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152610bbb906010906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691610bf8911660006142ba565b610c0291906142ba565b610c0c91906142ba565b610c1691906142ba565b610c2091906142ba565b610c2a91906142ba565b610c3491906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692610c979291041660006142ba565b610ca191906142ba565b610cab91906142ba565b610cb591906142ba565b610cbf91906142ba565b610cc991906142ba565b610cd391906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b968790048816979587900486169694859004861695938590048416949283900484169391839004821692610d3e9291041660006142ba565b610d4891906142ba565b610d5291906142ba565b610d5c91906142ba565b610d6691906142ba565b610d7091906142ba565b610d7a91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590610dc05750601b546109c46201000090910461ffff1611155b8015610ddc5750601b546109c4600160201b90910461ffff1611155b610e015760405162461bcd60e51b8152600401610df8906141f3565b60405180910390fd5b6040805161ffff808616825280851660208301528316918101919091527fcb02d72ccbd4a1bacc8c52edc190f8e18e86d4eb2f903a44e19aea3f47d273b0906060015b60405180910390a1505050565b606060038054610e6090614350565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8c90614350565b8015610ed95780601f10610eae57610100808354040283529160200191610ed9565b820191906000526020600020905b815481529060010190602001808311610ebc57829003601f168201915b5050505050905090565b600033610ef1818585612722565b5060019392505050565b600033610f09858285612846565b610f148585856128c0565b506001949350505050565b60148160038110610f2f57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610f556126c8565b601d546001600160a01b0383811691161415610fcf5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610df8565b610fd982826134a9565b5050565b600033610ef1818585610ff08383611fdb565b610ffa91906142e0565b612722565b60108160038110610f2f57600080fd5b601b8160038110610f2f57600080fd5b611029338261351e565b50565b6110346126c8565b6040805160608101825261ffff8086168252848116602083015283169181019190915261106590600e906003613ee8565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916110a2911660006142ba565b6110ac91906142ba565b6110b691906142ba565b6110c091906142ba565b6110ca91906142ba565b6110d491906142ba565b6110de91906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926111419291041660006142ba565b61114b91906142ba565b61115591906142ba565b61115f91906142ba565b61116991906142ba565b61117391906142ba565b61117d91906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926111e89291041660006142ba565b6111f291906142ba565b6111fc91906142ba565b61120691906142ba565b61121091906142ba565b61121a91906142ba565b61122491906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c490831691909216171180159061126a5750601b546109c46201000090910461ffff1611155b80156112865750601b546109c4600160201b90910461ffff1611155b6112a25760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f7fd735ce1d9ce9c7092f8fe08f4ac9efbadb4b277656d047f90df0c2e188b0ee90606001610e44565b6112f16126c8565b601380546001600160a01b0319166001600160a01b038316179055611317816001611e24565b6040516001600160a01b03821681527f68adcd98055e26e06910e4ca2f4576b804704ae7e06ee71654957fad430cb7ad906020015b60405180910390a150565b61135f6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611390906012906003613ee8565b50601954601754601654601454601254601054600e5461ffff9687169695861695948516949384169392831692918216916113cd911660006142ba565b6113d791906142ba565b6113e191906142ba565b6113eb91906142ba565b6113f591906142ba565b6113ff91906142ba565b61140991906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169261146c9291041660006142ba565b61147691906142ba565b61148091906142ba565b61148a91906142ba565b61149491906142ba565b61149e91906142ba565b6114a891906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926115139291041660006142ba565b61151d91906142ba565b61152791906142ba565b61153191906142ba565b61153b91906142ba565b61154591906142ba565b61154f91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906115955750601b546109c46201000090910461ffff1611155b80156115b15750601b546109c4600160201b90910461ffff1611155b6115cd5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527fbe0ab82149b2579e200d3f5d88969e612078da3dbadede862073f5fc7599747f90606001610e44565b61161c6126c8565b60218190556040518181527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161134c565b6116596126c8565b62093a808111156116b65760405162461bcd60e51b815260206004820152602160248201527f416e7469626f743a20547261646520636f6f6c646f776e20746f6f206c6f6e676044820152601760f91b6064820152608401610df8565b60238190556040518181527f07583f92fee444c67f59bbc03e68bfda63fc2e087769ccc4f2b40360336a54679060200161134c565b6116f36126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611724906017906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691611761911660006142ba565b61176b91906142ba565b61177591906142ba565b61177f91906142ba565b61178991906142ba565b61179391906142ba565b61179d91906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926118009291041660006142ba565b61180a91906142ba565b61181491906142ba565b61181e91906142ba565b61182891906142ba565b61183291906142ba565b61183c91906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926118a79291041660006142ba565b6118b191906142ba565b6118bb91906142ba565b6118c591906142ba565b6118cf91906142ba565b6118d991906142ba565b6118e391906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906119295750601b546109c46201000090910461ffff1611155b80156119455750601b546109c4600160201b90910461ffff1611155b6119615760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c890606001610e44565b6119b06126c8565b6119ba6000613663565b565b6119c7823383612846565b610fd9828261351e565b600e8160038110610f2f57600080fd5b6119e96126c8565b600f80546001600160a01b0319166001600160a01b038316179055611a0f816001611e24565b6040516001600160a01b03821681527f997cd196d32939f53a97d1ae211358ed10f6fbd87804ff19a0a6ab048af6927c9060200161134c565b606060048054610e6090614350565b60198160038110610f2f57600080fd5b611a6f6126c8565b601180546001600160a01b0319166001600160a01b038316179055611a95816001611e24565b6040516001600160a01b03821681527f3eaeac26153f7bfa536e87a54d6ea7d8110b59023b8054d9e4187a5c1faa79c79060200161134c565b60003381611adc8286611fdb565b905083811015611b3c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610df8565b610f148286868403612722565b600033610ef18185856128c0565b60168160038110610f2f57600080fd5b611b6f6126c8565b6040805160608101825261ffff80861682528481166020830152831691810191909152611ba0906014906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691611bdd911660006142ba565b611be791906142ba565b611bf191906142ba565b611bfb91906142ba565b611c0591906142ba565b611c0f91906142ba565b611c1991906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e5462010000968790048816979587900486169694859004861695938590048416949283900484169391839004821692611c7c9291041660006142ba565b611c8691906142ba565b611c9091906142ba565b611c9a91906142ba565b611ca491906142ba565b611cae91906142ba565b611cb891906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b968790048816979587900486169694859004861695938590048416949283900484169391839004821692611d239291041660006142ba565b611d2d91906142ba565b611d3791906142ba565b611d4191906142ba565b611d4b91906142ba565b611d5591906142ba565b611d5f91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611da55750601b546109c46201000090910461ffff1611155b8015611dc15750601b546109c4600160201b90910461ffff1611155b611ddd5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f6e4891da8a55ec9a654df0d9df0b49aff2027ada32b3ba3fdbf9d65e900accd390606001610e44565b611e2c6126c8565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611e946126c8565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611e80565b611ef46126c8565b60208181556040518281527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001910161134c565b611f2f6126c8565b60068190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd064769060200161134c565b611f6c6126c8565b600d80546001600160a01b0319166001600160a01b038316179055611f92816001611e24565b6040516001600160a01b03821681527f1bc982389b598218d8b35a4e32ccf01ef8a747487c46fba7be8016ce977d6f3a9060200161134c565b60128160038110610f2f57600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61200e6126c8565b6040805160608101825261ffff8086168252848116602083015283169181019190915261203f906019906003613ee8565b50601954601754601654601454601254601054600e5461ffff96871696958616959485169493841693928316929182169161207c911660006142ba565b61208691906142ba565b61209091906142ba565b61209a91906142ba565b6120a491906142ba565b6120ae91906142ba565b6120b891906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e546201000096879004881697958790048616969485900486169593859004841694928390048416939183900482169261211b9291041660006142ba565b61212591906142ba565b61212f91906142ba565b61213991906142ba565b61214391906142ba565b61214d91906142ba565b61215791906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b9687900488169795879004861696948590048616959385900484169492839004841693918390048216926121c29291041660006142ba565b6121cc91906142ba565b6121d691906142ba565b6121e091906142ba565b6121ea91906142ba565b6121f491906142ba565b6121fe91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906122445750601b546109c46201000090910461ffff1611155b80156122605750601b546109c4600160201b90910461ffff1611155b61227c5760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610e44565b6122cb6126c8565b6040805160608101825261ffff808616825284811660208301528316918101919091526122fc906016906003613ee8565b50601954601754601654601454601254601054600e5461ffff968716969586169594851694938416939283169291821691612339911660006142ba565b61234391906142ba565b61234d91906142ba565b61235791906142ba565b61236191906142ba565b61236b91906142ba565b61237591906142ba565b601b805461ffff191661ffff928316179055601954601754601654601454601254601054600e54620100009687900488169795879004861696948590048616959385900484169492839004841693918390048216926123d89291041660006142ba565b6123e291906142ba565b6123ec91906142ba565b6123f691906142ba565b61240091906142ba565b61240a91906142ba565b61241491906142ba565b601b805463ffff000019166201000061ffff93841602179055601954601754601654601454601254601054600e54600160201b96879004881697958790048616969485900486169593859004841694928390048416939183900482169261247f9291041660006142ba565b61248991906142ba565b61249391906142ba565b61249d91906142ba565b6124a791906142ba565b6124b191906142ba565b6124bb91906142ba565b601b805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906125015750601b546109c46201000090910461ffff1611155b801561251d5750601b546109c4600160201b90910461ffff1611155b6125395760405162461bcd60e51b8152600401610df8906141f3565b6040805161ffff808616825280851660208301528316918101919091527ffb7efd7da050f885931226c17601f8801c911e64c7b4858ed93705618ef709c490606001610e44565b6125886126c8565b601580546001600160a01b0319166001600160a01b0383161790556125ae816001611e24565b6040516001600160a01b03821681527fae2a5a7a102a165faa3ab63d4b48ff7941a2d8381731dde7a8195c91a8b1482e9060200161134c565b6125ef6126c8565b6001600160a01b0381166126545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610df8565b61102981613663565b6126656126c8565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f9060200161134c565b60178160038110610f2f57600080fd5b505050565b6005546001600160a01b031633146119ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610df8565b6001600160a01b0383166127845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610df8565b6001600160a01b0382166127e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610df8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006128528484611fdb565b905060001981146128ba57818110156128ad5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610df8565b6128ba8484848403612722565b50505050565b6000600654600c54600b54600a5460095460085460075460006128e391906142e0565b6128ed91906142e0565b6128f791906142e0565b61290191906142e0565b61290b91906142e0565b61291591906142e0565b601c54911115915060ff1615801561294657506001600160a01b0384166000908152601e602052604090205460ff16155b801561294f5750805b15612e9757601c805460ff191660011790556000600754118061297457506000600854115b8061298157506000600954115b8061298e57506000600a54115b8061299b57506000600b54115b15612e72576000600b54600a5460095460085460075460006129bd91906142e0565b6129c791906142e0565b6129d191906142e0565b6129db91906142e0565b6129e591906142e0565b905060006129f2826136b5565b60075447906000908490612a06908461431a565b612a1091906142f8565b90508015612ad457600d546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612a65576040519150601f19603f3d011682016040523d82523d6000602084013e612a6a565b606091505b50508093505082612a8d5760405162461bcd60e51b8152600401610df8906141a3565b600d54604080516001600160a01b039092168252602082018390527ff4d2ba4032a649e929b26768ec616dc56d14d93785891eee31989851d91f5895910160405180910390a15b600060078190556008548590612aea908561431a565b612af491906142f8565b90508015612bb857600f546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612b49576040519150601f19603f3d011682016040523d82523d6000602084013e612b4e565b606091505b50508094505083612b715760405162461bcd60e51b8152600401610df8906141a3565b600f54604080516001600160a01b039092168252602082018390527fe572dbd759b8cfc696b876c781cb9702a2a95019fcb1f6b97424ddc4cb124eca910160405180910390a15b600060088190556009548690612bce908661431a565b612bd891906142f8565b90508015612c9c576011546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b50508095505084612c555760405162461bcd60e51b8152600401610df8906141a3565b601154604080516001600160a01b039092168252602082018390527f742d7ff2729b54b9a1d5c0934c8a46f61d69bc5a026e1bd6fd9ecfebeb2dc954910160405180910390a15b60006009819055600a548790612cb2908761431a565b612cbc91906142f8565b90508015612d80576013546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612d11576040519150601f19603f3d011682016040523d82523d6000602084013e612d16565b606091505b50508096505085612d395760405162461bcd60e51b8152600401610df8906141a3565b601354604080516001600160a01b039092168252602082018390527fccbbc05a74fd4d96df86d1d01728156e12afe2d49142a12d3a75af177257656b910160405180910390a15b6000600a819055600b548890612d96908861431a565b612da091906142f8565b90508015612e64576015546040516001600160a01b03909116908290600081818185875af1925050503d8060008114612df5576040519150601f19603f3d011682016040523d82523d6000602084013e612dfa565b606091505b50508097505086612e1d5760405162461bcd60e51b8152600401610df8906141a3565b601554604080516001600160a01b039092168252602082018390527f0b3c5e87c23545b437348b1beb5aa530b7acc05d586323f765e761926bbf6ff9910160405180910390a15b50506000600b555050505050505b600a600c541115612e8c57612e88600c54613841565b600c555b601c805460ff191690555b601c5460ff16158015612eaa5750600082115b8015612ec95750601c546001600160a01b038481166101009092041614155b8015612eee57506001600160a01b0384166000908152601a602052604090205460ff16155b8015612f1357506001600160a01b0383166000908152601a602052604090205460ff16155b1561349e576001600160a01b0384166000908152601e602052604081205460039060ff1615612f5157601b5461ffff1615612f4c575060005b612fa3565b6001600160a01b0385166000908152601e602052604090205460ff1615612f8c57601b5462010000900461ffff1615612f4c57506001612fa3565b601b54600160201b900461ffff1615612fa3575060025b60038160ff16101561348a576000612710601b8360ff1660038110612fca57612fca6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1686612ff3919061431a565b612ffd91906142f8565b92506130098386614339565b9450601b8260ff1660038110613021576130216143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8360ff1660038110613055576130556143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461307e919061431a565b61308891906142f8565b6007600082825461309991906142e0565b90915550601b905060ff8316600381106130b5576130b56143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660108360ff16600381106130e9576130e96143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1684613112919061431a565b61311c91906142f8565b6008600082825461312d91906142e0565b90915550601b905060ff831660038110613149576131496143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660128360ff166003811061317d5761317d6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16846131a6919061431a565b6131b091906142f8565b600960008282546131c191906142e0565b90915550601b905060ff8316600381106131dd576131dd6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660148360ff1660038110613211576132116143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461323a919061431a565b61324491906142f8565b600a600082825461325591906142e0565b90915550601b905060ff831660038110613271576132716143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660168360ff16600381106132a5576132a56143a1565b601091828204019190066002029054906101000a900461ffff1661ffff16846132ce919061431a565b6132d891906142f8565b600b60008282546132e991906142e0565b9091555060009050601760ff841660038110613307576133076143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1611156133e857601b8260ff1660038110613341576133416143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660178360ff1660038110613375576133756143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461339e919061431a565b6133a891906142f8565b90506133b4878261351e565b6040518181527f7c76b725c3bdd88cc239c1cbdc4c37e260fc0650dd4784ce22d4fbd64d98c4d99060200160405180910390a15b601b8260ff16600381106133fe576133fe6143a1565b601091828204019190066002029054906101000a900461ffff1661ffff1660198360ff1660038110613432576134326143a1565b601091828204019190066002029054906101000a900461ffff1661ffff168461345b919061431a565b61346591906142f8565b600c600082825461347691906142e0565b9091555061348690508184614339565b9250505b811561349b5761349b8630846138e5565b50505b6128ba8484846138e5565b6001600160a01b0382166000908152601e60205260409020805460ff191682158015919091179091556134e1576134e1826001611e8c565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611e80911515815260200190565b6001600160a01b03821661357e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610df8565b61358a82600083613a9a565b6001600160a01b038216600090815260208190526040902054818110156135fe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610df8565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36126c383600084613ca3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106136ea576136ea6143a1565b60200260200101906001600160a01b031690816001600160a01b031681525050601c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561375857600080fd5b505afa15801561376c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137909190613fce565b816001815181106137a3576137a36143a1565b6001600160a01b039283166020918202929092010152601c546137ce91309161010090041684612722565b601c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061380b908590600090869030904290600401614249565b600060405180830381600087803b15801561382557600080fd5b505af1158015613839573d6000803e3d6000fd5b505050505050565b60008061384f6002846142f8565b9050600061385d8285614339565b9050613868826136b5565b4780156138dd57600080600061387e8585613e0d565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a16138d18386614339565b98975050505050505050565b509392505050565b6001600160a01b0383166139495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610df8565b6001600160a01b0382166139ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610df8565b6139b6838383613a9a565b6001600160a01b03831660009081526020819052604090205481811015613a2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610df8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36128ba848484613ca3565b6001600160a01b0382166000908152601e602052604090205460ff168015613adb57506001600160a01b0383166000908152601f602052604090205460ff16155b15613b3e57602154811115613b3e5760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610df8565b6001600160a01b0383166000908152601f602052604090205460ff16613bef576023546001600160a01b0384166000908152602260205260409020544291613b85916142e0565b1115613bef5760405162461bcd60e51b815260206004820152603360248201527f416e7469626f743a205472616e73616374696f6e2073656e6465722069732069604482015272371030b73a3496b137ba1031b7b7b63237bbb760691b6064820152608401610df8565b6001600160a01b0382166000908152601f602052604090205460ff166126c3576023546001600160a01b0383166000908152602260205260409020544291613c36916142e0565b11156126c35760405162461bcd60e51b815260206004820152603660248201527f416e7469626f743a205472616e73616374696f6e20726563697069656e742069604482015275399034b71030b73a3496b137ba1031b7b7b63237bbb760511b6064820152608401610df8565b6001600160a01b0382166000908152601f602052604090205460ff16613d4557602054613ce5836001600160a01b031660009081526020819052604090205490565b1115613d455760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610df8565b6001600160a01b0383166000908152601e602052604090205460ff168015613d8657506001600160a01b0382166000908152601f602052604090205460ff16155b15613da957506001600160a01b0316600090815260226020526040902042905550565b6001600160a01b0382166000908152601e602052604090205460ff168015613dea57506001600160a01b0383166000908152601f602052604090205460ff16155b156126c35750506001600160a01b03166000908152602260205260409020429055565b6000806000613e3230601c60019054906101000a90046001600160a01b031687612722565b601c5460185460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c4016060604051808303818588803b158015613ea257600080fd5b505af1158015613eb6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613edb9190614120565b9250925092509250925092565b600183019183908215613f6e5791602002820160005b83821115613f3e57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613efe565b8015613f6c5782816101000a81549061ffff0219169055600201602081600101049283019260010302613f3e565b505b50613f7a929150613f7e565b5090565b5b80821115613f7a5760008155600101613f7f565b803561ffff81168114613fa557600080fd5b919050565b600060208284031215613fbc57600080fd5b8135613fc7816143b7565b9392505050565b600060208284031215613fe057600080fd5b8151613fc7816143b7565b60008060408385031215613ffe57600080fd5b8235614009816143b7565b91506020830135614019816143b7565b809150509250929050565b60008060006060848603121561403957600080fd5b8335614044816143b7565b92506020840135614054816143b7565b929592945050506040919091013590565b6000806040838503121561407857600080fd5b8235614083816143b7565b91506020830135801515811461401957600080fd5b600080604083850312156140ab57600080fd5b82356140b6816143b7565b946020939093013593505050565b6000806000606084860312156140d957600080fd5b6140e284613f93565b92506140f060208501613f93565b91506140fe60408501613f93565b90509250925092565b60006020828403121561411957600080fd5b5035919050565b60008060006060848603121561413557600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b8181101561417b5785810183015185820160400152820161415f565b8181111561418d576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526030908201527f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560408201526f32903a3930b739b332b91032b93937b960811b606082015260800190565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156142995784516001600160a01b031683529383019391830191600101614274565b50506001600160a01b03969096166060850152505050608001529392505050565b600061ffff8083168185168083038211156142d7576142d761438b565b01949350505050565b600082198211156142f3576142f361438b565b500190565b60008261431557634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156143345761433461438b565b500290565b60008282101561434b5761434b61438b565b500390565b600181811c9082168061436457607f821691505b6020821081141561438557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461102957600080fdfea26469706673582212204efd9bad1832c30d26e2b7f78c77817b6e7291520ddcb784e718e9cb5ef0b07464736f6c63430008070033

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.