ETH Price: $3,024.51 (+2.20%)
Gas: 3 Gwei

Token

Chameleon ($CMLN)
 

Overview

Max Total Supply

2,940,659,013.180984111314881542 $CMLN

Holders

706

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
vvolis.eth
Balance
22.537579019203454646 $CMLN

Value
$0.00
0x4572bec0b73b319dfa81845036a62750566dff43
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Chameleon

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 27 : Chameleon.sol
// SPDX-License-Identifier: MIT

/*

CHAMELEON SOCIALS:
    Telegram: https://t.me/Chameleontokeneth
    Website: https://www.chameleoneth.com/
    TWitter:  https://twitter.com/Chameleon_erc20


CHAMELEON in a nutshell:

Dynamic Fees:

Any time someone sells, their price impact is calculated and added onto the sell fee before their sell. The buy fee goes down by the same amount. Fees revert back to 10% at a rate of 1% per minute.

There is a maximum sell fee of 30%, and minimum buy fee of -10% (ie, a 10% bonus on buys).

Hourly Biggest Buyer:

Every hour, 5% of the tokens from liquidity will be rewarded to the biggest buyer of the previous hour. Fully automated on-chain.

Vested Dividends:

Token fees are converted to ETH and paid as ETH dividends to holders. Dividends vest continuously over 3 days. If you sell early, you will miss out on some rewards. Hold and behold.

Referrals:

Buy at least 1,000 tokens to generate a referral code. Anyone who buys an amount of tokens with your code after the decimal will earn a 2% reward, and you also will be rewarded the same amount.


HUGE THANKS TO ASHONCHAIN

In order to build this sophisticated contract, we hired AshOnChain, freelance solidity developer.
If you want to hire AshOnChain for your next token or NFT contract, you can reach out here:

https://t.me/ashonchain
https://twitter.com/ashonchain

*/

pragma solidity ^0.8.4;

import "./ChameleonDividendTracker.sol";
import "./SafeMath.sol";
import "./IterableMapping.sol";
import "./Ownable.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router.sol";
import "./UniswapV2PriceImpactCalculator.sol";
import "./LiquidityBurnCalculator.sol";
import "./MaxWalletCalculator.sol";
import "./ChameleonStorage.sol";

contract Chameleon is ERC20, Ownable {
    using SafeMath for uint256;
    using ChameleonStorage for ChameleonStorage.Data;
    using Fees for Fees.Data;
    using BiggestBuyer for BiggestBuyer.Data;
    using Referrals for Referrals.Data;
    using Transfers for Transfers.Data;

    ChameleonStorage.Data private _storage;

    uint256 public constant MAX_SUPPLY = 1000000 * (10**18);

    uint256 private hatchTime;

    bool private swapping;
    uint256 public liquidityTokensAvailableToBurn;
    uint256 public liquidityBurnTime;

    ChameleonDividendTracker public dividendTracker;

    uint256 private swapTokensAtAmount = 200 * (10**18);
    uint256 private swapTokensMaxAmount = 1000 * (10**18);

    // exlcude from fees and max transaction amount
    mapping (address => bool) public isExcludedFromFees;

    event UpdateDividendTracker(address indexed newAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

    event LiqudityBurn(uint256 value);

    event LiquidityBurn(
        uint256 amount
    );

    event ClaimTokens(
        address indexed account,
        uint256 amount
    );

    event UpdateMysteryContract(address mysteryContract);

    constructor() ERC20("Chameleon", "$CMLN") {
        _storage.router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _storage.pair = IUniswapV2Pair(
          IUniswapV2Factory(_storage.router.factory()
        ).createPair(address(this), _storage.router.WETH()));


        _mint(owner(), MAX_SUPPLY);

        _approve(address(this), address(_storage.router), type(uint).max);
        IUniswapV2Pair(_storage.pair).approve(address(_storage.router), type(uint).max);

        _storage.fees.init(_storage, address(_storage.pair));
        _storage.biggestBuyer.init();
        _storage.referrals.init();
        _storage.transfers.init(address(_storage.router), address(_storage.pair));

        _storage.dividendTracker = new ChameleonDividendTracker(payable(address(this)), address(_storage.pair), _storage.router.WETH());

        setupDividendTracker();

        _storage.marketingWallet1 = 0xeD9017c2c910967a4dab176160E68544f451716C;
        _storage.marketingWallet2 = 0x768b5315282bC0A84a9fE4762621336246C3c364;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(_storage.router), true);
        excludeFromFees(address(_storage.dividendTracker), true);
        excludeFromFees(_storage.marketingWallet1, true);
        excludeFromFees(_storage.marketingWallet2, true);
    }

    receive() external payable {

  	}

    function approve(address spender, uint256 amount) public override returns (bool) {
        //Piggyback off approvals to burn tokens
        burnLiquidityTokens();
        return super.approve(spender, amount);
    }

    function approveWithoutBurn(address spender, uint256 amount) public returns (bool) {
        return super.approve(spender, amount);
    }

    function updateMysteryContract(address mysteryContract) public onlyOwner {
        _storage.mysteryContract = IMysteryContract(mysteryContract);
        emit UpdateMysteryContract(mysteryContract);
        isExcludedFromFees[mysteryContract] = true;

        //ensure the functions exist
        _storage.mysteryContract.handleBuy(address(0), 0, 0);
        _storage.mysteryContract.handleSell(address(0), 0, 0);
    }

    function updateBaseFee(uint256 baseFee) public onlyOwner {
        _storage.fees.updateBaseFee(baseFee);
    }

    function updateFeeImpacts(uint256 sellImpact, uint256 timeImpact) public onlyOwner {
        _storage.fees.updateFeeSellImpact(sellImpact);
        _storage.fees.updateFeeTimeImpact(timeImpact);
    }

    function updateFeeDestinationPercents(uint256 dividendsPercent, uint256 marketingPercent, uint256 mysteryPercent) public onlyOwner {
        _storage.fees.updateFeeDestinationPercents(_storage, dividendsPercent, marketingPercent, mysteryPercent);
    }

    function updateBiggestBuyerRewardFactor(uint256 value) public onlyOwner {
        _storage.biggestBuyer.updateRewardFactor(value);
    }

    function updateReferrals(uint256 referralBonus, uint256 referredBonus, uint256 tokensNeeded) public onlyOwner {
        _storage.referrals.updateReferralBonus(referralBonus);
        _storage.referrals.updateReferredBonus(referredBonus);
        _storage.referrals.updateTokensNeededForReferralNumber(tokensNeeded);
    }

    function updateDividendTracker(address newAddress) public onlyOwner {
        _storage.dividendTracker = ChameleonDividendTracker(payable(newAddress));

        require(_storage.dividendTracker.owner() == address(this));

        setupDividendTracker();

        emit UpdateDividendTracker(newAddress);
    }

    function setupDividendTracker() private {
        _storage.dividendTracker.excludeFromDividends(address(_storage.dividendTracker));
        _storage.dividendTracker.excludeFromDividends(address(this));
        _storage.dividendTracker.excludeFromDividends(owner());
        _storage.dividendTracker.excludeFromDividends(address(_storage.router));
        _storage.dividendTracker.excludeFromDividends(address(_storage.pair));
    }

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

    function excludeFromDividends(address account) public onlyOwner {
        _storage.dividendTracker.excludeFromDividends(account);
    }

    function updateVestingDuration(uint256 vestingDuration) external onlyOwner {
        _storage.dividendTracker.updateVestingDuration(vestingDuration);
    }

    function updateUnvestedDividendsMarketingFee(uint256 unvestedDividendsMarketingFee) external onlyOwner {
        _storage.dividendTracker.updateUnvestedDividendsMarketingFee(unvestedDividendsMarketingFee);
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        require(amount < 1000 * (10**18));
        swapTokensAtAmount = amount;
    }

    function setSwapTokensMaxAmount(uint256 amount) external onlyOwner {
        require(amount < 10000 * (10**18));
        swapTokensMaxAmount = amount;
    }

    function manualSwapAccumulatedFees() external onlyOwner {
        _storage.fees.swapAccumulatedFees(_storage, balanceOf(address(this)));
    }

    function getData(address account) external view returns (uint256[] memory dividendInfo, uint256 referralCode, int256 buyFee, uint256 sellFee, address biggestBuyerCurrentHour, uint256 biggestBuyerAmountCurrentHour, uint256 biggestBuyerRewardCurrentHour, address biggestBuyerPreviousHour, uint256 biggestBuyerAmountPreviousHour, uint256 biggestBuyerRewardPreviousHour, uint256 blockTimestamp) {
        dividendInfo = _storage.dividendTracker.getDividendInfo(account);

        referralCode = _storage.referrals.getReferralCode(account);

        (buyFee,
        sellFee) = _storage.fees.getCurrentFees();

        uint256 hour = _storage.biggestBuyer.getHour();

        (biggestBuyerCurrentHour, biggestBuyerAmountCurrentHour,) = _storage.biggestBuyer.getBiggestBuyer(hour);

        biggestBuyerRewardCurrentHour = _storage.biggestBuyer.calculateBiggestBuyerReward(getLiquidityTokenBalance());

        if(hour > 0) {
            (biggestBuyerPreviousHour, biggestBuyerAmountPreviousHour, biggestBuyerRewardPreviousHour) = _storage.biggestBuyer.getBiggestBuyer(hour - 1);

            if(biggestBuyerPreviousHour != address(0) &&
               biggestBuyerRewardPreviousHour == 0) {
                biggestBuyerRewardPreviousHour = biggestBuyerRewardCurrentHour;
            }
        }

        blockTimestamp = block.timestamp;
    }

    function getLiquidityTokenBalance() private view returns (uint256) {
        return balanceOf(address(_storage.pair));
    }

    function claimDividends() external {
		_storage.dividendTracker.claimDividends(
            msg.sender,
            _storage.marketingWallet1,
            _storage.marketingWallet2,
            false);
    }

    function burnLiquidityTokens() public {
        uint256 burnAmount = LiquidityBurnCalculator.calculateBurn(
            getLiquidityTokenBalance(),
            liquidityTokensAvailableToBurn,
            liquidityBurnTime);

        if(burnAmount == 0) {
            return;
        }

        liquidityBurnTime = block.timestamp;
        liquidityTokensAvailableToBurn -= burnAmount;

        _burn(address(_storage.pair), burnAmount);
        _storage.pair.sync();

        emit LiquidityBurn(burnAmount);
    }

    function hatch() external onlyOwner {
        require(hatchTime == 0);

        _storage.router.addLiquidityETH {
            value: address(this).balance
        } (
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        hatchTime = block.timestamp;
    }

    function takeFees(address from, uint256 amount, uint256 feeFactor) private returns (uint256) {
        uint256 fees = Fees.calculateFees(amount, feeFactor);
        amount = amount.sub(fees);
        super._transfer(from, address(this), fees);
        return amount;
    }

    function mintFromLiquidity(address account, uint256 amount) private {
        if(amount == 0) {
            return;
        }
        liquidityTokensAvailableToBurn += amount;
        _mint(account, amount);
    }

    function handleNewBalanceForReferrals(address account) private {
        if(isExcludedFromFees[account]) {
            return;
        }

        if(account == address(_storage.pair)) {
            return;
        }

        _storage.referrals.handleNewBalance(account, balanceOf(account));
    }

    function payBiggestBuyer(uint256 hour) public {
        uint256 liquidityTokenBalance = getLiquidityTokenBalance();

        (address winner, uint256 amountWon) = _storage.biggestBuyer.payBiggestBuyer(hour, liquidityTokenBalance);

        if(winner != address(0))  {
            mintFromLiquidity(winner, amountWon);
            handleNewBalanceForReferrals(winner);
            _storage.dividendTracker.setBalance(winner, balanceOf(winner));
        }
    }

    function maxWallet() public view returns (uint256) {
        return MaxWalletCalculator.calculateMaxWallet(MAX_SUPPLY, hatchTime);
    }

    function executePossibleSwap(address from, address to, uint256 amount) private {
        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(from != owner() && to != owner()) {
            if(
                to != address(this) &&
                to != address(_storage.pair) &&
                to != address(_storage.router)
            ) {
                require(balanceOf(to) + amount <= maxWallet());
            }

            if(
                canSwap &&
                !swapping &&
                from != address(_storage.pair) &&
                hatchTime > 0 &&
                block.timestamp > hatchTime
            ) {
                swapping = true;

                uint256 swapAmount = contractTokenBalance;

                if(swapAmount > swapTokensMaxAmount) {
                    swapAmount = swapTokensMaxAmount;
                }

                _approve(address(this), address(_storage.router), swapAmount);

                _storage.fees.swapAccumulatedFees(_storage, swapAmount);

                swapping = false;
            }
        }
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0));
        require(to != address(0));

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

        executePossibleSwap(from, to, amount);

        bool takeFee = !swapping &&
                        !isExcludedFromFees[from] &&
                        !isExcludedFromFees[to];

        uint256 originalAmount = amount;
        int256 transferFees = 0;

        if(takeFee) {
            address referrer = _storage.referrals.getReferrerFromTokenAmount(amount);

            if(!_storage.referrals.isValidReferrer(referrer, balanceOf(referrer), to)) {
                referrer = address(0);
            }

            (uint256 fees,
            uint256 buyerMint,
            uint256 referrerMint) =
            _storage.transfers.handleTransferWithFees(_storage, from, to, amount, referrer);

            transferFees = int256(fees) - int256(buyerMint);

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

            if(buyerMint > 0) {
                mintFromLiquidity(to, buyerMint);
            }

            if(referrerMint > 0) {
                mintFromLiquidity(referrer, referrerMint);
                _storage.dividendTracker.setBalance(referrer, balanceOf(referrer));
            }
        }

        super._transfer(from, to, amount);

        handleNewBalanceForReferrals(to);

        uint256 hour = _storage.biggestBuyer.getHour();

        if(hour > 0) {
            payBiggestBuyer(hour - 1);
        }

        _storage.dividendTracker.setBalance(from, balanceOf(from));
        _storage.dividendTracker.setBalance(to, balanceOf(to));

        _storage.handleTransfer(from, to, originalAmount, transferFees);
    }
}

File 2 of 27 : ChameleonDividendTracker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IUniswapV2Pair.sol";
import "./IWETH.sol";
import "./Chameleon.sol";
import "./DividendPayingToken.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./IERC20.sol";

