false
true
0

Contract Address Details

0x6C51c0B9Bae76D9d1e37E492c1a418B7A32073F7

Token
SkyRocket (SKR)
Creator
0xcc8732–f753bc at 0x15bcf5–90efdf
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
835 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26038804
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
SkyRocket




Optimization enabled
true
Compiler version
v0.8.2+commit.661d1103




Optimization runs
200
EVM Version
istanbul




Verified at
2025-10-21T08:09:03.588226Z

Constructor Arguments

000000000000000000000000cc8732b92e83e9c2904131c9a7ac20f894f753bc0000000000000000000000001fd773450ade2aedb1c1b6bf046d91ba3efa26be000000000000000000000000c7bde51f5841a6573709c54d16d36b035e3cd172000000000000000000000000b049555683566bdc729b8ee00f1b191eac589d89

Arg [0] (address) : 0xcc8732b92e83e9c2904131c9a7ac20f894f753bc
Arg [1] (address) : 0x1fd773450ade2aedb1c1b6bf046d91ba3efa26be
Arg [2] (address) : 0xc7bde51f5841a6573709c54d16d36b035e3cd172
Arg [3] (address) : 0xb049555683566bdc729b8ee00f1b191eac589d89

              

SkyRocket.sol

// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.2;

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

contract SkyRocket is Ownable, ERC20 {
	using SafeMath for uint256;
	
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000001 * (10**18);
	
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
	
	uint256 public reflectionFee;
	uint256 public buyBurnFee;
	uint256 public SingleStakeFee;
	uint256 public LPProviderFee;
	
	uint256 private _reflectionFee;
	uint256 private _buyBurnFee;
	uint256 private _SingleStakeFee;
	uint256 private _LPProviderFee;
	
	uint256 public swapThreshold;
	bool public feesEnabled = true;
    uint256 public totalBuyBurnTax;
    uint256 public totalSingleStakeTax;
    uint256 public totalLPStakeTax;
	
	IPulseXRouter public pulseXRouter;

    bool public takeFeeOnBuy = true;
    bool public takeFeeOnSell = true;
    bool public takeFeeOnP2P = true;

    address public singleStake;
    address public lpStake;
    address public skrBurner;
	address public burnWallet = address(0x0000000000000000000000000000000000000369);

	address[] public pairs;
	
	bool private swapping;

	address[] private _excluded;
	
	mapping(address => uint256) public rOwned;
    mapping(address => uint256) public tOwned;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isExcludedFromReflection;

	mapping(address => bool) public isliquidityPair;
    mapping(address => bool) public minterAddress;

	event SwapThresholdUpdated(uint256 amount);
	event AccountExcludeFromFee(address account, bool status);
    event AccountIncludeInReflection(address account);
    event AccountExcludeFromReflection(address account);
	event LPStakingAddressAdded(address newAddress);
    event FeesEnabledUpdated(bool enabled);
	event PLSDistributed(address indexed to, uint256 amount);
    event MinterAdded(address indexed account, bool status);

	constructor(address owner, address _singleStake, address _lpStake, address _skrBurner) ERC20("SkyRocket", "SKR") {
	    require(address(owner) != address(0), "Zero address");

        singleStake = _singleStake;
        lpStake = _lpStake;
        skrBurner = _skrBurner;
		rOwned[address(owner)] = _rTotal;
		pulseXRouter = IPulseXRouter(0x165C3410fC91EF562C50559f7d2289fEbed552d9);

		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0xA1077a294dDE1B09bB078844df40758a5D0f9a27))); //WPLS
		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0x2fa878Ab3F87CC1C9737Fc071108F904c0B0C95d))); //INC
		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0x95B303987A60C71504D99Aa1b13B4DA07b0790ab))); //PLSX
		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39))); //HEX
		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0x57fde0a71132198BBeC939B98976993d8D89D225))); //eHEX
		pairs.push(IPulseXFactory(pulseXRouter.factory()).createPair(address(this), address(0xefD766cCb38EaF1dfd701853BFCe31359239F305))); //eDAI
		
		_setLiquidityPair(pairs[0]);
		_setLiquidityPair(pairs[1]);
		_setLiquidityPair(pairs[2]);
		_setLiquidityPair(pairs[3]);
		_setLiquidityPair(pairs[4]);
		_setLiquidityPair(pairs[5]);

		_excludeFromReflection(address(this));
		_excludeFromReflection(address(owner));
        _excludeFromReflection(address(burnWallet));
        _excludeFromReflection(address(_singleStake));
        _excludeFromReflection(address(_lpStake));
        _excludeFromReflection(address(_skrBurner));
		
		_excludeFromFee(address(this), true);
        _excludeFromFee(address(owner), true);
        _excludeFromFee(address(burnWallet), true);
        _excludeFromFee(address(_singleStake),true);
        _excludeFromFee(address(_lpStake),true);
		_excludeFromFee(address(_skrBurner),true);

		swapThreshold = 100000 * (10**18);
		
		reflectionFee = 100;
		buyBurnFee = 300;
		SingleStakeFee = 100;
		LPProviderFee = 100;

		restoreAllFee();

		emit Transfer(address(0), address(owner), _tTotal);
    }
	
	receive() external payable {}

    function setFeeTriggers(bool _onBuy, bool _onSell, bool _onP2P) external onlyOwner {
        takeFeeOnBuy = _onBuy;
        takeFeeOnSell = _onSell;
        takeFeeOnP2P = _onP2P;
    }

    function setSkrBurner(address _newskrBurner) external onlyOwner {
        require(_newskrBurner != address(0), "Invalid address");
        skrBurner = _newskrBurner;
        _excludeFromReflection(_newskrBurner);
        _excludeFromFee(_newskrBurner,true);
    }

    function addMinter(address account, bool status) external onlyOwner {
        minterAddress[account] = status;
        emit MinterAdded(account, status);
    }
    function mint(address account, uint256 tAmount) external {
        require(account != address(0), "mint to zero");
        require(minterAddress[msg.sender] || owner() == msg.sender, "Not authorized to mint");

        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount * currentRate;

        _tTotal += tAmount;
        _rTotal += rAmount;

        rOwned[account] += rAmount;
        if (isExcludedFromReflection[account]) {
            tOwned[account] += tAmount;
        }

        emit Transfer(address(0), account, tAmount);
    }
    function burn(uint256 tAmount) public {
        require(balanceOf(msg.sender) >= tAmount, "Not enough tokens");

        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount * currentRate;

        _tTotal -= tAmount;
        _rTotal -= rAmount;

        if (isExcludedFromReflection[msg.sender]) {
            tOwned[msg.sender] -= tAmount;
        }
        rOwned[msg.sender] -= rAmount;

        emit Transfer(msg.sender, address(0), tAmount);
    }

    function setFeesEnabled(bool enabled) external onlyOwner {
        feesEnabled = enabled;
        emit FeesEnabledUpdated(enabled);
    }

    function setAllFees(
        uint256 _newreflectionFee,
        uint256 _newbuyBurnFee,
        uint256 _newsingleStakeFee,
        uint256 _newlpProviderFee
    ) external onlyOwner {
        require(_newreflectionFee >= 0, "Reflection fee invalid");
        require(_newbuyBurnFee >= 0, "BuyBurn fee invalid");
        require(_newsingleStakeFee >= 0, "SingleStake fee invalid");
        require(_newlpProviderFee >= 0, "LPProvider fee invalid");

        reflectionFee = _newreflectionFee;
        buyBurnFee = _newbuyBurnFee;
        SingleStakeFee = _newsingleStakeFee;
        LPProviderFee = _newlpProviderFee;

        restoreAllFee();
    }
    function totalSupply() public override view returns (uint256) {
        return _tTotal;
    }
	
    function balanceOf(address account) public override view returns (uint256) {
        if (isExcludedFromReflection[account]) return tOwned[account];
        return tokenFromReflection(rOwned[account]);
    }
	
    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }
	
	function _excludeFromReflection(address account) internal {
    if (isExcludedFromReflection[account]) return;
        if (rOwned[account] > 0) {
            tOwned[account] = tokenFromReflection(rOwned[account]);
        }
        isExcludedFromReflection[account] = true;
        _excluded.push(account);
    }
	
    function _setLiquidityPair(address pair) internal {
        isliquidityPair[address(pair)] = true;
		_excludeFromReflection(address(pair));
    }
	function addLiquidityPair(address newPair) external onlyOwner {
        require(newPair != address(0), "Invalid pair address");
        require(!isliquidityPair[newPair], "Already registered as pair");

        pairs.push(newPair);
        _setLiquidityPair(newPair);

        emit LPStakingAddressAdded(newPair);
    }
    function removeLiquidityPair(address pair) external onlyOwner {
        require(isliquidityPair[pair], "Address is not a registered liquidity pair");

  
        isliquidityPair[pair] = false;

    
        for (uint256 i = 0; i < pairs.length; i++) {
            if (pairs[i] == pair) {
                pairs[i] = pairs[pairs.length - 1];
                pairs.pop();
                break;
            }
        }

        emit LPStakingAddressAdded(pair);
    }

	function _excludeFromFee(address account, bool value) internal {
        isExcludedFromFee[account] = value;
    }
	
    function _reflectFee(uint256 rFee, uint256 tFee) internal {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
	
	function _contractFee(uint256 tContract) internal {
        uint256 currentRate =  _getRate();
        uint256 rContract = tContract.mul(currentRate);
        rOwned[address(this)] = rOwned[address(this)].add(rContract);
        if(isExcludedFromReflection[address(this)])
            tOwned[address(this)] = tOwned[address(this)].add(tContract);
    }
	
    function _getValues(uint256 tAmount) internal view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tContract) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tContract, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tContract);
    }
	
    function _getTValues(uint256 tAmount) internal view returns (uint256, uint256, uint256) {
		uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tContract = calculateContractFee(tAmount);
		
		uint256 tTransferAmount = tAmount.sub(tFee).sub(tContract);
        return (tTransferAmount, tFee, tContract);
    }
	
    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tContract, uint256 currentRate) internal pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rContract = tContract.mul(currentRate);
		
		uint256 rTransferAmount = rAmount.sub(rFee).sub(rContract);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() internal view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return tSupply == 0 ? 1 : rSupply.div(tSupply);
    }
	
    function _getCurrentSupply() internal view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (rOwned[_excluded[i]] > rSupply || tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(rOwned[_excluded[i]]);
            tSupply = tSupply.sub(tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function calculateReflectionFee(uint256 _amount) internal view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10000);
    }
	
    function calculateContractFee(uint256 _amount) internal view returns (uint256) {
        return _amount.mul((_buyBurnFee + _SingleStakeFee + _LPProviderFee)).div(10000);
    }
	
    function removeAllFee() internal {
	   _reflectionFee = 0;
	   _buyBurnFee = 0;
	   _SingleStakeFee = 0;
	   _LPProviderFee = 0;
    }
	
    function restoreAllFee() internal {
	   _reflectionFee = reflectionFee;
	   _buyBurnFee = buyBurnFee;
	   _SingleStakeFee = SingleStakeFee;
	   _LPProviderFee = LPProviderFee;
    }

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");

        _transfer(sender, recipient, amount);

        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
        }


    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "Transfer amount exceeds balance");

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapThreshold;

        if (canSwap && !swapping && isliquidityPair[to] && from != address(this)) {

                swapping = true;

                swapTokensForPLS(swapThreshold); 

                uint256 PLSBalance = address(this).balance;
                uint256 allFee = buyBurnFee.add(SingleStakeFee).add(LPProviderFee);

                if (allFee > 0 && PLSBalance > 0) {
                    uint256 remainingBalance = PLSBalance;

                    uint256 buyBurnPart = remainingBalance.mul(buyBurnFee).div(allFee);
                    remainingBalance = remainingBalance.sub(buyBurnPart);

                    uint256 SingleStakePart = remainingBalance.mul(SingleStakeFee).div(allFee);
                    remainingBalance = remainingBalance.sub(SingleStakePart);

                    uint256 LPProviderPart = remainingBalance;

                    if (buyBurnPart > 0) {
                        (bool sent1, ) = payable(skrBurner).call{value: buyBurnPart}("");
                        if (sent1) {
                            totalBuyBurnTax += buyBurnPart;
                            emit PLSDistributed(skrBurner, buyBurnPart);
                        }
                    }
                    if (SingleStakePart > 0) {
                        (bool sent2, ) = payable(singleStake).call{value: SingleStakePart}("");
                        if (sent2) {
                            totalSingleStakeTax += SingleStakePart;
                            emit PLSDistributed(singleStake, SingleStakePart);
                        }
                    }

                    if (LPProviderPart > 0) {
                        (bool sent3, ) = payable(lpStake).call{value: LPProviderPart}("");
                        if (sent3) {
                            totalLPStakeTax += LPProviderPart;
                            emit PLSDistributed(lpStake, LPProviderPart);
                        }
                    }

                }

                swapping = false;
            }

        bool isBuy = isliquidityPair[from];
        bool isSell = isliquidityPair[to];
        bool isP2P = !isBuy && !isSell;

        bool applyBuy = isBuy && takeFeeOnBuy;
        bool applySell = isSell && takeFeeOnSell;
        bool applyP2P = isP2P && takeFeeOnP2P;

        bool takeFee = feesEnabled && (applyBuy || applySell || applyP2P) && !(isExcludedFromFee[from] || isExcludedFromFee[to]);

        _tokenTransfer(from, to, amount, takeFee);

    }

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) internal {
		if(!takeFee){
		   removeAllFee();
		}
        if (isExcludedFromReflection[sender] && !isExcludedFromReflection[recipient]){
            _transferFromExcluded(sender, recipient, amount);
        } else if (!isExcludedFromReflection[sender] && isExcludedFromReflection[recipient]){
            _transferToExcluded(sender, recipient, amount);
        } else if (!isExcludedFromReflection[sender] && !isExcludedFromReflection[recipient]){
            _transferStandard(sender, recipient, amount);
        } else if (isExcludedFromReflection[sender] && isExcludedFromReflection[recipient]){
            _transferBothExcluded(sender, recipient, amount);
        }else{
            _transferStandard(sender, recipient, amount);
        }
		if(!takeFee){
		   restoreAllFee();
		}
    }
	
    function _transferStandard(address sender, address recipient, uint256 tAmount) internal {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tContract) = _getValues(tAmount);
        
		rOwned[sender] = rOwned[sender].sub(rAmount);
        rOwned[recipient] = rOwned[recipient].add(rTransferAmount);
		
        _contractFee(tContract);
        _reflectFee(rFee, tFee);
		
		if(tContract > 0)
		{
		   emit Transfer(sender, address(this), tContract);
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
    function _transferToExcluded(address sender, address recipient, uint256 tAmount) internal {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tContract) = _getValues(tAmount);
        
		rOwned[sender] = rOwned[sender].sub(rAmount);
        tOwned[recipient] = tOwned[recipient].add(tTransferAmount);
        rOwned[recipient] = rOwned[recipient].add(rTransferAmount);  
		
        _contractFee(tContract);
        _reflectFee(rFee, tFee);
		
		if(tContract > 0)
		{
		   emit Transfer(sender, address(this), tContract);
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) internal {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tContract) = _getValues(tAmount);
        
		tOwned[sender] = tOwned[sender].sub(tAmount);
        rOwned[sender] = rOwned[sender].sub(rAmount);
        rOwned[recipient] = rOwned[recipient].add(rTransferAmount); 
		
        _contractFee(tContract);
        _reflectFee(rFee, tFee);
		
		if(tContract > 0)
		{
		   emit Transfer(sender, address(this), tContract);
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
	function _transferBothExcluded(address sender, address recipient, uint256 tAmount) internal {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tContract) = _getValues(tAmount);
		
		tOwned[sender] = tOwned[sender].sub(tAmount);
        rOwned[sender] = rOwned[sender].sub(rAmount);
        tOwned[recipient] = tOwned[recipient].add(tTransferAmount);
        rOwned[recipient] = rOwned[recipient].add(rTransferAmount);   
		
        _contractFee(tContract);
        _reflectFee(rFee, tFee);
		
		if(tContract > 0)
		{
		   emit Transfer(sender, address(this), tContract);
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
	function swapTokensForPLS(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pulseXRouter.WPLS();
		
        _approve(address(this), address(pulseXRouter), tokenAmount);
        pulseXRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

	function buybackBurnSkyRocket(uint256 PLSAmount) internal {
        address[] memory path = new address[](2);
        path[0] = pulseXRouter.WPLS();
        path[1] = address(this);

        pulseXRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: PLSAmount}(
            0,
            path,
            burnWallet,
            block.timestamp
        );
    }

	function updatedSwapThreshold(uint256 amount) external onlyOwner {
  	    require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		require(amount >= 1 * (10 ** 18), "Minimum 1 token per swap required");
		
		swapThreshold = amount;
		emit SwapThresholdUpdated(amount);
  	}
	
	function excludeFromReflection(address account) public onlyOwner() {
       require(!isExcludedFromReflection[account], "Account is already excluded");
	   
	   _excludeFromReflection(account);
	   emit AccountExcludeFromReflection(account);
    }
	
    function includeInReflection(address account) external onlyOwner() {
        require(isExcludedFromReflection[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;
                isExcludedFromReflection[account] = false;
                _excluded.pop();
                break;
            }
        }
		emit AccountIncludeInReflection(account);
    }
	
	function excludeFromFee(address account, bool status) external onlyOwner {
        require(account != address(0), "Wallet address is not correct");
		
		_excludeFromFee(account, status);
		emit AccountExcludeFromFee(account, status);
    }

    function setStakingAddresses(address _singleStake, address _lpStake) external onlyOwner {
        if (_singleStake != address(0)) {
            singleStake = _singleStake;

            _excludeFromReflection(_singleStake);
            _excludeFromFee(_singleStake, true);

            emit AccountExcludeFromReflection(_singleStake);
            emit AccountExcludeFromFee(_singleStake, true);
        }

        if (_lpStake != address(0)) {
            lpStake = _lpStake;

            _excludeFromReflection(_lpStake);
            _excludeFromFee(_lpStake, true);

            emit AccountExcludeFromReflection(_lpStake);
            emit AccountExcludeFromFee(_lpStake, true);
        }

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

}
        

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

interface IPulseXRouter {
   function factory() external pure returns (address);
   function WPLS() external pure returns (address);
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   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 removeLiquidityETHSupportingFeeOnTransferTokens(address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to,uint deadline) external returns (uint amountETH);
   function removeLiquidity(address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(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;
}

interface PulseXPair {
   function token0() external pure returns (address);
   function token1() external pure returns (address);
}
          

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"SkyRocket.sol":"SkyRocket"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"_singleStake","internalType":"address"},{"type":"address","name":"_lpStake","internalType":"address"},{"type":"address","name":"_skrBurner","internalType":"address"}]},{"type":"event","name":"AccountExcludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false},{"type":"bool","name":"status","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"AccountExcludeFromReflection","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"AccountIncludeInReflection","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"FeesEnabledUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"LPStakingAddressAdded","inputs":[{"type":"address","name":"newAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"MinterAdded","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"bool","name":"status","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PLSDistributed","inputs":[{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapThresholdUpdated","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LPProviderFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"SingleStakeFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addLiquidityPair","inputs":[{"type":"address","name":"newPair","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addMinter","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"burnWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"buyBurnFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromReflection","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"feesEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInReflection","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromReflection","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isliquidityPair","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"lpStake","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"minterAddress","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pairs","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPulseXRouter"}],"name":"pulseXRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"rOwned","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeLiquidityPair","inputs":[{"type":"address","name":"pair","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAllFees","inputs":[{"type":"uint256","name":"_newreflectionFee","internalType":"uint256"},{"type":"uint256","name":"_newbuyBurnFee","internalType":"uint256"},{"type":"uint256","name":"_newsingleStakeFee","internalType":"uint256"},{"type":"uint256","name":"_newlpProviderFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeeTriggers","inputs":[{"type":"bool","name":"_onBuy","internalType":"bool"},{"type":"bool","name":"_onSell","internalType":"bool"},{"type":"bool","name":"_onP2P","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeesEnabled","inputs":[{"type":"bool","name":"enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSkrBurner","inputs":[{"type":"address","name":"_newskrBurner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStakingAddresses","inputs":[{"type":"address","name":"_singleStake","internalType":"address"},{"type":"address","name":"_lpStake","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"singleStake","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"skrBurner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"swapThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tOwned","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"takeFeeOnBuy","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"takeFeeOnP2P","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"takeFeeOnSell","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalBuyBurnTax","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalLPStakeTax","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalReflectionDistributed","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSingleStakeTax","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatedSwapThreshold","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60806040526c0c9f2c9cd05455a49de764000060068190556200002590600019620011f0565b62000033906000196200117b565b6007556012805460ff191660011790556016805460ff60b01b1960ff60a81b1960ff60a01b19909216600160a01b1791909116600160a81b1716600160b01b179055601a80546001600160a01b0319166103691790553480156200009657600080fd5b506040516200443c3803806200443c833981016040819052620000b99162001108565b6040518060400160405280600981526020016814dade549bd8dad95d60ba1b8152506040518060400160405280600381526020016229a5a960e91b815250620001116200010b62000bc660201b60201c565b62000bca565b8151620001269060049060208501906200102d565b5080516200013c9060059060208401906200102d565b5050506001600160a01b0384166200018a5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b601780546001600160a01b038086166001600160a01b03199283161790925560188054858416908316179055601980548484169083161790556007548683166000908152601e6020908152604091829020929092556016805490931673165c3410fc91ef562c50559f7d2289febed552d91792839055805163c45a015560e01b81529051601b94939093169263c45a015592600480840193919291829003018186803b1580156200023a57600080fd5b505afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002759190620010eb565b6040516364e329cb60e11b815230600482015273a1077a294dde1b09bb078844df40758a5d0f9a2760248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b158015620002d357600080fd5b505af1158015620002e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030e9190620010eb565b815460018101835560009283526020928390200180546001600160a01b0319166001600160a01b039283161790556016546040805163c45a015560e01b81529051601b94929093169263c45a015592600480840193919291829003018186803b1580156200037b57600080fd5b505afa15801562000390573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b69190620010eb565b6040516364e329cb60e11b8152306004820152732fa878ab3f87cc1c9737fc071108f904c0b0c95d60248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b1580156200041457600080fd5b505af115801562000429573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044f9190620010eb565b815460018101835560009283526020928390200180546001600160a01b0319166001600160a01b039283161790556016546040805163c45a015560e01b81529051601b94929093169263c45a015592600480840193919291829003018186803b158015620004bc57600080fd5b505afa158015620004d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f79190620010eb565b6040516364e329cb60e11b81523060048201527395b303987a60c71504d99aa1b13b4da07b0790ab60248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b1580156200055557600080fd5b505af11580156200056a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005909190620010eb565b815460018101835560009283526020928390200180546001600160a01b0319166001600160a01b039283161790556016546040805163c45a015560e01b81529051601b94929093169263c45a015592600480840193919291829003018186803b158015620005fd57600080fd5b505afa15801562000612573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006389190620010eb565b6040516364e329cb60e11b8152306004820152732b591e99afe9f32eaa6214f7b7629768c40eeb3960248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b1580156200069657600080fd5b505af1158015620006ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006d19190620010eb565b815460018101835560009283526020928390200180546001600160a01b0319166001600160a01b039283161790556016546040805163c45a015560e01b81529051601b94929093169263c45a015592600480840193919291829003018186803b1580156200073e57600080fd5b505afa15801562000753573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007799190620010eb565b6040516364e329cb60e11b81523060048201527357fde0a71132198bbec939b98976993d8d89d22560248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b158015620007d757600080fd5b505af1158015620007ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008129190620010eb565b815460018101835560009283526020928390200180546001600160a01b0319166001600160a01b039283161790556016546040805163c45a015560e01b81529051601b94929093169263c45a015592600480840193919291829003018186803b1580156200087f57600080fd5b505afa15801562000894573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008ba9190620010eb565b6040516364e329cb60e11b815230600482015273efd766ccb38eaf1dfd701853bfce31359239f30560248201526001600160a01b03919091169063c9c6539690604401602060405180830381600087803b1580156200091857600080fd5b505af11580156200092d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009539190620010eb565b81546001810183556000928352602083200180546001600160a01b0319166001600160a01b0392909216919091179055601b8054620009c39290620009a857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031662000c1a565b620009ea601b600181548110620009a857634e487b7160e01b600052603260045260246000fd5b62000a11601b600281548110620009a857634e487b7160e01b600052603260045260246000fd5b62000a38601b600381548110620009a857634e487b7160e01b600052603260045260246000fd5b62000a5f601b600481548110620009a857634e487b7160e01b600052603260045260246000fd5b62000a86601b600581548110620009a857634e487b7160e01b600052603260045260246000fd5b62000a913062000c4b565b62000a9c8462000c4b565b601a5462000ab3906001600160a01b031662000c4b565b62000abe8362000c4b565b62000ac98262000c4b565b62000ad48162000c4b565b306000908152602080805260408083208054600160ff1991821681179092556001600160a01b038981168087528487208054841685179055601a54821687528487208054841685179055898216875284872080548416851790558882168752848720805484168517905590871686528386208054909216909217905569152d02c7e14af68000006011556064600981905561012c600a819055600b829055600c829055600d829055600e55600f819055601055600654915191825292917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505062001233565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152602260205260409020805460ff1916600117905562000c488162000c4b565b50565b6001600160a01b03811660009081526021602052604090205460ff161562000c735762000c48565b6001600160a01b0381166000908152601e60205260409020541562000cd0576001600160a01b0381166000908152601e602052604090205462000cb69062000d36565b6001600160a01b0382166000908152601f60205260409020555b6001600160a01b03166000818152602160205260408120805460ff19166001908117909155601d805491820181559091527f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f0180546001600160a01b0319169091179055565b600060075482111562000d9f5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840162000181565b600062000dab62000dd0565b905062000dc7818462000e1560201b62001be21790919060201c565b9150505b919050565b6000808062000dde62000e2a565b915091508060001462000e0b5762000e05818362000e1560201b62001be21790919060201c565b62000e0e565b60015b9250505090565b600062000e23828462001164565b9392505050565b6007546006546000918291825b601d5481101562000fdc5782601e6000601d848154811062000e6957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000ee4575081601f6000601d848154811062000ebd57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000efd57600754600654945094505050506200101b565b62000f60601e6000601d848154811062000f2757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054859162001bf56200101f821b17901c565b925062000fc5601f6000601d848154811062000f8c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054849162001bf56200101f821b17901c565b91508062000fd381620011d2565b91505062000e37565b5062000ffb60065460075462000e1560201b62001be21790919060201c565b82101562001015576007546006549350935050506200101b565b90925090505b9091565b600062000e2382846200117b565b8280546200103b9062001195565b90600052602060002090601f0160209004810192826200105f5760008555620010aa565b82601f106200107a57805160ff1916838001178555620010aa565b82800160010185558215620010aa579182015b82811115620010aa5782518255916020019190600101906200108d565b50620010b8929150620010bc565b5090565b5b80821115620010b85760008155600101620010bd565b80516001600160a01b038116811462000dcb57600080fd5b600060208284031215620010fd578081fd5b62000e2382620010d3565b600080600080608085870312156200111e578283fd5b6200112985620010d3565b93506200113960208601620010d3565b92506200114960408601620010d3565b91506200115960608601620010d3565b905092959194509250565b6000826200117657620011766200121d565b500490565b60008282101562001190576200119062001207565b500390565b600281046001821680620011aa57607f821691505b60208210811415620011cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620011e957620011e962001207565b5060010190565b6000826200120257620012026200121d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6131f980620012436000396000f3fe6080604052600436106103395760003560e01c806383ad7994116101ab578063aec9b6f4116100f7578063ce54f29c11610095578063e71dc3f51161006f578063e71dc3f514610992578063ec08fee8146109a8578063efa6c1af146109c8578063f2fde38b146109f857610340565b8063ce54f29c14610932578063dd62ed3e14610952578063df8408fe1461097257610340565b8063bcb47c6a116100d1578063bcb47c6a146108b1578063c065ae68146108d1578063c16d3d58146108f2578063c3f1710e1461091257610340565b8063aec9b6f41461085c578063b577554a1461087c578063b91ac7881461089157610340565b80639c87d33211610164578063a457c2d71161013e578063a457c2d7146107e2578063a64e4f8a14610802578063a901dd921461081c578063a9059cbb1461083c57610340565b80639c87d3321461077f578063a08dbe7b14610795578063a3359b1f146107c257610340565b806383ad7994146106d357806388a06f8b146106e95780638c02b721146107165780638c8df4391461072c5780638da5cb5b1461074c57806395d89b411461076a57610340565b80632d838119116102855780635342acb41161022357806370a08231116101fd57806370a0823114610658578063715018a61461067857806377ad16d51461068d5780637d459db3146106a357610340565b80635342acb4146105f25780635a2a95d3146106215780636a75d06b1461063757610340565b8063395093511161025f578063395093511461057257806340c10f191461059257806342966c68146105b257806347ddb15a146105d257610340565b80632d83811914610516578063313ce56714610536578063368e09561461055257610340565b806311d6bf3c116102f257806323adc1ae116102cc57806323adc1ae1461049f57806323b872dd146104c057806327334a08146104e057806327807bf91461050057610340565b806311d6bf3c1461043a57806318160ddd1461045a57806322ae7f7b1461046f57610340565b80630445b6671461034557806305f82a451461036e578063062287491461039057806306fdde03146103c8578063095ea7b3146103ea5780630f4fbcc61461041a57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035b60115481565b6040519081526020015b60405180910390f35b34801561037a57600080fd5b5061038e610389366004612e3d565b610a18565b005b34801561039c57600080fd5b50601a546103b0906001600160a01b031681565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103dd610c28565b6040516103659190612ff1565b3480156103f657600080fd5b5061040a610405366004612f21565b610cba565b6040519015158152602001610365565b34801561042657600080fd5b5061038e610435366004612e3d565b610cd2565b34801561044657600080fd5b5061038e610455366004612e75565b610eee565b34801561046657600080fd5b5060065461035b565b34801561047b57600080fd5b5061040a61048a366004612e3d565b60236020526000908152604090205460ff1681565b3480156104ab57600080fd5b5060165461040a90600160b01b900460ff1681565b3480156104cc57600080fd5b5061040a6104db366004612ead565b611075565b3480156104ec57600080fd5b5061038e6104fb366004612e3d565b61110f565b34801561050c57600080fd5b5061035b600c5481565b34801561052257600080fd5b5061035b610531366004612fa8565b6111c2565b34801561054257600080fd5b5060405160128152602001610365565b34801561055e57600080fd5b5061038e61056d366004612eed565b611248565b34801561057e57600080fd5b5061040a61058d366004612f21565b6112af565b34801561059e57600080fd5b5061038e6105ad366004612f21565b6112cc565b3480156105be57600080fd5b5061038e6105cd366004612fa8565b611488565b3480156105de57600080fd5b5061038e6105ed366004612e3d565b6115ab565b3480156105fe57600080fd5b5061040a61060d366004612e3d565b602080526000908152604090205460ff1681565b34801561062d57600080fd5b5061035b60145481565b34801561064357600080fd5b5060165461040a90600160a81b900460ff1681565b34801561066457600080fd5b5061035b610673366004612e3d565b6116f6565b34801561068457600080fd5b5061038e61175e565b34801561069957600080fd5b5061035b60155481565b3480156106af57600080fd5b5061040a6106be366004612e3d565b60216020526000908152604090205460ff1681565b3480156106df57600080fd5b5061035b60095481565b3480156106f557600080fd5b5061035b610704366004612e3d565b601e6020526000908152604090205481565b34801561072257600080fd5b5061035b60135481565b34801561073857600080fd5b5061038e610747366004612e3d565b611772565b34801561075857600080fd5b506000546001600160a01b03166103b0565b34801561077657600080fd5b506103dd6117f4565b34801561078b57600080fd5b5061035b600b5481565b3480156107a157600080fd5b5061035b6107b0366004612e3d565b601f6020526000908152604090205481565b3480156107ce57600080fd5b5061038e6107dd366004612f66565b611803565b3480156107ee57600080fd5b5061040a6107fd366004612f21565b611855565b34801561080e57600080fd5b5060125461040a9060ff1681565b34801561082857600080fd5b5061038e610837366004612f4c565b6118d0565b34801561084857600080fd5b5061040a610857366004612f21565b611919565b34801561086857600080fd5b506016546103b0906001600160a01b031681565b34801561088857600080fd5b5060085461035b565b34801561089d57600080fd5b506103b06108ac366004612fa8565b61192f565b3480156108bd57600080fd5b506017546103b0906001600160a01b031681565b3480156108dd57600080fd5b5060165461040a90600160a01b900460ff1681565b3480156108fe57600080fd5b506019546103b0906001600160a01b031681565b34801561091e57600080fd5b5061038e61092d366004612fa8565b611959565b34801561093e57600080fd5b5061038e61094d366004612fc0565b611a5a565b34801561095e57600080fd5b5061035b61096d366004612e75565b611a99565b34801561097e57600080fd5b5061038e61098d366004612eed565b611ac4565b34801561099e57600080fd5b5061035b600a5481565b3480156109b457600080fd5b506018546103b0906001600160a01b031681565b3480156109d457600080fd5b5061040a6109e3366004612e3d565b60226020526000908152604090205460ff1681565b348015610a0457600080fd5b5061038e610a13366004612e3d565b611b6c565b610a20611c01565b6001600160a01b03811660009081526021602052604090205460ff16610a8d5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064015b60405180910390fd5b60005b601d54811015610be757816001600160a01b0316601d8281548110610ac557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610bd557601d8054610af09060019061310b565b81548110610b0e57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601d80546001600160a01b039092169183908110610b4857634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601f82526040808220829055602190925220805460ff19169055601d805480610bae57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610be7565b80610bdf8161315d565b915050610a90565b506040516001600160a01b03821681527fefa3daad9a570f54e0304c9dc3e9dbea52c6f0ae2b7645c70098131a1ef20ed2906020015b60405180910390a150565b606060048054610c3790613122565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390613122565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b600033610cc8818585611c5b565b5060019392505050565b610cda611c01565b6001600160a01b03811660009081526022602052604090205460ff16610d555760405162461bcd60e51b815260206004820152602a60248201527f41646472657373206973206e6f7420612072656769737465726564206c69717560448201526934b234ba3c903830b4b960b11b6064820152608401610a84565b6001600160a01b0381166000908152602260205260408120805460ff191690555b601b54811015610eb457816001600160a01b0316601b8281548110610dab57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ea257601b8054610dd69060019061310b565b81548110610df457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601b80546001600160a01b039092169183908110610e2e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601b805480610e7b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610eb4565b80610eac8161315d565b915050610d76565b506040516001600160a01b03821681527f749d41f0ee5297c1358d920a96cca563eb514cac372accb8d8e4cf8e642a077890602001610c1d565b610ef6611c01565b6001600160a01b03821615610fb357601780546001600160a01b0319166001600160a01b038416179055610f2982611d77565b610f34826001611e5d565b6040516001600160a01b03831681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed8769060200160405180910390a1604080516001600160a01b0384168152600160208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b910160405180910390a15b6001600160a01b0381161561107157601880546001600160a01b0319166001600160a01b038316179055610fe681611d77565b610ff1816001611e5d565b6040516001600160a01b03821681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed8769060200160405180910390a1604080516001600160a01b0383168152600160208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b91015b60405180910390a15b5050565b600080611082853361096d565b9050828110156110e55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a84565b6110f0858585611e87565b61110485336110ff868561310b565b611c5b565b506001949350505050565b611117611c01565b6001600160a01b03811660009081526021602052604090205460ff16156111805760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a84565b61118981611d77565b6040516001600160a01b03821681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed87690602001610c1d565b60006007548211156112295760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a84565b600061123361240e565b905061123f8382611be2565b9150505b919050565b611250611c01565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f763efcc94f241a365ee1267a4046c4e650be372dd27a6948d4a23e224a26ebe3910160405180910390a25050565b600033610cc88185856112c28383611a99565b6110ff91906130b4565b6001600160a01b0382166113115760405162461bcd60e51b815260206004820152600c60248201526b6d696e7420746f207a65726f60a01b6044820152606401610a84565b3360009081526023602052604090205460ff168061134857503361133d6000546001600160a01b031690565b6001600160a01b0316145b61138d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b6044820152606401610a84565b600061139761240e565b905060006113a582846130ec565b905082600660008282546113b991906130b4565b9250508190555080600760008282546113d291906130b4565b90915550506001600160a01b0384166000908152601e6020526040812080548392906113ff9084906130b4565b90915550506001600160a01b03841660009081526021602052604090205460ff1615611453576001600160a01b0384166000908152601f60205260408120805485929061144d9084906130b4565b90915550505b6040518381526001600160a01b038516906000906000805160206131a48339815191529060200160405180910390a350505050565b80611492336116f6565b10156114d45760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b6044820152606401610a84565b60006114de61240e565b905060006114ec82846130ec565b90508260066000828254611500919061310b565b925050819055508060076000828254611519919061310b565b90915550503360009081526021602052604090205460ff161561155b57336000908152601f60205260408120805485929061155590849061310b565b90915550505b336000908152601e60205260408120805483929061157a90849061310b565b909155505060405183815260009033906000805160206131a4833981519152906020015b60405180910390a3505050565b6115b3611c01565b6001600160a01b0381166116005760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610a84565b6001600160a01b03811660009081526022602052604090205460ff16156116695760405162461bcd60e51b815260206004820152601a60248201527f416c7265616479207265676973746572656420617320706169720000000000006044820152606401610a84565b601b80546001810182556000919091527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b0319166001600160a01b0383161790556116bd81612440565b6040516001600160a01b03821681527f749d41f0ee5297c1358d920a96cca563eb514cac372accb8d8e4cf8e642a077890602001610c1d565b6001600160a01b03811660009081526021602052604081205460ff161561173657506001600160a01b0381166000908152601f6020526040902054611243565b6001600160a01b0382166000908152601e6020526040902054611758906111c2565b92915050565b611766611c01565b611770600061246c565b565b61177a611c01565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610a84565b601980546001600160a01b0319166001600160a01b0383161790556117e681611d77565b6117f1816001611e5d565b50565b606060058054610c3790613122565b61180b611c01565b6016805460ff60a01b1916600160a01b941515949094029390931760ff60a81b1916600160a81b921515929092029190911760ff60b01b1916600160b01b91151591909102179055565b600033816118638286611a99565b9050838110156118c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a84565b6111048286868403611c5b565b6118d8611c01565b6012805460ff19168215159081179091556040519081527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c890602001610c1d565b6000611926338484611e87565b50600192915050565b601b818154811061193f57600080fd5b6000918252602090912001546001600160a01b0316905081565b611961611c01565b6006548111156119c35760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060448201526639bab838363c9760c91b6064820152608401610a84565b670de0b6b3a7640000811015611a255760405162461bcd60e51b815260206004820152602160248201527f4d696e696d756d203120746f6b656e20706572207377617020726571756972656044820152601960fa1b6064820152608401610a84565b60118190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610c1d565b611a62611c01565b6009849055600a839055600b829055600c819055611a93600954600d55600a54600e55600b54600f55600c54601055565b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611acc611c01565b6001600160a01b038216611b225760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742061646472657373206973206e6f7420636f72726563740000006044820152606401610a84565b611b2c8282611e5d565b604080516001600160a01b038416815282151560208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b9101611068565b611b74611c01565b6001600160a01b038116611bd95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a84565b6117f18161246c565b6000611bee82846130cc565b9392505050565b6000611bee828461310b565b6000546001600160a01b031633146117705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a84565b6001600160a01b038316611cbd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a84565b6001600160a01b038216611d1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a84565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161159e565b6001600160a01b03811660009081526021602052604090205460ff1615611d9d576117f1565b6001600160a01b0381166000908152601e602052604090205415611df7576001600160a01b0381166000908152601e6020526040902054611ddd906111c2565b6001600160a01b0382166000908152601f60205260409020555b6001600160a01b03166000818152602160205260408120805460ff19166001908117909155601d805491820181559091527f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f0180546001600160a01b0319169091179055565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038316611eeb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a84565b6001600160a01b038216611f4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a84565b80611f57846116f6565b1015611fa55760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610a84565b6000611fb0306116f6565b60115490915081108015908190611fca5750601c5460ff16155b8015611fee57506001600160a01b03841660009081526022602052604090205460ff165b801561200357506001600160a01b0385163014155b1561230357601c805460ff19166001179055601154612021906124bc565b600c54600b54600a5447926000926120429261203c91612641565b90612641565b90506000811180156120545750600082115b156122f6576000829050600061207f83612079600a548561264d90919063ffffffff16565b90611be2565b905061208b8282611bf5565b915060006120a884612079600b548661264d90919063ffffffff16565b90506120b48382611bf5565b9250828215612175576019546040516000916001600160a01b03169085908381818185875af1925050503d806000811461210a576040519150601f19603f3d011682016040523d82523d6000602084013e61210f565b606091505b50509050801561217357836013600082825461212b91906130b4565b90915550506019546040518581526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b8115612233576017546040516000916001600160a01b03169084908381818185875af1925050503d80600081146121c8576040519150601f19603f3d011682016040523d82523d6000602084013e6121cd565b606091505b5050905080156122315782601460008282546121e991906130b4565b90915550506017546040518481526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b80156122f1576018546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b5050905080156122ef5781601560008282546122a791906130b4565b90915550506018546040518381526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b505050505b5050601c805460ff191690555b6001600160a01b0380861660009081526022602052604080822054928716825281205460ff9283169216908215801561233a575081155b905060008380156123545750601654600160a01b900460ff165b9050600083801561236e5750601654600160a81b900460ff165b905060008380156123885750601654600160b01b900460ff165b60125490915060009060ff1680156123ac575083806123a45750825b806123ac5750815b80156123f257506001600160a01b038c16600090815260208052604090205460ff16806123f057506001600160a01b038b16600090815260208052604090205460ff165b155b90506124008c8c8c84612659565b505050505050505050505050565b600080600061241b6127ed565b9150915080600014612436576124318282611be2565b612439565b60015b9250505090565b6001600160a01b0381166000908152602260205260409020805460ff191660011790556117f181611d77565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ff57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091526016546040805163ef8ef56f60e01b81529051919093169263ef8ef56f926004808301939192829003018186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258b9190612e59565b816001815181106125ac57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526016546125d29130911684611c5b565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac9479061260b908590600090869030904290600401613044565b600060405180830381600087803b15801561262557600080fd5b505af1158015612639573d6000803e3d6000fd5b505050505050565b6000611bee82846130b4565b6000611bee82846130ec565b80612677576126776000600d819055600e819055600f819055601055565b6001600160a01b03841660009081526021602052604090205460ff1680156126b857506001600160a01b03831660009081526021602052604090205460ff16155b156126cd576126c88484846129aa565b6127cb565b6001600160a01b03841660009081526021602052604090205460ff1615801561270e57506001600160a01b03831660009081526021602052604090205460ff165b1561271e576126c8848484612af3565b6001600160a01b03841660009081526021602052604090205460ff1615801561276057506001600160a01b03831660009081526021602052604090205460ff16155b15612770576126c8848484612b9c565b6001600160a01b03841660009081526021602052604090205460ff1680156127b057506001600160a01b03831660009081526021602052604090205460ff165b156127c0576126c8848484612be0565b6127cb848484612b9c565b80611a9357611a93600954600d55600a54600e55600b54600f55600c54601055565b6007546006546000918291825b601d548110156129785782601e6000601d848154811061282a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128a3575081601f6000601d848154811061287c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128ba57600754600654945094505050506129a6565b61290e601e6000601d84815481106128e257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bf5565b9250612964601f6000601d848154811061293857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bf5565b9150806129708161315d565b9150506127fa565b5060065460075461298891611be2565b8210156129a0576007546006549350935050506129a6565b90925090505b9091565b6000806000806000806129bc87612c53565b6001600160a01b038f166000908152601f6020526040902054959b509399509197509550935091506129ee9088611bf5565b6001600160a01b038a166000908152601f6020908152604080832093909355601e90522054612a1d9087611bf5565b6001600160a01b03808b166000908152601e602052604080822093909355908a1681522054612a4c9086612641565b6001600160a01b0389166000908152601e6020526040902055612a6e81612ca2565b612a788483612d2b565b8015612aad5760405181815230906001600160a01b038b16906000805160206131a48339815191529060200160405180910390a35b876001600160a01b0316896001600160a01b03166000805160206131a483398151915285604051612ae091815260200190565b60405180910390a3505050505050505050565b600080600080600080612b0587612c53565b6001600160a01b038f166000908152601e6020526040902054959b50939950919750955093509150612b379087611bf5565b6001600160a01b03808b166000908152601e6020908152604080832094909455918b168152601f9091522054612b6d9084612641565b6001600160a01b0389166000908152601f6020908152604080832093909355601e90522054612a4c9086612641565b600080600080600080612bae87612c53565b6001600160a01b038f166000908152601e6020526040902054959b50939950919750955093509150612a1d9087611bf5565b600080600080600080612bf287612c53565b6001600160a01b038f166000908152601f6020526040902054959b50939950919750955093509150612c249088611bf5565b6001600160a01b038a166000908152601f6020908152604080832093909355601e90522054612b379087611bf5565b6000806000806000806000806000612c6a8a612d4f565b9250925092506000806000612c888d8686612c8361240e565b612d91565b919f909e50909c50959a5093985091965092945050505050565b6000612cac61240e565b90506000612cba838361264d565b306000908152601e6020526040902054909150612cd79082612641565b306000908152601e602090815260408083209390935560219052205460ff1615612d2657306000908152601f6020526040902054612d159084612641565b306000908152601f60205260409020555b505050565b600754612d389083611bf5565b600755600854612d489082612641565b6008555050565b600080600080612d5e85612de1565b90506000612d6b86612dfe565b90506000612d8382612d7d8986611bf5565b90611bf5565b979296509094509092505050565b6000808080612da0888661264d565b90506000612dae888761264d565b90506000612dbc888861264d565b90506000612dce82612d7d8686611bf5565b939b939a50919850919650505050505050565b6000611758612710612079600d548561264d90919063ffffffff16565b6000611758612710612079601054600f54600e54612e1c91906130b4565b612e2691906130b4565b859061264d565b8035801515811461124357600080fd5b600060208284031215612e4e578081fd5b8135611bee8161318e565b600060208284031215612e6a578081fd5b8151611bee8161318e565b60008060408385031215612e87578081fd5b8235612e928161318e565b91506020830135612ea28161318e565b809150509250929050565b600080600060608486031215612ec1578081fd5b8335612ecc8161318e565b92506020840135612edc8161318e565b929592945050506040919091013590565b60008060408385031215612eff578182fd5b8235612f0a8161318e565b9150612f1860208401612e2d565b90509250929050565b60008060408385031215612f33578182fd5b8235612f3e8161318e565b946020939093013593505050565b600060208284031215612f5d578081fd5b611bee82612e2d565b600080600060608486031215612f7a578283fd5b612f8384612e2d565b9250612f9160208501612e2d565b9150612f9f60408501612e2d565b90509250925092565b600060208284031215612fb9578081fd5b5035919050565b60008060008060808587031215612fd5578081fd5b5050823594602084013594506040840135936060013592509050565b6000602080835283518082850152825b8181101561301d57858101830151858201604001528201613001565b8181111561302e5783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130935784516001600160a01b03168352938301939183019160010161306e565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156130c7576130c7613178565b500190565b6000826130e757634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561310657613106613178565b500290565b60008282101561311d5761311d613178565b500390565b60028104600182168061313657607f821691505b6020821081141561315757634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561317157613171613178565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146117f157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2de8e64f99390d0e1a3d623a73a7fbcc0dde86eebc5be2b62d883315a65f5da64736f6c63430008020033000000000000000000000000cc8732b92e83e9c2904131c9a7ac20f894f753bc0000000000000000000000001fd773450ade2aedb1c1b6bf046d91ba3efa26be000000000000000000000000c7bde51f5841a6573709c54d16d36b035e3cd172000000000000000000000000b049555683566bdc729b8ee00f1b191eac589d89

Deployed ByteCode

0x6080604052600436106103395760003560e01c806383ad7994116101ab578063aec9b6f4116100f7578063ce54f29c11610095578063e71dc3f51161006f578063e71dc3f514610992578063ec08fee8146109a8578063efa6c1af146109c8578063f2fde38b146109f857610340565b8063ce54f29c14610932578063dd62ed3e14610952578063df8408fe1461097257610340565b8063bcb47c6a116100d1578063bcb47c6a146108b1578063c065ae68146108d1578063c16d3d58146108f2578063c3f1710e1461091257610340565b8063aec9b6f41461085c578063b577554a1461087c578063b91ac7881461089157610340565b80639c87d33211610164578063a457c2d71161013e578063a457c2d7146107e2578063a64e4f8a14610802578063a901dd921461081c578063a9059cbb1461083c57610340565b80639c87d3321461077f578063a08dbe7b14610795578063a3359b1f146107c257610340565b806383ad7994146106d357806388a06f8b146106e95780638c02b721146107165780638c8df4391461072c5780638da5cb5b1461074c57806395d89b411461076a57610340565b80632d838119116102855780635342acb41161022357806370a08231116101fd57806370a0823114610658578063715018a61461067857806377ad16d51461068d5780637d459db3146106a357610340565b80635342acb4146105f25780635a2a95d3146106215780636a75d06b1461063757610340565b8063395093511161025f578063395093511461057257806340c10f191461059257806342966c68146105b257806347ddb15a146105d257610340565b80632d83811914610516578063313ce56714610536578063368e09561461055257610340565b806311d6bf3c116102f257806323adc1ae116102cc57806323adc1ae1461049f57806323b872dd146104c057806327334a08146104e057806327807bf91461050057610340565b806311d6bf3c1461043a57806318160ddd1461045a57806322ae7f7b1461046f57610340565b80630445b6671461034557806305f82a451461036e578063062287491461039057806306fdde03146103c8578063095ea7b3146103ea5780630f4fbcc61461041a57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035b60115481565b6040519081526020015b60405180910390f35b34801561037a57600080fd5b5061038e610389366004612e3d565b610a18565b005b34801561039c57600080fd5b50601a546103b0906001600160a01b031681565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103dd610c28565b6040516103659190612ff1565b3480156103f657600080fd5b5061040a610405366004612f21565b610cba565b6040519015158152602001610365565b34801561042657600080fd5b5061038e610435366004612e3d565b610cd2565b34801561044657600080fd5b5061038e610455366004612e75565b610eee565b34801561046657600080fd5b5060065461035b565b34801561047b57600080fd5b5061040a61048a366004612e3d565b60236020526000908152604090205460ff1681565b3480156104ab57600080fd5b5060165461040a90600160b01b900460ff1681565b3480156104cc57600080fd5b5061040a6104db366004612ead565b611075565b3480156104ec57600080fd5b5061038e6104fb366004612e3d565b61110f565b34801561050c57600080fd5b5061035b600c5481565b34801561052257600080fd5b5061035b610531366004612fa8565b6111c2565b34801561054257600080fd5b5060405160128152602001610365565b34801561055e57600080fd5b5061038e61056d366004612eed565b611248565b34801561057e57600080fd5b5061040a61058d366004612f21565b6112af565b34801561059e57600080fd5b5061038e6105ad366004612f21565b6112cc565b3480156105be57600080fd5b5061038e6105cd366004612fa8565b611488565b3480156105de57600080fd5b5061038e6105ed366004612e3d565b6115ab565b3480156105fe57600080fd5b5061040a61060d366004612e3d565b602080526000908152604090205460ff1681565b34801561062d57600080fd5b5061035b60145481565b34801561064357600080fd5b5060165461040a90600160a81b900460ff1681565b34801561066457600080fd5b5061035b610673366004612e3d565b6116f6565b34801561068457600080fd5b5061038e61175e565b34801561069957600080fd5b5061035b60155481565b3480156106af57600080fd5b5061040a6106be366004612e3d565b60216020526000908152604090205460ff1681565b3480156106df57600080fd5b5061035b60095481565b3480156106f557600080fd5b5061035b610704366004612e3d565b601e6020526000908152604090205481565b34801561072257600080fd5b5061035b60135481565b34801561073857600080fd5b5061038e610747366004612e3d565b611772565b34801561075857600080fd5b506000546001600160a01b03166103b0565b34801561077657600080fd5b506103dd6117f4565b34801561078b57600080fd5b5061035b600b5481565b3480156107a157600080fd5b5061035b6107b0366004612e3d565b601f6020526000908152604090205481565b3480156107ce57600080fd5b5061038e6107dd366004612f66565b611803565b3480156107ee57600080fd5b5061040a6107fd366004612f21565b611855565b34801561080e57600080fd5b5060125461040a9060ff1681565b34801561082857600080fd5b5061038e610837366004612f4c565b6118d0565b34801561084857600080fd5b5061040a610857366004612f21565b611919565b34801561086857600080fd5b506016546103b0906001600160a01b031681565b34801561088857600080fd5b5060085461035b565b34801561089d57600080fd5b506103b06108ac366004612fa8565b61192f565b3480156108bd57600080fd5b506017546103b0906001600160a01b031681565b3480156108dd57600080fd5b5060165461040a90600160a01b900460ff1681565b3480156108fe57600080fd5b506019546103b0906001600160a01b031681565b34801561091e57600080fd5b5061038e61092d366004612fa8565b611959565b34801561093e57600080fd5b5061038e61094d366004612fc0565b611a5a565b34801561095e57600080fd5b5061035b61096d366004612e75565b611a99565b34801561097e57600080fd5b5061038e61098d366004612eed565b611ac4565b34801561099e57600080fd5b5061035b600a5481565b3480156109b457600080fd5b506018546103b0906001600160a01b031681565b3480156109d457600080fd5b5061040a6109e3366004612e3d565b60226020526000908152604090205460ff1681565b348015610a0457600080fd5b5061038e610a13366004612e3d565b611b6c565b610a20611c01565b6001600160a01b03811660009081526021602052604090205460ff16610a8d5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064015b60405180910390fd5b60005b601d54811015610be757816001600160a01b0316601d8281548110610ac557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610bd557601d8054610af09060019061310b565b81548110610b0e57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601d80546001600160a01b039092169183908110610b4857634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601f82526040808220829055602190925220805460ff19169055601d805480610bae57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610be7565b80610bdf8161315d565b915050610a90565b506040516001600160a01b03821681527fefa3daad9a570f54e0304c9dc3e9dbea52c6f0ae2b7645c70098131a1ef20ed2906020015b60405180910390a150565b606060048054610c3790613122565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390613122565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b600033610cc8818585611c5b565b5060019392505050565b610cda611c01565b6001600160a01b03811660009081526022602052604090205460ff16610d555760405162461bcd60e51b815260206004820152602a60248201527f41646472657373206973206e6f7420612072656769737465726564206c69717560448201526934b234ba3c903830b4b960b11b6064820152608401610a84565b6001600160a01b0381166000908152602260205260408120805460ff191690555b601b54811015610eb457816001600160a01b0316601b8281548110610dab57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ea257601b8054610dd69060019061310b565b81548110610df457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601b80546001600160a01b039092169183908110610e2e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601b805480610e7b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610eb4565b80610eac8161315d565b915050610d76565b506040516001600160a01b03821681527f749d41f0ee5297c1358d920a96cca563eb514cac372accb8d8e4cf8e642a077890602001610c1d565b610ef6611c01565b6001600160a01b03821615610fb357601780546001600160a01b0319166001600160a01b038416179055610f2982611d77565b610f34826001611e5d565b6040516001600160a01b03831681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed8769060200160405180910390a1604080516001600160a01b0384168152600160208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b910160405180910390a15b6001600160a01b0381161561107157601880546001600160a01b0319166001600160a01b038316179055610fe681611d77565b610ff1816001611e5d565b6040516001600160a01b03821681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed8769060200160405180910390a1604080516001600160a01b0383168152600160208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b91015b60405180910390a15b5050565b600080611082853361096d565b9050828110156110e55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a84565b6110f0858585611e87565b61110485336110ff868561310b565b611c5b565b506001949350505050565b611117611c01565b6001600160a01b03811660009081526021602052604090205460ff16156111805760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a84565b61118981611d77565b6040516001600160a01b03821681527f31cf1095d6c1ea7eb1fa26ab1f742053836510fb0f0a5a30d613a3d88bbed87690602001610c1d565b60006007548211156112295760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a84565b600061123361240e565b905061123f8382611be2565b9150505b919050565b611250611c01565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f763efcc94f241a365ee1267a4046c4e650be372dd27a6948d4a23e224a26ebe3910160405180910390a25050565b600033610cc88185856112c28383611a99565b6110ff91906130b4565b6001600160a01b0382166113115760405162461bcd60e51b815260206004820152600c60248201526b6d696e7420746f207a65726f60a01b6044820152606401610a84565b3360009081526023602052604090205460ff168061134857503361133d6000546001600160a01b031690565b6001600160a01b0316145b61138d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b6044820152606401610a84565b600061139761240e565b905060006113a582846130ec565b905082600660008282546113b991906130b4565b9250508190555080600760008282546113d291906130b4565b90915550506001600160a01b0384166000908152601e6020526040812080548392906113ff9084906130b4565b90915550506001600160a01b03841660009081526021602052604090205460ff1615611453576001600160a01b0384166000908152601f60205260408120805485929061144d9084906130b4565b90915550505b6040518381526001600160a01b038516906000906000805160206131a48339815191529060200160405180910390a350505050565b80611492336116f6565b10156114d45760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b6044820152606401610a84565b60006114de61240e565b905060006114ec82846130ec565b90508260066000828254611500919061310b565b925050819055508060076000828254611519919061310b565b90915550503360009081526021602052604090205460ff161561155b57336000908152601f60205260408120805485929061155590849061310b565b90915550505b336000908152601e60205260408120805483929061157a90849061310b565b909155505060405183815260009033906000805160206131a4833981519152906020015b60405180910390a3505050565b6115b3611c01565b6001600160a01b0381166116005760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610a84565b6001600160a01b03811660009081526022602052604090205460ff16156116695760405162461bcd60e51b815260206004820152601a60248201527f416c7265616479207265676973746572656420617320706169720000000000006044820152606401610a84565b601b80546001810182556000919091527f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc10180546001600160a01b0319166001600160a01b0383161790556116bd81612440565b6040516001600160a01b03821681527f749d41f0ee5297c1358d920a96cca563eb514cac372accb8d8e4cf8e642a077890602001610c1d565b6001600160a01b03811660009081526021602052604081205460ff161561173657506001600160a01b0381166000908152601f6020526040902054611243565b6001600160a01b0382166000908152601e6020526040902054611758906111c2565b92915050565b611766611c01565b611770600061246c565b565b61177a611c01565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610a84565b601980546001600160a01b0319166001600160a01b0383161790556117e681611d77565b6117f1816001611e5d565b50565b606060058054610c3790613122565b61180b611c01565b6016805460ff60a01b1916600160a01b941515949094029390931760ff60a81b1916600160a81b921515929092029190911760ff60b01b1916600160b01b91151591909102179055565b600033816118638286611a99565b9050838110156118c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a84565b6111048286868403611c5b565b6118d8611c01565b6012805460ff19168215159081179091556040519081527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c890602001610c1d565b6000611926338484611e87565b50600192915050565b601b818154811061193f57600080fd5b6000918252602090912001546001600160a01b0316905081565b611961611c01565b6006548111156119c35760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060448201526639bab838363c9760c91b6064820152608401610a84565b670de0b6b3a7640000811015611a255760405162461bcd60e51b815260206004820152602160248201527f4d696e696d756d203120746f6b656e20706572207377617020726571756972656044820152601960fa1b6064820152608401610a84565b60118190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610c1d565b611a62611c01565b6009849055600a839055600b829055600c819055611a93600954600d55600a54600e55600b54600f55600c54601055565b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611acc611c01565b6001600160a01b038216611b225760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742061646472657373206973206e6f7420636f72726563740000006044820152606401610a84565b611b2c8282611e5d565b604080516001600160a01b038416815282151560208201527ff1bf6e8d74573725f529c5a07fb53656b9c97a10602a75631f57c1be07769e2b9101611068565b611b74611c01565b6001600160a01b038116611bd95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a84565b6117f18161246c565b6000611bee82846130cc565b9392505050565b6000611bee828461310b565b6000546001600160a01b031633146117705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a84565b6001600160a01b038316611cbd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a84565b6001600160a01b038216611d1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a84565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161159e565b6001600160a01b03811660009081526021602052604090205460ff1615611d9d576117f1565b6001600160a01b0381166000908152601e602052604090205415611df7576001600160a01b0381166000908152601e6020526040902054611ddd906111c2565b6001600160a01b0382166000908152601f60205260409020555b6001600160a01b03166000818152602160205260408120805460ff19166001908117909155601d805491820181559091527f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f0180546001600160a01b0319169091179055565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038316611eeb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a84565b6001600160a01b038216611f4d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a84565b80611f57846116f6565b1015611fa55760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610a84565b6000611fb0306116f6565b60115490915081108015908190611fca5750601c5460ff16155b8015611fee57506001600160a01b03841660009081526022602052604090205460ff165b801561200357506001600160a01b0385163014155b1561230357601c805460ff19166001179055601154612021906124bc565b600c54600b54600a5447926000926120429261203c91612641565b90612641565b90506000811180156120545750600082115b156122f6576000829050600061207f83612079600a548561264d90919063ffffffff16565b90611be2565b905061208b8282611bf5565b915060006120a884612079600b548661264d90919063ffffffff16565b90506120b48382611bf5565b9250828215612175576019546040516000916001600160a01b03169085908381818185875af1925050503d806000811461210a576040519150601f19603f3d011682016040523d82523d6000602084013e61210f565b606091505b50509050801561217357836013600082825461212b91906130b4565b90915550506019546040518581526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b8115612233576017546040516000916001600160a01b03169084908381818185875af1925050503d80600081146121c8576040519150601f19603f3d011682016040523d82523d6000602084013e6121cd565b606091505b5050905080156122315782601460008282546121e991906130b4565b90915550506017546040518481526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b80156122f1576018546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b5050905080156122ef5781601560008282546122a791906130b4565b90915550506018546040518381526001600160a01b03909116907feab944d0de099af55840ee65a8af30d47e7a43a69c4bfb49f1442ff48d64901b9060200160405180910390a25b505b505050505b5050601c805460ff191690555b6001600160a01b0380861660009081526022602052604080822054928716825281205460ff9283169216908215801561233a575081155b905060008380156123545750601654600160a01b900460ff165b9050600083801561236e5750601654600160a81b900460ff165b905060008380156123885750601654600160b01b900460ff165b60125490915060009060ff1680156123ac575083806123a45750825b806123ac5750815b80156123f257506001600160a01b038c16600090815260208052604090205460ff16806123f057506001600160a01b038b16600090815260208052604090205460ff165b155b90506124008c8c8c84612659565b505050505050505050505050565b600080600061241b6127ed565b9150915080600014612436576124318282611be2565b612439565b60015b9250505090565b6001600160a01b0381166000908152602260205260409020805460ff191660011790556117f181611d77565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ff57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092018101919091526016546040805163ef8ef56f60e01b81529051919093169263ef8ef56f926004808301939192829003018186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258b9190612e59565b816001815181106125ac57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526016546125d29130911684611c5b565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac9479061260b908590600090869030904290600401613044565b600060405180830381600087803b15801561262557600080fd5b505af1158015612639573d6000803e3d6000fd5b505050505050565b6000611bee82846130b4565b6000611bee82846130ec565b80612677576126776000600d819055600e819055600f819055601055565b6001600160a01b03841660009081526021602052604090205460ff1680156126b857506001600160a01b03831660009081526021602052604090205460ff16155b156126cd576126c88484846129aa565b6127cb565b6001600160a01b03841660009081526021602052604090205460ff1615801561270e57506001600160a01b03831660009081526021602052604090205460ff165b1561271e576126c8848484612af3565b6001600160a01b03841660009081526021602052604090205460ff1615801561276057506001600160a01b03831660009081526021602052604090205460ff16155b15612770576126c8848484612b9c565b6001600160a01b03841660009081526021602052604090205460ff1680156127b057506001600160a01b03831660009081526021602052604090205460ff165b156127c0576126c8848484612be0565b6127cb848484612b9c565b80611a9357611a93600954600d55600a54600e55600b54600f55600c54601055565b6007546006546000918291825b601d548110156129785782601e6000601d848154811061282a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128a3575081601f6000601d848154811061287c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128ba57600754600654945094505050506129a6565b61290e601e6000601d84815481106128e257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bf5565b9250612964601f6000601d848154811061293857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bf5565b9150806129708161315d565b9150506127fa565b5060065460075461298891611be2565b8210156129a0576007546006549350935050506129a6565b90925090505b9091565b6000806000806000806129bc87612c53565b6001600160a01b038f166000908152601f6020526040902054959b509399509197509550935091506129ee9088611bf5565b6001600160a01b038a166000908152601f6020908152604080832093909355601e90522054612a1d9087611bf5565b6001600160a01b03808b166000908152601e602052604080822093909355908a1681522054612a4c9086612641565b6001600160a01b0389166000908152601e6020526040902055612a6e81612ca2565b612a788483612d2b565b8015612aad5760405181815230906001600160a01b038b16906000805160206131a48339815191529060200160405180910390a35b876001600160a01b0316896001600160a01b03166000805160206131a483398151915285604051612ae091815260200190565b60405180910390a3505050505050505050565b600080600080600080612b0587612c53565b6001600160a01b038f166000908152601e6020526040902054959b50939950919750955093509150612b379087611bf5565b6001600160a01b03808b166000908152601e6020908152604080832094909455918b168152601f9091522054612b6d9084612641565b6001600160a01b0389166000908152601f6020908152604080832093909355601e90522054612a4c9086612641565b600080600080600080612bae87612c53565b6001600160a01b038f166000908152601e6020526040902054959b50939950919750955093509150612a1d9087611bf5565b600080600080600080612bf287612c53565b6001600160a01b038f166000908152601f6020526040902054959b50939950919750955093509150612c249088611bf5565b6001600160a01b038a166000908152601f6020908152604080832093909355601e90522054612b379087611bf5565b6000806000806000806000806000612c6a8a612d4f565b9250925092506000806000612c888d8686612c8361240e565b612d91565b919f909e50909c50959a5093985091965092945050505050565b6000612cac61240e565b90506000612cba838361264d565b306000908152601e6020526040902054909150612cd79082612641565b306000908152601e602090815260408083209390935560219052205460ff1615612d2657306000908152601f6020526040902054612d159084612641565b306000908152601f60205260409020555b505050565b600754612d389083611bf5565b600755600854612d489082612641565b6008555050565b600080600080612d5e85612de1565b90506000612d6b86612dfe565b90506000612d8382612d7d8986611bf5565b90611bf5565b979296509094509092505050565b6000808080612da0888661264d565b90506000612dae888761264d565b90506000612dbc888861264d565b90506000612dce82612d7d8686611bf5565b939b939a50919850919650505050505050565b6000611758612710612079600d548561264d90919063ffffffff16565b6000611758612710612079601054600f54600e54612e1c91906130b4565b612e2691906130b4565b859061264d565b8035801515811461124357600080fd5b600060208284031215612e4e578081fd5b8135611bee8161318e565b600060208284031215612e6a578081fd5b8151611bee8161318e565b60008060408385031215612e87578081fd5b8235612e928161318e565b91506020830135612ea28161318e565b809150509250929050565b600080600060608486031215612ec1578081fd5b8335612ecc8161318e565b92506020840135612edc8161318e565b929592945050506040919091013590565b60008060408385031215612eff578182fd5b8235612f0a8161318e565b9150612f1860208401612e2d565b90509250929050565b60008060408385031215612f33578182fd5b8235612f3e8161318e565b946020939093013593505050565b600060208284031215612f5d578081fd5b611bee82612e2d565b600080600060608486031215612f7a578283fd5b612f8384612e2d565b9250612f9160208501612e2d565b9150612f9f60408501612e2d565b90509250925092565b600060208284031215612fb9578081fd5b5035919050565b60008060008060808587031215612fd5578081fd5b5050823594602084013594506040840135936060013592509050565b6000602080835283518082850152825b8181101561301d57858101830151858201604001528201613001565b8181111561302e5783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130935784516001600160a01b03168352938301939183019160010161306e565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156130c7576130c7613178565b500190565b6000826130e757634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561310657613106613178565b500290565b60008282101561311d5761311d613178565b500390565b60028104600182168061313657607f821691505b6020821081141561315757634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561317157613171613178565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146117f157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2de8e64f99390d0e1a3d623a73a7fbcc0dde86eebc5be2b62d883315a65f5da64736f6c63430008020033