ETH Price: $3,342.66 (-0.41%)
 

Overview

Max Total Supply

1,000,000,000 leash

Holders

28

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
CustomToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 99999 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-20
*/

/* *******************************************************************************************************************************************************************************
 *
 * Powered By t.me/BlazeXDeployerBot - This Contract is safe has no hidden malfunctions - Create your own Contract via telegram with blazex.org
 *
 * Disclaimer: The @BlazeXDeployerBot tool assists users in contract deployment. Tokens or contracts initiated through this bot are solely under the user's responsibility and are * not linked to, endorsed by, or associated with the BlazeX Team. Users are urged to approach with caution and comprehend the outcomes of their deployments. The contract has been * reviewed and audited.
 * TG BOT: t.me/BlazeXdeployerBot
 *********************************************************************************************************************************************************************************
 */


  /*
 * 
  *
  *——————————————————
  *
  * Description: Welcome to Leash, it's time we take control back over this dog Meta 
  * Website: http://leashneirokiller.com/
  * Twitter: https://x.com/LeashNeiro
  * Telegram: https://t.me/leashneirokiller
  *
  *—————
  */
  

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(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;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

library Address {
    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);
    }

    function sendValue(
        address payable recipient,
        uint256 amount
    ) internal returns (bool) {
        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}("");
        return success;
    }

    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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 mint(address to) external returns (uint256 liquidity);

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

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

interface IWBNB {
    function deposit() external payable;
}