contract ChameleonDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    Chameleon public immutable token;
    IUniswapV2Pair public immutable uniswapV2Pair;
    IWETH public immutable WETH;

    mapping (address => bool) public excludedFromDividends;
    mapping (address => uint256) public lastClaimTimes;

    uint256 public vestingDuration;
    uint256 private vestingDurationUpdateTime;

    uint256 public unvestedDividendsMarketingFee;

    /*
        Users must claim their dividends within 60 days
        of first buy, or previous claim, or the owner
        has the ability to claim for them assuming
        they have forgotten about the token
    */
    uint256 public constant mustClaimDuration = 5184000;

    event ExcludeFromDividends(address indexed account);
    event UpdateeVestingDuration(uint256 vestingDuration);
    event UpdateUnvestedDividendsMarketingFee(uint256 unvestedDividendsMarketingFee);

    event Claim(address indexed account, bool isFromSell, uint256 factor, uint256 amount, uint256 toLiquidity, uint256 toMarketing);

    event ClaimInactive(address indexed account, uint256 amount);

    modifier onlyOwnerOfOwner() {
        require(Ownable(owner()).owner() == _msgSender(), "caller is not the owner's owner");
        _;
    }

    constructor(address payable owner, address pair, address weth) DividendPayingToken("ChameleonDividendTracker", "$CMLN_DIVS") {
        token = Chameleon(owner);
        uniswapV2Pair = IUniswapV2Pair(pair);
        WETH = IWETH(weth);

        updateVestingDuration(259200); //3 days
        updateUnvestedDividendsMarketingFee(25); //25%

        transferOwnership(owner);
    }

    bool private silenceWarning;

    function _transfer(address, address, uint256) internal override {
        silenceWarning = true;
        require(false, "ChameleonDividendTracker: No transfers allowed");
    }

    function excludeFromDividends(address account) external onlyOwner {
        if(excludedFromDividends[account]) {
            return;
        }

    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);

    	emit ExcludeFromDividends(account);
    }

    function updateVestingDuration(uint256 newVestingDuration) public onlyOwner {
        require(newVestingDuration <= 2592000, "ChameleonDividendTracker: max vesting duration is 30 days");

        //If not initial set, then it can only be updated every 24h, and only increasing by 25% if over 1 day
        if(vestingDurationUpdateTime > 0) {
            require(block.timestamp >= vestingDurationUpdateTime + 1 days, "too soon");
            require(
                newVestingDuration <= 1 days ||
                newVestingDuration <= vestingDuration * 125 / 100,
                "too high");
        }

        vestingDuration = newVestingDuration;
        vestingDurationUpdateTime = block.timestamp;
        emit UpdateeVestingDuration(newVestingDuration);
    }

    function updateUnvestedDividendsMarketingFee(uint256 newUnvestedDividendsMarketingFee) public onlyOwner {
        require(newUnvestedDividendsMarketingFee <= 30, "ChameleonDividendTracker: max marketing fee is 30%");

        unvestedDividendsMarketingFee = newUnvestedDividendsMarketingFee;
        emit UpdateUnvestedDividendsMarketingFee(unvestedDividendsMarketingFee);
    }

    function getDividendInfo(address account) external view returns (uint256[] memory dividendInfo) {
        uint256 withdrawableDividends = withdrawableDividendOf(account);
        uint256 totalDividends = accumulativeDividendOf(account);
        uint256 claimFactor = getAccountClaimFactor(account);
        uint256 vestingPeriodStart = lastClaimTimes[account];
        uint256 vestingPeriodEnd = vestingPeriodStart > 0 ? vestingPeriodStart + vestingDuration : 0;

        dividendInfo = new uint256[](5);

        dividendInfo[0] = withdrawableDividends;
        dividendInfo[1] = totalDividends;
        dividendInfo[2] = claimFactor;
        dividendInfo[3] = vestingPeriodStart;
        dividendInfo[4] = vestingPeriodEnd;
    }


    function setBalance(address account, uint256 newBalance) public onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

        _setBalance(account, newBalance);

        //Set this so vesting calculations work after the account first
        //interacts with the token
        if(newBalance > 0 && lastClaimTimes[account] == 0) {
            lastClaimTimes[account] = block.timestamp;
        }
    }

    uint256 public constant WITHDRAW_MAX_FACTOR = 10000;

    function getAccountClaimFactor(address account) public view returns (uint256) {
        uint256 lastClaimTime = lastClaimTimes[account];

        if(lastClaimTime == 0) {
            return 0;
        }

        uint256 elapsed = block.timestamp - lastClaimTime;

        uint256 factor;

        if(elapsed >= vestingDuration) {
            factor = WITHDRAW_MAX_FACTOR;
        }
        else {
            factor = WITHDRAW_MAX_FACTOR * elapsed / vestingDuration;
        }

        return factor;
    }

    function claimDividends(address account, address marketingWallet1, address marketingWallet2, bool isFromSell)
        external onlyOwner returns (bool) {
        uint256 withdrawableDividend = withdrawableDividendOf(account);

        if(withdrawableDividend == 0) {
            return false;
        }

        uint256 factor = getAccountClaimFactor(account);

        withdrawnDividends[account] = withdrawnDividends[account].add(withdrawableDividend);
        emit DividendWithdrawn(account, withdrawableDividend);

        uint256 vestedAmount = withdrawableDividend * factor / WITHDRAW_MAX_FACTOR;
        uint256 unvestedAmount = withdrawableDividend - vestedAmount;

        bool success;

        (success,) = account.call{value: vestedAmount}("");
        require(success, "Could not send dividends");

        uint256 toLiquidity = 0;
        uint256 toMarketing = 0;

        //Any unvested dividends are automatically re-added to liquidity and
        //sent to marketing wallet
        if(unvestedAmount > 0) {
            toMarketing = unvestedAmount * unvestedDividendsMarketingFee / 100;
            toLiquidity = unvestedAmount - toMarketing;

            uint256 marketing1 = toMarketing / 2;
            uint256 marketing2 = toMarketing - marketing1;

            if(toMarketing > 0) {
                (success,) = marketingWallet1.call{value: marketing1, gas: 5000}("");
                if(!success) {
                    toLiquidity += marketing1;
                }

                (success,) = marketingWallet2.call{value: marketing2, gas: 5000}("");
                if(!success) {
                    toLiquidity += marketing2;
                }
            }

            WETH.deposit{value: toLiquidity}();
            WETH.transfer(address(uniswapV2Pair), toLiquidity);

            if(!isFromSell) {
                uniswapV2Pair.sync();
            }
        }

        lastClaimTimes[account] = block.timestamp;
        emit Claim(account, isFromSell, factor, vestedAmount, toLiquidity, toMarketing);

        return true;
    }

    function claimInactiveAccountDividends(address account) external onlyOwnerOfOwner returns (bool) {
        uint256 withdrawableDividend = withdrawableDividendOf(account);

        require(withdrawableDividend > 0);
        require(block.timestamp - lastClaimTimes[account] >= mustClaimDuration);

        withdrawnDividends[account] = withdrawnDividends[account].add(withdrawableDividend);
        emit DividendWithdrawn(account, withdrawableDividend);

        (bool success,) = msg.sender.call{value: withdrawableDividend}("");
        require(success, "Could not send dividends");

        lastClaimTimes[account] = block.timestamp;
        emit ClaimInactive(account, withdrawableDividend);

        return true;
    }
}

File 3 of 27 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 4 of 27 : IterableMapping.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

File 5 of 27 : Ownable.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT License

import "./Context.sol";

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 6 of 27 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 7 of 27 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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

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

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

File 8 of 27 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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



// pragma solidity >=0.6.2;

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

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

File 9 of 27 : UniswapV2PriceImpactCalculator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IUniswapV2Pair.sol";
import "./IERC20Metadata.sol";

library UniswapV2PriceImpactCalculator {
    function calculateSellPriceImpact(address tokenAddress, address pairAddress, uint256 value) public view returns (uint256) {
        value = value * 998 / 1000;

        IUniswapV2Pair pair = IUniswapV2Pair(pairAddress);

        (uint256 r0, uint256 r1,) = pair.getReserves();

        IERC20Metadata token0 = IERC20Metadata(pair.token0());
        IERC20Metadata token1 = IERC20Metadata(pair.token1());

        if(address(token1) == tokenAddress) {
            IERC20Metadata tokenTemp = token0;
            token0 = token1;
            token1 = tokenTemp;

            uint256 rTemp = r0;
            r0 = r1;
            r1 = rTemp;
        }

        uint256 product = r0 * r1;

        uint256 r0After = r0 + value;
        uint256 r1After = product / r0After;

        return (10000 - (r1After * 10000 / r1)) * 998 / 1000;
    }
}

File 10 of 27 : LiquidityBurnCalculator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

library LiquidityBurnCalculator {
    function calculateBurn(uint256 liquidityTokensBalance, uint256 liquidityTokensAvailableToBurn, uint256 liquidityBurnTime)
        public
        view
        returns (uint256) {
        if(liquidityTokensAvailableToBurn == 0) {
            return 0;
        }

        if(block.timestamp < liquidityBurnTime + 5 minutes) {
            return 0;
        }

        //Maximum burn of 2% every 5 minutes to prevent
        //huge burns at once
        uint256 maxBurn = liquidityTokensBalance * 2 / 100;

        uint256 burnAmount = liquidityTokensAvailableToBurn;

        if(burnAmount > maxBurn) {
            burnAmount = maxBurn;
        }

        return burnAmount;
    }
}

File 11 of 27 : MaxWalletCalculator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

library MaxWalletCalculator {
    function calculateMaxWallet(uint256 totalSupply, uint256 hatchTime) public view returns (uint256) {
        if(hatchTime == 0) {
            return totalSupply;
        }

        uint256 FACTOR_MAX = 10000;

        uint256 chameleonAge = block.timestamp - hatchTime;

        uint256 base = totalSupply * 30 / FACTOR_MAX; // 0.3%
        uint256 incrasePerMinute = totalSupply * 10 / FACTOR_MAX; // 0.1%

        uint256 extra = incrasePerMinute * chameleonAge / (1 minutes); // up 0.1% per minute

        return base + extra;
    }
}

File 12 of 27 : ChameleonStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./Fees.sol";
import "./BiggestBuyer.sol";
import "./Referrals.sol";
import "./Transfers.sol";
import "./ChameleonDividendTracker.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router.sol";
import "./IMysteryContract.sol";
import "./Transfers.sol";

library ChameleonStorage {
    using Transfers for Transfers.Data;

    struct Data {
        Fees.Data fees;
        BiggestBuyer.Data biggestBuyer;
        Referrals.Data referrals;
        Transfers.Data transfers;
        IUniswapV2Router02 router;
        IUniswapV2Pair pair;
        ChameleonDividendTracker dividendTracker;
        address marketingWallet1;
        address marketingWallet2;
        IMysteryContract mysteryContract;
    }

    function handleTransfer(Data storage data, address from, address to, uint256 amount, int256 fees) public {
        if(address(data.mysteryContract) != address(0)) {
            if(data.transfers.transferIsBuy(from, to)) {
                try data.mysteryContract.handleBuy{gas: 50000}(to, amount, fees) {} catch {}
            }
            else if(data.transfers.transferIsSell(from, to)) {
                try data.mysteryContract.handleSell{gas: 50000}(from, amount, fees) {} catch {}
            }
        }
    }
}

File 13 of 27 : IWETH.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IWETH {
    function deposit() external payable;
    function transfer(address dst, uint wad) external returns (bool);
}

File 14 of 27 : DividendPayingToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC20.sol";
import "./SafeMath.sol";
import "./SafeMathUint.sol";
import "./SafeMathInt.sol";
import "./DividendPayingTokenInterface.sol";
import "./DividendPayingTokenOptionalInterface.sol";


