ETH Price: $2,988.28 (+4.44%)
Gas: 2 Gwei

Token

AVENGER (AVENGER)
 

Overview

Max Total Supply

97,969,595.020039733 AVENGER

Holders

880

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
21,260 AVENGER

Value
$0.00
0x2c393ca590be1543f96dee74c6c2ae09b0fe9579
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:
AVENGER

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : AVENGER.sol
/*                                                                                            POWERED BY
__________    _______________   __________________________     _________   ________     ______________              _____ 
  ___    |_ |  / /__  ____/__  | / /_  ____/__  ____/__  __ \    ______/_/   ___  __ \_______  ____/__(_)_____ _________  /_
  __  /| |_ | / /__  __/  __   |/ /_  / __ __  __/  __  /_/ /    ____/_/     __  / / /  _ \_  /_   __  /_  __ `/_  __ \  __/
  _  ___ |_ |/ / _  /___  _  /|  / / /_/ / _  /___  _  _, _/     __/_/       _  /_/ //  __/  __/   _  / / /_/ /_  / / / /_  
  /_/  |_|____/  /_____/  /_/ |_/  \____/  /_____/  /_/ |_|      /_/         /_____/ \___//_/      /_/  \__,_/ /_/ /_/\__/ 
              https://t.me/AvengerERC                                                          t.me/DeFianthub                                    
                AvengerToken.io                                                            DeFiantPlatform.com          */                                                                        
  
 pragma solidity ^0.8.17;

// SPDX-License-Identifier: Apache-2.0

import "./SafeMath.sol";
import "./Address.sol";
import "./RewardsToken.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router.sol";
import "./IUniswapV2Pair.sol";
import "./IRewardsTracker.sol";


contract AVENGER is RewardsToken {
    using SafeMath for uint256;
    using Address for address;
    
    
    uint256 private constant REWARDS_TRACKER_IDENTIFIER = 12; 
    uint256 private constant TOTAL_SUPPLY = 99892000 * (10**9);

    uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); 

    uint256 private platformFee = 0; 
    uint256 private _previousPlatformFee = platformFee;

    uint256 public devFee = 600; 
    uint256 public sellDevFee = 600; 
    uint256 private _previousDevFee = devFee;
    
    uint256 public rewardsFee = 100; 
    uint256 public sellRewardsFee = 100; 
    uint256 private _previousRewardsFee = rewardsFee;

    uint256 public launchSellFee = 1200; 
    uint256 private _previousLaunchSellFee = launchSellFee;

    uint256 public burnFee = 200;   
    uint256 public sellburnFee = 200; 
    uint256 private _previousBurnFee = burnFee; 
    
    mapping(address => bool) public uniswapv2contracts;

    address payable private _platformWalletAddress =
        payable(0xA93D389aD8374d2Cfa2CF94a8370bd2D18B14c99);
    address payable private _devWalletAddress =
        payable(0xaB1C9369805ffA00Ca7dfBeE5FA36567707248d2); 

    uint256 public blacklistDeadline = 0;
    uint256 public launchSellFeeDeadline = 0;

    IRewardsTracker private _rewardsTracker;

   
    bool public useGenericTransfer = true;

   
    bool private preparedForLaunch = false;

    
    mapping(address => bool) public isBlacklisted;
    
    
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;

    mapping(address => bool) private burnAddresses;
    
    
    IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;

    bool currentlySwapping; 
    bool public swapAndRedirectEthFeesEnabled = true;

    uint256 private minTokensBeforeSwap = 10000 * 10**9;

    
     
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event GenericTransferChanged(bool useGenericTransfer);
    event ExcludeFromFees(address wallet);
    event IncludeInFees(address wallet);
    event DevWalletUpdated(address newDevWallet);
    event RewardsTrackerUpdated(address newRewardsTracker);
    event RouterUpdated(address newRouterAddress);
    event FeesChanged(
        uint256 newDevFee,
        uint256 newSellDevFee,
        uint256 newRewardsFee,
        uint256 newSellRewardsFee,
        uint256 newburnFee, 
        uint256 newSellburnFee
    );
    event LaunchFeeUpdated(uint256 newLaunchSellFee);

    modifier lockTheSwap() {
        currentlySwapping = true;
        _;
        currentlySwapping = false;
    }

    constructor() ERC20("AVENGER", "AVENGER") {
        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

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

        
        uniswapV2Router = _uniswapV2Router;
        
       
        _mint(owner(), TOTAL_SUPPLY);

        
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        
        
        excludeFromRewards(address(this));
        excludeFromRewards(owner());
        excludeFromRewards(address(0xdead));
        excludeFromRewards(uniswapV2Pair);

        
        uniswapv2contracts[uniswapV2Pair] = true;
    }

    
    
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        
        require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner");
        
        require(
            !isBlacklisted[from] && !isBlacklisted[to],
            "Blacklisted address"
        );

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

        if (!uniswapv2contracts[from] && !uniswapv2contracts[to] && !burnAddresses[to]) {
            super._transfer(from, to, amount);
            return;
        }

        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to]
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount"
            );
        }

        
        uint256 baseRewardsFee = rewardsFee;
        uint256 baseDevFee = devFee;
        uint256 baseBurnFee = burnFee; 
        if (to == uniswapV2Pair) {
            devFee = sellDevFee;
            rewardsFee = sellRewardsFee;
            burnFee = sellburnFee;

            if (launchSellFeeDeadline >= block.timestamp) {
                devFee = devFee.add(launchSellFee);
            }
        }



        
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; 
        if (
            overMinTokenBalance &&
            !currentlySwapping &&
            from != uniswapV2Pair &&
            swapAndRedirectEthFeesEnabled
        ) {
            
            swapAndRedirectEthFees(contractTokenBalance);
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            removeAllFee();
        }


        
        (uint256 tTransferAmount, uint256 tFee) = _getValues(amount);
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(tTransferAmount);



        _takeFee(tFee);


         
       
        if(trueBurn){
            uint256 burnFeeTotal = calculateBurnFee(amount);
            _burn(address(this), burnFeeTotal);
        }
        
        if(burnAddresses[to]){
            uint256 burnamount = tTransferAmount - 1;
            _burn(to, burnamount);
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            restoreAllFee();
        }
        
        
        devFee = baseDevFee;
        rewardsFee = baseRewardsFee;
        burnFee = baseBurnFee; 
        emit Transfer(from, to, tTransferAmount);
    }

    
    receive() external payable {}

    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tFee = calculateFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _takeFee(uint256 fee) private {
        _balances[address(this)] = _balances[address(this)].add(fee);
    }

    function calculateFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        uint256 totalFee = devFee.add(rewardsFee).add(platformFee).add(burnFee); 
        return _amount.mul(totalFee).div(10000);
    }

    function removeAllFee() private {
        if (devFee == 0 && rewardsFee == 0 && platformFee == 0 && burnFee == 0) return;

        _previousPlatformFee = platformFee;
        _previousDevFee = devFee;
        _previousRewardsFee = rewardsFee;
        _previousBurnFee = burnFee;

        platformFee = 0;
        devFee = 0;
        rewardsFee = 0;
        burnFee = 0; 
    }

    function restoreAllFee() private {
        platformFee = _previousPlatformFee;
        devFee = _previousDevFee;
        rewardsFee = _previousRewardsFee;
        burnFee = _previousBurnFee;
    }

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee);
        if (totalRedirectFee == 0) return;
        
       
        uint256 initialBalance = address(this).balance; 

        
        swapTokensForEth(contractTokenBalance);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        if (newBalance > 0) {
            
            uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee);
            sendEthToWallet(_platformWalletAddress, platformBalance);

            
            uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee);
            if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) {
                try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {}
            }
            
            
            uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee);
            sendEthToWallet(_devWalletAddress, devBalance);

            emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance);
        }
    }

    function sendEthToWallet(address wallet, uint256 amount) private {
        if (amount > 0) {
            payable(wallet).transfer(amount);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function prepareForLaunch() external onlyOwner {
        require(!preparedForLaunch, "Already prepared for launch");

        
        preparedForLaunch = true;

        
        blacklistDeadline = block.timestamp + 24 hours;

        
        launchSellFeeDeadline = block.timestamp + 7 days;
    }

    function setUseGenericTransfer(bool genericTransfer) external onlyOwner {
        useGenericTransfer = genericTransfer;
        emit GenericTransferChanged(genericTransfer);
    }

    function blacklistAddress(address account, bool value) public onlyOwner {
        if (value) {
            require(block.timestamp < blacklistDeadline, "The ability to blacklist accounts has been disabled.");
        }
        isBlacklisted[account] = value;
    }

    
    
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000);
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

     function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit ExcludeFromFees(account);
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit IncludeInFees(account);
    }
    function setFees(
        uint256 newPlatformFee,
        uint256 newDevFee,
        uint256 newSellDevFee,
        uint256 newRewardsFee,
        uint256 newSellRewardsFee,
        uint256 newburnFee,
        uint256 newSellburnFee
    ) external onlyOwner {
        require(
            newPlatformFee <= 1000 &&
            newDevFee <= 1000 &&
            newSellDevFee <= 1000 &&
            newRewardsFee <= 1000 &&
            newSellRewardsFee <= 1000 &&
            newburnFee <= 1000 &&
            newSellburnFee <= 1000,
            "Fees exceed maximum allowed value"
        );
        platformFee = newPlatformFee;
        devFee = newDevFee;
        sellDevFee = newSellDevFee;
        rewardsFee = newRewardsFee;
        sellRewardsFee = newSellRewardsFee;
        burnFee = newburnFee;
        sellburnFee = newSellburnFee;
        emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee, newburnFee, newSellburnFee);
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
        emit LaunchFeeUpdated(newLaunchSellFee);
    }

    function setDevWallet(address payable newDevWallet)
        external
        onlyOwner
    {
        _devWalletAddress = newDevWallet;
        emit DevWalletUpdated(newDevWallet);
    }
    
    function setRewardsTracker(address payable newRewardsTracker)
        external
        onlyOwner
    {
        _rewardsTracker = IRewardsTracker(newRewardsTracker);
        emit RewardsTrackerUpdated(newRewardsTracker);
    }

    function setRouterAddress(address newRouter) external onlyOwner {
        IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory())
            .createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

    function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner {
        swapAndRedirectEthFeesEnabled = enabled;
        emit SwapAndRedirectEthFeesUpdated(enabled);
    }

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    
    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner {
        uint256 contractEthBalance = address(this).balance;
        sendEthToWallet(_devWalletAddress, contractEthBalance);
    }

    
    bool public trueBurn = false; 

    function calculateBurnFee(uint256 _amount) internal view returns(uint256) {
        return _amount.mul(burnFee).div(10000);
    }

    function changeTrueBurn(bool value) public onlyOwner{
        trueBurn = value;
    }

    
    function addPairAddress(address _newPair, bool value) public onlyOwner{
        uniswapv2contracts[_newPair] = value;
    }

    
    function addBurnAddress(address _wallet, bool value) public onlyOwner{
        burnAddresses[_wallet] = value;
    }


}