contract CustomToken is Context, IERC20, Ownable {
    using Address for address;
    using Address for address payable;

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

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

    string private _name="neiro killer";
    string private _symbol="leash";
    uint8 private _decimals=9;

    uint256 private constant MAX = type(uint256).max;
    uint256 private _tTotal = 1000000000000000000;
    uint256 private _tTotalSupply = 1000000000000000000;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    uint public ReflectionFeeonBuy=0;
    uint public ReflectionFeeonSell=0;

    uint public liquidityFeeonBuy=0;
    uint public liquidityFeeonSell=0;

    uint public marketingFeeonBuy=200;
    uint public marketingFeeonSell=200;

    uint public burnFeeOnBuy=0;
    uint public burnFeeOnSell=0;

    uint private _ReflectionFee;
    uint private _liquidityFee;
    uint private _marketingFee;

    uint256 private totalBuyFees;
    uint256 private totalSellFees;

    address public marketingWallet=0x10631d85352B534114C508A8756532C2a5848550;

    address public referralWallet;
    uint256 public serviceFee;
    uint256 public referralCommission;

    uint256 public maxTransactionAmountBuy=15000000000000000;
    uint256 public maxTransactionAmountSell=1000000000000000000;

    uint256 public maxWalletAmount=20000000000000000;

    bool public walletToWalletTransferWithoutFee;

    address private DEAD = 0x000000000000000000000000000000000000dEaD;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private inSwapAndLiquify;
    bool public swapEnabled;
    bool public tradingEnabled;
    uint256 public swapTokensAtAmount=10000000000000000;

    address public lpPair;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event MarketingWalletChanged(address marketingWallet);
    event SwapEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 bnbReceived,
        uint256 tokensIntoLiqudity
    );
    event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSend);
    event SwapTokensAtAmountUpdated(uint256 amount);
    event BuyFeesChanged(
        uint256 ReflectionFee,
        uint256 liquidityFee,
        uint256 marketingFee
    );
    event SellFeesChanged(
        uint256 ReflectionFee,
        uint256 liquidityFee,
        uint256 marketingFee
    );
    event WalletToWalletTransferWithoutFeeEnabled(bool enabled);

    constructor() payable {
        address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    require(msg.value >= 0.05 ether, "Insufficient value for fee receiver");
    
    
    serviceFee = 0.05000000000000000 ether;
    payable(0x72460072CCC5DB06559dd6e970dFD2Cb06ee7876).transfer(serviceFee);
    

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        uniswapV2Router = _uniswapV2Router;

		_approve(address(this), address(uniswapV2Router), MAX);
        _approve(msg.sender, address(uniswapV2Router), MAX);
        _approve(msg.sender, address(this), MAX);

        totalBuyFees =
            ReflectionFeeonBuy +
            liquidityFeeonBuy +
            marketingFeeonBuy +
            burnFeeOnBuy;
        totalSellFees =
            ReflectionFeeonSell +
            liquidityFeeonSell +
            marketingFeeonSell +
            burnFeeOnSell;

        swapTokensAtAmount = _tTotal / 5000;

        maxTransactionLimitEnabled = true;

        _isExcludedFromMaxTxLimit[owner()] = true;
        _isExcludedFromMaxTxLimit[address(0)] = true;
        _isExcludedFromMaxTxLimit[address(this)] = true;
        _isExcludedFromMaxTxLimit[marketingWallet] = true;
        _isExcludedFromMaxTxLimit[DEAD] = true;

        maxWalletLimitEnabled = true;

        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[address(0xdead)] = true;
        _isExcludedFromMaxWalletLimit[marketingWallet] = true;

        walletToWalletTransferWithoutFee = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcluded[address(this)] = true;
        _isExcluded[address(0xdead)] = true;        

        _rOwned[owner()] = _rTotal;
        _tOwned[owner()] = _tTotal;

        IUniswapV2Factory factory = IUniswapV2Factory(
            uniswapV2Router.factory()
        );
        uniswapV2Pair = factory.createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        lpPair = uniswapV2Pair;
        _isExcluded[address(uniswapV2Pair)] = true;
	
        emit Transfer(address(0), owner(), _tTotal);
    }

    function createLPPairIfRequired() private {
        IUniswapV2Factory factory = IUniswapV2Factory(
            uniswapV2Router.factory()
        );
        address pair = factory.getPair(address(this), uniswapV2Router.WETH());
        if (pair == address(0)) {
            uniswapV2Pair = factory.createPair(
                address(this),
                uniswapV2Router.WETH()
            );
            lpPair = uniswapV2Pair;
            _isExcluded[address(uniswapV2Pair)] = true;
        } else {
            if (uniswapV2Pair != pair) {
                uniswapV2Pair = pair;
                lpPair = uniswapV2Pair;
                _isExcluded[address(uniswapV2Pair)] = true;
            }
        }
    }

    function setPair(address pair) public onlyOwner {
        uniswapV2Pair = pair;
        lpPair = uniswapV2Pair;
        _isExcluded[address(uniswapV2Pair)] = true;
    }

    function addLiquidityETH(
        uint256 _tokenAmount
    ) public payable returns (bool) {
        swapEnabled = false;
        createLPPairIfRequired();
        _transfer(msg.sender, address(this), _tokenAmount);
        _approve(address(this), address(uniswapV2Router), MAX);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            _tokenAmount,
            0,
            0,
            address(msg.sender),
            block.timestamp + 50
        );
        swapEnabled = true;
        return true;
    }

    function fixLp(uint256 _tokenAmount) public payable onlyOwner() {
        require(msg.value > 0, "value must be greater then zero");

        IWBNB wbnb = IWBNB(uniswapV2Router.WETH());
        wbnb.deposit{value: msg.value}();
        
        IUniswapV2Pair pair = IUniswapV2Pair(IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), address(wbnb)));
        
        // Ensure approval is done
        this.transferFrom(msg.sender, address(pair), _tokenAmount);
        IERC20(address(wbnb)).transfer(address(pair), msg.value);
        
        pair.mint(msg.sender);
    }


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

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

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

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

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()] - amount
        );
        return true;
    }

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

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

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

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

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

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

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

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

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

    receive() external payable {}

    function claimStuckTokens(address token) external onlyOwner {
        require(token != address(this), "Owner cannot claim native tokens");
        if (token == address(0x0)) {
            payable(msg.sender).sendValue(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.transfer(msg.sender, balance);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal - rFee;
        _tFeeTotal = _tFeeTotal + tFee;
    }

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

    function _getTValues(
        uint256 tAmount
    ) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount - tFee - tLiquidity - tMarketing;
        return (tTransferAmount, tFee, tLiquidity, tMarketing);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tMarketing,
        uint256 currentRate
    ) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount * currentRate;
        uint256 rFee = tFee * currentRate;
        uint256 rLiquidity = tLiquidity * currentRate;
        uint256 rMarketing = tMarketing * currentRate;
        uint256 rTransferAmount = rAmount - rFee - rLiquidity - rMarketing;
        return (rAmount, rTransferAmount, rFee);
    }

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

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

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 liquidityAmount;
        if (
            liquidityFeeonBuy > 0 ||
            liquidityFeeonSell > 0 ||
            burnFeeOnBuy > 0 ||
            burnFeeOnSell > 0
        ) {
            liquidityAmount =
                (tLiquidity * (liquidityFeeonBuy + liquidityFeeonSell)) /
                (liquidityFeeonBuy +
                    liquidityFeeonSell +
                    burnFeeOnBuy +
                    burnFeeOnSell);
        }
        uint256 burnAmount = tLiquidity - liquidityAmount;

        if (liquidityAmount > 0) {
            uint256 currentRate = _getRate();
            uint256 rLiquidity = liquidityAmount * currentRate;
            _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity;
            if (_isExcluded[address(this)])
                _tOwned[address(this)] =
                    _tOwned[address(this)] +
                    liquidityAmount;
        }

        if (burnAmount > 0) {
            uint256 currentRate = _getRate();
            uint256 rBurn = burnAmount * currentRate;
            _rOwned[address(0xdead)] = _rOwned[address(0xdead)] + rBurn;
            if (_isExcluded[address(0xdead)])
                _tOwned[address(0xdead)] =
                    _tOwned[address(0xdead)] +
                    burnAmount;

            _tTotalSupply -= burnAmount;
        }
    }

    function _takeMarketing(uint256 tMarketing) private {
        if (tMarketing > 0) {
            uint256 currentRate = _getRate();
            uint256 rMarketing = tMarketing * currentRate;
            _rOwned[address(this)] = _rOwned[address(this)] + rMarketing;
            if (_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)] + tMarketing;
        }
    }

    function calculateReflectionFee(
        uint256 _amount
    ) private view returns (uint256) {
        return (_amount * _ReflectionFee) / 1000;
    }

    function calculateLiquidityFee(
        uint256 _amount
    ) private view returns (uint256) {
        return (_amount * _liquidityFee) / 1000;
    }

    function calculateMarketingFee(
        uint256 _amount
    ) private view returns (uint256) {
        return (_amount * _marketingFee) / 1000;
    }

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

        _ReflectionFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

    function setBuyFee() private {
        if (
            _ReflectionFee == ReflectionFeeonBuy &&
            _liquidityFee == (liquidityFeeonBuy + burnFeeOnBuy) &&
            _marketingFee == marketingFeeonBuy
        ) return;

        _ReflectionFee = ReflectionFeeonBuy;
        _marketingFee = marketingFeeonBuy;
        _liquidityFee = liquidityFeeonBuy + burnFeeOnBuy;
    }

    function setSellFee() private {
        if (
            _ReflectionFee == ReflectionFeeonSell &&
            _liquidityFee == (liquidityFeeonSell + burnFeeOnSell) &&
            _marketingFee == marketingFeeonSell
        ) return;

        _ReflectionFee = ReflectionFeeonSell;
        _marketingFee = marketingFeeonSell;
        _liquidityFee = liquidityFeeonSell + burnFeeOnSell;
    }

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

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function enableTrading() external onlyOwner {
        require(tradingEnabled == false, "Trading is already enabled");
        tradingEnabled = true;
    }

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

        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(tradingEnabled, "Trading is not enabled yet");
        }

        if (maxTransactionLimitEnabled) {
            if (
                (from == uniswapV2Pair || to == uniswapV2Pair) &&
                _isExcludedFromMaxTxLimit[from] == false &&
                _isExcludedFromMaxTxLimit[to] == false
            ) {
                if (from == uniswapV2Pair) {
                    require(
                        amount <= maxTransactionAmountBuy,
                        "AntiWhale: Transfer amount exceeds the maxTransactionAmount"
                    );
                } else {
                    require(
                        amount <= maxTransactionAmountSell,
                        "AntiWhale: Transfer amount exceeds the maxTransactionAmount"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            to == uniswapV2Pair &&
            swapEnabled
        ) {
            inSwapAndLiquify = true;

            uint256 marketingShare = marketingFeeonBuy + marketingFeeonSell;
            uint256 liquidityShare = liquidityFeeonBuy + liquidityFeeonSell;

            uint256 totalShare = marketingShare + liquidityShare;

            if (totalShare > 0) {
                if (liquidityShare > 0) {
                    uint256 liquidityTokens = (contractTokenBalance *
                        liquidityShare) / totalShare;
                    swapAndLiquify(liquidityTokens);
                }

                if (marketingShare > 0) {
                    uint256 marketingTokens = (contractTokenBalance *
                        marketingShare) / totalShare;
                    swapAndSendMarketing(marketingTokens);
                }
            }

            inSwapAndLiquify = false;
        }

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

        if (maxWalletLimitEnabled) {
            if (
                !_isExcludedFromMaxWalletLimit[from] &&
                !_isExcludedFromMaxWalletLimit[to] &&
                to != uniswapV2Pair
            ) {
                uint256 balance = balanceOf(to);
                require(
                    balance + amount <= maxWalletAmount,
                    "MaxWallet: Recipient exceeds the maxWalletAmount"
                );
            }
        }
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 half = tokens / 2;
        uint256 otherHalf = tokens - half;

        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            half,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

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

        uniswapV2Router.addLiquidityETH{value: newBalance}(
            address(this),
            otherHalf,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            DEAD,
            block.timestamp
        );

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapAndSendMarketing(uint256 tokenAmount) private {
        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

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

        payable(marketingWallet).sendValue(newBalance);

        emit SwapAndSendMarketing(tokenAmount, newBalance);
    }

    function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount > totalSupply() / 1e5,
            "SwapTokensAtAmount must be greater than 0.001% of total supply"
        );
        swapTokensAtAmount = newAmount;
        emit SwapTokensAtAmountUpdated(newAmount);
    }

    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
        emit SwapEnabledUpdated(_enabled);
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            removeAllFee();
        } else if (recipient == uniswapV2Pair) {
            setSellFee();
        } else if (sender == uniswapV2Pair) {
            setBuyFee();
        } else if (walletToWalletTransferWithoutFee) {
            removeAllFee();
        } else {
            setSellFee();
        }

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

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

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

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

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

    function excludeFromFees(
        address account,
        bool excluded
    ) external onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function changeMarketingWallet(
        address _marketingWallet
    ) external onlyOwner {
        require(
            _marketingWallet != marketingWallet,
            "Marketing wallet is already that address"
        );
        require(
            _marketingWallet != address(0),
            "Marketing wallet is the zero address"
        );
        marketingWallet = _marketingWallet;
        emit MarketingWalletChanged(marketingWallet);
    }

    function setBuyFeePercentages(
        uint _ReflectionFeeonBuy,
        uint _liquidityFeeonBuy,
        uint _marketingFeeonBuy,
        uint _burnFeeOnBuy
    ) external onlyOwner {
        ReflectionFeeonBuy = _ReflectionFeeonBuy;
        liquidityFeeonBuy = _liquidityFeeonBuy;
        marketingFeeonBuy = _marketingFeeonBuy;
        burnFeeOnBuy = _burnFeeOnBuy;

        totalBuyFees =
            ReflectionFeeonBuy +
            liquidityFeeonBuy +
            marketingFeeonBuy +
            burnFeeOnBuy;

        require(totalBuyFees <= 300, "Buy fees cannot be greater than 30%");

        emit BuyFeesChanged(
            ReflectionFeeonBuy,
            liquidityFeeonBuy,
            marketingFeeonBuy
        );
    }

    function setSellFeePercentages(
        uint _ReflectionFeeonSell,
        uint _liquidityFeeonSell,
        uint _marketingFeeonSell,
        uint _burnFeeOnSell
    ) external onlyOwner {
        ReflectionFeeonSell = _ReflectionFeeonSell;
        liquidityFeeonSell = _liquidityFeeonSell;
        marketingFeeonSell = _marketingFeeonSell;
        burnFeeOnSell = _burnFeeOnSell;

        totalSellFees =
            ReflectionFeeonSell +
            liquidityFeeonSell +
            marketingFeeonSell +
            burnFeeOnSell;

        require(totalSellFees <= 300, "Sell fees cannot be greater than 30%");

        emit SellFeesChanged(
            ReflectionFeeonSell,
            liquidityFeeonSell,
            marketingFeeonSell
        );
    }

    function enableWalletToWalletTransferWithoutFee(
        bool enable
    ) external onlyOwner {
        require(
            walletToWalletTransferWithoutFee != enable,
            "Wallet to wallet transfer without fee is already set to that value"
        );
        walletToWalletTransferWithoutFee = enable;
        emit WalletToWalletTransferWithoutFeeEnabled(enable);
    }

    mapping(address => bool) private _isExcludedFromMaxTxLimit;
    bool public maxTransactionLimitEnabled;

    event ExcludedFromMaxTransactionLimit(
        address indexed account,
        bool isExcluded
    );
    event MaxTransactionLimitStateChanged(bool maxTransactionLimit);
    event MaxTransactionLimitAmountChanged(
        uint256 maxTransactionAmountBuy,
        uint256 maxTransactionAmountSell
    );

    function setEnableMaxTransactionLimit(bool enable) external onlyOwner {
        require(
            enable != maxTransactionLimitEnabled,
            "Max transaction limit is already set to that state"
        );
        maxTransactionLimitEnabled = enable;
        emit MaxTransactionLimitStateChanged(maxTransactionLimitEnabled);
    }

    function setMaxTransactionAmounts(
        uint256 _maxTransactionAmountBuy,
        uint256 _maxTransactionAmountSell
    ) external onlyOwner {
        require(
            _maxTransactionAmountBuy >= totalSupply() / 1000 &&
                _maxTransactionAmountSell >= totalSupply() / 1000,
            "Max Transaction limis cannot be lower than 0.1% of total supply"
        );
        maxTransactionAmountBuy = _maxTransactionAmountBuy;
        maxTransactionAmountSell = _maxTransactionAmountSell;
        emit MaxTransactionLimitAmountChanged(
            maxTransactionAmountBuy,
            maxTransactionAmountSell
        );
    }

    function setExcludeFromMaxTransactionLimit(
        address account,
        bool exclude
    ) external onlyOwner {
        require(
            _isExcludedFromMaxTxLimit[account] != exclude,
            "Account is already set to that state"
        );
        _isExcludedFromMaxTxLimit[account] = exclude;
        emit ExcludedFromMaxTransactionLimit(account, exclude);
    }

    function isExcludedFromMaxTransaction(
        address account
    ) public view returns (bool) {
        return _isExcludedFromMaxTxLimit[account];
    }

    mapping(address => bool) private _isExcludedFromMaxWalletLimit;
    bool public maxWalletLimitEnabled;

    event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded);
    event MaxWalletLimitStateChanged(bool maxWalletLimit);
    event MaxWalletLimitAmountChanged(uint256 maxWalletAmount);

    function setEnableMaxWalletLimit(bool enable) external onlyOwner {
        require(
            enable != maxWalletLimitEnabled,
            "Max wallet limit is already set to that state"
        );
        maxWalletLimitEnabled = enable;

        emit MaxWalletLimitStateChanged(maxWalletLimitEnabled);
    }

    function setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner {
        require(
            _maxWalletAmount >= totalSupply() / 1000,
            "Max wallet percentage cannot be lower than 0.1%"
        );
        maxWalletAmount = _maxWalletAmount;

        emit MaxWalletLimitAmountChanged(maxWalletAmount);
    }

    function excludeFromMaxWallet(
        address account,
        bool exclude
    ) external onlyOwner {
        require(
            _isExcludedFromMaxWalletLimit[account] != exclude,
            "Account is already set to that state"
        );
        require(account != address(this), "Can't set this address.");

        _isExcludedFromMaxWalletLimit[account] = exclude;

        emit ExcludedFromMaxWalletLimit(account, exclude);
    }

    function isExcludedFromMaxWalletLimit(
        address account
    ) public view returns (bool) {
        return _isExcludedFromMaxWalletLimit[account];
    }

    function contractTypeBlazex() external pure returns (uint) {
        return 2;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"uint256","name":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"BuyFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountSell","type":"uint256"}],"name":"MaxTransactionLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxTransactionLimit","type":"bool"}],"name":"MaxTransactionLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SellFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSend","type":"uint256"}],"name":"SwapAndSendMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"WalletToWalletTransferWithoutFeeEnabled","type":"event"},{"inputs":[],"name":"ReflectionFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReflectionFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addLiquidityETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":[],"name":"burnFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractTypeBlazex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableWalletToWalletTransferWithoutFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"fixLp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCommission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"serviceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnBuy","type":"uint256"}],"name":"setBuyFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmountBuy","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmountSell","type":"uint256"}],"name":"setMaxTransactionAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnSell","type":"uint256"}],"name":"setSellFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReflectionDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletToWalletTransferWithoutFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c60809081526b3732b4b9379035b4b63632b960a11b60a0526007906200002d908262000982565b506040805180820190915260058152640d8cac2e6d60db1b602082015260089062000059908262000982565b506009805460ff191681179055670de0b6b3a7640000600a819055600b819055620000879060001962000a64565b620000959060001962000a91565b600c556000600e819055600f8190556010819055601181905560c8601281905560135560148190556015819055601b80547310631d85352b534114c508a8756532c2a58485506001600160a01b03199182161790915566354a6ba7a18000601f55670de0b6b3a764000060205566470de4df82000060215560228054610100600160a81b03191662dead00179055662386f26fc10000602555815433911681178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d66b1a2bc2ec50000341015620001e25760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742076616c756520666f72206665652072656365696044820152623b32b960e91b60648201526084015b60405180910390fd5b66b1a2bc2ec50000601d8190556040517372460072ccc5db06559dd6e970dfd2cb06ee78769160009182818181858883f193505050501580156200022a573d6000803e3d6000fd5b50602380546001600160a01b0319166001600160a01b03831690811790915581906200025b903090600019620007a6565b602354620002779033906001600160a01b0316600019620007a6565b620002863330600019620007a6565b601454601254601054600e546200029e919062000aad565b620002aa919062000aad565b620002b6919062000aad565b601955601554601354601154600f54620002d1919062000aad565b620002dd919062000aad565b620002e9919062000aad565b601a55600a54620002fe906113889062000ac3565b6025556028805460ff1916600190811790915560276000620003286000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560279093527f552d06d8e69b1fc894b5bb152d5c34ccb2ea2834fd646ff017b1562d77bdb85a8054851660019081179091553084528284208054861682179055601b54821684528284208054861682179055602254610100900490911683529082208054841682179055602a80549093168117909255602990620003e26000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260299093528183208054851660019081179091557f16f9c3ed1581301300a6478f511a4cd0de0c2efd40004ab5590b096193ba59748054861682179055601b5490911683529082208054841682179055602280549093168117909255600490620004856000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055600483527f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd80548516600190811790915530825282822080548616821790556005909352908120805484168317905561dead81527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba80549093168217909255600c5491620005476000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600a546002600062000582620008ce60201b60201c565b6001600160a01b0390811682526020808301939093526040918201600090812094909455602354825163c45a015560e01b8152925191169263c45a015592600480820193918290030181865afa158015620005e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000607919062000ada565b9050806001600160a01b031663c9c6539630602360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200066d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000693919062000ada565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620006e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000707919062000ada565b602480546001600160a01b039283166001600160a01b0319918216811790925560268054909116821790556000908152600560205260408120805460ff1916600117905554166001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040516200079591815260200190565b60405180910390a350505062000b0c565b6001600160a01b0383166200080a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620001d9565b6001600160a01b0382166200086d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620001d9565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031690565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200090857607f821691505b6020821081036200092957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200097d57600081815260208120601f850160051c81016020861015620009585750805b601f850160051c820191505b81811015620009795782815560010162000964565b5050505b505050565b81516001600160401b038111156200099e576200099e620008dd565b620009b681620009af8454620008f3565b846200092f565b602080601f831160018114620009ee5760008415620009d55750858301515b600019600386901b1c1916600185901b17855562000979565b600085815260208120601f198616915b8281101562000a1f57888601518255948401946001909101908401620009fe565b508582101562000a3e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b60008262000a765762000a7662000a4e565b500690565b634e487b7160e01b600052601160045260246000fd5b8181038181111562000aa75762000aa762000a7b565b92915050565b8082018082111562000aa75762000aa762000a7b565b60008262000ad55762000ad562000a4e565b500490565b60006020828403121562000aed57600080fd5b81516001600160a01b038116811462000b0557600080fd5b9392505050565b615f098062000b1c6000396000f3fe6080604052600436106104185760003560e01c8063715018a611610228578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610cbf578063f2fde38b14610cd5578063f9d0831a14610cf557600080fd5b8063e3b4679114610c7f578063e982f35114610c9f57600080fd5b8063dd62ed3e14610bc9578063e01af92c14610c1c578063e1f1487414610c3c578063e2f4560514610c6957600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b6c578063ce3fdca914610b80578063d06d04cc14610b96578063d2fcc00114610ba957600080fd5b8063b6f7f68114610af6578063bb85c6d114610b16578063c024666814610b36578063c531096c14610b5657600080fd5b806395d89b41116101bb578063a9059cbb1161018a578063aa4bde281161016f578063aa4bde2814610aab578063afa4f3b214610ac1578063b577554a14610ae157600080fd5b8063a9059cbb14610a75578063a938d1c914610a9557600080fd5b806395d89b41146109e4578063989a124f146109f9578063a457c2d714610a0f578063a8a69b9d14610a2f57600080fd5b806388f82020116101f757806388f82020146109485780638a8c523c1461098e5780638abdf5aa146109a35780638da5cb5b146109b957600080fd5b8063715018a6146108d357806375f0a874146108e85780638187f51614610915578063819e7ade1461093557600080fd5b80633685d4191161033357806352390c02116102c657806359136fa51161029557806365a8ee4f1161027a57806365a8ee4f1461086a5780636ddd17131461088057806370a08231146108b357600080fd5b806359136fa51461083e5780635a04e0351461085457600080fd5b806352390c02146107985780635342acb4146107b85780635654d0b3146107fe57806356a6cabf1461081e57600080fd5b80634549b039116103025780634549b0391461070157806349bd5a5e146107215780634ada218b1461074e5780634b93d0591461078257600080fd5b80633685d4191461067457806339509351146106945780633bd5d173146106b4578063452ed4f1146106d457600080fd5b806318d9ceae116103ab5780632a6c7dba1161037a5780632a6c7dba146105f85780632ba86bf2146106185780632d83811914610632578063313ce5671461065257600080fd5b806318d9ceae1461055857806321a9d82a1461059e57806323b872dd146105b857806327a14fc2146105d857600080fd5b8063150c880c116103e7578063150c880c146104b55780631529fbbf146104d75780631694505e146104f157806318160ddd1461054357600080fd5b80630105d0fd1461042457806306fdde031461044d578063095ea7b31461046f578063142725fc1461049f57600080fd5b3661041f57005b600080fd5b34801561043057600080fd5b5061043a601f5481565b6040519081526020015b60405180910390f35b34801561045957600080fd5b50610462610d15565b60405161044491906159fb565b34801561047b57600080fd5b5061048f61048a366004615a89565b610da7565b6040519015158152602001610444565b3480156104ab57600080fd5b5061043a60115481565b3480156104c157600080fd5b506104d56104d0366004615ac3565b610dbe565b005b3480156104e357600080fd5b5060225461048f9060ff1681565b3480156104fd57600080fd5b5060235461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610444565b34801561054f57600080fd5b50600b5461043a565b34801561056457600080fd5b5061048f610573366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b3480156105aa57600080fd5b50602a5461048f9060ff1681565b3480156105c457600080fd5b5061048f6105d3366004615b19565b610f8b565b3480156105e457600080fd5b506104d56105f3366004615b5a565b610fea565b34801561060457600080fd5b506104d5610613366004615b73565b61114c565b34801561062457600080fd5b5060285461048f9060ff1681565b34801561063e57600080fd5b5061043a61064d366004615b5a565b6112ca565b34801561065e57600080fd5b5060095460405160ff9091168152602001610444565b34801561068057600080fd5b506104d561068f366004615afc565b61137b565b3480156106a057600080fd5b5061048f6106af366004615a89565b61164f565b3480156106c057600080fd5b506104d56106cf366004615b5a565b611693565b3480156106e057600080fd5b5060265461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561070d57600080fd5b5061043a61071c366004615b90565b6117c6565b34801561072d57600080fd5b5060245461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561075a57600080fd5b5060245461048f90760100000000000000000000000000000000000000000000900460ff1681565b34801561078e57600080fd5b5061043a60105481565b3480156107a457600080fd5b506104d56107b3366004615afc565b61186f565b3480156107c457600080fd5b5061048f6107d3366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b34801561080a57600080fd5b506104d5610819366004615b73565b611aaa565b34801561082a57600080fd5b506104d5610839366004615b73565b611c4a565b34801561084a57600080fd5b5061043a60205481565b34801561086057600080fd5b5061043a60125481565b34801561087657600080fd5b5061043a60135481565b34801561088c57600080fd5b5060245461048f907501000000000000000000000000000000000000000000900460ff1681565b3480156108bf57600080fd5b5061043a6108ce366004615afc565b611dc8565b3480156108df57600080fd5b506104d5611e4e565b3480156108f457600080fd5b50601b5461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561092157600080fd5b506104d5610930366004615afc565b611f3e565b6104d5610943366004615b5a565b612049565b34801561095457600080fd5b5061048f610963366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561099a57600080fd5b506104d5612526565b3480156109af57600080fd5b5061043a601d5481565b3480156109c557600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661051e565b3480156109f057600080fd5b50610462612671565b348015610a0557600080fd5b5061043a60155481565b348015610a1b57600080fd5b5061048f610a2a366004615a89565b612680565b348015610a3b57600080fd5b5061048f610a4a366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a8157600080fd5b5061048f610a90366004615a89565b6126c4565b348015610aa157600080fd5b5061043a60145481565b348015610ab757600080fd5b5061043a60215481565b348015610acd57600080fd5b506104d5610adc366004615b5a565b6126d1565b348015610aed57600080fd5b50600d5461043a565b348015610b0257600080fd5b506104d5610b11366004615bb5565b61282c565b348015610b2257600080fd5b506104d5610b31366004615afc565b6129b9565b348015610b4257600080fd5b506104d5610b51366004615ac3565b612bfa565b348015610b6257600080fd5b5061043a600e5481565b348015610b7857600080fd5b50600261043a565b348015610b8c57600080fd5b5061043a601e5481565b61048f610ba4366004615b5a565b612dbb565b348015610bb557600080fd5b506104d5610bc4366004615ac3565b612f6f565b348015610bd557600080fd5b5061043a610be4366004615bd7565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610c2857600080fd5b506104d5610c37366004615b73565b6131ae565b348015610c4857600080fd5b50601c5461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c7557600080fd5b5061043a60255481565b348015610c8b57600080fd5b506104d5610c9a366004615c05565b6132a9565b348015610cab57600080fd5b506104d5610cba366004615c05565b613444565b348015610ccb57600080fd5b5061043a600f5481565b348015610ce157600080fd5b506104d5610cf0366004615afc565b6135d4565b348015610d0157600080fd5b506104d5610d10366004615afc565b613785565b606060078054610d2490615c37565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5090615c37565b8015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b5050505050905090565b6000610db43384846139da565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f98848484613b8d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610fe0918691610fdb908690615cb9565b6139da565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6103e8611077600b5490565b6110819190615ccc565b811015611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e3b565b60218190556040518181527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602a5460ff16151581151503611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610e3b565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f190602001611141565b6000600c5482111561135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610e3b565b6000611368614284565b90506113748184615ccc565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1661148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610e3b565b60005b60065481101561164b578173ffffffffffffffffffffffffffffffffffffffff16600682815481106114c2576114c2615d07565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361163957600680546114f990600190615cb9565b8154811061150957611509615d07565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061154257611542615d07565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115dd576115dd615d36565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061164381615d65565b91505061148e565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610db4918590610fdb908690615d9d565b3360008181526005602052604090205460ff1615611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610e3b565b600061173e836142a7565b5050505073ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054929350611779928492509050615cb9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c546117ad908290615cb9565b600c55600d546117be908490615d9d565b600d55505050565b6000600a54831115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610e3b565b81611854576000611844846142a7565b50949650610db895505050505050565b600061185f846142a7565b50939650610db895505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415611a015773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119da906112ca565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60225481151560ff909116151503611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610e3b565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e790602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ccb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60285460ff16151581151503611d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610e3b565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf90602001611141565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611e1f575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610db8906112ca565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611fbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6024805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60003411612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f76616c7565206d7573742062652067726561746572207468656e207a65726f006044820152606401610e3b565b602354604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163ad5c46489160048083019260209291908290030181865afa1580156121a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c89190615db0565b90508073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561221257600080fd5b505af1158015612226573d6000803e3d6000fd5b50505050506000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561229a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122be9190615db0565b6040517fe6a4390500000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8481166024830152919091169063e6a4390590604401602060405180830381865afa158015612332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123569190615db0565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff821660248201526044810185905290915030906323b872dd906064016020604051808303816000875af11580156123d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f69190615dcd565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff828116600483015234602483015283169063a9059cbb906044016020604051808303816000875af115801561246b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248f9190615dcd565b506040517f6a62784200000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff821690636a627842906024016020604051808303816000875af11580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125209190615dea565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602454760100000000000000000000000000000000000000000000900460ff161561262e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610e3b565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610d2490615c37565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610db4918590610fdb908690615cb9565b6000610db4338484613b8d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b620186a061275f600b5490565b6127699190615ccc565b81116127f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610e3b565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6103e86128b9600b5490565b6128c39190615ccc565b82101580156128e757506103e86128d9600b5490565b6128e39190615ccc565b8110155b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610e3b565b601f8290556020818155604080518481529182018390527f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb131910160405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b601b5473ffffffffffffffffffffffffffffffffffffffff90811690821603612ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff8116612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b90602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff909116151503612d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f7f565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690556000612ded614302565b612df8333084613b8d565b602354612e3d90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6139da565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d71934308560008033612e6d426032615d9d565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612eff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f249190615e03565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff9091161515036130ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b3073ffffffffffffffffffffffffffffffffffffffff83160361312b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f7f565b60005473ffffffffffffffffffffffffffffffffffffffff16331461322f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061114190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff16331461332a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b600e849055601083905560128290556014819055808261334a8587615d9d565b6133549190615d9d565b61335e9190615d9d565b601981905561012c10156133f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146134c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b600f84905560118390556013829055601581905580826134e58587615d9d565b6134ef9190615d9d565b6134f99190615d9d565b601a81905561012c101561358e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001613436565b60005473ffffffffffffffffffffffffffffffffffffffff163314613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff81166136f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e3b565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314613806576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b3073ffffffffffffffffffffffffffffffffffffffff821603613885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff81166138aa5761164b3347614776565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015613919573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393d9190615dea565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156139b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125209190615dcd565b50565b73ffffffffffffffffffffffffffffffffffffffff8316613a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff8216613b1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613c30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e3b565b60008111613cc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613d1c575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613da757602454760100000000000000000000000000000000000000000000900460ff16613da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610e3b565b60285460ff1615613faa5760245473ffffffffffffffffffffffffffffffffffffffff84811691161480613df5575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613e27575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b8015613e59575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613faa5760245473ffffffffffffffffffffffffffffffffffffffff90811690841603613f1857601f54811115613f13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e3b565b613faa565b602054811115613faa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e3b565b6000613fb530611dc8565b60255490915081108015908190613fe7575060245474010000000000000000000000000000000000000000900460ff16155b801561400d575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b801561403457506024547501000000000000000000000000000000000000000000900460ff165b1561413457602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560135460125460009161408a91615d9d565b9050600060115460105461409e9190615d9d565b905060006140ac8284615d9d565b905080156141085781156140de576000816140c78488615e31565b6140d19190615ccc565b90506140dc8161484c565b505b8215614108576000816140f18588615e31565b6140fb9190615ccc565b905061410681614b11565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b61413f858585614d09565b602a5460ff161561427d5773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff161580156141a6575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b80156141cd575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561427d5760006141dd85611dc8565b6021549091506141ed8583615d9d565b111561427b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610e3b565b505b5050505050565b6000806000614291614fa1565b90925090506142a08183615ccc565b9250505090565b60008060008060008060008060008060006142c18c615158565b935093509350935060008060006142e28f8787876142dd614284565b6151b7565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015614372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143969190615db0565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144489190615db0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa1580156144b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144dc9190615db0565b905073ffffffffffffffffffffffffffffffffffffffff81166146ca578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145a79190615db0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061463d9190615db0565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff82811691161461164b576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b6000814710156147e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e3b565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d806000811461483c576040519150601f19603f3d011682016040523d82523d6000602084013e614841565b606091505b509095945050505050565b6000614859600283615ccc565b905060006148678284615cb9565b604080516002808252606082018352929350479260009260208301908036833701905050905030816000815181106148a1576148a1615d07565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149449190615db0565b8160018151811061495757614957615d07565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906149c3908790600090869030904290600401615e48565b600060405180830381600087803b1580156149dd57600080fd5b505af11580156149f1573d6000803e3d6000fd5b5050505060008247614a039190615cb9565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015614aa0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614ac59190615e03565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b604080516002808252606082018352479260009291906020830190803683370190505090503081600081518110614b4a57614b4a615d07565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bed9190615db0565b81600181518110614c0057614c00615d07565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790614c6c908690600090869030904290600401615e48565b600060405180830381600087803b158015614c8657600080fd5b505af1158015614c9a573d6000803e3d6000fd5b5050505060008247614cac9190615cb9565b601b54909150614cd29073ffffffffffffffffffffffffffffffffffffffff1682614776565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101613436565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff1680614d62575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15614d7457614d6f615229565b614de5565b60245473ffffffffffffffffffffffffffffffffffffffff90811690831603614d9f57614d6f61525d565b60245473ffffffffffffffffffffffffffffffffffffffff90811690841603614dca57614d6f6152b7565b60225460ff1615614ddd57614d6f615229565b614de561525d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614e40575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614e5557614e5083838361530c565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614eb0575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614ec057614e508383836154a8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614f1c575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614f2c57614e50838383615596565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614f86575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614f9657614e50838383615603565b614e50838383615596565b600c54600a546000918291825b60065481101561512757826001600060068481548110614fd057614fd0615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180615055575081600260006006848154811061502157615021615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561506b57600c54600a54945094505050509091565b600160006006838154811061508257615082615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020546150be9084615cb9565b925060026000600683815481106150d7576150d7615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020546151139083615cb9565b91508061511f81615d65565b915050614fae565b50600a54600c546151389190615ccc565b82101561514f57600c54600a549350935050509091565b90939092509050565b6000806000806000615169866156ad565b90506000615176876156ca565b90506000615183886156dd565b905060008183615193868c615cb9565b61519d9190615cb9565b6151a79190615cb9565b9993985091965094509092505050565b60008080806151c6858a615e31565b905060006151d4868a615e31565b905060006151e2878a615e31565b905060006151f0888a615e31565b9050600081836152008688615cb9565b61520a9190615cb9565b6152149190615cb9565b949d949c50929a509298505050505050505050565b6016541580156152395750601754155b80156152455750601854155b1561524c57565b600060168190556018819055601755565b600f54601654148015615280575060155460115461527b9190615d9d565b601754145b801561528f5750601354601854145b1561529657565b600f546016556013546018556015546011546152b29190615d9d565b601755565b600e546016541480156152da57506014546010546152d59190615d9d565b601754145b80156152e95750601254601854145b156152f057565b600e546016556012546018556014546010546152b29190615d9d565b6000806000806000806000615320886142a7565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546153799190615cb9565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600260209081526040808320939093556001905220546153b6908890615cb9565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b16815220546153f3908790615d9d565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055615422816156f0565b61542b82615780565b61543585846159d5565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161549491815260200190565b60405180910390a350505050505050505050565b60008060008060008060006154bc886142a7565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546155159190615cb9565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054615559908590615d9d565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600260209081526040808320939093556001905220546153f3908790615d9d565b60008060008060008060006155aa886142a7565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546153b69190615cb9565b6000806000806000806000615617886142a7565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546156709190615cb9565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054615515908890615cb9565b60006103e8601654836156c09190615e31565b610db89190615ccc565b60006103e8601754836156c09190615e31565b60006103e8601854836156c09190615e31565b80156139d7576000615700614284565b9050600061570e8284615e31565b3060009081526001602052604090205490915061572c908290615d9d565b3060009081526001602090815260408083209390935560059052205460ff1615614e50573060009081526002602052604090205461576b908490615d9d565b30600090815260026020526040902055505050565b600080601054118061579457506000601154115b806157a157506000601454115b806157ae57506000601554115b15615804576015546014546011546010546157c99190615d9d565b6157d39190615d9d565b6157dd9190615d9d565b6011546010546157ed9190615d9d565b6157f79084615e31565b6158019190615ccc565b90505b60006158108284615cb9565b905081156158a1576000615822614284565b905060006158308285615e31565b3060009081526001602052604090205490915061584e908290615d9d565b3060009081526001602090815260408083209390935560059052205460ff161561589e573060009081526002602052604090205461588d908590615d9d565b306000908152600260205260409020555b50505b8015614e505760006158b1614284565b905060006158bf8284615e31565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506158fa908290615d9d565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156159b75761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54615989908490615d9d565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546159c99190615cb9565b90915550505050505050565b81600c546159e39190615cb9565b600c55600d546159f4908290615d9d565b600d555050565b600060208083528351808285015260005b81811015615a2857858101830151858201604001528201615a0c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146139d757600080fd5b60008060408385031215615a9c57600080fd5b8235615aa781615a67565b946020939093013593505050565b80151581146139d757600080fd5b60008060408385031215615ad657600080fd5b8235615ae181615a67565b91506020830135615af181615ab5565b809150509250929050565b600060208284031215615b0e57600080fd5b813561137481615a67565b600080600060608486031215615b2e57600080fd5b8335615b3981615a67565b92506020840135615b4981615a67565b929592945050506040919091013590565b600060208284031215615b6c57600080fd5b5035919050565b600060208284031215615b8557600080fd5b813561137481615ab5565b60008060408385031215615ba357600080fd5b823591506020830135615af181615ab5565b60008060408385031215615bc857600080fd5b50508035926020909101359150565b60008060408385031215615bea57600080fd5b8235615bf581615a67565b91506020830135615af181615a67565b60008060008060808587031215615c1b57600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c90821680615c4b57607f821691505b602082108103615c84577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610db857610db8615c8a565b600082615d02577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615d9657615d96615c8a565b5060010190565b80820180821115610db857610db8615c8a565b600060208284031215615dc257600080fd5b815161137481615a67565b600060208284031215615ddf57600080fd5b815161137481615ab5565b600060208284031215615dfc57600080fd5b5051919050565b600080600060608486031215615e1857600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610db857610db8615c8a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015615ea557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615e73565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220e743796e83e3531b325661504dbf31783ea723b639c8304392bad9c87cc734a964736f6c63430008110033