/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {

  }

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
  function distributeDividends() public override payable {
    require(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

File 15 of 27 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

File 16 of 27 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

File 17 of 27 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IERC20.sol";

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

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

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

File 18 of 27 : Fees.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./UniswapV2PriceImpactCalculator.sol";
import "./BiggestBuyer.sol";
import "./ChameleonDividendTracker.sol";
import "./ChameleonStorage.sol";
import "./IUniswapV2Router.sol";
import "./IMysteryContract.sol";

library Fees {
    struct Data {
        address uniswapV2Pair;
        uint256 baseFee;//in 100ths of a percent
        uint256 extraFee;//in 100ths of a percent, extra sell fees. Buy fee is baseFee - extraFee
        uint256 extraFeeUpdateTime; //when the extraFee was updated. Use time elapsed to dynamically calculate new fee

        uint256 feeSellImpact; //in 100ths of a percent, how much price impact on sells (in percent) increases extraFee.
        uint256 feeTimeImpact; //in 100ths of a percent, how much time elapsed (in minutes) lowers extraFee

        uint256 dividendsPercent; //80% of fees go to dividends
        uint256 marketingPercent; //20% of fees go to marketing
        uint256 mysteryPercent; //0% of fees go to mystery contract... for now
    }

    uint256 private constant FACTOR_MAX = 10000;

    event UpdateBaseFee(uint256 value);
    event UpdateFeeSellImpact(uint256 value);
    event UpdateFeeTimeImpact(uint256 value);

    event UpdateFeeDestinationPercents(
        uint256 dividendsPercent,
        uint256 marketingPercent,
        uint256 mysteryPercent
    );


    event BuyWithFees(
        address indexed account,
        int256 feeFactor,
        int256 feeTokens,
        uint256 referredBonus,
        uint256 referralBonus,
        address referrer
    );

    event SellWithFees(
        address indexed account,
        uint256 feeFactor,
        uint256 feeTokens
    );

    event SendDividends(
        uint256 tokensSwapped,
        uint256 amount
    );

    event SendToMarketing1(
        uint256 tokensSwapped,
        uint256 amount
    );

    event SendToMarketing2(
        uint256 tokensSwapped,
        uint256 amount
    );

    event SendToMystery(
        uint256 tokensSwapped,
        uint256 amount
    );

    function init(
        Data storage data,
        ChameleonStorage.Data storage _storage,
        address uniswapV2Pair) public {
        data.uniswapV2Pair = uniswapV2Pair;
        updateBaseFee(data, 1000); //10% base fee
        updateFeeSellImpact(data, 100); //each 1% price impact on sells will increase sell fee 1%, and lower buy fee 1%
        updateFeeTimeImpact(data, 100); //extra sell fee lowers 1% every minute, and buy fee increases 1% every minute until back to base fee

        updateFeeDestinationPercents(data, _storage, 75, 25, 0);
    }

    function updateBaseFee(Data storage data, uint256 value) public {
        require(value >= 300 && value <= 1000, "invalid base fee");
        data.baseFee = value;
        emit UpdateBaseFee(value);
    }

    function updateFeeSellImpact(Data storage data, uint256 value) public {
        require(value >= 10 && value <= 500, "invalid fee sell impact");
        data.feeSellImpact = value;
        emit UpdateFeeSellImpact(value);
    }

    function updateFeeTimeImpact(Data storage data, uint256 value) public {
        require(value >= 10 && value <= 500, "invalid fee time impact");
        data.feeTimeImpact = value;
        emit UpdateFeeSellImpact(value);
    }

    function updateFeeDestinationPercents(Data storage data, ChameleonStorage.Data storage _storage, uint256 dividendsPercent, uint256 marketingPercent, uint256 mysteryPercent) public {
        require(dividendsPercent + marketingPercent + mysteryPercent == 100, "invalid percents");
        require(dividendsPercent >= 50, "invalid percent");

        if(address(_storage.mysteryContract) == address(0)) {
            require(mysteryPercent == 0, "invalid percent");
        }

        data.dividendsPercent = dividendsPercent;
        data.marketingPercent = marketingPercent;
        data.mysteryPercent = mysteryPercent;

        emit UpdateFeeDestinationPercents(dividendsPercent, marketingPercent, mysteryPercent);
    }


    //Gets fees in 100ths of a percent for buy and sell (anything else is always base fee)
    //and also returns current timestamp
    function getCurrentFees(Data storage data) public view returns (int256, uint256) {
        uint256 timeElapsed = block.timestamp - data.extraFeeUpdateTime;

        uint256 timeImpact = data.feeTimeImpact * timeElapsed / 60;

        //Enough time has passed that fees are back to base
        if(timeImpact >= data.extraFee) {
            return (int256(data.baseFee), data.baseFee);
        }

        uint256 realExtraFee = data.extraFee - timeImpact;

        int256 buyFee = int256(data.baseFee) - int256(realExtraFee);
        uint256 sellFee = data.baseFee + realExtraFee;

        return (buyFee, sellFee);
    }

    function handleSell(Data storage data, uint256 amount) public
        returns (uint256) {
        (,uint256 sellFee) = getCurrentFees(data);

        uint256 priceImpact = UniswapV2PriceImpactCalculator.calculateSellPriceImpact(address(this), data.uniswapV2Pair, amount);

        uint256 increaseSellFee = priceImpact * data.feeSellImpact / 100;

        sellFee = sellFee + increaseSellFee;

        //max 30% so it is always sellable with 49% slippage on Uniswap
        if(sellFee >= 3000) {
            sellFee = 3000;
        }

        data.extraFee = sellFee - data.baseFee;
        data.extraFeeUpdateTime = block.timestamp;

        return sellFee;
    }

    function calculateFees(uint256 amount, uint256 feeFactor) public pure returns (uint256) {
        if(feeFactor > FACTOR_MAX) {
            feeFactor = FACTOR_MAX;
        }
        return amount * uint256(feeFactor) / FACTOR_MAX;
    }

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapAccumulatedFees(Data storage data, ChameleonStorage.Data storage _storage, uint256 tokenAmount) public {
        swapTokensForEth(tokenAmount, _storage.router);
        uint256 balance = address(this).balance;

        uint256 dividends = balance * data.dividendsPercent / 100;
        uint256 marketing = balance * data.marketingPercent / 100;
        uint256 mystery = balance - dividends - marketing;

        if(data.mysteryPercent == 0) {
            mystery = 0;
        }

        bool success;

        (success,) = address(_storage.dividendTracker).call{value: dividends}("");

        if(success) {
            emit SendDividends(tokenAmount, dividends);
        }

        uint256 marketing1 = marketing / 2;
        uint256 marketing2 = marketing - marketing1;

        (success,) = address(_storage.marketingWallet1).call{value: marketing1}("");

        if(success) {
            emit SendToMarketing1(tokenAmount, marketing1);
        }

        (success,) = address(_storage.marketingWallet2).call{value: marketing2}("");

        if(success) {
            emit SendToMarketing2(tokenAmount, marketing2);
        }

        if(mystery > 0 && address(_storage.mysteryContract) != address(0)) {
            (success,) = address(_storage.mysteryContract).call{value: mystery, gas: 50000}("");

            if(success) {
                emit SendToMystery(tokenAmount, mystery);
            }
        }
    }
}

File 19 of 27 : BiggestBuyer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

library BiggestBuyer {
    struct Data {
        uint256 initHour;
        uint256 rewardFactor;
        mapping(uint256 => address) biggestBuyerAccount;
        mapping(uint256 => uint256) biggestBuyerAmount;
        mapping(uint256 => uint256) biggestBuyerPaid;
    }

    uint256 private constant FACTOR_MAX = 10000;

    event UpdateBiggestBuyerRewordFactor(uint256 value);

    event BiggestBuyerPayout(uint256 hour, address indexed account, uint256 value);

    function init(Data storage data) public {
        data.initHour = getCurrentHour();
        updateRewardFactor(data, 500); //5% from liquidity
    }

    function updateRewardFactor(Data storage data, uint256 value) public {
        require(value <= 1000, "invalid biggest buyer reward percent"); //max 10%
        data.rewardFactor = value;
        emit UpdateBiggestBuyerRewordFactor(value);
    }

    function getCurrentHour() private view returns (uint256) {
        return block.timestamp / (1 hours);
    }

    // starts at 0 and increments at the turn of the hour every hour
    function getHour(Data storage data) public view returns (uint256) {
        uint256 currentHour = getCurrentHour();
        return currentHour - data.initHour;
    }

    function handleBuy(Data storage data, address account, uint256 amount) public {
        uint256 hour = getHour(data);

        if(amount > data.biggestBuyerAmount[hour]) {
            data.biggestBuyerAmount[hour] = amount;
            data.biggestBuyerAccount[hour] = account;
        }
    }

    function calculateBiggestBuyerReward(Data storage data, uint256 liquidityTokenBalance) public view returns (uint256) {
        return liquidityTokenBalance * data.rewardFactor / FACTOR_MAX;
    }

    function payBiggestBuyer(Data storage data, uint256 hour, uint256 liquidityTokenBalance) public returns (address, uint256) {
        require(hour < getHour(data), "Hour is not complete");
        if(
            data.biggestBuyerAmount[hour] == 0 ||
            data.biggestBuyerPaid[hour] > 0) {
            return (address(0), 0);
        }

        address winner = data.biggestBuyerAccount[hour];

        uint256 amountWon = calculateBiggestBuyerReward(data, liquidityTokenBalance);

        //Set to 1 so the check for if payment occurred will succeed
        if(amountWon == 0) {
            amountWon = 1;
        }

        data.biggestBuyerPaid[hour] = amountWon;

        emit BiggestBuyerPayout(hour, winner, amountWon);

        return (winner, amountWon);
    }

    function getBiggestBuyer(Data storage data, uint256 hour) public view returns (address, uint256, uint256) {
        return (
            data.biggestBuyerAccount[hour],
            data.biggestBuyerAmount[hour],
            data.biggestBuyerPaid[hour]);
    }
}

File 20 of 27 : Referrals.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

library Referrals {
    struct Data {
        uint256 referralBonus;
        uint256 referredBonus;
        uint256 tokensNeededForRefferalNumber;
        mapping(uint256 => address) registeredReferrersByCode;
        mapping(address => uint256) registeredReferrersByAddress;
        uint256 currentRefferralCode;
    }

    uint256 private constant FACTOR_MAX = 10000;

    event RefferalCodeGenerated(address account, uint256 code, uint256 inc1, uint256 inc2);
    event UpdateReferralBonus(uint256 value);
    event UpdateReferredBonus(uint256 value);


    event UpdateTokensNeededForReferralNumber(uint256 value);


    function init(Data storage data) public {
        updateReferralBonus(data, 200); //2% bonus on buys from people you refer
        updateReferredBonus(data, 200); //2% bonus when you buy with referral code

        updateTokensNeededForReferralNumber(data, 1000 * (10**18)); //1000 tokens needed

        data.currentRefferralCode = 100;
    }

    function updateReferralBonus(Data storage data, uint256 value) public {
        require(value <= 500, "invalid referral referredBonus"); //max 5%
        data.referralBonus = value;
        emit UpdateReferralBonus(value);
    }

    function updateReferredBonus(Data storage data, uint256 value) public {
        require(value <= 500, "invalid referred bonus"); //max 5%
        data.referredBonus = value;
        emit UpdateReferredBonus(value);
    }

    function updateTokensNeededForReferralNumber(Data storage data, uint256 value) public {
        data.tokensNeededForRefferalNumber = value;
        emit UpdateTokensNeededForReferralNumber(value);
    }

    function random(Data storage data, uint256 min, uint256 max) private view returns (uint256) {
        return min + uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, data.currentRefferralCode))) % (max - min + 1);
    }

    function handleNewBalance(Data storage data, address account, uint256 balance) public {
        //already registered
        if(data.registeredReferrersByAddress[account] != 0) {
            return;
        }
        //not enough tokens
        if(balance < data.tokensNeededForRefferalNumber) {
            return;
        }
        //randomly increment referral code by anywhere from 5-50 so they
        //cannot be guessed easily
        uint256 inc1 = random(data, 5, 50);
        uint256 inc2 = random(data, 1, 9);
        data.currentRefferralCode += inc1;

        //don't allow referral code to end in 0,
        //so that ambiguous codes do not exist (ie, 420 and 4200)
        if(data.currentRefferralCode % 10 == 0) {
            data.currentRefferralCode += inc2;
        }

        data.registeredReferrersByCode[data.currentRefferralCode] = account;
        data.registeredReferrersByAddress[account] = data.currentRefferralCode;

        emit RefferalCodeGenerated(account, data.currentRefferralCode, inc1, inc2);
    }

    function getReferralCode(Data storage referrals, address account) public view returns (uint256) {
        return referrals.registeredReferrersByAddress[account];
    }

    function getReferrer(Data storage referrals, uint256 referralCode) public view returns (address) {
        return referrals.registeredReferrersByCode[referralCode];
    }

    function getReferralCodeFromTokenAmount(uint256 tokenAmount) private pure returns (uint256) {
        uint256 decimals = 18;

        uint256 numberAfterDecimals = tokenAmount % (10**decimals);

        uint256 checkDecimals = 3;

        while(checkDecimals < decimals) {
            uint256 factor = 10**(decimals - checkDecimals);
            //check if number is all 0s after the decimalth decimal
            if(numberAfterDecimals % factor == 0) {
                return numberAfterDecimals / factor;
            }
            checkDecimals++;
        }

        return numberAfterDecimals;
    }

    function getReferrerFromTokenAmount(Data storage referrals, uint256 tokenAmount) public view returns (address) {
        uint256 referralCode = getReferralCodeFromTokenAmount(tokenAmount);

        return referrals.registeredReferrersByCode[referralCode];
    }

    function isValidReferrer(Data storage referrals, address referrer, uint256 referrerBalance, address transferTo) public view returns (bool) {
        if(referrer == address(0)) {
            return false;
        }

        uint256 tokensNeeded = referrals.tokensNeededForRefferalNumber;

        return referrerBalance >= tokensNeeded && referrer != transferTo;
    }
}

File 21 of 27 : Transfers.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ChameleonStorage.sol";
import "./Fees.sol";
import "./Referrals.sol";
import "./BiggestBuyer.sol";

library Transfers {
    using Fees for Fees.Data;
    using Referrals for Referrals.Data;
    using BiggestBuyer for BiggestBuyer.Data;

    struct Data {
        address uniswapV2Router;
        address uniswapV2Pair;
    }

    uint256 private constant FACTOR_MAX = 10000;

    event BuyWithFees(
        address indexed account,
        uint256 amount,
        int256 feeFactor,
        int256 feeTokens
    );

    event SellWithFees(
        address indexed account,
        uint256 amount,
        uint256 feeFactor,
        uint256 feeTokens
    );

    function init(
        Data storage data,
        address uniswapV2Router,
        address uniswapV2Pair)
        public {
        data.uniswapV2Router = uniswapV2Router;
        data.uniswapV2Pair = uniswapV2Pair;
    }

    function transferIsBuy(Data storage data, address from, address to) public view returns (bool) {
        return from == data.uniswapV2Pair && to != data.uniswapV2Router;
    }

    function transferIsSell(Data storage data, address from, address to) public view returns (bool) {
        return from != data.uniswapV2Router && to == data.uniswapV2Pair;
    }


    function handleTransferWithFees(Data storage data, ChameleonStorage.Data storage _storage, address from, address to, uint256 amount, address referrer) public returns(uint256 fees, uint256 buyerMint, uint256 referrerMint) {        
        if(transferIsBuy(data, from, to)) {
            (int256 buyFee,) = _storage.fees.getCurrentFees();

             if(referrer != address(0)) {
                 //lower buy fee by referral bonus, which will either trigger
                 //a lower buy fee, or a larger bonus
                buyFee -= int256(_storage.referrals.referredBonus);
             }

            uint256 tokensBought = amount;

            if(buyFee > 0) {
                fees = Fees.calculateFees(amount, uint256(buyFee));

                tokensBought = amount - fees;

                emit BuyWithFees(to, amount, buyFee, int256(fees));
            }
            else if(buyFee < 0) {
                uint256 extraTokens = amount * uint256(-buyFee) / FACTOR_MAX;

                /*
                    When buy fee is negative, the user gets a bonus
                    via temporarily minted tokens which can be burned
                    from liquidity by anyone in another transaction
                    using the function `burnLiquidityTokens`.

                    It must be done in another transaction because
                    you cannot mess with the liquidity in the pair
                    during a swap.
                */
                buyerMint = extraTokens;

                tokensBought += extraTokens;

                emit BuyWithFees(to, amount, buyFee, -int256(extraTokens));
            }

            if(referrer != address(0)) {
                uint256 referralBonus = tokensBought * _storage.referrals.referralBonus / FACTOR_MAX;

                referrerMint = referralBonus;
            }

            _storage.biggestBuyer.handleBuy(to, amount);
        }
        else if(transferIsSell(data, from, to)) {
            uint256 sellFee = _storage.fees.handleSell(amount);

            fees = Fees.calculateFees(amount, sellFee);

            emit SellWithFees(from, amount, sellFee, fees);

            //Force a claim of dividends when selling
            //so that paperhands are forced to claim unvested divs
            _storage.dividendTracker.claimDividends(
                from,
                _storage.marketingWallet1,
                _storage.marketingWallet2,
                true);
        }
        else {
            fees = Fees.calculateFees(amount, _storage.fees.baseFee);
        }
    }
}

File 22 of 27 : IMysteryContract.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IMysteryContract {
    function handleBuy(address account, uint256 amount, int256 feeTokens) external;
    function handleSell(address account, uint256 amount, int256 feeTokens) external;
}

File 23 of 27 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

    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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

File 24 of 27 : SafeMathUint.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

File 25 of 27 : SafeMathInt.sol
// SPDX-License-Identifier: MIT

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

pragma solidity ^0.8.4;

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

File 26 of 27 : DividendPayingTokenInterface.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

File 27 of 27 : DividendPayingTokenOptionalInterface.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;