File 2 of 13 : IRewardsTracker.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: Apache-2.0

interface IRewardsTracker {
    
    function addAllocation(uint identifier) external payable;
}

File 3 of 13 : IUniswapV2Pair.sol
// SPDX-License-Identifier: Apache-2.0

pragma solidity >=0.8.17;

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 4 of 13 : IUniswapV2Router.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

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

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

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

File 5 of 13 : IUniswapV2Factory.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

interface IUniswapV2Factory {

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

File 6 of 13 : RewardsToken.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: Apache-2.0

import "./ERC20.sol";
import "./Ownable.sol";

abstract contract RewardsToken is ERC20, Ownable {

    address[] private excludedFromRewards;
    mapping(address => bool) private isAddressExcluded;
    
    event ExcludeFromRewards(address wallet);
    event IncludeInRewards(address wallet);
    
    function deleteExcluded(uint index) internal {
        require(index < excludedFromRewards.length, "Index is greater than array length");
        excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1];
        excludedFromRewards.pop();
    }
    
    function getExcludedBalances() internal view returns (uint256) {
        uint256 totalExcludedHoldings = 0;
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            totalExcludedHoldings += balanceOf(excludedFromRewards[i]);
        }
        return totalExcludedHoldings;
    }
    
    function excludeFromRewards(address wallet) public onlyOwner {
        require(!isAddressExcluded[wallet], "Address is already excluded from rewards");
        excludedFromRewards.push(wallet);
        isAddressExcluded[wallet] = true;
        emit ExcludeFromRewards(wallet);
    }
    
    function includeInRewards(address wallet) external onlyOwner {
        require(isAddressExcluded[wallet], "Address is not excluded from rewards");
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            if (excludedFromRewards[i] == wallet) {
                isAddressExcluded[wallet] = false;
                deleteExcluded(i);
                break;
            }
        }
        emit IncludeInRewards(wallet);
    }
    
    function isExcludedFromRewards(address wallet) external view returns (bool) {
        return isAddressExcluded[wallet];
    }
    
    function getAllExcludedFromRewards() external view returns (address[] memory) {
        return excludedFromRewards;
    }
    
    function getRewardsSupply() public view returns (uint256) {
        return _totalSupply - getExcludedBalances();
    }
}

File 7 of 13 : Address.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Ownable.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

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.
 */
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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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) external virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 10 of 13 : ERC20.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 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 to 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 {}
}

File 11 of 13 : Context.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 13 : IERC20Metadata.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";

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

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

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

File 13 of 13 : IERC20.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

