ETH Price: $3,415.99 (+4.26%)

Token

Veni, vidi, vici (VVV)
 

Overview

Max Total Supply

1,000,000,000 VVV

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,860,000 VVV

Value
$0.00
0x1e0fdaea7ac5efab1d9b66a950a1dbfebc78b1c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VVV

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.8.8;
pragma experimental ABIEncoderV2;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Pair} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

contract VVV is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    mapping(address => bool) private excludedFromFees;
    mapping(address => bool) public excludedMaxTransactionAmount;
    mapping(address => uint256) private holderLastTransferTimestamp;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Veni, vidi, vici", "VVV") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = 4;
        buyLiquidityFee = 0;
        buyDevFee = 2;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = 4;
        sellLiquidityFee = 0;
        sellDevFee = 2;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x3E716c09737f9D1521CC38ea34B44Db8f36E5bb6);
        devWallet = address(0xA043179AD942E99a15D778C71636D8815d77a3c9);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        excludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 marketingFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        buyMarketingFee = marketingFee;
        buyLiquidityFee = liquidityFee;
        buyDevFee = devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 11, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 marketingFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        sellMarketingFee = marketingFee;
        sellLiquidityFee = liquidityFee;
        sellDevFee = devFee;
        sellTotalFees = marketingFee + liquidityFee + devFee;
        require(sellTotalFees <= 11, "Must keep fees at 11% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return excludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != deadAddress &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        excludedFromFees[from] || excludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !excludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !excludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!excludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !excludedFromFees[from] &&
            !excludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !excludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (excludedFromFees[from] || excludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function configAutoLPBurn(
        uint256 frequencyInSeconds,
        uint256 percent,
        bool enabled
    ) external onlyOwner {
        require(
            frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            percent <= 1000 && percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = frequencyInSeconds;
        percentForLPBurn = percent;
        lpBurnEnabled = enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, deadAddress, amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, deadAddress, amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"configAutoLPBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601160036101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601081526020017f56656e692c20766964692c2076696369000000000000000000000000000000008152506040518060400160405280600381526020017f5656560000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000cf9565b50806004908162000139919062000cf9565b5050506200015c62000150620005ad60201b60201c565b620005b560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200067b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000e4a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000e4a565b6040518363ffffffff1660e01b8152600401620002db92919062000e8d565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000e4a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200067b60201b60201c565b6200037e60a0516001620006e660201b60201c565b60006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600582620003c5919062000ee9565b620003d1919062000f63565b60098190555060046013819055506000601481905550600260158190555060155460145460135462000404919062000f9b565b62000410919062000f9b565b60128190555060046017819055506000601881905550600260198190555060195460185460175462000443919062000f9b565b6200044f919062000f9b565b601681905550733e716c09737f9d1521cc38ea34b44db8f36e5bb6600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a043179ad942e99a15d778c71636d8815d77a3c9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000521620005136200078760201b60201c565b6001620007b160201b60201c565b62000534306001620007b160201b60201c565b6200054961dead6001620007b160201b60201c565b6200056b6200055d6200078760201b60201c565b60016200067b60201b60201c565b6200057e3060016200067b60201b60201c565b6200059361dead60016200067b60201b60201c565b620005a533826200086c60201b60201c565b505062001133565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068b620009e460201b60201c565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007c1620009e460201b60201c565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001071565b60405180910390fd5b620008f26000838362000a7560201b60201c565b806002600082825462000906919062000f9b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d919062000f9b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c49190620010a4565b60405180910390a3620009e06000838362000a7a60201b60201c565b5050565b620009f4620005ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a1a6200078760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6a9062001111565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0157607f821691505b60208210810362000b175762000b1662000ab9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b42565b62000b8d868362000b42565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bda62000bd462000bce8462000ba5565b62000baf565b62000ba5565b9050919050565b6000819050919050565b62000bf68362000bb9565b62000c0e62000c058262000be1565b84845462000b4f565b825550505050565b600090565b62000c2562000c16565b62000c3281848462000beb565b505050565b5b8181101562000c5a5762000c4e60008262000c1b565b60018101905062000c38565b5050565b601f82111562000ca95762000c738162000b1d565b62000c7e8462000b32565b8101602085101562000c8e578190505b62000ca662000c9d8562000b32565b83018262000c37565b50505b505050565b600082821c905092915050565b600062000cce6000198460080262000cae565b1980831691505092915050565b600062000ce9838362000cbb565b9150826002028217905092915050565b62000d048262000a7f565b67ffffffffffffffff81111562000d205762000d1f62000a8a565b5b62000d2c825462000ae8565b62000d3982828562000c5e565b600060209050601f83116001811462000d71576000841562000d5c578287015190505b62000d68858262000cdb565b86555062000dd8565b601f19841662000d818662000b1d565b60005b8281101562000dab5784890151825560018201915060208501945060208101905062000d84565b8683101562000dcb578489015162000dc7601f89168262000cbb565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e128262000de5565b9050919050565b62000e248162000e05565b811462000e3057600080fd5b50565b60008151905062000e448162000e19565b92915050565b60006020828403121562000e635762000e6262000de0565b5b600062000e738482850162000e33565b91505092915050565b62000e878162000e05565b82525050565b600060408201905062000ea4600083018562000e7c565b62000eb3602083018462000e7c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef68262000ba5565b915062000f038362000ba5565b925082820262000f138162000ba5565b9150828204841483151762000f2d5762000f2c62000eba565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f708262000ba5565b915062000f7d8362000ba5565b92508262000f905762000f8f62000f34565b5b828204905092915050565b600062000fa88262000ba5565b915062000fb58362000ba5565b925082820190508082111562000fd05762000fcf62000eba565b5b92915050565b60008115159050919050565b62000fed8162000fd6565b82525050565b60006020820190506200100a600083018462000fe2565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001059601f8362001010565b9150620010668262001021565b602082019050919050565b600060208201905081810360008301526200108c816200104a565b9050919050565b6200109e8162000ba5565b82525050565b6000602082019050620010bb600083018462001093565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010f960208362001010565b91506200110682620010c1565b602082019050919050565b600060208201905081810360008301526200112c81620010ea565b9050919050565b60805160a05161528d620011bb600039600081816111cd0152818161157101528181611d6f01528181611e2601528181611e530152818161259c0152818161369e015281816137570152613784015260008181610f9601528181612544015281816138fa015281816139db01528181613a0201528181613a9e0152613ac5015261528d6000f3fe6080604052600436106103b15760003560e01c80638ea5220f116101e7578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c8c8ebe4116100dc578063c8c8ebe414610c89578063d257b34f14610cb4578063d7c15fc914610cf1578063d85ba06314610d1a576103b8565b8063c024666814610be3578063c17b5b8c14610c0c578063c18bc19514610c35578063c876d0b914610c5e576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b15578063aacebbe314610b52578063b62496f514610b7b578063bbc0c74214610bb8576103b8565b80639fccce3214610a57578063a0d82dc514610a82578063a457c2d714610aad578063a4c82a0014610aea576103b8565b806395d89b41116101c157806395d89b41146109ad5780639a7a23d6146109d85780639c3b4fdc14610a015780639ec22c0e14610a2c576103b8565b80638ea5220f1461092e5780639213691314610959578063924de9b714610984576103b8565b8063313ce567116102d7578063715018a61161026a5780637bce5a04116102395780637bce5a04146108985780638095d564146108c35780638a8c523c146108ec5780638da5cb5b14610903576103b8565b8063715018a614610802578063751039fc146108195780637571336a1461084457806375f0a8741461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e85780631597f55d14610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613c04565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613cbf565b610f51565b60405161041c9190613d1a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613d35565b610f74565b6040516104599190613d1a565b60405180910390f35b34801561046e57600080fd5b50610477610f94565b6040516104849190613dc1565b60405180910390f35b34801561049957600080fd5b506104a2610fb8565b6040516104af9190613deb565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613d35565b610fc2565b005b3480156104ed57600080fd5b506104f661108a565b6040516105039190613deb565b60405180910390f35b34801561051857600080fd5b50610521611090565b60405161052e9190613deb565b60405180910390f35b34801561054357600080fd5b5061054c611096565b6040516105599190613deb565b60405180910390f35b34801561056e57600080fd5b5061057761109c565b6040516105849190613deb565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613e06565b6110a2565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613e33565b61113d565b6040516105ea9190613d1a565b60405180910390f35b3480156105ff57600080fd5b5061060861116c565b6040516106159190613e95565b60405180910390f35b34801561062a57600080fd5b50610633611172565b6040516106409190613deb565b60405180910390f35b34801561065557600080fd5b5061065e611178565b60405161066b9190613d1a565b60405180910390f35b34801561068057600080fd5b5061068961118b565b6040516106969190613ecc565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613cbf565b611194565b6040516106d39190613d1a565b60405180910390f35b3480156106e857600080fd5b506106f16111cb565b6040516106fe9190613e95565b60405180910390f35b34801561071357600080fd5b5061071c6111ef565b6040516107299190613d1a565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613d35565b611202565b6040516107669190613d1a565b60405180910390f35b34801561077b57600080fd5b50610784611258565b6040516107919190613deb565b60405180910390f35b3480156107a657600080fd5b506107af61125e565b6040516107bc9190613d1a565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613d35565b611271565b6040516107f99190613deb565b60405180910390f35b34801561080e57600080fd5b506108176112b9565b005b34801561082557600080fd5b5061082e6112cd565b60405161083b9190613d1a565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613f13565b6112f9565b005b34801561087957600080fd5b5061088261135c565b60405161088f9190613e95565b60405180910390f35b3480156108a457600080fd5b506108ad611382565b6040516108ba9190613deb565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613f53565b611388565b005b3480156108f857600080fd5b50610901611413565b005b34801561090f57600080fd5b5061091861145a565b6040516109259190613e95565b60405180910390f35b34801561093a57600080fd5b50610943611484565b6040516109509190613e95565b60405180910390f35b34801561096557600080fd5b5061096e6114aa565b60405161097b9190613deb565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613fa6565b6114b0565b005b3480156109b957600080fd5b506109c26114d5565b6040516109cf9190613c04565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613f13565b611567565b005b348015610a0d57600080fd5b50610a1661160b565b604051610a239190613deb565b60405180910390f35b348015610a3857600080fd5b50610a41611611565b604051610a4e9190613deb565b60405180910390f35b348015610a6357600080fd5b50610a6c611617565b604051610a799190613deb565b60405180910390f35b348015610a8e57600080fd5b50610a9761161d565b604051610aa49190613deb565b60405180910390f35b348015610ab957600080fd5b50610ad46004803603810190610acf9190613cbf565b611623565b604051610ae19190613d1a565b60405180910390f35b348015610af657600080fd5b50610aff61169a565b604051610b0c9190613deb565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613cbf565b6116a0565b604051610b499190613d1a565b60405180910390f35b348015610b5e57600080fd5b50610b796004803603810190610b749190613d35565b6116c3565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613d35565b61178b565b604051610baf9190613d1a565b60405180910390f35b348015610bc457600080fd5b50610bcd6117aa565b604051610bda9190613d1a565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190613f13565b6117bd565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f53565b61186e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613e06565b6118f3565b005b348015610c6a57600080fd5b50610c7361198e565b604051610c809190613d1a565b60405180910390f35b348015610c9557600080fd5b50610c9e6119a1565b604051610cab9190613deb565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd69190613e06565b6119a7565b604051610ce89190613d1a565b60405180910390f35b348015610cfd57600080fd5b50610d186004803603810190610d139190613fd3565b611a88565b005b348015610d2657600080fd5b50610d2f611b54565b604051610d3c9190613deb565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614026565b611b5a565b604051610d799190613deb565b60405180910390f35b348015610d8e57600080fd5b50610d97611be1565b604051610da49190613deb565b60405180910390f35b348015610db957600080fd5b50610dc2611be7565b604051610dcf9190613d1a565b60405180910390f35b348015610de457600080fd5b50610ded611c13565b604051610dfa9190613deb565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613d35565b611c19565b005b348015610e3857600080fd5b50610e41611c9c565b604051610e4e9190613deb565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca2565b604051610e799190613deb565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613e06565b611ca8565b604051610eb69190613d1a565b60405180910390f35b606060038054610ece90614095565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614095565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f0c565b9050610f69818585611f14565b600191505092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fca6120dd565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b6110aa6120dd565b670de0b6b3a76400006103e860016110c0610fb8565b6110ca91906140f5565b6110d49190614166565b6110de9190614166565b811015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614209565b60405180910390fd5b670de0b6b3a76400008161113491906140f5565b60088190555050565b600080611148611f0c565b905061115585828561215b565b6111608585856121e7565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119f611f0c565b90506111c08185856111b18589611b5a565b6111bb9190614229565b611f14565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c16120dd565b6112cb6000612f7c565b565b60006112d76120dd565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113016120dd565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6113906120dd565b8260138190555081601481905550806015819055506015546014546013546113b89190614229565b6113c29190614229565b601281905550600b601254111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906142a9565b60405180910390fd5b505050565b61141b6120dd565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6114b86120dd565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546114e490614095565b80601f016020809104026020016040519081016040528092919081815260200182805461151090614095565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b61156f6120dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061433b565b60405180910390fd5b6116078282613042565b5050565b60155481565b60105481565b601c5481565b60195481565b60008061162e611f0c565b9050600061163c8286611b5a565b905083811015611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906143cd565b60405180910390fd5b61168e8286868403611f14565b60019250505092915050565b600e5481565b6000806116ab611f0c565b90506116b88185856121e7565b600191505092915050565b6116cb6120dd565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6117c56120dd565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118629190613d1a565b60405180910390a25050565b6118766120dd565b8260178190555081601881905550806019819055508082846118989190614229565b6118a29190614229565b601681905550600b60165411156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e5906142a9565b60405180910390fd5b505050565b6118fb6120dd565b670de0b6b3a76400006103e86005611911610fb8565b61191b91906140f5565b6119259190614166565b61192f9190614166565b811015611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061445f565b60405180910390fd5b670de0b6b3a76400008161198591906140f5565b600a8190555050565b601160039054906101000a900460ff1681565b60085481565b60006119b16120dd565b620186a060016119bf610fb8565b6119c991906140f5565b6119d39190614166565b821015611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906144f1565b60405180910390fd5b6103e86005611a22610fb8565b611a2c91906140f5565b611a369190614166565b821115611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614583565b60405180910390fd5b8160098190555060019050919050565b611a906120dd565b610258831015611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90614615565b60405180910390fd5b6103e88211158015611ae8575060008210155b611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906146a7565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf16120dd565b6000601160036101000a81548160ff0219169083151502179055506001905090565b60145481565b611c216120dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790614739565b60405180910390fd5b611c9981612f7c565b50565b60185481565b600a5481565b6000611cb26120dd565b600f54601054611cc29190614229565b4211611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906147a5565b60405180910390fd5b6103e8821115611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614837565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611daa9190613e95565b602060405180830381865afa158015611dc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611deb919061486c565b90506000611e16612710611e0886856130e390919063ffffffff16565b6130f990919063ffffffff16565b90506000811115611e4f57611e4e7f000000000000000000000000000000000000000000000000000000000000000061dead8361310f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061490b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe99061499d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d09190613deb565b60405180910390a3505050565b6120e5611f0c565b73ffffffffffffffffffffffffffffffffffffffff1661210361145a565b73ffffffffffffffffffffffffffffffffffffffff1614612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215090614a09565b60405180910390fd5b565b60006121678484611b5a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e157818110156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a75565b60405180910390fd5b6121e08484848403611f14565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc90614b99565b60405180910390fd5b600081036122de576122d98383600061310f565b612f77565b601160009054906101000a900460ff16156129a1576122fb61145a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612369575061233961145a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123dc575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f55750600560149054906101000a900460ff16155b156129a057601160019054906101000a900460ff166124ef57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124af5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590614c05565b60405180910390fd5b5b601160039054906101000a900460ff16156126b75761250c61145a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125eb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126b65743601f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890614cbd565b60405180910390fd5b43601f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561275a5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612801576008548111156127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614d4f565b60405180910390fd5b600a546127b083611271565b826127bb9190614229565b11156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614dbb565b60405180910390fd5b61299f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a45750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f3576008548111156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614e4d565b60405180910390fd5b61299e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661299d57600a5461295083611271565b8261295b9190614229565b111561299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390614dbb565b60405180910390fd5b5b5b5b5b5b60006129ac30611271565b9050600060095482101590508080156129d15750601160029054906101000a900460ff165b80156129ea5750600560149054906101000a900460ff16155b8015612a405750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a965750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aec5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b30576001600560146101000a81548160ff021916908315150217905550612b1461338e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b965750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bae5750600c60009054906101000a900460ff165b8015612bc95750600d54600e54612bc59190614229565b4210155b8015612c1f5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2e57612c2c613675565b505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ce45750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cee57600090505b60008115612f6757602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5157506000601654115b15612e1e57612d7e6064612d70601654886130e390919063ffffffff16565b6130f990919063ffffffff16565b905060165460185482612d9191906140f5565b612d9b9190614166565b601b6000828254612dac9190614229565b9250508190555060165460195482612dc491906140f5565b612dce9190614166565b601c6000828254612ddf9190614229565b9250508190555060165460175482612df791906140f5565b612e019190614166565b601a6000828254612e129190614229565b92505081905550612f43565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7957506000601254115b15612f4257612ea66064612e98601254886130e390919063ffffffff16565b6130f990919063ffffffff16565b905060125460145482612eb991906140f5565b612ec39190614166565b601b6000828254612ed49190614229565b9250508190555060125460155482612eec91906140f5565b612ef69190614166565b601c6000828254612f079190614229565b9250508190555060125460135482612f1f91906140f5565b612f299190614166565b601a6000828254612f3a9190614229565b925050819055505b5b6000811115612f5857612f5787308361310f565b5b8085612f649190614e6d565b94505b612f7287878761310f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f191906140f5565b905092915050565b600081836131079190614166565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361317e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317590614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614b99565b60405180910390fd5b6131f883838361383b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614f13565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133119190614229565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133759190613deb565b60405180910390a3613388848484613840565b50505050565b600061339930611271565b90506000601c54601a54601b546133b09190614229565b6133ba9190614229565b90506000808314806133cc5750600082145b156133d957505050613673565b60146009546133e891906140f5565b8311156134015760146009546133fe91906140f5565b92505b6000600283601b548661341491906140f5565b61341e9190614166565b6134289190614166565b9050600061343f828661384590919063ffffffff16565b9050600047905061344f8261385b565b6000613464824761384590919063ffffffff16565b9050600061348f87613481601a54856130e390919063ffffffff16565b6130f990919063ffffffff16565b905060006134ba886134ac601c54866130e390919063ffffffff16565b6130f990919063ffffffff16565b905060008183856134cb9190614e6d565b6134d59190614e6d565b90506000601b819055506000601a819055506000601c81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161353590614f64565b60006040518083038185875af1925050503d8060008114613572576040519150601f19603f3d011682016040523d82523d6000602084013e613577565b606091505b50508098505060008711801561358d5750600081115b156135da5761359c8782613a98565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516135d193929190614f79565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161362090614f64565b60006040518083038185875af1925050503d806000811461365d576040519150601f19603f3d011682016040523d82523d6000602084013e613662565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016136d99190613e95565b602060405180830381865afa1580156136f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371a919061486c565b90506000613747612710613739600b54856130e390919063ffffffff16565b6130f990919063ffffffff16565b905060008111156137805761377f7f000000000000000000000000000000000000000000000000000000000000000061dead8361310f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ed57600080fd5b505af1158015613801573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138539190614e6d565b905092915050565b6000600267ffffffffffffffff81111561387857613877614fb0565b5b6040519080825280602002602001820160405280156138a65781602001602082028036833780820191505090505b50905030816000815181106138be576138bd614fdf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613963573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139879190615023565b8160018151811061399b5761399a614fdf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a00307f000000000000000000000000000000000000000000000000000000000000000084611f14565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a62959493929190615149565b600060405180830381600087803b158015613a7c57600080fd5b505af1158015613a90573d6000803e3d6000fd5b505050505050565b613ac3307f000000000000000000000000000000000000000000000000000000000000000084611f14565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b2a969594939291906151a3565b60606040518083038185885af1158015613b48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b6d9190615204565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bae578082015181840152602081019050613b93565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bd682613b74565b613be08185613b7f565b9350613bf0818560208601613b90565b613bf981613bba565b840191505092915050565b60006020820190508181036000830152613c1e8184613bcb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5682613c2b565b9050919050565b613c6681613c4b565b8114613c7157600080fd5b50565b600081359050613c8381613c5d565b92915050565b6000819050919050565b613c9c81613c89565b8114613ca757600080fd5b50565b600081359050613cb981613c93565b92915050565b60008060408385031215613cd657613cd5613c26565b5b6000613ce485828601613c74565b9250506020613cf585828601613caa565b9150509250929050565b60008115159050919050565b613d1481613cff565b82525050565b6000602082019050613d2f6000830184613d0b565b92915050565b600060208284031215613d4b57613d4a613c26565b5b6000613d5984828501613c74565b91505092915050565b6000819050919050565b6000613d87613d82613d7d84613c2b565b613d62565b613c2b565b9050919050565b6000613d9982613d6c565b9050919050565b6000613dab82613d8e565b9050919050565b613dbb81613da0565b82525050565b6000602082019050613dd66000830184613db2565b92915050565b613de581613c89565b82525050565b6000602082019050613e006000830184613ddc565b92915050565b600060208284031215613e1c57613e1b613c26565b5b6000613e2a84828501613caa565b91505092915050565b600080600060608486031215613e4c57613e4b613c26565b5b6000613e5a86828701613c74565b9350506020613e6b86828701613c74565b9250506040613e7c86828701613caa565b9150509250925092565b613e8f81613c4b565b82525050565b6000602082019050613eaa6000830184613e86565b92915050565b600060ff82169050919050565b613ec681613eb0565b82525050565b6000602082019050613ee16000830184613ebd565b92915050565b613ef081613cff565b8114613efb57600080fd5b50565b600081359050613f0d81613ee7565b92915050565b60008060408385031215613f2a57613f29613c26565b5b6000613f3885828601613c74565b9250506020613f4985828601613efe565b9150509250929050565b600080600060608486031215613f6c57613f6b613c26565b5b6000613f7a86828701613caa565b9350506020613f8b86828701613caa565b9250506040613f9c86828701613caa565b9150509250925092565b600060208284031215613fbc57613fbb613c26565b5b6000613fca84828501613efe565b91505092915050565b600080600060608486031215613fec57613feb613c26565b5b6000613ffa86828701613caa565b935050602061400b86828701613caa565b925050604061401c86828701613efe565b9150509250925092565b6000806040838503121561403d5761403c613c26565b5b600061404b85828601613c74565b925050602061405c85828601613c74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140ad57607f821691505b6020821081036140c0576140bf614066565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410082613c89565b915061410b83613c89565b925082820261411981613c89565b915082820484148315176141305761412f6140c6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417182613c89565b915061417c83613c89565b92508261418c5761418b614137565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141f3602f83613b7f565b91506141fe82614197565b604082019050919050565b60006020820190508181036000830152614222816141e6565b9050919050565b600061423482613c89565b915061423f83613c89565b9250828201905080821115614257576142566140c6565b5b92915050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614293601d83613b7f565b915061429e8261425d565b602082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614325603983613b7f565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006143b7602583613b7f565b91506143c28261435b565b604082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614449602483613b7f565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144db603583613b7f565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061456d603483613b7f565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145ff603383613b7f565b915061460a826145a3565b604082019050919050565b6000602082019050818103600083015261462e816145f2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614691603083613b7f565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614723602683613b7f565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061478f602083613b7f565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614821602a83613b7f565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b60008151905061486681613c93565b92915050565b60006020828403121561488257614881613c26565b5b600061489084828501614857565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f5602483613b7f565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614987602283613b7f565b91506149928261492b565b604082019050919050565b600060208201905081810360008301526149b68161497a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149f3602083613b7f565b91506149fe826149bd565b602082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a5f601d83613b7f565b9150614a6a82614a29565b602082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614af1602583613b7f565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b83602383613b7f565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bef601683613b7f565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ca7604983613b7f565b9150614cb282614c25565b606082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d39603583613b7f565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614da5601383613b7f565b9150614db082614d6f565b602082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e37603683613b7f565b9150614e4282614ddb565b604082019050919050565b60006020820190508181036000830152614e6681614e2a565b9050919050565b6000614e7882613c89565b9150614e8383613c89565b9250828203905081811115614e9b57614e9a6140c6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614efd602683613b7f565b9150614f0882614ea1565b604082019050919050565b60006020820190508181036000830152614f2c81614ef0565b9050919050565b600081905092915050565b50565b6000614f4e600083614f33565b9150614f5982614f3e565b600082019050919050565b6000614f6f82614f41565b9150819050919050565b6000606082019050614f8e6000830186613ddc565b614f9b6020830185613ddc565b614fa86040830184613ddc565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061501d81613c5d565b92915050565b60006020828403121561503957615038613c26565b5b60006150478482850161500e565b91505092915050565b6000819050919050565b600061507561507061506b84615050565b613d62565b613c89565b9050919050565b6150858161505a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150c081613c4b565b82525050565b60006150d283836150b7565b60208301905092915050565b6000602082019050919050565b60006150f68261508b565b6151008185615096565b935061510b836150a7565b8060005b8381101561513c57815161512388826150c6565b975061512e836150de565b92505060018101905061510f565b5085935050505092915050565b600060a08201905061515e6000830188613ddc565b61516b602083018761507c565b818103604083015261517d81866150eb565b905061518c6060830185613e86565b6151996080830184613ddc565b9695505050505050565b600060c0820190506151b86000830189613e86565b6151c56020830188613ddc565b6151d2604083018761507c565b6151df606083018661507c565b6151ec6080830185613e86565b6151f960a0830184613ddc565b979650505050505050565b60008060006060848603121561521d5761521c613c26565b5b600061522b86828701614857565b935050602061523c86828701614857565b925050604061524d86828701614857565b915050925092509256fea26469706673582212205bf043ea3834878ac3006d490b76e00e702ef22445ba2bb9dc96280d945e195a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638ea5220f116101e7578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c8c8ebe4116100dc578063c8c8ebe414610c89578063d257b34f14610cb4578063d7c15fc914610cf1578063d85ba06314610d1a576103b8565b8063c024666814610be3578063c17b5b8c14610c0c578063c18bc19514610c35578063c876d0b914610c5e576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b15578063aacebbe314610b52578063b62496f514610b7b578063bbc0c74214610bb8576103b8565b80639fccce3214610a57578063a0d82dc514610a82578063a457c2d714610aad578063a4c82a0014610aea576103b8565b806395d89b41116101c157806395d89b41146109ad5780639a7a23d6146109d85780639c3b4fdc14610a015780639ec22c0e14610a2c576103b8565b80638ea5220f1461092e5780639213691314610959578063924de9b714610984576103b8565b8063313ce567116102d7578063715018a61161026a5780637bce5a04116102395780637bce5a04146108985780638095d564146108c35780638a8c523c146108ec5780638da5cb5b14610903576103b8565b8063715018a614610802578063751039fc146108195780637571336a1461084457806375f0a8741461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e85780631597f55d14610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613c04565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613cbf565b610f51565b60405161041c9190613d1a565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613d35565b610f74565b6040516104599190613d1a565b60405180910390f35b34801561046e57600080fd5b50610477610f94565b6040516104849190613dc1565b60405180910390f35b34801561049957600080fd5b506104a2610fb8565b6040516104af9190613deb565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613d35565b610fc2565b005b3480156104ed57600080fd5b506104f661108a565b6040516105039190613deb565b60405180910390f35b34801561051857600080fd5b50610521611090565b60405161052e9190613deb565b60405180910390f35b34801561054357600080fd5b5061054c611096565b6040516105599190613deb565b60405180910390f35b34801561056e57600080fd5b5061057761109c565b6040516105849190613deb565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613e06565b6110a2565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613e33565b61113d565b6040516105ea9190613d1a565b60405180910390f35b3480156105ff57600080fd5b5061060861116c565b6040516106159190613e95565b60405180910390f35b34801561062a57600080fd5b50610633611172565b6040516106409190613deb565b60405180910390f35b34801561065557600080fd5b5061065e611178565b60405161066b9190613d1a565b60405180910390f35b34801561068057600080fd5b5061068961118b565b6040516106969190613ecc565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613cbf565b611194565b6040516106d39190613d1a565b60405180910390f35b3480156106e857600080fd5b506106f16111cb565b6040516106fe9190613e95565b60405180910390f35b34801561071357600080fd5b5061071c6111ef565b6040516107299190613d1a565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613d35565b611202565b6040516107669190613d1a565b60405180910390f35b34801561077b57600080fd5b50610784611258565b6040516107919190613deb565b60405180910390f35b3480156107a657600080fd5b506107af61125e565b6040516107bc9190613d1a565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613d35565b611271565b6040516107f99190613deb565b60405180910390f35b34801561080e57600080fd5b506108176112b9565b005b34801561082557600080fd5b5061082e6112cd565b60405161083b9190613d1a565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613f13565b6112f9565b005b34801561087957600080fd5b5061088261135c565b60405161088f9190613e95565b60405180910390f35b3480156108a457600080fd5b506108ad611382565b6040516108ba9190613deb565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613f53565b611388565b005b3480156108f857600080fd5b50610901611413565b005b34801561090f57600080fd5b5061091861145a565b6040516109259190613e95565b60405180910390f35b34801561093a57600080fd5b50610943611484565b6040516109509190613e95565b60405180910390f35b34801561096557600080fd5b5061096e6114aa565b60405161097b9190613deb565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613fa6565b6114b0565b005b3480156109b957600080fd5b506109c26114d5565b6040516109cf9190613c04565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613f13565b611567565b005b348015610a0d57600080fd5b50610a1661160b565b604051610a239190613deb565b60405180910390f35b348015610a3857600080fd5b50610a41611611565b604051610a4e9190613deb565b60405180910390f35b348015610a6357600080fd5b50610a6c611617565b604051610a799190613deb565b60405180910390f35b348015610a8e57600080fd5b50610a9761161d565b604051610aa49190613deb565b60405180910390f35b348015610ab957600080fd5b50610ad46004803603810190610acf9190613cbf565b611623565b604051610ae19190613d1a565b60405180910390f35b348015610af657600080fd5b50610aff61169a565b604051610b0c9190613deb565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613cbf565b6116a0565b604051610b499190613d1a565b60405180910390f35b348015610b5e57600080fd5b50610b796004803603810190610b749190613d35565b6116c3565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613d35565b61178b565b604051610baf9190613d1a565b60405180910390f35b348015610bc457600080fd5b50610bcd6117aa565b604051610bda9190613d1a565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190613f13565b6117bd565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f53565b61186e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613e06565b6118f3565b005b348015610c6a57600080fd5b50610c7361198e565b604051610c809190613d1a565b60405180910390f35b348015610c9557600080fd5b50610c9e6119a1565b604051610cab9190613deb565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd69190613e06565b6119a7565b604051610ce89190613d1a565b60405180910390f35b348015610cfd57600080fd5b50610d186004803603810190610d139190613fd3565b611a88565b005b348015610d2657600080fd5b50610d2f611b54565b604051610d3c9190613deb565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614026565b611b5a565b604051610d799190613deb565b60405180910390f35b348015610d8e57600080fd5b50610d97611be1565b604051610da49190613deb565b60405180910390f35b348015610db957600080fd5b50610dc2611be7565b604051610dcf9190613d1a565b60405180910390f35b348015610de457600080fd5b50610ded611c13565b604051610dfa9190613deb565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613d35565b611c19565b005b348015610e3857600080fd5b50610e41611c9c565b604051610e4e9190613deb565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca2565b604051610e799190613deb565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613e06565b611ca8565b604051610eb69190613d1a565b60405180910390f35b606060038054610ece90614095565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614095565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f0c565b9050610f69818585611f14565b600191505092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fca6120dd565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b6110aa6120dd565b670de0b6b3a76400006103e860016110c0610fb8565b6110ca91906140f5565b6110d49190614166565b6110de9190614166565b811015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614209565b60405180910390fd5b670de0b6b3a76400008161113491906140f5565b60088190555050565b600080611148611f0c565b905061115585828561215b565b6111608585856121e7565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119f611f0c565b90506111c08185856111b18589611b5a565b6111bb9190614229565b611f14565b600191505092915050565b7f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d681565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c16120dd565b6112cb6000612f7c565b565b60006112d76120dd565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113016120dd565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6113906120dd565b8260138190555081601481905550806015819055506015546014546013546113b89190614229565b6113c29190614229565b601281905550600b601254111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906142a9565b60405180910390fd5b505050565b61141b6120dd565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6114b86120dd565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546114e490614095565b80601f016020809104026020016040519081016040528092919081815260200182805461151090614095565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b61156f6120dd565b7f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061433b565b60405180910390fd5b6116078282613042565b5050565b60155481565b60105481565b601c5481565b60195481565b60008061162e611f0c565b9050600061163c8286611b5a565b905083811015611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906143cd565b60405180910390fd5b61168e8286868403611f14565b60019250505092915050565b600e5481565b6000806116ab611f0c565b90506116b88185856121e7565b600191505092915050565b6116cb6120dd565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6117c56120dd565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118629190613d1a565b60405180910390a25050565b6118766120dd565b8260178190555081601881905550806019819055508082846118989190614229565b6118a29190614229565b601681905550600b60165411156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e5906142a9565b60405180910390fd5b505050565b6118fb6120dd565b670de0b6b3a76400006103e86005611911610fb8565b61191b91906140f5565b6119259190614166565b61192f9190614166565b811015611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119689061445f565b60405180910390fd5b670de0b6b3a76400008161198591906140f5565b600a8190555050565b601160039054906101000a900460ff1681565b60085481565b60006119b16120dd565b620186a060016119bf610fb8565b6119c991906140f5565b6119d39190614166565b821015611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906144f1565b60405180910390fd5b6103e86005611a22610fb8565b611a2c91906140f5565b611a369190614166565b821115611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614583565b60405180910390fd5b8160098190555060019050919050565b611a906120dd565b610258831015611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90614615565b60405180910390fd5b6103e88211158015611ae8575060008210155b611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906146a7565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf16120dd565b6000601160036101000a81548160ff0219169083151502179055506001905090565b60145481565b611c216120dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790614739565b60405180910390fd5b611c9981612f7c565b50565b60185481565b600a5481565b6000611cb26120dd565b600f54601054611cc29190614229565b4211611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906147a5565b60405180910390fd5b6103e8821115611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614837565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d66040518263ffffffff1660e01b8152600401611daa9190613e95565b602060405180830381865afa158015611dc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611deb919061486c565b90506000611e16612710611e0886856130e390919063ffffffff16565b6130f990919063ffffffff16565b90506000811115611e4f57611e4e7f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d661dead8361310f565b5b60007f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061490b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe99061499d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d09190613deb565b60405180910390a3505050565b6120e5611f0c565b73ffffffffffffffffffffffffffffffffffffffff1661210361145a565b73ffffffffffffffffffffffffffffffffffffffff1614612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215090614a09565b60405180910390fd5b565b60006121678484611b5a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e157818110156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a75565b60405180910390fd5b6121e08484848403611f14565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc90614b99565b60405180910390fd5b600081036122de576122d98383600061310f565b612f77565b601160009054906101000a900460ff16156129a1576122fb61145a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612369575061233961145a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123dc575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f55750600560149054906101000a900460ff16155b156129a057601160019054906101000a900460ff166124ef57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124af5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590614c05565b60405180910390fd5b5b601160039054906101000a900460ff16156126b75761250c61145a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125eb57507f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126b65743601f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890614cbd565b60405180910390fd5b43601f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561275a5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612801576008548111156127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614d4f565b60405180910390fd5b600a546127b083611271565b826127bb9190614229565b11156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614dbb565b60405180910390fd5b61299f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a45750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f3576008548111156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614e4d565b60405180910390fd5b61299e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661299d57600a5461295083611271565b8261295b9190614229565b111561299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390614dbb565b60405180910390fd5b5b5b5b5b5b60006129ac30611271565b9050600060095482101590508080156129d15750601160029054906101000a900460ff165b80156129ea5750600560149054906101000a900460ff16155b8015612a405750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a965750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aec5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b30576001600560146101000a81548160ff021916908315150217905550612b1461338e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b965750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bae5750600c60009054906101000a900460ff165b8015612bc95750600d54600e54612bc59190614229565b4210155b8015612c1f5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2e57612c2c613675565b505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ce45750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cee57600090505b60008115612f6757602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5157506000601654115b15612e1e57612d7e6064612d70601654886130e390919063ffffffff16565b6130f990919063ffffffff16565b905060165460185482612d9191906140f5565b612d9b9190614166565b601b6000828254612dac9190614229565b9250508190555060165460195482612dc491906140f5565b612dce9190614166565b601c6000828254612ddf9190614229565b9250508190555060165460175482612df791906140f5565b612e019190614166565b601a6000828254612e129190614229565b92505081905550612f43565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7957506000601254115b15612f4257612ea66064612e98601254886130e390919063ffffffff16565b6130f990919063ffffffff16565b905060125460145482612eb991906140f5565b612ec39190614166565b601b6000828254612ed49190614229565b9250508190555060125460155482612eec91906140f5565b612ef69190614166565b601c6000828254612f079190614229565b9250508190555060125460135482612f1f91906140f5565b612f299190614166565b601a6000828254612f3a9190614229565b925050819055505b5b6000811115612f5857612f5787308361310f565b5b8085612f649190614e6d565b94505b612f7287878761310f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f191906140f5565b905092915050565b600081836131079190614166565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361317e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317590614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614b99565b60405180910390fd5b6131f883838361383b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614f13565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133119190614229565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133759190613deb565b60405180910390a3613388848484613840565b50505050565b600061339930611271565b90506000601c54601a54601b546133b09190614229565b6133ba9190614229565b90506000808314806133cc5750600082145b156133d957505050613673565b60146009546133e891906140f5565b8311156134015760146009546133fe91906140f5565b92505b6000600283601b548661341491906140f5565b61341e9190614166565b6134289190614166565b9050600061343f828661384590919063ffffffff16565b9050600047905061344f8261385b565b6000613464824761384590919063ffffffff16565b9050600061348f87613481601a54856130e390919063ffffffff16565b6130f990919063ffffffff16565b905060006134ba886134ac601c54866130e390919063ffffffff16565b6130f990919063ffffffff16565b905060008183856134cb9190614e6d565b6134d59190614e6d565b90506000601b819055506000601a819055506000601c81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161353590614f64565b60006040518083038185875af1925050503d8060008114613572576040519150601f19603f3d011682016040523d82523d6000602084013e613577565b606091505b50508098505060008711801561358d5750600081115b156135da5761359c8782613a98565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516135d193929190614f79565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161362090614f64565b60006040518083038185875af1925050503d806000811461365d576040519150601f19603f3d011682016040523d82523d6000602084013e613662565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d66040518263ffffffff1660e01b81526004016136d99190613e95565b602060405180830381865afa1580156136f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371a919061486c565b90506000613747612710613739600b54856130e390919063ffffffff16565b6130f990919063ffffffff16565b905060008111156137805761377f7f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d661dead8361310f565b5b60007f000000000000000000000000ee1a85924367f0016c6ccc0304b4e9a7104e23d690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ed57600080fd5b505af1158015613801573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138539190614e6d565b905092915050565b6000600267ffffffffffffffff81111561387857613877614fb0565b5b6040519080825280602002602001820160405280156138a65781602001602082028036833780820191505090505b50905030816000815181106138be576138bd614fdf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613963573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139879190615023565b8160018151811061399b5761399a614fdf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a00307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f14565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a62959493929190615149565b600060405180830381600087803b158015613a7c57600080fd5b505af1158015613a90573d6000803e3d6000fd5b505050505050565b613ac3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f14565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b2a969594939291906151a3565b60606040518083038185885af1158015613b48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b6d9190615204565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bae578082015181840152602081019050613b93565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bd682613b74565b613be08185613b7f565b9350613bf0818560208601613b90565b613bf981613bba565b840191505092915050565b60006020820190508181036000830152613c1e8184613bcb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5682613c2b565b9050919050565b613c6681613c4b565b8114613c7157600080fd5b50565b600081359050613c8381613c5d565b92915050565b6000819050919050565b613c9c81613c89565b8114613ca757600080fd5b50565b600081359050613cb981613c93565b92915050565b60008060408385031215613cd657613cd5613c26565b5b6000613ce485828601613c74565b9250506020613cf585828601613caa565b9150509250929050565b60008115159050919050565b613d1481613cff565b82525050565b6000602082019050613d2f6000830184613d0b565b92915050565b600060208284031215613d4b57613d4a613c26565b5b6000613d5984828501613c74565b91505092915050565b6000819050919050565b6000613d87613d82613d7d84613c2b565b613d62565b613c2b565b9050919050565b6000613d9982613d6c565b9050919050565b6000613dab82613d8e565b9050919050565b613dbb81613da0565b82525050565b6000602082019050613dd66000830184613db2565b92915050565b613de581613c89565b82525050565b6000602082019050613e006000830184613ddc565b92915050565b600060208284031215613e1c57613e1b613c26565b5b6000613e2a84828501613caa565b91505092915050565b600080600060608486031215613e4c57613e4b613c26565b5b6000613e5a86828701613c74565b9350506020613e6b86828701613c74565b9250506040613e7c86828701613caa565b9150509250925092565b613e8f81613c4b565b82525050565b6000602082019050613eaa6000830184613e86565b92915050565b600060ff82169050919050565b613ec681613eb0565b82525050565b6000602082019050613ee16000830184613ebd565b92915050565b613ef081613cff565b8114613efb57600080fd5b50565b600081359050613f0d81613ee7565b92915050565b60008060408385031215613f2a57613f29613c26565b5b6000613f3885828601613c74565b9250506020613f4985828601613efe565b9150509250929050565b600080600060608486031215613f6c57613f6b613c26565b5b6000613f7a86828701613caa565b9350506020613f8b86828701613caa565b9250506040613f9c86828701613caa565b9150509250925092565b600060208284031215613fbc57613fbb613c26565b5b6000613fca84828501613efe565b91505092915050565b600080600060608486031215613fec57613feb613c26565b5b6000613ffa86828701613caa565b935050602061400b86828701613caa565b925050604061401c86828701613efe565b9150509250925092565b6000806040838503121561403d5761403c613c26565b5b600061404b85828601613c74565b925050602061405c85828601613c74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140ad57607f821691505b6020821081036140c0576140bf614066565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410082613c89565b915061410b83613c89565b925082820261411981613c89565b915082820484148315176141305761412f6140c6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417182613c89565b915061417c83613c89565b92508261418c5761418b614137565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141f3602f83613b7f565b91506141fe82614197565b604082019050919050565b60006020820190508181036000830152614222816141e6565b9050919050565b600061423482613c89565b915061423f83613c89565b9250828201905080821115614257576142566140c6565b5b92915050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614293601d83613b7f565b915061429e8261425d565b602082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614325603983613b7f565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006143b7602583613b7f565b91506143c28261435b565b604082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614449602483613b7f565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144db603583613b7f565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061456d603483613b7f565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145ff603383613b7f565b915061460a826145a3565b604082019050919050565b6000602082019050818103600083015261462e816145f2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614691603083613b7f565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614723602683613b7f565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061478f602083613b7f565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614821602a83613b7f565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b60008151905061486681613c93565b92915050565b60006020828403121561488257614881613c26565b5b600061489084828501614857565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f5602483613b7f565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614987602283613b7f565b91506149928261492b565b604082019050919050565b600060208201905081810360008301526149b68161497a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149f3602083613b7f565b91506149fe826149bd565b602082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a5f601d83613b7f565b9150614a6a82614a29565b602082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614af1602583613b7f565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b83602383613b7f565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bef601683613b7f565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ca7604983613b7f565b9150614cb282614c25565b606082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d39603583613b7f565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614da5601383613b7f565b9150614db082614d6f565b602082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e37603683613b7f565b9150614e4282614ddb565b604082019050919050565b60006020820190508181036000830152614e6681614e2a565b9050919050565b6000614e7882613c89565b9150614e8383613c89565b9250828203905081811115614e9b57614e9a6140c6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614efd602683613b7f565b9150614f0882614ea1565b604082019050919050565b60006020820190508181036000830152614f2c81614ef0565b9050919050565b600081905092915050565b50565b6000614f4e600083614f33565b9150614f5982614f3e565b600082019050919050565b6000614f6f82614f41565b9150819050919050565b6000606082019050614f8e6000830186613ddc565b614f9b6020830185613ddc565b614fa86040830184613ddc565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061501d81613c5d565b92915050565b60006020828403121561503957615038613c26565b5b60006150478482850161500e565b91505092915050565b6000819050919050565b600061507561507061506b84615050565b613d62565b613c89565b9050919050565b6150858161505a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150c081613c4b565b82525050565b60006150d283836150b7565b60208301905092915050565b6000602082019050919050565b60006150f68261508b565b6151008185615096565b935061510b836150a7565b8060005b8381101561513c57815161512388826150c6565b975061512e836150de565b92505060018101905061510f565b5085935050505092915050565b600060a08201905061515e6000830188613ddc565b61516b602083018761507c565b818103604083015261517d81866150eb565b905061518c6060830185613e86565b6151996080830184613ddc565b9695505050505050565b600060c0820190506151b86000830189613e86565b6151c56020830188613ddc565b6151d2604083018761507c565b6151df606083018661507c565b6151ec6080830185613e86565b6151f960a0830184613ddc565b979650505050505050565b60008060006060848603121561521d5761521c613c26565b5b600061522b86828701614857565b935050602061523c86828701614857565b925050604061524d86828701614857565b915050925092509256fea26469706673582212205bf043ea3834878ac3006d490b76e00e702ef22445ba2bb9dc96280d945e195a64736f6c63430008110033

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.