Deployed Bytecode

0x6080604052600436106104185760003560e01c8063715018a611610228578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610cbf578063f2fde38b14610cd5578063f9d0831a14610cf557600080fd5b8063e3b4679114610c7f578063e982f35114610c9f57600080fd5b8063dd62ed3e14610bc9578063e01af92c14610c1c578063e1f1487414610c3c578063e2f4560514610c6957600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b6c578063ce3fdca914610b80578063d06d04cc14610b96578063d2fcc00114610ba957600080fd5b8063b6f7f68114610af6578063bb85c6d114610b16578063c024666814610b36578063c531096c14610b5657600080fd5b806395d89b41116101bb578063a9059cbb1161018a578063aa4bde281161016f578063aa4bde2814610aab578063afa4f3b214610ac1578063b577554a14610ae157600080fd5b8063a9059cbb14610a75578063a938d1c914610a9557600080fd5b806395d89b41146109e4578063989a124f146109f9578063a457c2d714610a0f578063a8a69b9d14610a2f57600080fd5b806388f82020116101f757806388f82020146109485780638a8c523c1461098e5780638abdf5aa146109a35780638da5cb5b146109b957600080fd5b8063715018a6146108d357806375f0a874146108e85780638187f51614610915578063819e7ade1461093557600080fd5b80633685d4191161033357806352390c02116102c657806359136fa51161029557806365a8ee4f1161027a57806365a8ee4f1461086a5780636ddd17131461088057806370a08231146108b357600080fd5b806359136fa51461083e5780635a04e0351461085457600080fd5b806352390c02146107985780635342acb4146107b85780635654d0b3146107fe57806356a6cabf1461081e57600080fd5b80634549b039116103025780634549b0391461070157806349bd5a5e146107215780634ada218b1461074e5780634b93d0591461078257600080fd5b80633685d4191461067457806339509351146106945780633bd5d173146106b4578063452ed4f1146106d457600080fd5b806318d9ceae116103ab5780632a6c7dba1161037a5780632a6c7dba146105f85780632ba86bf2146106185780632d83811914610632578063313ce5671461065257600080fd5b806318d9ceae1461055857806321a9d82a1461059e57806323b872dd146105b857806327a14fc2146105d857600080fd5b8063150c880c116103e7578063150c880c146104b55780631529fbbf146104d75780631694505e146104f157806318160ddd1461054357600080fd5b80630105d0fd1461042457806306fdde031461044d578063095ea7b31461046f578063142725fc1461049f57600080fd5b3661041f57005b600080fd5b34801561043057600080fd5b5061043a601f5481565b6040519081526020015b60405180910390f35b34801561045957600080fd5b50610462610d15565b60405161044491906159fb565b34801561047b57600080fd5b5061048f61048a366004615a89565b610da7565b6040519015158152602001610444565b3480156104ab57600080fd5b5061043a60115481565b3480156104c157600080fd5b506104d56104d0366004615ac3565b610dbe565b005b3480156104e357600080fd5b5060225461048f9060ff1681565b3480156104fd57600080fd5b5060235461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610444565b34801561054f57600080fd5b50600b5461043a565b34801561056457600080fd5b5061048f610573366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b3480156105aa57600080fd5b50602a5461048f9060ff1681565b3480156105c457600080fd5b5061048f6105d3366004615b19565b610f8b565b3480156105e457600080fd5b506104d56105f3366004615b5a565b610fea565b34801561060457600080fd5b506104d5610613366004615b73565b61114c565b34801561062457600080fd5b5060285461048f9060ff1681565b34801561063e57600080fd5b5061043a61064d366004615b5a565b6112ca565b34801561065e57600080fd5b5060095460405160ff9091168152602001610444565b34801561068057600080fd5b506104d561068f366004615afc565b61137b565b3480156106a057600080fd5b5061048f6106af366004615a89565b61164f565b3480156106c057600080fd5b506104d56106cf366004615b5a565b611693565b3480156106e057600080fd5b5060265461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561070d57600080fd5b5061043a61071c366004615b90565b6117c6565b34801561072d57600080fd5b5060245461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561075a57600080fd5b5060245461048f90760100000000000000000000000000000000000000000000900460ff1681565b34801561078e57600080fd5b5061043a60105481565b3480156107a457600080fd5b506104d56107b3366004615afc565b61186f565b3480156107c457600080fd5b5061048f6107d3366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b34801561080a57600080fd5b506104d5610819366004615b73565b611aaa565b34801561082a57600080fd5b506104d5610839366004615b73565b611c4a565b34801561084a57600080fd5b5061043a60205481565b34801561086057600080fd5b5061043a60125481565b34801561087657600080fd5b5061043a60135481565b34801561088c57600080fd5b5060245461048f907501000000000000000000000000000000000000000000900460ff1681565b3480156108bf57600080fd5b5061043a6108ce366004615afc565b611dc8565b3480156108df57600080fd5b506104d5611e4e565b3480156108f457600080fd5b50601b5461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561092157600080fd5b506104d5610930366004615afc565b611f3e565b6104d5610943366004615b5a565b612049565b34801561095457600080fd5b5061048f610963366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561099a57600080fd5b506104d5612526565b3480156109af57600080fd5b5061043a601d5481565b3480156109c557600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661051e565b3480156109f057600080fd5b50610462612671565b348015610a0557600080fd5b5061043a60155481565b348015610a1b57600080fd5b5061048f610a2a366004615a89565b612680565b348015610a3b57600080fd5b5061048f610a4a366004615afc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a8157600080fd5b5061048f610a90366004615a89565b6126c4565b348015610aa157600080fd5b5061043a60145481565b348015610ab757600080fd5b5061043a60215481565b348015610acd57600080fd5b506104d5610adc366004615b5a565b6126d1565b348015610aed57600080fd5b50600d5461043a565b348015610b0257600080fd5b506104d5610b11366004615bb5565b61282c565b348015610b2257600080fd5b506104d5610b31366004615afc565b6129b9565b348015610b4257600080fd5b506104d5610b51366004615ac3565b612bfa565b348015610b6257600080fd5b5061043a600e5481565b348015610b7857600080fd5b50600261043a565b348015610b8c57600080fd5b5061043a601e5481565b61048f610ba4366004615b5a565b612dbb565b348015610bb557600080fd5b506104d5610bc4366004615ac3565b612f6f565b348015610bd557600080fd5b5061043a610be4366004615bd7565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610c2857600080fd5b506104d5610c37366004615b73565b6131ae565b348015610c4857600080fd5b50601c5461051e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c7557600080fd5b5061043a60255481565b348015610c8b57600080fd5b506104d5610c9a366004615c05565b6132a9565b348015610cab57600080fd5b506104d5610cba366004615c05565b613444565b348015610ccb57600080fd5b5061043a600f5481565b348015610ce157600080fd5b506104d5610cf0366004615afc565b6135d4565b348015610d0157600080fd5b506104d5610d10366004615afc565b613785565b606060078054610d2490615c37565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5090615c37565b8015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b5050505050905090565b6000610db43384846139da565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f98848484613b8d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610fe0918691610fdb908690615cb9565b6139da565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6103e8611077600b5490565b6110819190615ccc565b811015611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e3b565b60218190556040518181527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602a5460ff16151581151503611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610e3b565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f190602001611141565b6000600c5482111561135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610e3b565b6000611368614284565b90506113748184615ccc565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1661148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610e3b565b60005b60065481101561164b578173ffffffffffffffffffffffffffffffffffffffff16600682815481106114c2576114c2615d07565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361163957600680546114f990600190615cb9565b8154811061150957611509615d07565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061154257611542615d07565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115dd576115dd615d36565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061164381615d65565b91505061148e565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610db4918590610fdb908690615d9d565b3360008181526005602052604090205460ff1615611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610e3b565b600061173e836142a7565b5050505073ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054929350611779928492509050615cb9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c546117ad908290615cb9565b600c55600d546117be908490615d9d565b600d55505050565b6000600a54831115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610e3b565b81611854576000611844846142a7565b50949650610db895505050505050565b600061185f846142a7565b50939650610db895505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415611a015773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119da906112ca565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60225481151560ff909116151503611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610e3b565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e790602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ccb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60285460ff16151581151503611d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610e3b565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf90602001611141565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611e1f575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610db8906112ca565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611fbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6024805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b60003411612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f76616c7565206d7573742062652067726561746572207468656e207a65726f006044820152606401610e3b565b602354604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163ad5c46489160048083019260209291908290030181865afa1580156121a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c89190615db0565b90508073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561221257600080fd5b505af1158015612226573d6000803e3d6000fd5b50505050506000602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561229a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122be9190615db0565b6040517fe6a4390500000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8481166024830152919091169063e6a4390590604401602060405180830381865afa158015612332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123569190615db0565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff821660248201526044810185905290915030906323b872dd906064016020604051808303816000875af11580156123d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f69190615dcd565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff828116600483015234602483015283169063a9059cbb906044016020604051808303816000875af115801561246b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248f9190615dcd565b506040517f6a62784200000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff821690636a627842906024016020604051808303816000875af11580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125209190615dea565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602454760100000000000000000000000000000000000000000000900460ff161561262e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610e3b565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610d2490615c37565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610db4918590610fdb908690615cb9565b6000610db4338484613b8d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b620186a061275f600b5490565b6127699190615ccc565b81116127f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610e3b565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b6103e86128b9600b5490565b6128c39190615ccc565b82101580156128e757506103e86128d9600b5490565b6128e39190615ccc565b8110155b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610e3b565b601f8290556020818155604080518481529182018390527f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb131910160405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b601b5473ffffffffffffffffffffffffffffffffffffffff90811690821603612ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff8116612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b90602001611141565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff909116151503612d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f7f565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690556000612ded614302565b612df8333084613b8d565b602354612e3d90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6139da565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d71934308560008033612e6d426032615d9d565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612eff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f249190615e03565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff9091161515036130ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b3073ffffffffffffffffffffffffffffffffffffffff83160361312b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f7f565b60005473ffffffffffffffffffffffffffffffffffffffff16331461322f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061114190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff16331461332a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b600e849055601083905560128290556014819055808261334a8587615d9d565b6133549190615d9d565b61335e9190615d9d565b601981905561012c10156133f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146134c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b600f84905560118390556013829055601581905580826134e58587615d9d565b6134ef9190615d9d565b6134f99190615d9d565b601a81905561012c101561358e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001613436565b60005473ffffffffffffffffffffffffffffffffffffffff163314613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff81166136f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e3b565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314613806576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e3b565b3073ffffffffffffffffffffffffffffffffffffffff821603613885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610e3b565b73ffffffffffffffffffffffffffffffffffffffff81166138aa5761164b3347614776565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015613919573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393d9190615dea565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156139b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125209190615dcd565b50565b73ffffffffffffffffffffffffffffffffffffffff8316613a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff8216613b1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613c30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e3b565b60008111613cc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610e3b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613d1c575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613da757602454760100000000000000000000000000000000000000000000900460ff16613da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610e3b565b60285460ff1615613faa5760245473ffffffffffffffffffffffffffffffffffffffff84811691161480613df5575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613e27575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b8015613e59575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613faa5760245473ffffffffffffffffffffffffffffffffffffffff90811690841603613f1857601f54811115613f13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e3b565b613faa565b602054811115613faa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e3b565b6000613fb530611dc8565b60255490915081108015908190613fe7575060245474010000000000000000000000000000000000000000900460ff16155b801561400d575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b801561403457506024547501000000000000000000000000000000000000000000900460ff165b1561413457602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560135460125460009161408a91615d9d565b9050600060115460105461409e9190615d9d565b905060006140ac8284615d9d565b905080156141085781156140de576000816140c78488615e31565b6140d19190615ccc565b90506140dc8161484c565b505b8215614108576000816140f18588615e31565b6140fb9190615ccc565b905061410681614b11565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b61413f858585614d09565b602a5460ff161561427d5773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff161580156141a6575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b80156141cd575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561427d5760006141dd85611dc8565b6021549091506141ed8583615d9d565b111561427b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610e3b565b505b5050505050565b6000806000614291614fa1565b90925090506142a08183615ccc565b9250505090565b60008060008060008060008060008060006142c18c615158565b935093509350935060008060006142e28f8787876142dd614284565b6151b7565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015614372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143969190615db0565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144489190615db0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa1580156144b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144dc9190615db0565b905073ffffffffffffffffffffffffffffffffffffffff81166146ca578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145a79190615db0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061463d9190615db0565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff82811691161461164b576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b6000814710156147e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e3b565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d806000811461483c576040519150601f19603f3d011682016040523d82523d6000602084013e614841565b606091505b509095945050505050565b6000614859600283615ccc565b905060006148678284615cb9565b604080516002808252606082018352929350479260009260208301908036833701905050905030816000815181106148a1576148a1615d07565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149449190615db0565b8160018151811061495757614957615d07565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906149c3908790600090869030904290600401615e48565b600060405180830381600087803b1580156149dd57600080fd5b505af11580156149f1573d6000803e3d6000fd5b5050505060008247614a039190615cb9565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015614aa0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614ac59190615e03565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b604080516002808252606082018352479260009291906020830190803683370190505090503081600081518110614b4a57614b4a615d07565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bed9190615db0565b81600181518110614c0057614c00615d07565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790614c6c908690600090869030904290600401615e48565b600060405180830381600087803b158015614c8657600080fd5b505af1158015614c9a573d6000803e3d6000fd5b5050505060008247614cac9190615cb9565b601b54909150614cd29073ffffffffffffffffffffffffffffffffffffffff1682614776565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101613436565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff1680614d62575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15614d7457614d6f615229565b614de5565b60245473ffffffffffffffffffffffffffffffffffffffff90811690831603614d9f57614d6f61525d565b60245473ffffffffffffffffffffffffffffffffffffffff90811690841603614dca57614d6f6152b7565b60225460ff1615614ddd57614d6f615229565b614de561525d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614e40575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614e5557614e5083838361530c565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614eb0575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614ec057614e508383836154a8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614f1c575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614f2c57614e50838383615596565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614f86575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614f9657614e50838383615603565b614e50838383615596565b600c54600a546000918291825b60065481101561512757826001600060068481548110614fd057614fd0615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180615055575081600260006006848154811061502157615021615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561506b57600c54600a54945094505050509091565b600160006006838154811061508257615082615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020546150be9084615cb9565b925060026000600683815481106150d7576150d7615d07565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020546151139083615cb9565b91508061511f81615d65565b915050614fae565b50600a54600c546151389190615ccc565b82101561514f57600c54600a549350935050509091565b90939092509050565b6000806000806000615169866156ad565b90506000615176876156ca565b90506000615183886156dd565b905060008183615193868c615cb9565b61519d9190615cb9565b6151a79190615cb9565b9993985091965094509092505050565b60008080806151c6858a615e31565b905060006151d4868a615e31565b905060006151e2878a615e31565b905060006151f0888a615e31565b9050600081836152008688615cb9565b61520a9190615cb9565b6152149190615cb9565b949d949c50929a509298505050505050505050565b6016541580156152395750601754155b80156152455750601854155b1561524c57565b600060168190556018819055601755565b600f54601654148015615280575060155460115461527b9190615d9d565b601754145b801561528f5750601354601854145b1561529657565b600f546016556013546018556015546011546152b29190615d9d565b601755565b600e546016541480156152da57506014546010546152d59190615d9d565b601754145b80156152e95750601254601854145b156152f057565b600e546016556012546018556014546010546152b29190615d9d565b6000806000806000806000615320886142a7565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546153799190615cb9565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600260209081526040808320939093556001905220546153b6908890615cb9565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b16815220546153f3908790615d9d565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055615422816156f0565b61542b82615780565b61543585846159d5565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161549491815260200190565b60405180910390a350505050505050505050565b60008060008060008060006154bc886142a7565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546155159190615cb9565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054615559908590615d9d565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600260209081526040808320939093556001905220546153f3908790615d9d565b60008060008060008060006155aa886142a7565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546153b69190615cb9565b6000806000806000806000615617886142a7565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546156709190615cb9565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054615515908890615cb9565b60006103e8601654836156c09190615e31565b610db89190615ccc565b60006103e8601754836156c09190615e31565b60006103e8601854836156c09190615e31565b80156139d7576000615700614284565b9050600061570e8284615e31565b3060009081526001602052604090205490915061572c908290615d9d565b3060009081526001602090815260408083209390935560059052205460ff1615614e50573060009081526002602052604090205461576b908490615d9d565b30600090815260026020526040902055505050565b600080601054118061579457506000601154115b806157a157506000601454115b806157ae57506000601554115b15615804576015546014546011546010546157c99190615d9d565b6157d39190615d9d565b6157dd9190615d9d565b6011546010546157ed9190615d9d565b6157f79084615e31565b6158019190615ccc565b90505b60006158108284615cb9565b905081156158a1576000615822614284565b905060006158308285615e31565b3060009081526001602052604090205490915061584e908290615d9d565b3060009081526001602090815260408083209390935560059052205460ff161561589e573060009081526002602052604090205461588d908590615d9d565b306000908152600260205260409020555b50505b8015614e505760006158b1614284565b905060006158bf8284615e31565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506158fa908290615d9d565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156159b75761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54615989908490615d9d565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546159c99190615cb9565b90915550505050505050565b81600c546159e39190615cb9565b600c55600d546159f4908290615d9d565b600d555050565b600060208083528351808285015260005b81811015615a2857858101830151858201604001528201615a0c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146139d757600080fd5b60008060408385031215615a9c57600080fd5b8235615aa781615a67565b946020939093013593505050565b80151581146139d757600080fd5b60008060408385031215615ad657600080fd5b8235615ae181615a67565b91506020830135615af181615ab5565b809150509250929050565b600060208284031215615b0e57600080fd5b813561137481615a67565b600080600060608486031215615b2e57600080fd5b8335615b3981615a67565b92506020840135615b4981615a67565b929592945050506040919091013590565b600060208284031215615b6c57600080fd5b5035919050565b600060208284031215615b8557600080fd5b813561137481615ab5565b60008060408385031215615ba357600080fd5b823591506020830135615af181615ab5565b60008060408385031215615bc857600080fd5b50508035926020909101359150565b60008060408385031215615bea57600080fd5b8235615bf581615a67565b91506020830135615af181615a67565b60008060008060808587031215615c1b57600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c90821680615c4b57607f821691505b602082108103615c84577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610db857610db8615c8a565b600082615d02577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615d9657615d96615c8a565b5060010190565b80820180821115610db857610db8615c8a565b600060208284031215615dc257600080fd5b815161137481615a67565b600060208284031215615ddf57600080fd5b815161137481615ab5565b600060208284031215615dfc57600080fd5b5051919050565b600080600060608486031215615e1857600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610db857610db8615c8a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015615ea557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615e73565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220e743796e83e3531b325661504dbf31783ea723b639c8304392bad9c87cc734a964736f6c63430008110033

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.