Settings
{
  "optimizer": {
    "enabled": false,
    "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":"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":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newburnFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","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":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeTrueBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellburnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPlatformFee","type":"uint256"},{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newburnFee","type":"uint256"},{"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trueBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapv2contracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000426103e86200002e6002670162e33ea7e74000620007a760201b62002fda1790919060201c565b620007bf60201b62002ff01790919060201c565b6008556000600955600954600a55610258600b55610258600c55600b54600d556064600e556064600f55600e546010556104b060115560115460125560c860135560c860145560135460155573a93d389ad8374d2cfa2cf94a8370bd2d18b14c99601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ab1c9369805ffa00ca7dfbee5fa36567707248d2601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006019556000601a556001601b60146101000a81548160ff0219169083151502179055506000601b60156101000a81548160ff0219169083151502179055506001602160156101000a81548160ff0219169083151502179055506509184e72a0006022556000602360006101000a81548160ff021916908315150217905550348015620001c557600080fd5b506040518060400160405280600781526020017f4156454e474552000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4156454e47455200000000000000000000000000000000000000000000000000815250816003908162000243919062000e77565b50806004908162000255919062000e77565b50505060006200026a620007d760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000fc8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000422919062000fc8565b6040518363ffffffff1660e01b8152600401620004419291906200100b565b6020604051808303816000875af115801562000461573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000487919062000fc8565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005316200051c620007df60201b60201c565b670162e33ea7e740006200080960201b60201c565b6001601d600062000547620007df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e600062000606620007df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006c030620009b760201b60201c565b620006e0620006d4620007df60201b60201c565b620009b760201b60201c565b620006f361dead620009b760201b60201c565b62000726602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620009b760201b60201c565b600160166000602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200132c565b60008183620007b7919062001067565b905092915050565b60008183620007cf9190620010e1565b905092915050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000872906200117a565b60405180910390fd5b6200088f6000838362000be060201b60201c565b620008ab8160025462000be560201b620030061790919060201c565b60028190555062000909816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000be560201b620030061790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009ab9190620011ad565b60405180910390a35050565b620009c7620007d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a50906200121a565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000ae9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae090620012b2565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd68160405162000bd59190620012d4565b60405180910390a150565b505050565b6000818362000bf59190620012f1565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7f57607f821691505b60208210810362000c955762000c9462000c37565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cc0565b62000d0b868362000cc0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5862000d5262000d4c8462000d23565b62000d2d565b62000d23565b9050919050565b6000819050919050565b62000d748362000d37565b62000d8c62000d838262000d5f565b84845462000ccd565b825550505050565b600090565b62000da362000d94565b62000db081848462000d69565b505050565b5b8181101562000dd85762000dcc60008262000d99565b60018101905062000db6565b5050565b601f82111562000e275762000df18162000c9b565b62000dfc8462000cb0565b8101602085101562000e0c578190505b62000e2462000e1b8562000cb0565b83018262000db5565b50505b505050565b600082821c905092915050565b600062000e4c6000198460080262000e2c565b1980831691505092915050565b600062000e67838362000e39565b9150826002028217905092915050565b62000e828262000bfd565b67ffffffffffffffff81111562000e9e5762000e9d62000c08565b5b62000eaa825462000c66565b62000eb782828562000ddc565b600060209050601f83116001811462000eef576000841562000eda578287015190505b62000ee6858262000e59565b86555062000f56565b601f19841662000eff8662000c9b565b60005b8281101562000f295784890151825560018201915060208501945060208101905062000f02565b8683101562000f49578489015162000f45601f89168262000e39565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f908262000f63565b9050919050565b62000fa28162000f83565b811462000fae57600080fd5b50565b60008151905062000fc28162000f97565b92915050565b60006020828403121562000fe15762000fe062000f5e565b5b600062000ff18482850162000fb1565b91505092915050565b620010058162000f83565b82525050565b600060408201905062001022600083018562000ffa565b62001031602083018462000ffa565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010748262000d23565b9150620010818362000d23565b9250828202620010918162000d23565b91508282048414831517620010ab57620010aa62001038565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010ee8262000d23565b9150620010fb8362000d23565b9250826200110e576200110d620010b2565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001162601f8362001119565b91506200116f826200112a565b602082019050919050565b60006020820190508181036000830152620011958162001153565b9050919050565b620011a78162000d23565b82525050565b6000602082019050620011c460008301846200119c565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200120260208362001119565b91506200120f82620011ca565b602082019050919050565b600060208201905081810360008301526200123581620011f3565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b60006200129a60288362001119565b9150620012a7826200123c565b604082019050919050565b60006020820190508181036000830152620012cd816200128b565b9050919050565b6000602082019050620012eb600083018462000ffa565b92915050565b6000620012fe8262000d23565b91506200130b8362000d23565b925082820190508082111562001326576200132562001038565b5b92915050565b615d2b806200133c6000396000f3fe6080604052600436106103545760003560e01c8063715018a6116101c6578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610c45578063fce589d814610c5c578063fe575a8714610c87578063fffa1dd914610cc45761035b565b8063e89bcca214610bca578063ea2f0b3714610bf3578063f2fde38b14610c1c5761035b565b8063cf0c018b116100d1578063cf0c018b14610b10578063d543dbeb14610b3b578063da2e3bad14610b64578063dd62ed3e14610b8d5761035b565b8063b609995e14610a93578063ba385abb14610abc578063bb8d513114610ae55761035b565b806398850b6411610164578063a457c2d71161013e578063a457c2d7146109c3578063a9059cbb14610a00578063ada46d0a14610a3d578063af01f2b214610a685761035b565b806398850b6414610956578063a0d82dc514610981578063a1ab19a3146109ac5761035b565b80638c0b5e22116101a05780638c0b5e22146108ac5780638da5cb5b146108d7578063903cdec01461090257806395d89b411461092b5761035b565b8063715018a61461084357806373e7714a1461085a5780638421b507146108835761035b565b8063313ce567116102a057806348a464731161023e5780635342acb4116102185780635342acb41461077357806354959363146107b05780636827e764146107db57806370a08231146108065761035b565b806348a464731461070857806349bd5a5e1461073157806351bc3c851461075c5761035b565b806341cb87fc1161027a57806341cb87fc146106505780634337ac5b14610679578063437823ec146106b6578063455a4396146106df5761035b565b8063313ce567146105bf578063393344b6146105ea57806339509351146106135761035b565b80631694505e1161030d57806323b872dd116102e757806323b872dd1461050357806326b6308d1461054057806328ba35e2146105695780632bb14e1d146105945761035b565b80631694505e1461048457806318160ddd146104af5780631f53ac02146104da5761035b565b806306fdde0314610360578063095ea7b31461038b5780630e832273146103c8578063111e037614610405578063113201fa1461042e57806312ee302d146104595761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610cef565b60405161038291906148fd565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906149b8565b610d81565b6040516103bf9190614a13565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190614a2e565b610d9f565b6040516103fc9190614a13565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190614a2e565b610df5565b005b34801561043a57600080fd5b5061044361100e565b6040516104509190614a13565b60405180910390f35b34801561046557600080fd5b5061046e611021565b60405161047b9190614a6a565b60405180910390f35b34801561049057600080fd5b50610499611027565b6040516104a69190614ae4565b60405180910390f35b3480156104bb57600080fd5b506104c461104d565b6040516104d19190614a6a565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190614b3d565b611057565b005b34801561050f57600080fd5b5061052a60048036038101906105259190614b6a565b611169565b6040516105379190614a13565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190614be9565b611242565b005b34801561057557600080fd5b5061057e61132d565b60405161058b9190614a13565b60405180910390f35b3480156105a057600080fd5b506105a9611340565b6040516105b69190614a6a565b60405180910390f35b3480156105cb57600080fd5b506105d4611346565b6040516105e19190614c32565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190614c4d565b61134f565b005b34801561061f57600080fd5b5061063a600480360381019061063591906149b8565b611441565b6040516106479190614a13565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190614a2e565b6114f4565b005b34801561068557600080fd5b506106a0600480360381019061069b9190614a2e565b61176f565b6040516106ad9190614a13565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190614a2e565b61178f565b005b3480156106eb57600080fd5b5061070660048036038101906107019190614c4d565b6118b8565b005b34801561071457600080fd5b5061072f600480360381019061072a9190614c8d565b6119f5565b005b34801561073d57600080fd5b50610746611adc565b6040516107539190614cc9565b60405180910390f35b34801561076857600080fd5b50610771611b02565b005b34801561077f57600080fd5b5061079a60048036038101906107959190614a2e565b611bb2565b6040516107a79190614a13565b60405180910390f35b3480156107bc57600080fd5b506107c5611c08565b6040516107d29190614a6a565b60405180910390f35b3480156107e757600080fd5b506107f0611c0e565b6040516107fd9190614a6a565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190614a2e565b611c14565b60405161083a9190614a6a565b60405180910390f35b34801561084f57600080fd5b50610858611c5c565b005b34801561086657600080fd5b50610881600480360381019061087c9190614be9565b611db4565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190614c8d565b611e68565b005b3480156108b857600080fd5b506108c1611f85565b6040516108ce9190614a6a565b60405180910390f35b3480156108e357600080fd5b506108ec611f8b565b6040516108f99190614cc9565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190614c4d565b611fb5565b005b34801561093757600080fd5b506109406120a7565b60405161094d91906148fd565b60405180910390f35b34801561096257600080fd5b5061096b612139565b6040516109789190614a13565b60405180910390f35b34801561098d57600080fd5b5061099661214c565b6040516109a39190614a6a565b60405180910390f35b3480156109b857600080fd5b506109c1612152565b005b3480156109cf57600080fd5b506109ea60048036038101906109e591906149b8565b612280565b6040516109f79190614a13565b60405180910390f35b348015610a0c57600080fd5b50610a276004803603810190610a2291906149b8565b61234d565b604051610a349190614a13565b60405180910390f35b348015610a4957600080fd5b50610a5261236b565b604051610a5f9190614da2565b60405180910390f35b348015610a7457600080fd5b50610a7d6123f9565b604051610a8a9190614a6a565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614a2e565b6123ff565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614b3d565b612657565b005b348015610af157600080fd5b50610afa612769565b604051610b079190614a6a565b60405180910390f35b348015610b1c57600080fd5b50610b2561276f565b604051610b329190614a6a565b60405180910390f35b348015610b4757600080fd5b50610b626004803603810190610b5d9190614c8d565b612775565b005b348015610b7057600080fd5b50610b8b6004803603810190610b869190614dc4565b6128c1565b005b348015610b9957600080fd5b50610bb46004803603810190610baf9190614e66565b612a6c565b604051610bc19190614a6a565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614be9565b612af3565b005b348015610bff57600080fd5b50610c1a6004803603810190610c159190614a2e565b612bde565b005b348015610c2857600080fd5b50610c436004803603810190610c3e9190614a2e565b612d07565b005b348015610c5157600080fd5b50610c5a612ecd565b005b348015610c6857600080fd5b50610c71612f98565b604051610c7e9190614a6a565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca99190614a2e565b612f9e565b604051610cbb9190614a13565b60405180910390f35b348015610cd057600080fd5b50610cd9612fbe565b604051610ce69190614a6a565b60405180910390f35b606060038054610cfe90614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614ed5565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d95610d8e61301c565b8484613024565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dfd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614f52565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090614fe4565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6816040516110039190614cc9565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61105f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614f52565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb8160405161115e9190615025565b60405180910390a150565b60006111768484846131ed565b6112378461118261301c565b61123285604051806060016040528060288152602001615ca960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111e861301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b613024565b600190509392505050565b61124a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090614f52565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516113229190614a13565b60405180910390a150565b602360009054906101000a900460ff1681565b600e5481565b60006009905090565b61135761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614f52565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006114ea61144e61301c565b846114e5856001600061145f61301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b613024565b6001905092915050565b6114fc61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614f52565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff9190615055565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168a9190615055565b6040518363ffffffff1660e01b81526004016116a7929190615082565b6020604051808303816000875af11580156116c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ea9190615055565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61179761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d90614f52565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118ad9190614cc9565b60405180910390a150565b6118c061301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614f52565b60405180910390fd5b801561199a576019544210611999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119909061511d565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119fd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390614f52565b60405180910390fd5b633b9aca0081611a9c919061516c565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611ad19190614a6a565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b0a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614f52565b60405180910390fd5b6000611ba430611c14565b9050611baf81613afb565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c6461301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611dbc61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4290614f52565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611e7061301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614f52565b60405180910390fd5b6109c4811115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906151fa565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611f7a9190614a6a565b60405180910390a150565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fbd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614f52565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546120b690614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546120e290614ed5565b801561212f5780601f106121045761010080835404028352916020019161212f565b820191906000526020600020905b81548152906001019060200180831161211257829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b61215a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090614f52565b60405180910390fd5b601b60159054906101000a900460ff1615612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090615266565b60405180910390fd5b6001601b60156101000a81548160ff02191690831515021790555062015180426122639190615286565b60198190555062093a80426122789190615286565b601a81905550565b600061234361228d61301c565b8461233e85604051806060016040528060258152602001615cd160259139600160006122b761301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b613024565b6001905092915050565b600061236161235a61301c565b84846131ed565b6001905092915050565b606060068054806020026020016040519081016040528092919081815260200182805480156123ef57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116123a5575b5050505050905090565b601a5481565b61240761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614f52565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061532c565b60405180910390fd5b60005b60068054905081101561261c578173ffffffffffffffffffffffffffffffffffffffff166006828154811061255d5761255c61534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612609576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061260481613d3e565b61261c565b80806126149061537b565b915050612525565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d5895943348160405161264c9190614cc9565b60405180910390a150565b61265f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e590614f52565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a8160405161275e9190615025565b60405180910390a150565b600f5481565b60195481565b61277d61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614f52565b60405180910390fd5b6005811015612850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128479061540f565b60405180910390fd5b61287f6103e861287183670162e33ea7e74000612fda90919063ffffffff16565b612ff090919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008546040516128b69190614a6a565b60405180910390a150565b6128c961301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614f52565b60405180910390fd5b6103e8871115801561296c57506103e88611155b801561297a57506103e88511155b801561298857506103e88411155b801561299657506103e88311155b80156129a457506103e88211155b80156129b257506103e88111155b6129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e8906154a1565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612a5b969594939291906154c1565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612afb61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614f52565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612bd39190614a13565b60405180910390a150565b612be661301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90614f52565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612cfc9190614cc9565b60405180910390a150565b612d0f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9590614f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0490615594565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ed561301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90614f52565b60405180910390fd5b6000479050612f95601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000612fc8613ed0565b600254612fd591906155b4565b905090565b60008183612fe8919061516c565b905092915050565b60008183612ffe9190615617565b905092915050565b600081836130149190615286565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308a906156ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f99061574c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516131e09190614a6a565b60405180910390a3505050565b601b60159054906101000a900460ff1680613241575061320b611f8b565b73ffffffffffffffffffffffffffffffffffffffff1661322961301c565b73ffffffffffffffffffffffffffffffffffffffff16145b613280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613277906157de565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133245750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335a9061584a565b60405180910390fd5b601b60149054906101000a900460ff161561338857613383838383613f56565b613aa1565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561342c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349757613492838383613f56565b613aa1565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561353b5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358657600854811115613585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357c906158dc565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361363357600c54600b81905550600f54600e8190555060145460138190555042601a54106136325761362b601154600b5461300690919063ffffffff16565b600b819055505b5b600061363e30611c14565b9050600060225482101590508080156136645750602160149054906101000a900460ff16155b80156136be5750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b80156136d65750602160159054906101000a900460ff165b156136e5576136e4826141e9565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137865750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561379457613793614495565b5b6000806137a088614510565b915091506137f5886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461454490919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613888826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d38161455a565b602360009054906101000a900460ff16156139015760006138f3896145f0565b90506138ff3082614622565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561397057600060018361396291906155b4565b905061396e8a82614622565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a115750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a1f57613a1e6147cf565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a919190614a6a565b60405180910390a3505050505050505b505050565b6000838311158290613aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae591906148fd565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613b1857613b176158fc565b5b604051908082528060200260200182016040528015613b465781602001602082028036833780820191505090505b5090503081600081518110613b5e57613b5d61534c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c299190615055565b81600181518110613c3d57613c3c61534c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ca430602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613024565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d08959493929190615966565b600060405180830381600087803b158015613d2257600080fd5b505af1158015613d36573d6000803e3d6000fd5b505050505050565b6006805490508110613d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7c90615a32565b60405180910390fd5b60066001600680549050613d9991906155b4565b81548110613daa57613da961534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613de957613de861534c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613e4357613e42615a52565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613ecc578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613eca573d6000803e3d6000fd5b505b5050565b6000806000905060005b600680549050811015613f4e57613f2e60068281548110613efe57613efd61534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c14565b82613f399190615286565b91508080613f469061537b565b915050613eda565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fbc90615af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161402b90615b85565b60405180910390fd5b61403f8383836147f5565b6140aa81604051806060016040528060268152602001615c83602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141dc9190614a6a565b60405180910390a3505050565b6001602160146101000a81548160ff0219169083151502179055506000614231600954614223600e54600b5461300690919063ffffffff16565b61300690919063ffffffff16565b9050600081036142415750614477565b600047905061424f83613afb565b6000614264824761454490919063ffffffff16565b905060008111156144735760006142988461428a60095485612fda90919063ffffffff16565b612ff090919063ffffffff16565b90506142c6601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b60006142ef856142e1600e5486612fda90919063ffffffff16565b612ff090919063ffffffff16565b90506000811180156143505750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156143df57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600c6040518363ffffffff1660e01b81526004016143b29190614a6a565b6000604051808303818588803b1580156143cb57600080fd5b505af1935050505080156143dd575060015b505b6000614408866143fa600b5487612fda90919063ffffffff16565b612ff090919063ffffffff16565b9050614436601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c78785604051614467929190615ba5565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b541480156144a957506000600e54145b80156144b757506000600954145b80156144c557506000601354145b61450e57600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b600080600061451e846147fa565b90506000614535828661454490919063ffffffff16565b90508082935093505050915091565b6000818361455291906155b4565b905092915050565b6145ab816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600061461b61271061460d60135485612fda90919063ffffffff16565b612ff090919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161468890615c40565b60405180910390fd5b61469d826000836147f5565b61470881604051806060016040528060228152602001615c61602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061475f8160025461454490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516147c39190614a6a565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b60008061483c60135461482e600954614820600e54600b5461300690919063ffffffff16565b61300690919063ffffffff16565b61300690919063ffffffff16565b90506148656127106148578386612fda90919063ffffffff16565b612ff090919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156148a757808201518184015260208101905061488c565b60008484015250505050565b6000601f19601f8301169050919050565b60006148cf8261486d565b6148d98185614878565b93506148e9818560208601614889565b6148f2816148b3565b840191505092915050565b6000602082019050818103600083015261491781846148c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061494f82614924565b9050919050565b61495f81614944565b811461496a57600080fd5b50565b60008135905061497c81614956565b92915050565b6000819050919050565b61499581614982565b81146149a057600080fd5b50565b6000813590506149b28161498c565b92915050565b600080604083850312156149cf576149ce61491f565b5b60006149dd8582860161496d565b92505060206149ee858286016149a3565b9150509250929050565b60008115159050919050565b614a0d816149f8565b82525050565b6000602082019050614a286000830184614a04565b92915050565b600060208284031215614a4457614a4361491f565b5b6000614a528482850161496d565b91505092915050565b614a6481614982565b82525050565b6000602082019050614a7f6000830184614a5b565b92915050565b6000819050919050565b6000614aaa614aa5614aa084614924565b614a85565b614924565b9050919050565b6000614abc82614a8f565b9050919050565b6000614ace82614ab1565b9050919050565b614ade81614ac3565b82525050565b6000602082019050614af96000830184614ad5565b92915050565b6000614b0a82614924565b9050919050565b614b1a81614aff565b8114614b2557600080fd5b50565b600081359050614b3781614b11565b92915050565b600060208284031215614b5357614b5261491f565b5b6000614b6184828501614b28565b91505092915050565b600080600060608486031215614b8357614b8261491f565b5b6000614b918682870161496d565b9350506020614ba28682870161496d565b9250506040614bb3868287016149a3565b9150509250925092565b614bc6816149f8565b8114614bd157600080fd5b50565b600081359050614be381614bbd565b92915050565b600060208284031215614bff57614bfe61491f565b5b6000614c0d84828501614bd4565b91505092915050565b600060ff82169050919050565b614c2c81614c16565b82525050565b6000602082019050614c476000830184614c23565b92915050565b60008060408385031215614c6457614c6361491f565b5b6000614c728582860161496d565b9250506020614c8385828601614bd4565b9150509250929050565b600060208284031215614ca357614ca261491f565b5b6000614cb1848285016149a3565b91505092915050565b614cc381614944565b82525050565b6000602082019050614cde6000830184614cba565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d1981614944565b82525050565b6000614d2b8383614d10565b60208301905092915050565b6000602082019050919050565b6000614d4f82614ce4565b614d598185614cef565b9350614d6483614d00565b8060005b83811015614d95578151614d7c8882614d1f565b9750614d8783614d37565b925050600181019050614d68565b5085935050505092915050565b60006020820190508181036000830152614dbc8184614d44565b905092915050565b600080600080600080600060e0888a031215614de357614de261491f565b5b6000614df18a828b016149a3565b9750506020614e028a828b016149a3565b9650506040614e138a828b016149a3565b9550506060614e248a828b016149a3565b9450506080614e358a828b016149a3565b93505060a0614e468a828b016149a3565b92505060c0614e578a828b016149a3565b91505092959891949750929550565b60008060408385031215614e7d57614e7c61491f565b5b6000614e8b8582860161496d565b9250506020614e9c8582860161496d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614eed57607f821691505b602082108103614f0057614eff614ea6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f3c602083614878565b9150614f4782614f06565b602082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b6000614fce602883614878565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b600061500f82614ab1565b9050919050565b61501f81615004565b82525050565b600060208201905061503a6000830184615016565b92915050565b60008151905061504f81614956565b92915050565b60006020828403121561506b5761506a61491f565b5b600061507984828501615040565b91505092915050565b60006040820190506150976000830185614cba565b6150a46020830184614cba565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b6000615107603483614878565b9150615112826150ab565b604082019050919050565b60006020820190508181036000830152615136816150fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061517782614982565b915061518283614982565b925082820261519081614982565b915082820484148315176151a7576151a661513d565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b60006151e4601e83614878565b91506151ef826151ae565b602082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b6000615250601b83614878565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b600061529182614982565b915061529c83614982565b92508282019050808211156152b4576152b361513d565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b6000615316602483614878565b9150615321826152ba565b604082019050919050565b6000602082019050818103600083015261534581615309565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061538682614982565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153b8576153b761513d565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b60006153f9601b83614878565b9150615404826153c3565b602082019050919050565b60006020820190508181036000830152615428816153ec565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061548b602183614878565b91506154968261542f565b604082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b600060c0820190506154d66000830189614a5b565b6154e36020830188614a5b565b6154f06040830187614a5b565b6154fd6060830186614a5b565b61550a6080830185614a5b565b61551760a0830184614a5b565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061557e602683614878565b915061558982615522565b604082019050919050565b600060208201905081810360008301526155ad81615571565b9050919050565b60006155bf82614982565b91506155ca83614982565b92508282039050818111156155e2576155e161513d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061562282614982565b915061562d83614982565b92508261563d5761563c6155e8565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156a4602483614878565b91506156af82615648565b604082019050919050565b600060208201905081810360008301526156d381615697565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615736602283614878565b9150615741826156da565b604082019050919050565b6000602082019050818103600083015261576581615729565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b60006157c8603f83614878565b91506157d38261576c565b604082019050919050565b600060208201905081810360008301526157f7816157bb565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000615834601383614878565b915061583f826157fe565b602082019050919050565b6000602082019050818103600083015261586381615827565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b60006158c6602783614878565b91506158d18261586a565b604082019050919050565b600060208201905081810360008301526158f5816158b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600061595061594b6159468461592b565b614a85565b614982565b9050919050565b61596081615935565b82525050565b600060a08201905061597b6000830188614a5b565b6159886020830187615957565b818103604083015261599a8186614d44565b90506159a96060830185614cba565b6159b66080830184614a5b565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a1c602283614878565b9150615a27826159c0565b604082019050919050565b60006020820190508181036000830152615a4b81615a0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615add602583614878565b9150615ae882615a81565b604082019050919050565b60006020820190508181036000830152615b0c81615ad0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615b6f602383614878565b9150615b7a82615b13565b604082019050919050565b60006020820190508181036000830152615b9e81615b62565b9050919050565b6000604082019050615bba6000830185614a5b565b615bc76020830184614a5b565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c2a602183614878565b9150615c3582615bce565b604082019050919050565b60006020820190508181036000830152615c5981615c1d565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011c782fa667bae2fd509562d7f6b876d600bf351eab7a690ddd5582975e2719a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103545760003560e01c8063715018a6116101c6578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610c45578063fce589d814610c5c578063fe575a8714610c87578063fffa1dd914610cc45761035b565b8063e89bcca214610bca578063ea2f0b3714610bf3578063f2fde38b14610c1c5761035b565b8063cf0c018b116100d1578063cf0c018b14610b10578063d543dbeb14610b3b578063da2e3bad14610b64578063dd62ed3e14610b8d5761035b565b8063b609995e14610a93578063ba385abb14610abc578063bb8d513114610ae55761035b565b806398850b6411610164578063a457c2d71161013e578063a457c2d7146109c3578063a9059cbb14610a00578063ada46d0a14610a3d578063af01f2b214610a685761035b565b806398850b6414610956578063a0d82dc514610981578063a1ab19a3146109ac5761035b565b80638c0b5e22116101a05780638c0b5e22146108ac5780638da5cb5b146108d7578063903cdec01461090257806395d89b411461092b5761035b565b8063715018a61461084357806373e7714a1461085a5780638421b507146108835761035b565b8063313ce567116102a057806348a464731161023e5780635342acb4116102185780635342acb41461077357806354959363146107b05780636827e764146107db57806370a08231146108065761035b565b806348a464731461070857806349bd5a5e1461073157806351bc3c851461075c5761035b565b806341cb87fc1161027a57806341cb87fc146106505780634337ac5b14610679578063437823ec146106b6578063455a4396146106df5761035b565b8063313ce567146105bf578063393344b6146105ea57806339509351146106135761035b565b80631694505e1161030d57806323b872dd116102e757806323b872dd1461050357806326b6308d1461054057806328ba35e2146105695780632bb14e1d146105945761035b565b80631694505e1461048457806318160ddd146104af5780631f53ac02146104da5761035b565b806306fdde0314610360578063095ea7b31461038b5780630e832273146103c8578063111e037614610405578063113201fa1461042e57806312ee302d146104595761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610cef565b60405161038291906148fd565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906149b8565b610d81565b6040516103bf9190614a13565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190614a2e565b610d9f565b6040516103fc9190614a13565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190614a2e565b610df5565b005b34801561043a57600080fd5b5061044361100e565b6040516104509190614a13565b60405180910390f35b34801561046557600080fd5b5061046e611021565b60405161047b9190614a6a565b60405180910390f35b34801561049057600080fd5b50610499611027565b6040516104a69190614ae4565b60405180910390f35b3480156104bb57600080fd5b506104c461104d565b6040516104d19190614a6a565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190614b3d565b611057565b005b34801561050f57600080fd5b5061052a60048036038101906105259190614b6a565b611169565b6040516105379190614a13565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190614be9565b611242565b005b34801561057557600080fd5b5061057e61132d565b60405161058b9190614a13565b60405180910390f35b3480156105a057600080fd5b506105a9611340565b6040516105b69190614a6a565b60405180910390f35b3480156105cb57600080fd5b506105d4611346565b6040516105e19190614c32565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190614c4d565b61134f565b005b34801561061f57600080fd5b5061063a600480360381019061063591906149b8565b611441565b6040516106479190614a13565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190614a2e565b6114f4565b005b34801561068557600080fd5b506106a0600480360381019061069b9190614a2e565b61176f565b6040516106ad9190614a13565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190614a2e565b61178f565b005b3480156106eb57600080fd5b5061070660048036038101906107019190614c4d565b6118b8565b005b34801561071457600080fd5b5061072f600480360381019061072a9190614c8d565b6119f5565b005b34801561073d57600080fd5b50610746611adc565b6040516107539190614cc9565b60405180910390f35b34801561076857600080fd5b50610771611b02565b005b34801561077f57600080fd5b5061079a60048036038101906107959190614a2e565b611bb2565b6040516107a79190614a13565b60405180910390f35b3480156107bc57600080fd5b506107c5611c08565b6040516107d29190614a6a565b60405180910390f35b3480156107e757600080fd5b506107f0611c0e565b6040516107fd9190614a6a565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190614a2e565b611c14565b60405161083a9190614a6a565b60405180910390f35b34801561084f57600080fd5b50610858611c5c565b005b34801561086657600080fd5b50610881600480360381019061087c9190614be9565b611db4565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190614c8d565b611e68565b005b3480156108b857600080fd5b506108c1611f85565b6040516108ce9190614a6a565b60405180910390f35b3480156108e357600080fd5b506108ec611f8b565b6040516108f99190614cc9565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190614c4d565b611fb5565b005b34801561093757600080fd5b506109406120a7565b60405161094d91906148fd565b60405180910390f35b34801561096257600080fd5b5061096b612139565b6040516109789190614a13565b60405180910390f35b34801561098d57600080fd5b5061099661214c565b6040516109a39190614a6a565b60405180910390f35b3480156109b857600080fd5b506109c1612152565b005b3480156109cf57600080fd5b506109ea60048036038101906109e591906149b8565b612280565b6040516109f79190614a13565b60405180910390f35b348015610a0c57600080fd5b50610a276004803603810190610a2291906149b8565b61234d565b604051610a349190614a13565b60405180910390f35b348015610a4957600080fd5b50610a5261236b565b604051610a5f9190614da2565b60405180910390f35b348015610a7457600080fd5b50610a7d6123f9565b604051610a8a9190614a6a565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614a2e565b6123ff565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614b3d565b612657565b005b348015610af157600080fd5b50610afa612769565b604051610b079190614a6a565b60405180910390f35b348015610b1c57600080fd5b50610b2561276f565b604051610b329190614a6a565b60405180910390f35b348015610b4757600080fd5b50610b626004803603810190610b5d9190614c8d565b612775565b005b348015610b7057600080fd5b50610b8b6004803603810190610b869190614dc4565b6128c1565b005b348015610b9957600080fd5b50610bb46004803603810190610baf9190614e66565b612a6c565b604051610bc19190614a6a565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614be9565b612af3565b005b348015610bff57600080fd5b50610c1a6004803603810190610c159190614a2e565b612bde565b005b348015610c2857600080fd5b50610c436004803603810190610c3e9190614a2e565b612d07565b005b348015610c5157600080fd5b50610c5a612ecd565b005b348015610c6857600080fd5b50610c71612f98565b604051610c7e9190614a6a565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca99190614a2e565b612f9e565b604051610cbb9190614a13565b60405180910390f35b348015610cd057600080fd5b50610cd9612fbe565b604051610ce69190614a6a565b60405180910390f35b606060038054610cfe90614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614ed5565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d95610d8e61301c565b8484613024565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dfd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614f52565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090614fe4565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6816040516110039190614cc9565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61105f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614f52565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb8160405161115e9190615025565b60405180910390a150565b60006111768484846131ed565b6112378461118261301c565b61123285604051806060016040528060288152602001615ca960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111e861301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b613024565b600190509392505050565b61124a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090614f52565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516113229190614a13565b60405180910390a150565b602360009054906101000a900460ff1681565b600e5481565b60006009905090565b61135761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614f52565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006114ea61144e61301c565b846114e5856001600061145f61301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b613024565b6001905092915050565b6114fc61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614f52565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff9190615055565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168a9190615055565b6040518363ffffffff1660e01b81526004016116a7929190615082565b6020604051808303816000875af11580156116c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ea9190615055565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61179761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d90614f52565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118ad9190614cc9565b60405180910390a150565b6118c061301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614f52565b60405180910390fd5b801561199a576019544210611999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119909061511d565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119fd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390614f52565b60405180910390fd5b633b9aca0081611a9c919061516c565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611ad19190614a6a565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b0a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614f52565b60405180910390fd5b6000611ba430611c14565b9050611baf81613afb565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c6461301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611dbc61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4290614f52565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611e7061301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614f52565b60405180910390fd5b6109c4811115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906151fa565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611f7a9190614a6a565b60405180910390a150565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fbd61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614f52565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546120b690614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546120e290614ed5565b801561212f5780601f106121045761010080835404028352916020019161212f565b820191906000526020600020905b81548152906001019060200180831161211257829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b61215a61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090614f52565b60405180910390fd5b601b60159054906101000a900460ff1615612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090615266565b60405180910390fd5b6001601b60156101000a81548160ff02191690831515021790555062015180426122639190615286565b60198190555062093a80426122789190615286565b601a81905550565b600061234361228d61301c565b8461233e85604051806060016040528060258152602001615cd160259139600160006122b761301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b613024565b6001905092915050565b600061236161235a61301c565b84846131ed565b6001905092915050565b606060068054806020026020016040519081016040528092919081815260200182805480156123ef57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116123a5575b5050505050905090565b601a5481565b61240761301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614f52565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061532c565b60405180910390fd5b60005b60068054905081101561261c578173ffffffffffffffffffffffffffffffffffffffff166006828154811061255d5761255c61534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612609576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061260481613d3e565b61261c565b80806126149061537b565b915050612525565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d5895943348160405161264c9190614cc9565b60405180910390a150565b61265f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e590614f52565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a8160405161275e9190615025565b60405180910390a150565b600f5481565b60195481565b61277d61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614f52565b60405180910390fd5b6005811015612850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128479061540f565b60405180910390fd5b61287f6103e861287183670162e33ea7e74000612fda90919063ffffffff16565b612ff090919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008546040516128b69190614a6a565b60405180910390a150565b6128c961301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614f52565b60405180910390fd5b6103e8871115801561296c57506103e88611155b801561297a57506103e88511155b801561298857506103e88411155b801561299657506103e88311155b80156129a457506103e88211155b80156129b257506103e88111155b6129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e8906154a1565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612a5b969594939291906154c1565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612afb61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614f52565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612bd39190614a13565b60405180910390a150565b612be661301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90614f52565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612cfc9190614cc9565b60405180910390a150565b612d0f61301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9590614f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0490615594565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ed561301c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90614f52565b60405180910390fd5b6000479050612f95601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000612fc8613ed0565b600254612fd591906155b4565b905090565b60008183612fe8919061516c565b905092915050565b60008183612ffe9190615617565b905092915050565b600081836130149190615286565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308a906156ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f99061574c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516131e09190614a6a565b60405180910390a3505050565b601b60159054906101000a900460ff1680613241575061320b611f8b565b73ffffffffffffffffffffffffffffffffffffffff1661322961301c565b73ffffffffffffffffffffffffffffffffffffffff16145b613280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613277906157de565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133245750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335a9061584a565b60405180910390fd5b601b60149054906101000a900460ff161561338857613383838383613f56565b613aa1565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561342c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349757613492838383613f56565b613aa1565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561353b5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358657600854811115613585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357c906158dc565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361363357600c54600b81905550600f54600e8190555060145460138190555042601a54106136325761362b601154600b5461300690919063ffffffff16565b600b819055505b5b600061363e30611c14565b9050600060225482101590508080156136645750602160149054906101000a900460ff16155b80156136be5750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b80156136d65750602160159054906101000a900460ff165b156136e5576136e4826141e9565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137865750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561379457613793614495565b5b6000806137a088614510565b915091506137f5886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461454490919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613888826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d38161455a565b602360009054906101000a900460ff16156139015760006138f3896145f0565b90506138ff3082614622565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561397057600060018361396291906155b4565b905061396e8a82614622565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a115750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a1f57613a1e6147cf565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a919190614a6a565b60405180910390a3505050505050505b505050565b6000838311158290613aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae591906148fd565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613b1857613b176158fc565b5b604051908082528060200260200182016040528015613b465781602001602082028036833780820191505090505b5090503081600081518110613b5e57613b5d61534c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c299190615055565b81600181518110613c3d57613c3c61534c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ca430602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613024565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d08959493929190615966565b600060405180830381600087803b158015613d2257600080fd5b505af1158015613d36573d6000803e3d6000fd5b505050505050565b6006805490508110613d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7c90615a32565b60405180910390fd5b60066001600680549050613d9991906155b4565b81548110613daa57613da961534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613de957613de861534c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613e4357613e42615a52565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613ecc578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613eca573d6000803e3d6000fd5b505b5050565b6000806000905060005b600680549050811015613f4e57613f2e60068281548110613efe57613efd61534c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c14565b82613f399190615286565b91508080613f469061537b565b915050613eda565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fbc90615af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161402b90615b85565b60405180910390fd5b61403f8383836147f5565b6140aa81604051806060016040528060268152602001615c83602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141dc9190614a6a565b60405180910390a3505050565b6001602160146101000a81548160ff0219169083151502179055506000614231600954614223600e54600b5461300690919063ffffffff16565b61300690919063ffffffff16565b9050600081036142415750614477565b600047905061424f83613afb565b6000614264824761454490919063ffffffff16565b905060008111156144735760006142988461428a60095485612fda90919063ffffffff16565b612ff090919063ffffffff16565b90506142c6601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b60006142ef856142e1600e5486612fda90919063ffffffff16565b612ff090919063ffffffff16565b90506000811180156143505750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156143df57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600c6040518363ffffffff1660e01b81526004016143b29190614a6a565b6000604051808303818588803b1580156143cb57600080fd5b505af1935050505080156143dd575060015b505b6000614408866143fa600b5487612fda90919063ffffffff16565b612ff090919063ffffffff16565b9050614436601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e7b565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c78785604051614467929190615ba5565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b541480156144a957506000600e54145b80156144b757506000600954145b80156144c557506000601354145b61450e57600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b600080600061451e846147fa565b90506000614535828661454490919063ffffffff16565b90508082935093505050915091565b6000818361455291906155b4565b905092915050565b6145ab816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300690919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600061461b61271061460d60135485612fda90919063ffffffff16565b612ff090919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161468890615c40565b60405180910390fd5b61469d826000836147f5565b61470881604051806060016040528060228152602001615c61602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aa69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061475f8160025461454490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516147c39190614a6a565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b60008061483c60135461482e600954614820600e54600b5461300690919063ffffffff16565b61300690919063ffffffff16565b61300690919063ffffffff16565b90506148656127106148578386612fda90919063ffffffff16565b612ff090919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156148a757808201518184015260208101905061488c565b60008484015250505050565b6000601f19601f8301169050919050565b60006148cf8261486d565b6148d98185614878565b93506148e9818560208601614889565b6148f2816148b3565b840191505092915050565b6000602082019050818103600083015261491781846148c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061494f82614924565b9050919050565b61495f81614944565b811461496a57600080fd5b50565b60008135905061497c81614956565b92915050565b6000819050919050565b61499581614982565b81146149a057600080fd5b50565b6000813590506149b28161498c565b92915050565b600080604083850312156149cf576149ce61491f565b5b60006149dd8582860161496d565b92505060206149ee858286016149a3565b9150509250929050565b60008115159050919050565b614a0d816149f8565b82525050565b6000602082019050614a286000830184614a04565b92915050565b600060208284031215614a4457614a4361491f565b5b6000614a528482850161496d565b91505092915050565b614a6481614982565b82525050565b6000602082019050614a7f6000830184614a5b565b92915050565b6000819050919050565b6000614aaa614aa5614aa084614924565b614a85565b614924565b9050919050565b6000614abc82614a8f565b9050919050565b6000614ace82614ab1565b9050919050565b614ade81614ac3565b82525050565b6000602082019050614af96000830184614ad5565b92915050565b6000614b0a82614924565b9050919050565b614b1a81614aff565b8114614b2557600080fd5b50565b600081359050614b3781614b11565b92915050565b600060208284031215614b5357614b5261491f565b5b6000614b6184828501614b28565b91505092915050565b600080600060608486031215614b8357614b8261491f565b5b6000614b918682870161496d565b9350506020614ba28682870161496d565b9250506040614bb3868287016149a3565b9150509250925092565b614bc6816149f8565b8114614bd157600080fd5b50565b600081359050614be381614bbd565b92915050565b600060208284031215614bff57614bfe61491f565b5b6000614c0d84828501614bd4565b91505092915050565b600060ff82169050919050565b614c2c81614c16565b82525050565b6000602082019050614c476000830184614c23565b92915050565b60008060408385031215614c6457614c6361491f565b5b6000614c728582860161496d565b9250506020614c8385828601614bd4565b9150509250929050565b600060208284031215614ca357614ca261491f565b5b6000614cb1848285016149a3565b91505092915050565b614cc381614944565b82525050565b6000602082019050614cde6000830184614cba565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d1981614944565b82525050565b6000614d2b8383614d10565b60208301905092915050565b6000602082019050919050565b6000614d4f82614ce4565b614d598185614cef565b9350614d6483614d00565b8060005b83811015614d95578151614d7c8882614d1f565b9750614d8783614d37565b925050600181019050614d68565b5085935050505092915050565b60006020820190508181036000830152614dbc8184614d44565b905092915050565b600080600080600080600060e0888a031215614de357614de261491f565b5b6000614df18a828b016149a3565b9750506020614e028a828b016149a3565b9650506040614e138a828b016149a3565b9550506060614e248a828b016149a3565b9450506080614e358a828b016149a3565b93505060a0614e468a828b016149a3565b92505060c0614e578a828b016149a3565b91505092959891949750929550565b60008060408385031215614e7d57614e7c61491f565b5b6000614e8b8582860161496d565b9250506020614e9c8582860161496d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614eed57607f821691505b602082108103614f0057614eff614ea6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f3c602083614878565b9150614f4782614f06565b602082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b6000614fce602883614878565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b600061500f82614ab1565b9050919050565b61501f81615004565b82525050565b600060208201905061503a6000830184615016565b92915050565b60008151905061504f81614956565b92915050565b60006020828403121561506b5761506a61491f565b5b600061507984828501615040565b91505092915050565b60006040820190506150976000830185614cba565b6150a46020830184614cba565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b6000615107603483614878565b9150615112826150ab565b604082019050919050565b60006020820190508181036000830152615136816150fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061517782614982565b915061518283614982565b925082820261519081614982565b915082820484148315176151a7576151a661513d565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b60006151e4601e83614878565b91506151ef826151ae565b602082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b6000615250601b83614878565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b600061529182614982565b915061529c83614982565b92508282019050808211156152b4576152b361513d565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b6000615316602483614878565b9150615321826152ba565b604082019050919050565b6000602082019050818103600083015261534581615309565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061538682614982565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153b8576153b761513d565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b60006153f9601b83614878565b9150615404826153c3565b602082019050919050565b60006020820190508181036000830152615428816153ec565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061548b602183614878565b91506154968261542f565b604082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b600060c0820190506154d66000830189614a5b565b6154e36020830188614a5b565b6154f06040830187614a5b565b6154fd6060830186614a5b565b61550a6080830185614a5b565b61551760a0830184614a5b565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061557e602683614878565b915061558982615522565b604082019050919050565b600060208201905081810360008301526155ad81615571565b9050919050565b60006155bf82614982565b91506155ca83614982565b92508282039050818111156155e2576155e161513d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061562282614982565b915061562d83614982565b92508261563d5761563c6155e8565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156a4602483614878565b91506156af82615648565b604082019050919050565b600060208201905081810360008301526156d381615697565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615736602283614878565b9150615741826156da565b604082019050919050565b6000602082019050818103600083015261576581615729565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b60006157c8603f83614878565b91506157d38261576c565b604082019050919050565b600060208201905081810360008301526157f7816157bb565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000615834601383614878565b915061583f826157fe565b602082019050919050565b6000602082019050818103600083015261586381615827565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b60006158c6602783614878565b91506158d18261586a565b604082019050919050565b600060208201905081810360008301526158f5816158b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600061595061594b6159468461592b565b614a85565b614982565b9050919050565b61596081615935565b82525050565b600060a08201905061597b6000830188614a5b565b6159886020830187615957565b818103604083015261599a8186614d44565b90506159a96060830185614cba565b6159b66080830184614a5b565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a1c602283614878565b9150615a27826159c0565b604082019050919050565b60006020820190508181036000830152615a4b81615a0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615add602583614878565b9150615ae882615a81565b604082019050919050565b60006020820190508181036000830152615b0c81615ad0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615b6f602383614878565b9150615b7a82615b13565b604082019050919050565b60006020820190508181036000830152615b9e81615b62565b9050919050565b6000604082019050615bba6000830185614a5b565b615bc76020830184614a5b565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c2a602183614878565b9150615c3582615bce565b604082019050919050565b60006020820190508181036000830152615c5981615c1d565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011c782fa667bae2fd509562d7f6b876d600bf351eab7a690ddd5582975e2719a64736f6c63430008110033

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.