/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "contracts/BiggestBuyer.sol": {
      "BiggestBuyer": "0x817d2c8b4249367d59a7378762a2ec35b19ea535"
    },
    "contracts/ChameleonStorage.sol": {
      "ChameleonStorage": "0xa9223ca552b57eb783fd198c0866662ee76f235c"
    },
    "contracts/Fees.sol": {
      "Fees": "0xbe70efc585bdec3fabb382dbbf4aa2751c94b351"
    },
    "contracts/LiquidityBurnCalculator.sol": {
      "LiquidityBurnCalculator": "0x768f0ada688369acfcb8d965f0c6ac8bde076b07"
    },
    "contracts/MaxWalletCalculator.sol": {
      "MaxWalletCalculator": "0x8393d119af9ed6672aee9a9695aa85d98c26e191"
    },
    "contracts/Referrals.sol": {
      "Referrals": "0xb774ac8f80049e9901dcf911707ccbacd959fd1a"
    },
    "contracts/Transfers.sol": {
      "Transfers": "0xf44d5f091d4e518524c707be48e53c811a8f5815"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"LiqudityBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mysteryContract","type":"address"}],"name":"UpdateMysteryContract","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveWithoutBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnLiquidityTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract ChameleonDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getData","outputs":[{"internalType":"uint256[]","name":"dividendInfo","type":"uint256[]"},{"internalType":"uint256","name":"referralCode","type":"uint256"},{"internalType":"int256","name":"buyFee","type":"int256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"address","name":"biggestBuyerCurrentHour","type":"address"},{"internalType":"uint256","name":"biggestBuyerAmountCurrentHour","type":"uint256"},{"internalType":"uint256","name":"biggestBuyerRewardCurrentHour","type":"uint256"},{"internalType":"address","name":"biggestBuyerPreviousHour","type":"address"},{"internalType":"uint256","name":"biggestBuyerAmountPreviousHour","type":"uint256"},{"internalType":"uint256","name":"biggestBuyerRewardPreviousHour","type":"uint256"},{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTokensAvailableToBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAccumulatedFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"hour","type":"uint256"}],"name":"payBiggestBuyer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"baseFee","type":"uint256"}],"name":"updateBaseFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateBiggestBuyerRewardFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dividendsPercent","type":"uint256"},{"internalType":"uint256","name":"marketingPercent","type":"uint256"},{"internalType":"uint256","name":"mysteryPercent","type":"uint256"}],"name":"updateFeeDestinationPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellImpact","type":"uint256"},{"internalType":"uint256","name":"timeImpact","type":"uint256"}],"name":"updateFeeImpacts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mysteryContract","type":"address"}],"name":"updateMysteryContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"referralBonus","type":"uint256"},{"internalType":"uint256","name":"referredBonus","type":"uint256"},{"internalType":"uint256","name":"tokensNeeded","type":"uint256"}],"name":"updateReferrals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unvestedDividendsMarketingFee","type":"uint256"}],"name":"updateUnvestedDividendsMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"vestingDuration","type":"uint256"}],"name":"updateVestingDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052680ad78ebc5ac6200000602755683635c9adc5dea000006028553480156200002b57600080fd5b506040518060400160405280600981526020017f4368616d656c656f6e00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f24434d4c4e0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b0929190620013a6565b508060049080519060200190620000c9929190620013a6565b5050506000620000de62000ad960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d600660160160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024157600080fd5b505afa15801562000256573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027c919062001492565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030457600080fd5b505afa15801562000319573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033f919062001492565b6040518363ffffffff1660e01b81526004016200035e9291906200167f565b602060405180830381600087803b1580156200037957600080fd5b505af11580156200038e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b4919062001492565b600660170160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004226200040b62000ae160201b60201c565b69d3c21bcecceda100000062000b0b60201b60201c565b6200047a30600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000cba60201b60201c565b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000521929190620016ac565b602060405180830381600087803b1580156200053c57600080fd5b505af115801562000551573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005779190620014be565b50600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163f19411e6909160068060170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518463ffffffff1660e01b8152600401620005e093929190620017bd565b60006040518083038186803b158015620005f957600080fd5b505af41580156200060e573d6000803e3d6000fd5b50505050600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563598f0cac90916040518263ffffffff1660e01b8152600401620006519190620017a0565b60006040518083038186803b1580156200066a57600080fd5b505af41580156200067f573d6000803e3d6000fd5b505050506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6320929fd090916040518263ffffffff1660e01b8152600401620006c29190620017fa565b60006040518083038186803b158015620006db57600080fd5b505af4158015620006f0573d6000803e3d6000fd5b50505050600660140173f44d5f091d4e518524c707be48e53c811a8f581563733d4b159091600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518463ffffffff1660e01b8152600401620007819392919062001817565b60006040518083038186803b1580156200079a57600080fd5b505af4158015620007af573d6000803e3d6000fd5b5050505030600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200084657600080fd5b505afa1580156200085b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000881919062001492565b6040516200088f9062001437565b6200089d9392919062001642565b604051809103906000f080158015620008ba573d6000803e3d6000fd5b50600660180160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200090e62000e8d60201b60201c565b73ed9017c2c910967a4dab176160e68544f451716c600660190160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073768b5315282bc0a84a9fe4762621336246c3c3646006601a0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009e0620009d262000ae160201b60201c565b6001620011f160201b60201c565b620009f3306001620011f160201b60201c565b62000a2b600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620011f160201b60201c565b62000a63600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620011f160201b60201c565b62000a9b600660190160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620011f160201b60201c565b62000ad36006601a0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620011f160201b60201c565b62001b1e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b75906200177e565b60405180910390fd5b62000b92600083836200133e60201b60201c565b62000bae816002546200134360201b62002f0b1790919060201c565b60028190555062000c0c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200134360201b62002f0b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cae919062001854565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d24906200175c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000da0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d9790620016f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000e80919062001854565b60405180910390a3505050565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040162000f12919062001625565b600060405180830381600087803b15801562000f2d57600080fd5b505af115801562000f42573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b815260040162000fa6919062001625565b600060405180830381600087803b15801562000fc157600080fd5b505af115801562000fd6573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db06200102b62000ae160201b60201c565b6040518263ffffffff1660e01b815260040162001049919062001625565b600060405180830381600087803b1580156200106457600080fd5b505af115801562001079573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040162001102919062001625565b600060405180830381600087803b1580156200111d57600080fd5b505af115801562001132573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620011bb919062001625565b600060405180830381600087803b158015620011d657600080fd5b505af1158015620011eb573d6000803e3d6000fd5b50505050565b6200120162000ad960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462001293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200128a906200173a565b60405180910390fd5b80602960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620013329190620016d9565b60405180910390a25050565b505050565b600080828462001354919062001882565b9050838110156200139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013939062001718565b60405180910390fd5b8091505092915050565b828054620013b4906200193d565b90600052602060002090601f016020900481019282620013d8576000855562001424565b82601f10620013f357805160ff191683800117855562001424565b8280016001018555821562001424579182015b828111156200142357825182559160200191906001019062001406565b5b50905062001433919062001445565b5090565b6151f0806200774583390190565b5b808211156200146057600081600090555060010162001446565b5090565b600081519050620014758162001aea565b92915050565b6000815190506200148c8162001b04565b92915050565b600060208284031215620014a557600080fd5b6000620014b58482850162001464565b91505092915050565b600060208284031215620014d157600080fd5b6000620014e1848285016200147b565b91505092915050565b620014f581620018f3565b82525050565b6200150681620018df565b82525050565b6200151781620018df565b82525050565b620015288162001907565b82525050565b60006200153d60228362001871565b91506200154a82620019d1565b604082019050919050565b600062001564601b8362001871565b9150620015718262001a20565b602082019050919050565b60006200158b60208362001871565b9150620015988262001a49565b602082019050919050565b6000620015b260248362001871565b9150620015bf8262001a72565b604082019050919050565b6000620015d9601f8362001871565b9150620015e68262001ac1565b602082019050919050565b8082525050565b8082525050565b8082525050565b8082525050565b8082525050565b6200161f8162001933565b82525050565b60006020820190506200163c6000830184620014fb565b92915050565b6000606082019050620016596000830186620014ea565b620016686020830185620014fb565b620016776040830184620014fb565b949350505050565b6000604082019050620016966000830185620014fb565b620016a56020830184620014fb565b9392505050565b6000604082019050620016c36000830185620014fb565b620016d2602083018462001614565b9392505050565b6000602082019050620016f060008301846200151d565b92915050565b6000602082019050818103600083015262001711816200152e565b9050919050565b60006020820190508181036000830152620017338162001555565b9050919050565b6000602082019050818103600083015262001755816200157c565b9050919050565b600060208201905081810360008301526200177781620015a3565b9050919050565b600060208201905081810360008301526200179981620015ca565b9050919050565b6000602082019050620017b76000830184620015f1565b92915050565b6000606082019050620017d46000830186620015ff565b620017e36020830185620015f8565b620017f260408301846200150c565b949350505050565b600060208201905062001811600083018462001606565b92915050565b60006060820190506200182e60008301866200160d565b6200183d60208301856200150c565b6200184c60408301846200150c565b949350505050565b60006020820190506200186b600083018462001614565b92915050565b600082825260208201905092915050565b60006200188f8262001933565b91506200189c8362001933565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620018d457620018d362001973565b5b828201905092915050565b6000620018ec8262001913565b9050919050565b6000620019008262001913565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200195657607f821691505b602082108114156200196d576200196c620019a2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62001af581620018df565b811462001b0157600080fd5b50565b62001b0f8162001907565b811462001b1b57600080fd5b50565b615c178062001b2e6000396000f3fe60806040526004361061023f5760003560e01c8063550e4b831161012e578063afa4f3b2116100ab578063dacbcec71161006f578063dacbcec714610848578063dd19aa5714610885578063dd62ed3e146108ae578063f2fde38b146108eb578063f8b45b051461091457610246565b8063afa4f3b21461079f578063c0246668146107c8578063c31a0122146107f1578063d0db508314610808578063d15f58931461081f57610246565b80638da5cb5b116100f25780638da5cb5b146106a65780638e690186146106d157806395d89b41146106fa578063a457c2d714610725578063a9059cbb1461076257610246565b8063550e4b83146105e9578063668038e01461061257806370a0823114610629578063715018a61461066657806388bdd9be1461067d57610246565b8063313ce567116101bc57806342caf79a1161018057806342caf79a1461050457806348620c3c1461052d5780634d2919fc146105585780634fbee1931461058357806351e6113b146105c057610246565b8063313ce5671461040157806331e79db01461042c57806332cb6b0c1461045557806338266b221461048057806339509351146104c757610246565b80631dea9a11116102035780631dea9a111461033057806323b872dd14610359578063269a86b2146103965780632c1f5216146103bf5780632d0f5b34146103ea57610246565b806306fdde031461024b578063095ea7b3146102765780630e20b02a146102b357806318160ddd146102dc5780631ad4f3511461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b5061026061093f565b60405161026d9190615059565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906148ef565b6109d1565b6040516102aa9190615023565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190614a5c565b6109ed565b005b3480156102e857600080fd5b506102f1610aa4565b6040516102fe9190615466565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906147d6565b610aae565b005b34801561033c57600080fd5b5061035760048036038101906103529190614a5c565b610d47565b005b34801561036557600080fd5b50610380600480360381019061037b9190614864565b610e50565b60405161038d9190615023565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190614aae565b610f29565b005b3480156103cb57600080fd5b506103d46110a2565b6040516103e1919061503e565b60405180910390f35b3480156103f657600080fd5b506103ff6110c8565b005b34801561040d57600080fd5b506104166111db565b60405161042391906154e1565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906147d6565b6111e4565b005b34801561046157600080fd5b5061046a61130e565b6040516104779190615466565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a291906147d6565b61131c565b6040516104be9b9a99989796959493929190614f71565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906148ef565b6117d2565b6040516104fb9190615023565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190614a5c565b611885565b005b34801561053957600080fd5b50610542611a10565b60405161054f9190615466565b60405180910390f35b34801561056457600080fd5b5061056d611a16565b60405161057a9190615466565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906147d6565b611a1c565b6040516105b79190615023565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190614aea565b611a3c565b005b3480156105f557600080fd5b50610610600480360381019061060b9190614a5c565b611c25565b005b34801561061e57600080fd5b50610627611d4f565b005b34801561063557600080fd5b50610650600480360381019061064b91906147d6565b611e53565b60405161065d9190615466565b60405180910390f35b34801561067257600080fd5b5061067b611e9b565b005b34801561068957600080fd5b506106a4600480360381019061069f91906147d6565b611ff3565b005b3480156106b257600080fd5b506106bb6121f6565b6040516106c89190614e50565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614a5c565b612220565b005b34801561070657600080fd5b5061070f612329565b60405161071c9190615059565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906148ef565b6123bb565b6040516107599190615023565b60405180910390f35b34801561076e57600080fd5b50610789600480360381019061078491906148ef565b612488565b6040516107969190615023565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190614a5c565b6124a6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea91906148b3565b61255c565b005b3480156107fd57600080fd5b5061080661269c565b005b34801561081457600080fd5b5061081d612854565b005b34801561082b57600080fd5b5061084660048036038101906108419190614aea565b6129d1565b005b34801561085457600080fd5b5061086f600480360381019061086a91906148ef565b612ae3565b60405161087c9190615023565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190614a5c565b612af7565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190614828565b612c21565b6040516108e29190615466565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906147d6565b612ca8565b005b34801561092057600080fd5b50610929612e6f565b6040516109369190615466565b60405180910390f35b60606003805461094e9061579a565b80601f016020809104026020016040519081016040528092919081815260200182805461097a9061579a565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109db61269c565b6109e58383612f69565b905092915050565b6109f5612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906150fb565b60405180910390fd5b69021e19e0c9bab24000008110610a9a57600080fd5b8060288190555050565b6000600254905090565b610ab6612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906150fb565b60405180910390fd5b806006601b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f45ab077182bccf704f0797657caa5dd5d7fca94b000f6fdca299a8607d67178881604051610bb89190614e50565b60405180910390a16001602960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006601b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eaa7174d60008060006040518463ffffffff1660e01b8152600401610c7c93929190614eb0565b600060405180830381600087803b158015610c9657600080fd5b505af1158015610caa573d6000803e3d6000fd5b505050506006601b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636f44b55760008060006040518463ffffffff1660e01b8152600401610d1293929190614eb0565b600060405180830381600087803b158015610d2c57600080fd5b505af1158015610d40573d6000803e3d6000fd5b5050505050565b610d4f612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906150fb565b60405180910390fd5b600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563aaa0542b9091836040518363ffffffff1660e01b8152600401610e1d9291906151b6565b60006040518083038186803b158015610e3557600080fd5b505af4158015610e49573d6000803e3d6000fd5b5050505050565b6000610e5d848484612f8f565b610f1e84610e69612f87565b610f1985604051806060016040528060288152602001615b9560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ecf612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6136a0565b600190509392505050565b610f31612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163ca8db5629091846040518363ffffffff1660e01b8152600401610fff92919061530e565b60006040518083038186803b15801561101757600080fd5b505af415801561102b573d6000803e3d6000fd5b50505050600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163e9aed0229091836040518363ffffffff1660e01b815260040161106e92919061530e565b60006040518083038186803b15801561108657600080fd5b505af415801561109a573d6000803e3d6000fd5b505050505050565b602660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d0612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516397edf52a9091600661118b30611e53565b6040518463ffffffff1660e01b81526004016111a993929190615284565b60006040518083038186803b1580156111c157600080fd5b505af41580156111d5573d6000803e3d6000fd5b50505050565b60006012905090565b6111ec612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016112d99190614e50565b600060405180830381600087803b1580156112f357600080fd5b505af1158015611307573d6000803e3d6000fd5b5050505050565b69d3c21bcecceda100000081565b6060600080600080600080600080600080600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b2e6819b8d6040518263ffffffff1660e01b815260040161138b9190614e50565b60006040518083038186803b1580156113a357600080fd5b505afa1580156113b7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113e091906149b6565b9a506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6315f081cc90918e6040518363ffffffff1660e01b8152600401611421929190615337565b60206040518083038186803b15801561143957600080fd5b505af415801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114719190614a85565b9950600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516387fb4ac290916040518263ffffffff1660e01b81526004016114b09190615269565b604080518083038186803b1580156114c757600080fd5b505af41580156114db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ff9190614a20565b809950819a5050506000600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563148fb84d90916040518263ffffffff1660e01b8152600401611546919061519b565b60206040518083038186803b15801561155e57600080fd5b505af4158015611572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115969190614a85565b9050600660090173817d2c8b4249367d59a7378762a2ec35b19ea5356398e2ff5c9091836040518363ffffffff1660e01b81526004016115d79291906151b6565b60606040518083038186803b1580156115ef57600080fd5b505af4158015611603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116279190614967565b508098508199505050600660090173817d2c8b4249367d59a7378762a2ec35b19ea535633f8dda24909161165961386b565b6040518363ffffffff1660e01b81526004016116769291906151b6565b60206040518083038186803b15801561168e57600080fd5b505af41580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190614a85565b955060008111156117bf57600660090173817d2c8b4249367d59a7378762a2ec35b19ea5356398e2ff5c90916001846116ff919061568c565b6040518363ffffffff1660e01b815260040161171c9291906151b6565b60606040518083038186803b15801561173457600080fd5b505af4158015611748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176c9190614967565b809550819650829750505050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156117b55750600083145b156117be578592505b5b4291505091939597999b90929496989a50565b600061187b6117df612f87565b8461187685600160006117f0612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6136a0565b6001905092915050565b600061188f61386b565b9050600080600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563943eacf3909186866040518463ffffffff1660e01b81526004016118d5939291906151df565b604080518083038186803b1580156118ec57600080fd5b505af4158015611900573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611924919061492b565b91509150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611a0a5761196682826138a0565b61196f826138d6565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc836119ba85611e53565b6040518363ffffffff1660e01b81526004016119d7929190614ee7565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505b50505050565b60255481565b60245481565b60296020528060005260406000206000915054906101000a900460ff1681565b611a44612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca906150fb565b60405180910390fd5b6006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6393cc0a7e9091856040518363ffffffff1660e01b8152600401611b129291906153dc565b60006040518083038186803b158015611b2a57600080fd5b505af4158015611b3e573d6000803e3d6000fd5b505050506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a632d02375d9091846040518363ffffffff1660e01b8152600401611b819291906153dc565b60006040518083038186803b158015611b9957600080fd5b505af4158015611bad573d6000803e3d6000fd5b505050506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63bfc9f7c29091836040518363ffffffff1660e01b8152600401611bf09291906153dc565b60006040518083038186803b158015611c0857600080fd5b505af4158015611c1c573d6000803e3d6000fd5b50505050505050565b611c2d612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663550e4b83826040518263ffffffff1660e01b8152600401611d1a9190615466565b600060405180830381600087803b158015611d3457600080fd5b505af1158015611d48573d6000803e3d6000fd5b5050505050565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630ed0e2e233600660190160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006601a0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006040518563ffffffff1660e01b8152600401611dfe9493929190614e6b565b602060405180830381600087803b158015611e1857600080fd5b505af1158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5091906149f7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ea3612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906150fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ffb612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461208a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612081906150fb565b60405180910390fd5b80600660180160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503073ffffffffffffffffffffffffffffffffffffffff16600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561215057600080fd5b505afa158015612164573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218891906147ff565b73ffffffffffffffffffffffffffffffffffffffff16146121a857600080fd5b6121b0613a08565b8073ffffffffffffffffffffffffffffffffffffffff167f1e7fbad200a59aca8287bffdbe60da36c99480894a2bdc25ac88eed6029936f560405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612228612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516370e62b229091836040518363ffffffff1660e01b81526004016122f692919061530e565b60006040518083038186803b15801561230e57600080fd5b505af4158015612322573d6000803e3d6000fd5b5050505050565b6060600480546123389061579a565b80601f01602080910402602001604051908101604052809291908181526020018280546123649061579a565b80156123b15780601f10612386576101008083540402835291602001916123b1565b820191906000526020600020905b81548152906001019060200180831161239457829003601f168201915b5050505050905090565b600061247e6123c8612f87565b8461247985604051806060016040528060258152602001615bbd60259139600160006123f2612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6136a0565b6001905092915050565b600061249c612495612f87565b8484612f8f565b6001905092915050565b6124ae612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906150fb565b60405180910390fd5b683635c9adc5dea00000811061255257600080fd5b8060278190555050565b612564612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906150fb565b60405180910390fd5b80602960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516126909190615023565b60405180910390a25050565b600073768f0ada688369acfcb8d965f0c6ac8bde076b07636ac112c26126c061386b565b6024546025546040518463ffffffff1660e01b81526004016126e4939291906154aa565b60206040518083038186803b1580156126fc57600080fd5b505af4158015612710573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127349190614a85565b905060008114156127455750612852565b42602581905550806024600082825461275e919061568c565b92505081905550612794600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613d50565b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561280157600080fd5b505af1158015612815573d6000803e3d6000fd5b505050507f90f0ebc9cbe15b2466dcac46571c49feee27e3385c5ab60c348cc4ebcb91251f816040516128489190615466565b60405180910390a1505b565b61285c612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e2906150fb565b60405180910390fd5b6000602254146128fa57600080fd5b600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061294630611e53565b6000806129516121f6565b426040518863ffffffff1660e01b815260040161297396959493929190614f10565b6060604051808303818588803b15801561298c57600080fd5b505af11580156129a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129c59190614b39565b50505042602281905550565b6129d9612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163a2e459ed909160068686866040518663ffffffff1660e01b8152600401612aae9594939291906152bb565b60006040518083038186803b158015612ac657600080fd5b505af4158015612ada573d6000803e3d6000fd5b50505050505050565b6000612aef8383612f69565b905092915050565b612aff612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b85906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd19aa57826040518263ffffffff1660e01b8152600401612bec9190615466565b600060405180830381600087803b158015612c0657600080fd5b505af1158015612c1a573d6000803e3d6000fd5b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612cb0612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d36906150fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da69061509b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000738393d119af9ed6672aee9a9695aa85d98c26e19163202eb29069d3c21bcecceda10000006022546040518363ffffffff1660e01b8152600401612eb6929190615481565b60206040518083038186803b158015612ece57600080fd5b505af4158015612ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f069190614a85565b905090565b6000808284612f1a91906155a2565b905083811015612f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f56906150db565b60405180910390fd5b8091505092915050565b6000612f7d612f76612f87565b84846136a0565b6001905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561300357600080fd5b600081141561301d5761301883836000613efe565b613637565b613028838383614193565b6000602360009054906101000a900460ff161580156130915750602960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130e75750602960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90506000829050600082156133c85760006006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63cc9723d49091876040518363ffffffff1660e01b81526004016131379291906153dc565b60206040518083038186803b15801561314f57600080fd5b505af4158015613163573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318791906147ff565b90506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6304ea10f29091836131b485611e53565b8a6040518563ffffffff1660e01b81526004016131d49493929190615397565b60206040518083038186803b1580156131ec57600080fd5b505af4158015613200573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061322491906149f7565b61322d57600090505b6000806000600660140173f44d5f091d4e518524c707be48e53c811a8f58156364c45599909160068d8d8d8a6040518763ffffffff1660e01b815260040161327a96959493929190615405565b60606040518083038186803b15801561329257600080fd5b505af41580156132a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132ca9190614b39565b92509250925081836132dc91906155f8565b945060008311156133015782886132f3919061568c565b97506133008a3085613efe565b5b60008211156133155761331489836138a0565b5b60008111156133c35761332884826138a0565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561337387611e53565b6040518363ffffffff1660e01b8152600401613390929190614ee7565b600060405180830381600087803b1580156133aa57600080fd5b505af11580156133be573d6000803e3d6000fd5b505050505b505050505b6133d3868686613efe565b6133dc856138d6565b6000600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563148fb84d90916040518263ffffffff1660e01b815260040161341b919061519b565b60206040518083038186803b15801561343357600080fd5b505af4158015613447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346b9190614a85565b9050600081111561348c5761348b600182613486919061568c565b611885565b5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc886134d78a611e53565b6040518363ffffffff1660e01b81526004016134f4929190614ee7565b600060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761357189611e53565b6040518363ffffffff1660e01b815260040161358e929190614ee7565b600060405180830381600087803b1580156135a857600080fd5b505af11580156135bc573d6000803e3d6000fd5b50505050600673a9223ca552b57eb783fd198c0866662ee76f235c6392629b1a9091898987876040518663ffffffff1660e01b8152600401613602959493929190615216565b60006040518083038186803b15801561361a57600080fd5b505af415801561362e573d6000803e3d6000fd5b50505050505050505b505050565b6000838311158290613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367b9190615059565b60405180910390fd5b5060008385613693919061568c565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137079061515b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613777906150bb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161385e9190615466565b60405180910390a3505050565b600061389b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e53565b905090565b60008114156138ae576138d2565b80602460008282546138c091906155a2565b925050819055506138d182826144ca565b5b5050565b602960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561392d57613a05565b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561398b57613a05565b6006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63cdb09f689091836139b685611e53565b6040518463ffffffff1660e01b81526004016139d493929190615360565b60006040518083038186803b1580156139ec57600080fd5b505af4158015613a00573d6000803e3d6000fd5b505050505b50565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613a8b9190614e50565b600060405180830381600087803b158015613aa557600080fd5b505af1158015613ab9573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401613b1b9190614e50565b600060405180830381600087803b158015613b3557600080fd5b505af1158015613b49573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0613b966121f6565b6040518263ffffffff1660e01b8152600401613bb29190614e50565b600060405180830381600087803b158015613bcc57600080fd5b505af1158015613be0573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613c679190614e50565b600060405180830381600087803b158015613c8157600080fd5b505af1158015613c95573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d1c9190614e50565b600060405180830381600087803b158015613d3657600080fd5b505af1158015613d4a573d6000803e3d6000fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db79061511b565b60405180910390fd5b613dcc8260008361465e565b613e3781604051806060016040528060228152602001615b4d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e8e8160025461466390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ef29190615466565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f659061513b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd59061507b565b60405180910390fd5b613fe983838361465e565b61405481604051806060016040528060268152602001615b6f602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141869190615466565b60405180910390a3505050565b600061419e30611e53565b9050600060275482101590506141b26121f6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561422057506141f06121f6565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156144c3573073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156142b25750600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561430f5750600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561433c5761431c612e6f565b8361432686611e53565b61433091906155a2565b111561433b57600080fd5b5b8080156143565750602360009054906101000a900460ff16155b80156143b35750600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156143c157506000602254115b80156143ce575060225442115b156144c2576001602360006101000a81548160ff02191690831515021790555060008290506028548111156144035760285490505b61443330600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836136a0565b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516397edf52a90916006846040518463ffffffff1660e01b815260040161447593929190615284565b60006040518083038186803b15801561448d57600080fd5b505af41580156144a1573d6000803e3d6000fd5b505050506000602360006101000a81548160ff021916908315150217905550505b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561453a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016145319061517b565b60405180910390fd5b6145466000838361465e565b61455b81600254612f0b90919063ffffffff16565b6002819055506145b2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516146529190615466565b60405180910390a35050565b505050565b60006146a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061363c565b905092915050565b60006146c06146bb84615521565b6154fc565b905080838252602082019050828560208602820111156146df57600080fd5b60005b8581101561470f57816146f588826147c1565b8452602084019350602083019250506001810190506146e2565b5050509392505050565b60008135905061472881615af0565b92915050565b60008151905061473d81615af0565b92915050565b600082601f83011261475457600080fd5b81516147648482602086016146ad565b91505092915050565b60008135905061477c81615b07565b92915050565b60008151905061479181615b07565b92915050565b6000815190506147a681615b1e565b92915050565b6000813590506147bb81615b35565b92915050565b6000815190506147d081615b35565b92915050565b6000602082840312156147e857600080fd5b60006147f684828501614719565b91505092915050565b60006020828403121561481157600080fd5b600061481f8482850161472e565b91505092915050565b6000806040838503121561483b57600080fd5b600061484985828601614719565b925050602061485a85828601614719565b9150509250929050565b60008060006060848603121561487957600080fd5b600061488786828701614719565b935050602061489886828701614719565b92505060406148a9868287016147ac565b9150509250925092565b600080604083850312156148c657600080fd5b60006148d485828601614719565b92505060206148e58582860161476d565b9150509250929050565b6000806040838503121561490257600080fd5b600061491085828601614719565b9250506020614921858286016147ac565b9150509250929050565b6000806040838503121561493e57600080fd5b600061494c8582860161472e565b925050602061495d858286016147c1565b9150509250929050565b60008060006060848603121561497c57600080fd5b600061498a8682870161472e565b935050602061499b868287016147c1565b92505060406149ac868287016147c1565b9150509250925092565b6000602082840312156149c857600080fd5b600082015167ffffffffffffffff8111156149e257600080fd5b6149ee84828501614743565b91505092915050565b600060208284031215614a0957600080fd5b6000614a1784828501614782565b91505092915050565b60008060408385031215614a3357600080fd5b6000614a4185828601614797565b9250506020614a52858286016147c1565b9150509250929050565b600060208284031215614a6e57600080fd5b6000614a7c848285016147ac565b91505092915050565b600060208284031215614a9757600080fd5b6000614aa5848285016147c1565b91505092915050565b60008060408385031215614ac157600080fd5b6000614acf858286016147ac565b9250506020614ae0858286016147ac565b9150509250929050565b600080600060608486031215614aff57600080fd5b6000614b0d868287016147ac565b9350506020614b1e868287016147ac565b9250506040614b2f868287016147ac565b9150509250925092565b600080600060608486031215614b4e57600080fd5b6000614b5c868287016147c1565b9350506020614b6d868287016147c1565b9250506040614b7e868287016147c1565b9150509250925092565b6000614b948383614e14565b60208301905092915050565b614ba9816156c0565b82525050565b614bb8816156c0565b82525050565b6000614bc98261555d565b614bd38185615580565b9350614bde8361554d565b8060005b83811015614c0f578151614bf68882614b88565b9750614c0183615573565b925050600181019050614be2565b5085935050505092915050565b614c25816156d2565b82525050565b614c348161571f565b82525050565b614c43816156de565b82525050565b614c52816156de565b82525050565b614c6181615743565b82525050565b614c7081615755565b82525050565b6000614c8182615568565b614c8b8185615591565b9350614c9b818560208601615767565b614ca48161588a565b840191505092915050565b6000614cbc602383615591565b9150614cc78261589b565b604082019050919050565b6000614cdf602683615591565b9150614cea826158ea565b604082019050919050565b6000614d02602283615591565b9150614d0d82615939565b604082019050919050565b6000614d25601b83615591565b9150614d3082615988565b602082019050919050565b6000614d48602083615591565b9150614d53826159b1565b602082019050919050565b6000614d6b602183615591565b9150614d76826159da565b604082019050919050565b6000614d8e602583615591565b9150614d9982615a29565b604082019050919050565b6000614db1602483615591565b9150614dbc82615a78565b604082019050919050565b6000614dd4601f83615591565b9150614ddf82615ac7565b602082019050919050565b8082525050565b8082525050565b8082525050565b8082525050565b8082525050565b8082525050565b614e1d81615708565b82525050565b614e2c81615708565b82525050565b614e3b81615708565b82525050565b614e4a81615712565b82525050565b6000602082019050614e656000830184614ba0565b92915050565b6000608082019050614e806000830187614ba0565b614e8d6020830186614ba0565b614e9a6040830185614ba0565b614ea76060830184614c1c565b95945050505050565b6000606082019050614ec56000830186614ba0565b614ed26020830185614c67565b614edf6040830184614c58565b949350505050565b6000604082019050614efc6000830185614ba0565b614f096020830184614e23565b9392505050565b600060c082019050614f256000830189614ba0565b614f326020830188614e23565b614f3f6040830187614c67565b614f4c6060830186614c67565b614f596080830185614ba0565b614f6660a0830184614e23565b979650505050505050565b6000610160820190508181036000830152614f8c818e614bbe565b9050614f9b602083018d614e23565b614fa8604083018c614c3a565b614fb5606083018b614e23565b614fc2608083018a614ba0565b614fcf60a0830189614e23565b614fdc60c0830188614e23565b614fe960e0830187614ba0565b614ff7610100830186614e23565b615005610120830185614e23565b615013610140830184614e23565b9c9b505050505050505050505050565b60006020820190506150386000830184614c1c565b92915050565b60006020820190506150536000830184614c2b565b92915050565b600060208201905081810360008301526150738184614c76565b905092915050565b6000602082019050818103600083015261509481614caf565b9050919050565b600060208201905081810360008301526150b481614cd2565b9050919050565b600060208201905081810360008301526150d481614cf5565b9050919050565b600060208201905081810360008301526150f481614d18565b9050919050565b6000602082019050818103600083015261511481614d3b565b9050919050565b6000602082019050818103600083015261513481614d5e565b9050919050565b6000602082019050818103600083015261515481614d81565b9050919050565b6000602082019050818103600083015261517481614da4565b9050919050565b6000602082019050818103600083015261519481614dc7565b9050919050565b60006020820190506151b06000830184614dea565b92915050565b60006040820190506151cb6000830185614dea565b6151d86020830184614e32565b9392505050565b60006060820190506151f46000830186614dea565b6152016020830185614e32565b61520e6040830184614e32565b949350505050565b600060a08201905061522b6000830188614df1565b6152386020830187614baf565b6152456040830186614baf565b6152526060830185614e32565b61525f6080830184614c49565b9695505050505050565b600060208201905061527e6000830184614dff565b92915050565b60006060820190506152996000830186614dff565b6152a66020830185614df8565b6152b36040830184614e32565b949350505050565b600060a0820190506152d06000830188614dff565b6152dd6020830187614df8565b6152ea6040830186614e32565b6152f76060830185614e32565b6153046080830184614e32565b9695505050505050565b60006040820190506153236000830185614dff565b6153306020830184614e32565b9392505050565b600060408201905061534c6000830185614e06565b6153596020830184614baf565b9392505050565b60006060820190506153756000830186614e06565b6153826020830185614baf565b61538f6040830184614e32565b949350505050565b60006080820190506153ac6000830187614e06565b6153b96020830186614baf565b6153c66040830185614e32565b6153d36060830184614baf565b95945050505050565b60006040820190506153f16000830185614e06565b6153fe6020830184614e32565b9392505050565b600060c08201905061541a6000830189614e0d565b6154276020830188614df8565b6154346040830187614baf565b6154416060830186614baf565b61544e6080830185614e32565b61545b60a0830184614baf565b979650505050505050565b600060208201905061547b6000830184614e23565b92915050565b60006040820190506154966000830185614e32565b6154a36020830184614e32565b9392505050565b60006060820190506154bf6000830186614e32565b6154cc6020830185614e32565b6154d96040830184614e32565b949350505050565b60006020820190506154f66000830184614e41565b92915050565b6000615506615517565b905061551282826157cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561553c5761553b61585b565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006155ad82615708565b91506155b883615708565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155ed576155ec6157fd565b5b828201905092915050565b6000615603826156de565b915061560e836156de565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615615649576156486157fd565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615615681576156806157fd565b5b828203905092915050565b600061569782615708565b91506156a283615708565b9250828210156156b5576156b46157fd565b5b828203905092915050565b60006156cb826156e8565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061572a82615731565b9050919050565b600061573c826156e8565b9050919050565b600061574e826156de565b9050919050565b600061576082615708565b9050919050565b60005b8381101561578557808201518184015260208101905061576a565b83811115615794576000848401525b50505050565b600060028204905060018216806157b257607f821691505b602082108114156157c6576157c561582c565b5b50919050565b6157d58261588a565b810181811067ffffffffffffffff821117156157f4576157f361585b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615af9816156c0565b8114615b0457600080fd5b50565b615b10816156d2565b8114615b1b57600080fd5b50565b615b27816156de565b8114615b3257600080fd5b50565b615b3e81615708565b8114615b4957600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b7953163428d2ca4332d9854c6dd6c02a3a972c3b13fe90cc5c676efe94a371664736f6c6343000804003360e06040523480156200001157600080fd5b50604051620051f0380380620051f0833981810160405281019062000037919062000867565b6040518060400160405280601881526020017f4368616d656c656f6e4469766964656e64547261636b657200000000000000008152506040518060400160405280600a81526020017f24434d4c4e5f444956530000000000000000000000000000000000000000000081525081818160039080519060200190620000bd92919062000789565b508060049080519060200190620000d692919062000789565b50505050506000620000ed6200027160201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620002456203f4806200027960201b60201c565b6200025760196200048660201b60201c565b6200026883620005b460201b60201c565b50505062000e59565b600033905090565b620002896200027160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003129062000a62565b60405180910390fd5b62278d0081111562000364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035b9062000a1e565b60405180910390fd5b6000600d5411156200043c5762015180600d5462000383919062000ab2565b421015620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bf90620009fc565b60405180910390fd5b6201518081111580620003f957506064607d600c54620003e9919062000b47565b620003f5919062000b0f565b8111155b6200043b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004329062000a40565b60405180910390fd5b5b80600c8190555042600d819055507f410cd01ba38d07f9702e09f9ad3df12677068140303ff096b1d45241c6374603816040516200047b919062000a84565b60405180910390a150565b620004966200027160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051f9062000a62565b60405180910390fd5b601e8111156200056f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056690620009b8565b60405180910390fd5b80600e819055507f474f28dd15de3d5880b675d13e044e0f3de7820c7619e71e27ad3400a9910d53600e54604051620005a9919062000a84565b60405180910390a150565b620005c46200027160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000656576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064d9062000a62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620006c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c090620009da565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054620007979062000bfa565b90600052602060002090601f016020900481019282620007bb576000855562000807565b82601f10620007d657805160ff191683800117855562000807565b8280016001018555821562000807579182015b8281111562000806578251825591602001919060010190620007e9565b5b5090506200081691906200081a565b5090565b5b80821115620008355760008160009055506001016200081b565b5090565b6000815190506200084a8162000e25565b92915050565b600081519050620008618162000e3f565b92915050565b6000806000606084860312156200087d57600080fd5b60006200088d8682870162000850565b9350506020620008a08682870162000839565b9250506040620008b38682870162000839565b9150509250925092565b6000620008cc60328362000aa1565b9150620008d98262000cbd565b604082019050919050565b6000620008f360268362000aa1565b9150620009008262000d0c565b604082019050919050565b60006200091a60088362000aa1565b9150620009278262000d5b565b602082019050919050565b60006200094160398362000aa1565b91506200094e8262000d84565b604082019050919050565b60006200096860088362000aa1565b9150620009758262000dd3565b602082019050919050565b60006200098f60208362000aa1565b91506200099c8262000dfc565b602082019050919050565b620009b28162000bf0565b82525050565b60006020820190508181036000830152620009d381620008bd565b9050919050565b60006020820190508181036000830152620009f581620008e4565b9050919050565b6000602082019050818103600083015262000a17816200090b565b9050919050565b6000602082019050818103600083015262000a398162000932565b9050919050565b6000602082019050818103600083015262000a5b8162000959565b9050919050565b6000602082019050818103600083015262000a7d8162000980565b9050919050565b600060208201905062000a9b6000830184620009a7565b92915050565b600082825260208201905092915050565b600062000abf8262000bf0565b915062000acc8362000bf0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b045762000b0362000c30565b5b828201905092915050565b600062000b1c8262000bf0565b915062000b298362000bf0565b92508262000b3c5762000b3b62000c5f565b5b828204905092915050565b600062000b548262000bf0565b915062000b618362000bf0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b9d5762000b9c62000c30565b5b828202905092915050565b600062000bb58262000bd0565b9050919050565b600062000bc98262000bd0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c1357607f821691505b6020821081141562000c2a5762000c2962000c8e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4368616d656c656f6e4469766964656e64547261636b65723a206d6178206d6160008201527f726b6574696e6720666565206973203330250000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f746f6f20736f6f6e000000000000000000000000000000000000000000000000600082015250565b7f4368616d656c656f6e4469766964656e64547261636b65723a206d617820766560008201527f7374696e67206475726174696f6e206973203330206461797300000000000000602082015250565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000e308162000ba8565b811462000e3c57600080fd5b50565b62000e4a8162000bbc565b811462000e5657600080fd5b50565b60805160601c60a05160601c60c05160601c61434262000eae60003960008181610ed601528181610f570152611b75015260008181610f930152818161102a015261155b0152600061277a01526143426000f3fe60806040526004361061021e5760003560e01c8063715018a611610123578063aafd847a116100ab578063dd62ed3e1161006f578063dd62ed3e14610865578063e0cb27cd146108a2578063e30443bc146108df578063f2fde38b14610908578063fc0c546a146109315761022d565b8063aafd847a1461076c578063ad5c4648146107a9578063b2e6819b146107d4578063bc09112214610811578063dd19aa571461083c5761022d565b806395d89b41116100f257806395d89b411461064d578063a457c2d714610678578063a8b9d240146106b5578063a9059cbb146106f2578063a93a8d221461072f5761022d565b8063715018a6146105a357806385a6b3ae146105ba5780638da5cb5b146105e557806391b89fba146106105761022d565b8063313ce567116101a657806349bd5a5e1161017557806349bd5a5e146104aa5780634e7b827f146104d5578063550e4b83146105125780635a850af21461053b57806370a08231146105665761022d565b8063313ce567146103ee57806331e79db0146104195780633920fcad14610442578063395093511461046d5761022d565b80631514617e116101ed5780631514617e146102e157806318160ddd1461030c578063226cfa3d1461033757806323b872dd1461037457806327ce0147146103b15761022d565b806303c833021461023257806306fdde031461023c578063095ea7b3146102675780630ed0e2e2146102a45761022d565b3661022d5761022b61095c565b005b600080fd5b61023a61095c565b005b34801561024857600080fd5b50610251610a35565b60405161025e919061381b565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906132fc565b610ac7565b60405161029b919061375c565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c6919061324a565b610ae5565b6040516102d8919061375c565b60405180910390f35b3480156102ed57600080fd5b506102f661115a565b6040516103039190613a1d565b60405180910390f35b34801561031857600080fd5b50610321611160565b60405161032e9190613a1d565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906131bc565b61116a565b60405161036b9190613a1d565b60405180910390f35b34801561038057600080fd5b5061039b600480360381019061039691906132ad565b611182565b6040516103a8919061375c565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d391906131bc565b61125b565b6040516103e59190613a1d565b60405180910390f35b3480156103fa57600080fd5b506104036112fe565b6040516104109190613a38565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906131bc565b611307565b005b34801561044e57600080fd5b5061045761149f565b6040516104649190613a1d565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906132fc565b6114a6565b6040516104a1919061375c565b60405180910390f35b3480156104b657600080fd5b506104bf611559565b6040516104cc91906137e5565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906131bc565b61157d565b604051610509919061375c565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613361565b61159d565b005b34801561054757600080fd5b506105506116bb565b60405161055d9190613a1d565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906131bc565b6116c1565b60405161059a9190613a1d565b60405180910390f35b3480156105af57600080fd5b506105b8611709565b005b3480156105c657600080fd5b506105cf611861565b6040516105dc9190613a1d565b60405180910390f35b3480156105f157600080fd5b506105fa611867565b60405161060791906136f6565b60405180910390f35b34801561061c57600080fd5b50610637600480360381019061063291906131bc565b611891565b6040516106449190613a1d565b60405180910390f35b34801561065957600080fd5b506106626118a3565b60405161066f919061381b565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906132fc565b611935565b6040516106ac919061375c565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906131bc565b611a02565b6040516106e99190613a1d565b60405180910390f35b3480156106fe57600080fd5b50610719600480360381019061071491906132fc565b611a65565b604051610726919061375c565b60405180910390f35b34801561073b57600080fd5b50610756600480360381019061075191906131bc565b611a83565b6040516107639190613a1d565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e91906131bc565b611b2a565b6040516107a09190613a1d565b60405180910390f35b3480156107b557600080fd5b506107be611b73565b6040516107cb9190613800565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906131bc565b611b97565b604051610808919061373a565b60405180910390f35b34801561081d57600080fd5b50610826611e04565b6040516108339190613a1d565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613361565b611e0a565b005b34801561087157600080fd5b5061088c6004803603810190610887919061320e565b611ff9565b6040516108999190613a1d565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c491906131bc565b612080565b6040516108d6919061375c565b60405180910390f35b3480156108eb57600080fd5b50610906600480360381019061090191906132fc565b61241b565b005b34801561091457600080fd5b5061092f600480360381019061092a91906131bc565b6125b1565b005b34801561093d57600080fd5b50610946612778565b60405161095391906137ca565b60405180910390f35b6000610966611160565b1161097057600080fd5b6000341115610a33576109c3610984611160565b6109a87001000000000000000000000000000000003461279c90919063ffffffff16565b6109b29190613b9d565b60055461281790919063ffffffff16565b6005819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651134604051610a0f9190613a1d565b60405180910390a2610a2c3460085461281790919063ffffffff16565b6008819055505b565b606060038054610a4490613dee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090613dee565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b5050505050905090565b6000610adb610ad4612875565b848461287d565b6001905092915050565b6000610aef612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b759061395d565b60405180910390fd5b6000610b8986611a02565b90506000811415610b9e576000915050611152565b6000610ba987611a83565b9050610bfd82600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461281790919063ffffffff16565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d83604051610c869190613a1d565b60405180910390a260006127108284610c9f9190613bce565b610ca99190613b9d565b905060008184610cb99190613cbc565b905060008973ffffffffffffffffffffffffffffffffffffffff1683604051610ce1906136e1565b60006040518083038185875af1925050503d8060008114610d1e576040519150601f19603f3d011682016040523d82523d6000602084013e610d23565b606091505b50508091505080610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d609061397d565b60405180910390fd5b60008060008411156110ac576064600e5485610d859190613bce565b610d8f9190613b9d565b90508084610d9d9190613cbc565b91506000600282610dae9190613b9d565b905060008183610dbe9190613cbc565b90506000831115610ed4578c73ffffffffffffffffffffffffffffffffffffffff168261138890604051610df1906136e1565b600060405180830381858888f193505050503d8060008114610e2f576040519150601f19603f3d011682016040523d82523d6000602084013e610e34565b606091505b50508095505084610e4e578184610e4b9190613b47565b93505b8b73ffffffffffffffffffffffffffffffffffffffff168161138890604051610e76906136e1565b600060405180830381858888f193505050503d8060008114610eb4576040519150601f19603f3d011682016040523d82523d6000602084013e610eb9565b606091505b50508095505084610ed3578084610ed09190613b47565b93505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f3c57600080fd5b505af1158015610f50573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f0000000000000000000000000000000000000000000000000000000000000000866040518363ffffffff1660e01b8152600401610fd0929190613711565b602060405180830381600087803b158015610fea57600080fd5b505af1158015610ffe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110229190613338565b508a6110a9577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561109057600080fd5b505af11580156110a4573d6000803e3d6000fd5b505050505b50505b42600b60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508b73ffffffffffffffffffffffffffffffffffffffff167fb01368222a6927e5d4dc9b810f9bd6e7dc43d0d9208ee87b9c4b0e8f0f0d69008a8888868660405161113e959493929190613777565b60405180910390a260019750505050505050505b949350505050565b600c5481565b6000600254905090565b600b6020528060005260406000206000915090505481565b600061118f848484612a48565b6112508461119b612875565b61124b856040518060600160405280602881526020016142c060289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611201612875565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa99092919063ffffffff16565b61287d565b600190509392505050565b60007001000000000000000000000000000000006112ed6112e8600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112da6112d56112c4886116c1565b60055461279c90919063ffffffff16565b612b0d565b612b2a90919063ffffffff16565b612b75565b6112f79190613b9d565b9050919050565b60006012905090565b61130f612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113959061395d565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f55761149c565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611458816000612b8c565b8073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a25b50565b624f1a0081565b600061154f6114b3612875565b8461154a85600160006114c4612875565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461281790919063ffffffff16565b61287d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a6020528060005260406000206000915054906101000a900460ff1681565b6115a5612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b9061395d565b60405180910390fd5b601e811115611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f9061385d565b60405180910390fd5b80600e819055507f474f28dd15de3d5880b675d13e044e0f3de7820c7619e71e27ad3400a9910d53600e546040516116b09190613a1d565b60405180910390a150565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611711612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117979061395d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60085481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061189c82611a02565b9050919050565b6060600480546118b290613dee565b80601f01602080910402602001604051908101604052809291908181526020018280546118de90613dee565b801561192b5780601f106119005761010080835404028352916020019161192b565b820191906000526020600020905b81548152906001019060200180831161190e57829003601f168201915b5050505050905090565b60006119f8611942612875565b846119f3856040518060600160405280602581526020016142e8602591396001600061196c612875565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa99092919063ffffffff16565b61287d565b6001905092915050565b6000611a5e600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a508461125b565b612bf990919063ffffffff16565b9050919050565b6000611a79611a72612875565b8484612a48565b6001905092915050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811415611adb576000915050611b25565b60008142611ae99190613cbc565b90506000600c548210611b00576127109050611b1e565b600c5482612710611b119190613bce565b611b1b9190613b9d565b90505b8093505050505b919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606000611ba483611a02565b90506000611bb18461125b565b90506000611bbe85611a83565b90506000600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211611c14576000611c23565b600c5482611c229190613b47565b5b9050600567ffffffffffffffff811115611c66577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611c945781602001602082028036833780820191505090505b5095508486600081518110611cd2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508386600181518110611d19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508286600281518110611d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508186600381518110611da7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508086600481518110611dee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505050505050919050565b61271081565b611e12612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e989061395d565b60405180910390fd5b62278d00811115611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906138fd565b60405180910390fd5b6000600d541115611fb15762015180600d54611f039190613b47565b421015611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c906138dd565b60405180910390fd5b6201518081111580611f7157506064607d600c54611f639190613bce565b611f6d9190613b9d565b8111155b611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa79061391d565b60405180910390fd5b5b80600c8190555042600d819055507f410cd01ba38d07f9702e09f9ad3df12677068140303ff096b1d45241c637460381604051611fee9190613a1d565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061208a612875565b73ffffffffffffffffffffffffffffffffffffffff166120a8611867565b73ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156120ed57600080fd5b505afa158015612101573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212591906131e5565b73ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121729061383d565b60405180910390fd5b600061218683611a02565b90506000811161219557600080fd5b624f1a00600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426121e49190613cbc565b10156121ef57600080fd5b61224181600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461281790919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516122ca9190613a1d565b60405180910390a260003373ffffffffffffffffffffffffffffffffffffffff16826040516122f8906136e1565b60006040518083038185875af1925050503d8060008114612335576040519150601f19603f3d011682016040523d82523d6000602084013e61233a565b606091505b505090508061237e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123759061397d565b60405180910390fd5b42600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff167f0cbc2f8d2e05e2894f7dafb7995ed3301dffb94126f3a8239eb31a41e0ddd628836040516124089190613a1d565b60405180910390a2600192505050919050565b612423612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a99061395d565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612509576125ad565b6125138282612b8c565b60008111801561256257506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b156125ac5742600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5050565b6125b9612875565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263f9061395d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126af9061387d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000808314156127af5760009050612811565b600082846127bd9190613bce565b90508284826127cc9190613b9d565b1461280c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128039061393d565b60405180910390fd5b809150505b92915050565b60008082846128269190613b47565b90508381101561286b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612862906138bd565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e4906139bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561295d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129549061389d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a3b9190613a1d565b60405180910390a3505050565b6001600f60006101000a81548160ff0219169083151502179055506000612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b906139dd565b60405180910390fd5b505050565b6000838311158290612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae8919061381b565b60405180910390fd5b5060008385612b009190613cbc565b9050809150509392505050565b6000808290506000811215612b2157600080fd5b80915050919050565b6000808284612b399190613ab3565b905060008312158015612b4c5750838112155b80612b625750600083128015612b6157508381125b5b612b6b57600080fd5b8091505092915050565b600080821215612b8457600080fd5b819050919050565b6000612b97836116c1565b905080821115612bc8576000612bb68284612bf990919063ffffffff16565b9050612bc28482612c43565b50612bf4565b80821015612bf3576000612be58383612bf990919063ffffffff16565b9050612bf18482612d02565b505b5b505050565b6000612c3b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612aa9565b905092915050565b612c4d8282612dc1565b612cbb612c6d612c688360055461279c90919063ffffffff16565b612b0d565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5590919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b612d0c8282612fa0565b612d7a612d2c612d278360055461279c90919063ffffffff16565b612b0d565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b2a90919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e28906139fd565b60405180910390fd5b612e3d6000838361314e565b612e528160025461281790919063ffffffff16565b600281905550612ea9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461281790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f499190613a1d565b60405180910390a35050565b6000808284612f649190613c28565b905060008312158015612f775750838113155b80612f8d5750600083128015612f8c57508381135b5b612f9657600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130079061399d565b60405180910390fd5b61301c8260008361314e565b6130878160405180606001604052806022815260200161429e602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa99092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130de81600254612bf990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131429190613a1d565b60405180910390a35050565b505050565b60008135905061316281614258565b92915050565b60008151905061317781614258565b92915050565b60008135905061318c8161426f565b92915050565b6000815190506131a18161426f565b92915050565b6000813590506131b681614286565b92915050565b6000602082840312156131ce57600080fd5b60006131dc84828501613153565b91505092915050565b6000602082840312156131f757600080fd5b600061320584828501613168565b91505092915050565b6000806040838503121561322157600080fd5b600061322f85828601613153565b925050602061324085828601613153565b9150509250929050565b6000806000806080858703121561326057600080fd5b600061326e87828801613153565b945050602061327f87828801613153565b935050604061329087828801613153565b92505060606132a18782880161317d565b91505092959194509250565b6000806000606084860312156132c257600080fd5b60006132d086828701613153565b93505060206132e186828701613153565b92505060406132f2868287016131a7565b9150509250925092565b6000806040838503121561330f57600080fd5b600061331d85828601613153565b925050602061332e858286016131a7565b9150509250929050565b60006020828403121561334a57600080fd5b600061335884828501613192565b91505092915050565b60006020828403121561337357600080fd5b6000613381848285016131a7565b91505092915050565b600061339683836136b4565b60208301905092915050565b6133ab81613cf0565b82525050565b60006133bc82613a63565b6133c68185613a86565b93506133d183613a53565b8060005b838110156134025781516133e9888261338a565b97506133f483613a79565b9250506001810190506133d5565b5085935050505092915050565b61341881613d02565b82525050565b61342781613d4f565b82525050565b61343681613d73565b82525050565b61344581613d97565b82525050565b600061345682613a6e565b6134608185613aa2565b9350613470818560208601613dbb565b61347981613ead565b840191505092915050565b6000613491601f83613aa2565b915061349c82613ebe565b602082019050919050565b60006134b4603283613aa2565b91506134bf82613ee7565b604082019050919050565b60006134d7602683613aa2565b91506134e282613f36565b604082019050919050565b60006134fa602283613aa2565b915061350582613f85565b604082019050919050565b600061351d601b83613aa2565b915061352882613fd4565b602082019050919050565b6000613540600883613aa2565b915061354b82613ffd565b602082019050919050565b6000613563603983613aa2565b915061356e82614026565b604082019050919050565b6000613586600883613aa2565b915061359182614075565b602082019050919050565b60006135a9602183613aa2565b91506135b48261409e565b604082019050919050565b60006135cc602083613aa2565b91506135d7826140ed565b602082019050919050565b60006135ef601883613aa2565b91506135fa82614116565b602082019050919050565b6000613612602183613aa2565b915061361d8261413f565b604082019050919050565b6000613635600083613a97565b91506136408261418e565b600082019050919050565b6000613658602483613aa2565b915061366382614191565b604082019050919050565b600061367b602e83613aa2565b9150613686826141e0565b604082019050919050565b600061369e601f83613aa2565b91506136a98261422f565b602082019050919050565b6136bd81613d38565b82525050565b6136cc81613d38565b82525050565b6136db81613d42565b82525050565b60006136ec82613628565b9150819050919050565b600060208201905061370b60008301846133a2565b92915050565b600060408201905061372660008301856133a2565b61373360208301846136c3565b9392505050565b6000602082019050818103600083015261375481846133b1565b905092915050565b6000602082019050613771600083018461340f565b92915050565b600060a08201905061378c600083018861340f565b61379960208301876136c3565b6137a660408301866136c3565b6137b360608301856136c3565b6137c060808301846136c3565b9695505050505050565b60006020820190506137df600083018461341e565b92915050565b60006020820190506137fa600083018461342d565b92915050565b6000602082019050613815600083018461343c565b92915050565b60006020820190508181036000830152613835818461344b565b905092915050565b6000602082019050818103600083015261385681613484565b9050919050565b60006020820190508181036000830152613876816134a7565b9050919050565b60006020820190508181036000830152613896816134ca565b9050919050565b600060208201905081810360008301526138b6816134ed565b9050919050565b600060208201905081810360008301526138d681613510565b9050919050565b600060208201905081810360008301526138f681613533565b9050919050565b6000602082019050818103600083015261391681613556565b9050919050565b6000602082019050818103600083015261393681613579565b9050919050565b600060208201905081810360008301526139568161359c565b9050919050565b60006020820190508181036000830152613976816135bf565b9050919050565b60006020820190508181036000830152613996816135e2565b9050919050565b600060208201905081810360008301526139b681613605565b9050919050565b600060208201905081810360008301526139d68161364b565b9050919050565b600060208201905081810360008301526139f68161366e565b9050919050565b60006020820190508181036000830152613a1681613691565b9050919050565b6000602082019050613a3260008301846136c3565b92915050565b6000602082019050613a4d60008301846136d2565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000613abe82613d0e565b9150613ac983613d0e565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615613b0457613b03613e20565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615613b3c57613b3b613e20565b5b828201905092915050565b6000613b5282613d38565b9150613b5d83613d38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9257613b91613e20565b5b828201905092915050565b6000613ba882613d38565b9150613bb383613d38565b925082613bc357613bc2613e4f565b5b828204905092915050565b6000613bd982613d38565b9150613be483613d38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c1d57613c1c613e20565b5b828202905092915050565b6000613c3382613d0e565b9150613c3e83613d0e565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615613c7957613c78613e20565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615613cb157613cb0613e20565b5b828203905092915050565b6000613cc782613d38565b9150613cd283613d38565b925082821015613ce557613ce4613e20565b5b828203905092915050565b6000613cfb82613d18565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613d5a82613d61565b9050919050565b6000613d6c82613d18565b9050919050565b6000613d7e82613d85565b9050919050565b6000613d9082613d18565b9050919050565b6000613da282613da9565b9050919050565b6000613db482613d18565b9050919050565b60005b83811015613dd9578082015181840152602081019050613dbe565b83811115613de8576000848401525b50505050565b60006002820490506001821680613e0657607f821691505b60208210811415613e1a57613e19613e7e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f63616c6c6572206973206e6f7420746865206f776e65722773206f776e657200600082015250565b7f4368616d656c656f6e4469766964656e64547261636b65723a206d6178206d6160008201527f726b6574696e6720666565206973203330250000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f746f6f20736f6f6e000000000000000000000000000000000000000000000000600082015250565b7f4368616d656c656f6e4469766964656e64547261636b65723a206d617820766560008201527f7374696e67206475726174696f6e206973203330206461797300000000000000602082015250565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f756c64206e6f742073656e64206469766964656e64730000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4368616d656c656f6e4469766964656e64547261636b65723a204e6f2074726160008201527f6e736665727320616c6c6f776564000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61426181613cf0565b811461426c57600080fd5b50565b61427881613d02565b811461428357600080fd5b50565b61428f81613d38565b811461429a57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a35ff88dbf23df1a6bf9663be56de30903b6f46e9d1b8ed3ebbe4b67bbc4aeb464736f6c63430008040033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063550e4b831161012e578063afa4f3b2116100ab578063dacbcec71161006f578063dacbcec714610848578063dd19aa5714610885578063dd62ed3e146108ae578063f2fde38b146108eb578063f8b45b051461091457610246565b8063afa4f3b21461079f578063c0246668146107c8578063c31a0122146107f1578063d0db508314610808578063d15f58931461081f57610246565b80638da5cb5b116100f25780638da5cb5b146106a65780638e690186146106d157806395d89b41146106fa578063a457c2d714610725578063a9059cbb1461076257610246565b8063550e4b83146105e9578063668038e01461061257806370a0823114610629578063715018a61461066657806388bdd9be1461067d57610246565b8063313ce567116101bc57806342caf79a1161018057806342caf79a1461050457806348620c3c1461052d5780634d2919fc146105585780634fbee1931461058357806351e6113b146105c057610246565b8063313ce5671461040157806331e79db01461042c57806332cb6b0c1461045557806338266b221461048057806339509351146104c757610246565b80631dea9a11116102035780631dea9a111461033057806323b872dd14610359578063269a86b2146103965780632c1f5216146103bf5780632d0f5b34146103ea57610246565b806306fdde031461024b578063095ea7b3146102765780630e20b02a146102b357806318160ddd146102dc5780631ad4f3511461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b5061026061093f565b60405161026d9190615059565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906148ef565b6109d1565b6040516102aa9190615023565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190614a5c565b6109ed565b005b3480156102e857600080fd5b506102f1610aa4565b6040516102fe9190615466565b60405180910390f35b34801561031357600080fd5b5061032e600480360381019061032991906147d6565b610aae565b005b34801561033c57600080fd5b5061035760048036038101906103529190614a5c565b610d47565b005b34801561036557600080fd5b50610380600480360381019061037b9190614864565b610e50565b60405161038d9190615023565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190614aae565b610f29565b005b3480156103cb57600080fd5b506103d46110a2565b6040516103e1919061503e565b60405180910390f35b3480156103f657600080fd5b506103ff6110c8565b005b34801561040d57600080fd5b506104166111db565b60405161042391906154e1565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906147d6565b6111e4565b005b34801561046157600080fd5b5061046a61130e565b6040516104779190615466565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a291906147d6565b61131c565b6040516104be9b9a99989796959493929190614f71565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906148ef565b6117d2565b6040516104fb9190615023565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190614a5c565b611885565b005b34801561053957600080fd5b50610542611a10565b60405161054f9190615466565b60405180910390f35b34801561056457600080fd5b5061056d611a16565b60405161057a9190615466565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906147d6565b611a1c565b6040516105b79190615023565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190614aea565b611a3c565b005b3480156105f557600080fd5b50610610600480360381019061060b9190614a5c565b611c25565b005b34801561061e57600080fd5b50610627611d4f565b005b34801561063557600080fd5b50610650600480360381019061064b91906147d6565b611e53565b60405161065d9190615466565b60405180910390f35b34801561067257600080fd5b5061067b611e9b565b005b34801561068957600080fd5b506106a4600480360381019061069f91906147d6565b611ff3565b005b3480156106b257600080fd5b506106bb6121f6565b6040516106c89190614e50565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614a5c565b612220565b005b34801561070657600080fd5b5061070f612329565b60405161071c9190615059565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906148ef565b6123bb565b6040516107599190615023565b60405180910390f35b34801561076e57600080fd5b50610789600480360381019061078491906148ef565b612488565b6040516107969190615023565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190614a5c565b6124a6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea91906148b3565b61255c565b005b3480156107fd57600080fd5b5061080661269c565b005b34801561081457600080fd5b5061081d612854565b005b34801561082b57600080fd5b5061084660048036038101906108419190614aea565b6129d1565b005b34801561085457600080fd5b5061086f600480360381019061086a91906148ef565b612ae3565b60405161087c9190615023565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190614a5c565b612af7565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190614828565b612c21565b6040516108e29190615466565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906147d6565b612ca8565b005b34801561092057600080fd5b50610929612e6f565b6040516109369190615466565b60405180910390f35b60606003805461094e9061579a565b80601f016020809104026020016040519081016040528092919081815260200182805461097a9061579a565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109db61269c565b6109e58383612f69565b905092915050565b6109f5612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906150fb565b60405180910390fd5b69021e19e0c9bab24000008110610a9a57600080fd5b8060288190555050565b6000600254905090565b610ab6612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906150fb565b60405180910390fd5b806006601b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f45ab077182bccf704f0797657caa5dd5d7fca94b000f6fdca299a8607d67178881604051610bb89190614e50565b60405180910390a16001602960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006601b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eaa7174d60008060006040518463ffffffff1660e01b8152600401610c7c93929190614eb0565b600060405180830381600087803b158015610c9657600080fd5b505af1158015610caa573d6000803e3d6000fd5b505050506006601b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636f44b55760008060006040518463ffffffff1660e01b8152600401610d1293929190614eb0565b600060405180830381600087803b158015610d2c57600080fd5b505af1158015610d40573d6000803e3d6000fd5b5050505050565b610d4f612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906150fb565b60405180910390fd5b600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563aaa0542b9091836040518363ffffffff1660e01b8152600401610e1d9291906151b6565b60006040518083038186803b158015610e3557600080fd5b505af4158015610e49573d6000803e3d6000fd5b5050505050565b6000610e5d848484612f8f565b610f1e84610e69612f87565b610f1985604051806060016040528060288152602001615b9560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ecf612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6136a0565b600190509392505050565b610f31612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163ca8db5629091846040518363ffffffff1660e01b8152600401610fff92919061530e565b60006040518083038186803b15801561101757600080fd5b505af415801561102b573d6000803e3d6000fd5b50505050600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163e9aed0229091836040518363ffffffff1660e01b815260040161106e92919061530e565b60006040518083038186803b15801561108657600080fd5b505af415801561109a573d6000803e3d6000fd5b505050505050565b602660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d0612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516397edf52a9091600661118b30611e53565b6040518463ffffffff1660e01b81526004016111a993929190615284565b60006040518083038186803b1580156111c157600080fd5b505af41580156111d5573d6000803e3d6000fd5b50505050565b60006012905090565b6111ec612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b81526004016112d99190614e50565b600060405180830381600087803b1580156112f357600080fd5b505af1158015611307573d6000803e3d6000fd5b5050505050565b69d3c21bcecceda100000081565b6060600080600080600080600080600080600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b2e6819b8d6040518263ffffffff1660e01b815260040161138b9190614e50565b60006040518083038186803b1580156113a357600080fd5b505afa1580156113b7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113e091906149b6565b9a506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6315f081cc90918e6040518363ffffffff1660e01b8152600401611421929190615337565b60206040518083038186803b15801561143957600080fd5b505af415801561144d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114719190614a85565b9950600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516387fb4ac290916040518263ffffffff1660e01b81526004016114b09190615269565b604080518083038186803b1580156114c757600080fd5b505af41580156114db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ff9190614a20565b809950819a5050506000600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563148fb84d90916040518263ffffffff1660e01b8152600401611546919061519b565b60206040518083038186803b15801561155e57600080fd5b505af4158015611572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115969190614a85565b9050600660090173817d2c8b4249367d59a7378762a2ec35b19ea5356398e2ff5c9091836040518363ffffffff1660e01b81526004016115d79291906151b6565b60606040518083038186803b1580156115ef57600080fd5b505af4158015611603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116279190614967565b508098508199505050600660090173817d2c8b4249367d59a7378762a2ec35b19ea535633f8dda24909161165961386b565b6040518363ffffffff1660e01b81526004016116769291906151b6565b60206040518083038186803b15801561168e57600080fd5b505af41580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190614a85565b955060008111156117bf57600660090173817d2c8b4249367d59a7378762a2ec35b19ea5356398e2ff5c90916001846116ff919061568c565b6040518363ffffffff1660e01b815260040161171c9291906151b6565b60606040518083038186803b15801561173457600080fd5b505af4158015611748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176c9190614967565b809550819650829750505050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156117b55750600083145b156117be578592505b5b4291505091939597999b90929496989a50565b600061187b6117df612f87565b8461187685600160006117f0612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6136a0565b6001905092915050565b600061188f61386b565b9050600080600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563943eacf3909186866040518463ffffffff1660e01b81526004016118d5939291906151df565b604080518083038186803b1580156118ec57600080fd5b505af4158015611900573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611924919061492b565b91509150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611a0a5761196682826138a0565b61196f826138d6565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc836119ba85611e53565b6040518363ffffffff1660e01b81526004016119d7929190614ee7565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505b50505050565b60255481565b60245481565b60296020528060005260406000206000915054906101000a900460ff1681565b611a44612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca906150fb565b60405180910390fd5b6006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6393cc0a7e9091856040518363ffffffff1660e01b8152600401611b129291906153dc565b60006040518083038186803b158015611b2a57600080fd5b505af4158015611b3e573d6000803e3d6000fd5b505050506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a632d02375d9091846040518363ffffffff1660e01b8152600401611b819291906153dc565b60006040518083038186803b158015611b9957600080fd5b505af4158015611bad573d6000803e3d6000fd5b505050506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63bfc9f7c29091836040518363ffffffff1660e01b8152600401611bf09291906153dc565b60006040518083038186803b158015611c0857600080fd5b505af4158015611c1c573d6000803e3d6000fd5b50505050505050565b611c2d612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663550e4b83826040518263ffffffff1660e01b8152600401611d1a9190615466565b600060405180830381600087803b158015611d3457600080fd5b505af1158015611d48573d6000803e3d6000fd5b5050505050565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630ed0e2e233600660190160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006601a0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006040518563ffffffff1660e01b8152600401611dfe9493929190614e6b565b602060405180830381600087803b158015611e1857600080fd5b505af1158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5091906149f7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ea3612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906150fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ffb612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461208a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612081906150fb565b60405180910390fd5b80600660180160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503073ffffffffffffffffffffffffffffffffffffffff16600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561215057600080fd5b505afa158015612164573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218891906147ff565b73ffffffffffffffffffffffffffffffffffffffff16146121a857600080fd5b6121b0613a08565b8073ffffffffffffffffffffffffffffffffffffffff167f1e7fbad200a59aca8287bffdbe60da36c99480894a2bdc25ac88eed6029936f560405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612228612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516370e62b229091836040518363ffffffff1660e01b81526004016122f692919061530e565b60006040518083038186803b15801561230e57600080fd5b505af4158015612322573d6000803e3d6000fd5b5050505050565b6060600480546123389061579a565b80601f01602080910402602001604051908101604052809291908181526020018280546123649061579a565b80156123b15780601f10612386576101008083540402835291602001916123b1565b820191906000526020600020905b81548152906001019060200180831161239457829003601f168201915b5050505050905090565b600061247e6123c8612f87565b8461247985604051806060016040528060258152602001615bbd60259139600160006123f2612f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6136a0565b6001905092915050565b600061249c612495612f87565b8484612f8f565b6001905092915050565b6124ae612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906150fb565b60405180910390fd5b683635c9adc5dea00000811061255257600080fd5b8060278190555050565b612564612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906150fb565b60405180910390fd5b80602960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516126909190615023565b60405180910390a25050565b600073768f0ada688369acfcb8d965f0c6ac8bde076b07636ac112c26126c061386b565b6024546025546040518463ffffffff1660e01b81526004016126e4939291906154aa565b60206040518083038186803b1580156126fc57600080fd5b505af4158015612710573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127349190614a85565b905060008114156127455750612852565b42602581905550806024600082825461275e919061568c565b92505081905550612794600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613d50565b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561280157600080fd5b505af1158015612815573d6000803e3d6000fd5b505050507f90f0ebc9cbe15b2466dcac46571c49feee27e3385c5ab60c348cc4ebcb91251f816040516128489190615466565b60405180910390a1505b565b61285c612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e2906150fb565b60405180910390fd5b6000602254146128fa57600080fd5b600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061294630611e53565b6000806129516121f6565b426040518863ffffffff1660e01b815260040161297396959493929190614f10565b6060604051808303818588803b15801561298c57600080fd5b505af11580156129a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129c59190614b39565b50505042602281905550565b6129d9612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f906150fb565b60405180910390fd5b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b35163a2e459ed909160068686866040518663ffffffff1660e01b8152600401612aae9594939291906152bb565b60006040518083038186803b158015612ac657600080fd5b505af4158015612ada573d6000803e3d6000fd5b50505050505050565b6000612aef8383612f69565b905092915050565b612aff612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b85906150fb565b60405180910390fd5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd19aa57826040518263ffffffff1660e01b8152600401612bec9190615466565b600060405180830381600087803b158015612c0657600080fd5b505af1158015612c1a573d6000803e3d6000fd5b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612cb0612f87565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d36906150fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da69061509b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000738393d119af9ed6672aee9a9695aa85d98c26e19163202eb29069d3c21bcecceda10000006022546040518363ffffffff1660e01b8152600401612eb6929190615481565b60206040518083038186803b158015612ece57600080fd5b505af4158015612ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f069190614a85565b905090565b6000808284612f1a91906155a2565b905083811015612f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f56906150db565b60405180910390fd5b8091505092915050565b6000612f7d612f76612f87565b84846136a0565b6001905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561300357600080fd5b600081141561301d5761301883836000613efe565b613637565b613028838383614193565b6000602360009054906101000a900460ff161580156130915750602960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130e75750602960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90506000829050600082156133c85760006006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63cc9723d49091876040518363ffffffff1660e01b81526004016131379291906153dc565b60206040518083038186803b15801561314f57600080fd5b505af4158015613163573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318791906147ff565b90506006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a6304ea10f29091836131b485611e53565b8a6040518563ffffffff1660e01b81526004016131d49493929190615397565b60206040518083038186803b1580156131ec57600080fd5b505af4158015613200573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061322491906149f7565b61322d57600090505b6000806000600660140173f44d5f091d4e518524c707be48e53c811a8f58156364c45599909160068d8d8d8a6040518763ffffffff1660e01b815260040161327a96959493929190615405565b60606040518083038186803b15801561329257600080fd5b505af41580156132a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132ca9190614b39565b92509250925081836132dc91906155f8565b945060008311156133015782886132f3919061568c565b97506133008a3085613efe565b5b60008211156133155761331489836138a0565b5b60008111156133c35761332884826138a0565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561337387611e53565b6040518363ffffffff1660e01b8152600401613390929190614ee7565b600060405180830381600087803b1580156133aa57600080fd5b505af11580156133be573d6000803e3d6000fd5b505050505b505050505b6133d3868686613efe565b6133dc856138d6565b6000600660090173817d2c8b4249367d59a7378762a2ec35b19ea53563148fb84d90916040518263ffffffff1660e01b815260040161341b919061519b565b60206040518083038186803b15801561343357600080fd5b505af4158015613447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346b9190614a85565b9050600081111561348c5761348b600182613486919061568c565b611885565b5b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc886134d78a611e53565b6040518363ffffffff1660e01b81526004016134f4929190614ee7565b600060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761357189611e53565b6040518363ffffffff1660e01b815260040161358e929190614ee7565b600060405180830381600087803b1580156135a857600080fd5b505af11580156135bc573d6000803e3d6000fd5b50505050600673a9223ca552b57eb783fd198c0866662ee76f235c6392629b1a9091898987876040518663ffffffff1660e01b8152600401613602959493929190615216565b60006040518083038186803b15801561361a57600080fd5b505af415801561362e573d6000803e3d6000fd5b50505050505050505b505050565b6000838311158290613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367b9190615059565b60405180910390fd5b5060008385613693919061568c565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137079061515b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613777906150bb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161385e9190615466565b60405180910390a3505050565b600061389b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e53565b905090565b60008114156138ae576138d2565b80602460008282546138c091906155a2565b925050819055506138d182826144ca565b5b5050565b602960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561392d57613a05565b600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561398b57613a05565b6006600e0173b774ac8f80049e9901dcf911707ccbacd959fd1a63cdb09f689091836139b685611e53565b6040518463ffffffff1660e01b81526004016139d493929190615360565b60006040518083038186803b1580156139ec57600080fd5b505af4158015613a00573d6000803e3d6000fd5b505050505b50565b600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613a8b9190614e50565b600060405180830381600087803b158015613aa557600080fd5b505af1158015613ab9573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401613b1b9190614e50565b600060405180830381600087803b158015613b3557600080fd5b505af1158015613b49573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0613b966121f6565b6040518263ffffffff1660e01b8152600401613bb29190614e50565b600060405180830381600087803b158015613bcc57600080fd5b505af1158015613be0573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613c679190614e50565b600060405180830381600087803b158015613c8157600080fd5b505af1158015613c95573d6000803e3d6000fd5b50505050600660180160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d1c9190614e50565b600060405180830381600087803b158015613d3657600080fd5b505af1158015613d4a573d6000803e3d6000fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db79061511b565b60405180910390fd5b613dcc8260008361465e565b613e3781604051806060016040528060228152602001615b4d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e8e8160025461466390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ef29190615466565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f659061513b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd59061507b565b60405180910390fd5b613fe983838361465e565b61405481604051806060016040528060268152602001615b6f602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461363c9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141869190615466565b60405180910390a3505050565b600061419e30611e53565b9050600060275482101590506141b26121f6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561422057506141f06121f6565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156144c3573073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156142b25750600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561430f5750600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561433c5761431c612e6f565b8361432686611e53565b61433091906155a2565b111561433b57600080fd5b5b8080156143565750602360009054906101000a900460ff16155b80156143b35750600660170160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156143c157506000602254115b80156143ce575060225442115b156144c2576001602360006101000a81548160ff02191690831515021790555060008290506028548111156144035760285490505b61443330600660160160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836136a0565b600660000173be70efc585bdec3fabb382dbbf4aa2751c94b3516397edf52a90916006846040518463ffffffff1660e01b815260040161447593929190615284565b60006040518083038186803b15801561448d57600080fd5b505af41580156144a1573d6000803e3d6000fd5b505050506000602360006101000a81548160ff021916908315150217905550505b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561453a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016145319061517b565b60405180910390fd5b6145466000838361465e565b61455b81600254612f0b90919063ffffffff16565b6002819055506145b2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f0b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516146529190615466565b60405180910390a35050565b505050565b60006146a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061363c565b905092915050565b60006146c06146bb84615521565b6154fc565b905080838252602082019050828560208602820111156146df57600080fd5b60005b8581101561470f57816146f588826147c1565b8452602084019350602083019250506001810190506146e2565b5050509392505050565b60008135905061472881615af0565b92915050565b60008151905061473d81615af0565b92915050565b600082601f83011261475457600080fd5b81516147648482602086016146ad565b91505092915050565b60008135905061477c81615b07565b92915050565b60008151905061479181615b07565b92915050565b6000815190506147a681615b1e565b92915050565b6000813590506147bb81615b35565b92915050565b6000815190506147d081615b35565b92915050565b6000602082840312156147e857600080fd5b60006147f684828501614719565b91505092915050565b60006020828403121561481157600080fd5b600061481f8482850161472e565b91505092915050565b6000806040838503121561483b57600080fd5b600061484985828601614719565b925050602061485a85828601614719565b9150509250929050565b60008060006060848603121561487957600080fd5b600061488786828701614719565b935050602061489886828701614719565b92505060406148a9868287016147ac565b9150509250925092565b600080604083850312156148c657600080fd5b60006148d485828601614719565b92505060206148e58582860161476d565b9150509250929050565b6000806040838503121561490257600080fd5b600061491085828601614719565b9250506020614921858286016147ac565b9150509250929050565b6000806040838503121561493e57600080fd5b600061494c8582860161472e565b925050602061495d858286016147c1565b9150509250929050565b60008060006060848603121561497c57600080fd5b600061498a8682870161472e565b935050602061499b868287016147c1565b92505060406149ac868287016147c1565b9150509250925092565b6000602082840312156149c857600080fd5b600082015167ffffffffffffffff8111156149e257600080fd5b6149ee84828501614743565b91505092915050565b600060208284031215614a0957600080fd5b6000614a1784828501614782565b91505092915050565b60008060408385031215614a3357600080fd5b6000614a4185828601614797565b9250506020614a52858286016147c1565b9150509250929050565b600060208284031215614a6e57600080fd5b6000614a7c848285016147ac565b91505092915050565b600060208284031215614a9757600080fd5b6000614aa5848285016147c1565b91505092915050565b60008060408385031215614ac157600080fd5b6000614acf858286016147ac565b9250506020614ae0858286016147ac565b9150509250929050565b600080600060608486031215614aff57600080fd5b6000614b0d868287016147ac565b9350506020614b1e868287016147ac565b9250506040614b2f868287016147ac565b9150509250925092565b600080600060608486031215614b4e57600080fd5b6000614b5c868287016147c1565b9350506020614b6d868287016147c1565b9250506040614b7e868287016147c1565b9150509250925092565b6000614b948383614e14565b60208301905092915050565b614ba9816156c0565b82525050565b614bb8816156c0565b82525050565b6000614bc98261555d565b614bd38185615580565b9350614bde8361554d565b8060005b83811015614c0f578151614bf68882614b88565b9750614c0183615573565b925050600181019050614be2565b5085935050505092915050565b614c25816156d2565b82525050565b614c348161571f565b82525050565b614c43816156de565b82525050565b614c52816156de565b82525050565b614c6181615743565b82525050565b614c7081615755565b82525050565b6000614c8182615568565b614c8b8185615591565b9350614c9b818560208601615767565b614ca48161588a565b840191505092915050565b6000614cbc602383615591565b9150614cc78261589b565b604082019050919050565b6000614cdf602683615591565b9150614cea826158ea565b604082019050919050565b6000614d02602283615591565b9150614d0d82615939565b604082019050919050565b6000614d25601b83615591565b9150614d3082615988565b602082019050919050565b6000614d48602083615591565b9150614d53826159b1565b602082019050919050565b6000614d6b602183615591565b9150614d76826159da565b604082019050919050565b6000614d8e602583615591565b9150614d9982615a29565b604082019050919050565b6000614db1602483615591565b9150614dbc82615a78565b604082019050919050565b6000614dd4601f83615591565b9150614ddf82615ac7565b602082019050919050565b8082525050565b8082525050565b8082525050565b8082525050565b8082525050565b8082525050565b614e1d81615708565b82525050565b614e2c81615708565b82525050565b614e3b81615708565b82525050565b614e4a81615712565b82525050565b6000602082019050614e656000830184614ba0565b92915050565b6000608082019050614e806000830187614ba0565b614e8d6020830186614ba0565b614e9a6040830185614ba0565b614ea76060830184614c1c565b95945050505050565b6000606082019050614ec56000830186614ba0565b614ed26020830185614c67565b614edf6040830184614c58565b949350505050565b6000604082019050614efc6000830185614ba0565b614f096020830184614e23565b9392505050565b600060c082019050614f256000830189614ba0565b614f326020830188614e23565b614f3f6040830187614c67565b614f4c6060830186614c67565b614f596080830185614ba0565b614f6660a0830184614e23565b979650505050505050565b6000610160820190508181036000830152614f8c818e614bbe565b9050614f9b602083018d614e23565b614fa8604083018c614c3a565b614fb5606083018b614e23565b614fc2608083018a614ba0565b614fcf60a0830189614e23565b614fdc60c0830188614e23565b614fe960e0830187614ba0565b614ff7610100830186614e23565b615005610120830185614e23565b615013610140830184614e23565b9c9b505050505050505050505050565b60006020820190506150386000830184614c1c565b92915050565b60006020820190506150536000830184614c2b565b92915050565b600060208201905081810360008301526150738184614c76565b905092915050565b6000602082019050818103600083015261509481614caf565b9050919050565b600060208201905081810360008301526150b481614cd2565b9050919050565b600060208201905081810360008301526150d481614cf5565b9050919050565b600060208201905081810360008301526150f481614d18565b9050919050565b6000602082019050818103600083015261511481614d3b565b9050919050565b6000602082019050818103600083015261513481614d5e565b9050919050565b6000602082019050818103600083015261515481614d81565b9050919050565b6000602082019050818103600083015261517481614da4565b9050919050565b6000602082019050818103600083015261519481614dc7565b9050919050565b60006020820190506151b06000830184614dea565b92915050565b60006040820190506151cb6000830185614dea565b6151d86020830184614e32565b9392505050565b60006060820190506151f46000830186614dea565b6152016020830185614e32565b61520e6040830184614e32565b949350505050565b600060a08201905061522b6000830188614df1565b6152386020830187614baf565b6152456040830186614baf565b6152526060830185614e32565b61525f6080830184614c49565b9695505050505050565b600060208201905061527e6000830184614dff565b92915050565b60006060820190506152996000830186614dff565b6152a66020830185614df8565b6152b36040830184614e32565b949350505050565b600060a0820190506152d06000830188614dff565b6152dd6020830187614df8565b6152ea6040830186614e32565b6152f76060830185614e32565b6153046080830184614e32565b9695505050505050565b60006040820190506153236000830185614dff565b6153306020830184614e32565b9392505050565b600060408201905061534c6000830185614e06565b6153596020830184614baf565b9392505050565b60006060820190506153756000830186614e06565b6153826020830185614baf565b61538f6040830184614e32565b949350505050565b60006080820190506153ac6000830187614e06565b6153b96020830186614baf565b6153c66040830185614e32565b6153d36060830184614baf565b95945050505050565b60006040820190506153f16000830185614e06565b6153fe6020830184614e32565b9392505050565b600060c08201905061541a6000830189614e0d565b6154276020830188614df8565b6154346040830187614baf565b6154416060830186614baf565b61544e6080830185614e32565b61545b60a0830184614baf565b979650505050505050565b600060208201905061547b6000830184614e23565b92915050565b60006040820190506154966000830185614e32565b6154a36020830184614e32565b9392505050565b60006060820190506154bf6000830186614e32565b6154cc6020830185614e32565b6154d96040830184614e32565b949350505050565b60006020820190506154f66000830184614e41565b92915050565b6000615506615517565b905061551282826157cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561553c5761553b61585b565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006155ad82615708565b91506155b883615708565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155ed576155ec6157fd565b5b828201905092915050565b6000615603826156de565b915061560e836156de565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615615649576156486157fd565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615615681576156806157fd565b5b828203905092915050565b600061569782615708565b91506156a283615708565b9250828210156156b5576156b46157fd565b5b828203905092915050565b60006156cb826156e8565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061572a82615731565b9050919050565b600061573c826156e8565b9050919050565b600061574e826156de565b9050919050565b600061576082615708565b9050919050565b60005b8381101561578557808201518184015260208101905061576a565b83811115615794576000848401525b50505050565b600060028204905060018216806157b257607f821691505b602082108114156157c6576157c561582c565b5b50919050565b6157d58261588a565b810181811067ffffffffffffffff821117156157f4576157f361585b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615af9816156c0565b8114615b0457600080fd5b50565b615b10816156d2565b8114615b1b57600080fd5b50565b615b27816156de565b8114615b3257600080fd5b50565b615b3e81615708565b8114615b4957600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b7953163428d2ca4332d9854c6dd6c02a3a972c3b13fe90cc5c676efe94a371664736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.