ETH Price: $2,523.70 (+2.84%)

Token

UPBOT (UP)
 

Overview

Max Total Supply

10,000,000 UP

Holders

1,038

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 UP

Value
$0.00
0x654410ea1a7433fab2a7dd0facde0569d189cf19
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:
UPBOT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : UPBOT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
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 { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { IUniswapV2Factory } from "./interfaces/IUniswapV2Factory.sol";
import { IUniswapV2Pair } from "./interfaces/IUniswapV2Pair.sol";
import { IUniswapV2Router02 } from "./interfaces/IUniswapV2Router02.sol";

contract UPBOT 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 revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("UPBOT", "UP") {
        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 _buyRevShareFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 4;

        uint256 _sellRevShareFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 4;

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18;
        maxWallet = 10_000_000 * 1e18;
        swapTokensAtAmount = 5000 * 1e18;

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0x452C9100D2895221081FBfC98c15114394C9f8a4); // set as revShare wallet
        teamWallet = address(0x452C9100D2895221081FBfC98c15114394C9f8a4); // set as team wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        preMigrationTransferrable[owner()] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[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 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[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 updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[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;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / 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, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare +
            tokensForTeam;
        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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

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

    function withdrawStuckUpbot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 10 : 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 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 6 of 10 : 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 7 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 8 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 9 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 10 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","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":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUpbot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506001601b60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600581526020017f5550424f540000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5550000000000000000000000000000000000000000000000000000000000000815250816003908162000116919062000d42565b50806004908162000128919062000d42565b5050506200014b6200013f6200060160201b60201c565b6200060960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000177816001620006cf60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d919062000e93565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000e93565b6040518363ffffffff1660e01b8152600401620002ca92919062000ed6565b6020604051808303816000875af1158015620002ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000310919062000e93565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035860a0516001620006cf60201b60201c565b6200036d60a05160016200073a60201b60201c565b60008060006004905060008060006004905060006a084595161401484a00000090506a084595161401484a0000006008819055506a084595161401484a000000600a8190555069010f0cf064dd5920000060098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003ee919062000f32565b620003fa919062000f32565b600d819055508360128190555082601381905550816014819055506014546013546012546200042a919062000f32565b62000436919062000f32565b60118190555073452c9100d2895221081fbfc98c15114394c9f8a4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073452c9100d2895221081fbfc98c15114394c9f8a4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000508620004fa620007db60201b60201c565b60016200080560201b60201c565b6200051b3060016200080560201b60201c565b6200053061dead60016200080560201b60201c565b6200055262000544620007db60201b60201c565b6001620006cf60201b60201c565b62000565306001620006cf60201b60201c565b6200057a61dead6001620006cf60201b60201c565b6001601c600062000590620007db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005f33382620008c060201b60201c565b5050505050505050620010ca565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006df62000a2d60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081562000a2d60201b60201c565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b4919062000f8a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009299062001008565b60405180910390fd5b620009466000838362000abe60201b60201c565b80600260008282546200095a919062000f32565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0d91906200103b565b60405180910390a362000a296000838362000ac360201b60201c565b5050565b62000a3d6200060160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a63620007db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab390620010a8565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4a57607f821691505b60208210810362000b605762000b5f62000b02565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8b565b62000bd6868362000b8b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c2362000c1d62000c178462000bee565b62000bf8565b62000bee565b9050919050565b6000819050919050565b62000c3f8362000c02565b62000c5762000c4e8262000c2a565b84845462000b98565b825550505050565b600090565b62000c6e62000c5f565b62000c7b81848462000c34565b505050565b5b8181101562000ca35762000c9760008262000c64565b60018101905062000c81565b5050565b601f82111562000cf25762000cbc8162000b66565b62000cc78462000b7b565b8101602085101562000cd7578190505b62000cef62000ce68562000b7b565b83018262000c80565b50505b505050565b600082821c905092915050565b600062000d176000198460080262000cf7565b1980831691505092915050565b600062000d32838362000d04565b9150826002028217905092915050565b62000d4d8262000ac8565b67ffffffffffffffff81111562000d695762000d6862000ad3565b5b62000d75825462000b31565b62000d8282828562000ca7565b600060209050601f83116001811462000dba576000841562000da5578287015190505b62000db1858262000d24565b86555062000e21565b601f19841662000dca8662000b66565b60005b8281101562000df45784890151825560018201915060208501945060208101905062000dcd565b8683101562000e14578489015162000e10601f89168262000d04565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e5b8262000e2e565b9050919050565b62000e6d8162000e4e565b811462000e7957600080fd5b50565b60008151905062000e8d8162000e62565b92915050565b60006020828403121562000eac5762000eab62000e29565b5b600062000ebc8482850162000e7c565b91505092915050565b62000ed08162000e4e565b82525050565b600060408201905062000eed600083018562000ec5565b62000efc602083018462000ec5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f3f8262000bee565b915062000f4c8362000bee565b925082820190508082111562000f675762000f6662000f03565b5b92915050565b60008115159050919050565b62000f848162000f6d565b82525050565b600060208201905062000fa1600083018462000f79565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ff0601f8362000fa7565b915062000ffd8262000fb8565b602082019050919050565b60006020820190508181036000830152620010238162000fe1565b9050919050565b620010358162000bee565b82525050565b60006020820190506200105260008301846200102a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109060208362000fa7565b91506200109d8262001058565b602082019050919050565b60006020820190508181036000830152620010c38162001081565b9050919050565b60805160a051615557620011286000396000818161115e015281816116fc01528181611ecc01526120f5015260008181610ffb01528181613b1b01528181613bfc01528181613c2301528181613cbf0152613ce601526155576000f3fe6080604052600436106103c75760003560e01c80638095d564116101f2578063c18bc1951161010d578063f11a24d3116100a0578063f9f92be41161006f578063f9f92be414610e63578063fc6cfa0814610e8c578063fde83a3414610ea3578063fe575a8714610ece576103ce565b8063f11a24d314610db9578063f2fde38b14610de4578063f637434214610e0d578063f8b45b0514610e38576103ce565b8063d85ba063116100dc578063d85ba06314610cfd578063dd62ed3e14610d28578063e19b282314610d65578063e2f4560514610d8e576103ce565b8063c18bc19514610c41578063c8c8ebe414610c6a578063d257b34f14610c95578063d729715f14610cd2576103ce565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610b9b578063bc205ad314610bc6578063c024666814610bef578063c17b5b8c14610c18576103ce565b8063a9059cbb14610acf578063aa0e438814610b0c578063adee28ff14610b35578063b62496f514610b5e576103ce565b806395d89b41116101c157806395d89b4114610a135780639a7a23d614610a3e5780639c2e4ac614610a67578063a457c2d714610a92576103ce565b80638095d5641461097f5780638a8c523c146109a85780638da5cb5b146109bf578063924de9b7146109ea576103ce565b806349bd5a5e116102e257806370a082311161027557806375e3661e1161024457806375e3661e146108d9578063782c4e99146109025780637ca8448a1461092d5780637cb332bb14610956576103ce565b806370a0823114610831578063715018a61461086e578063751039fc146108855780637571336a146108b0576103ce565b806359927044116102b157806359927044146107995780635f189361146107c45780636a486a8e146107db5780636ddd171314610806576103ce565b806349bd5a5e146106c95780634a62bb65146106f45780634e29e5231461071f5780634fbee1931461075c576103ce565b80631a8145bb1161035a57806327c8f8351161032957806327c8f8351461060b578063313ce5671461063657806339509351146106615780633dc599ff1461069e576103ce565b80631a8145bb1461054f578063203e727e1461057a57806323b872dd146105a357806324b9f3c1146105e0576103ce565b8063156c2f3511610396578063156c2f35146104a35780631694505e146104ce57806318160ddd146104f957806319eab04214610524576103ce565b806306fdde03146103d3578063095ea7b3146103fe5780630e922ca71461043b57806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f0b565b6040516103f59190613e2a565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613ee5565b610f9d565b6040516104329190613f40565b60405180910390f35b34801561044757600080fd5b50610450610fc0565b60405161045d9190613f40565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613f5b565b610fd3565b60405161049a9190613f40565b60405180910390f35b3480156104af57600080fd5b506104b8610ff3565b6040516104c59190613f97565b60405180910390f35b3480156104da57600080fd5b506104e3610ff9565b6040516104f09190614011565b60405180910390f35b34801561050557600080fd5b5061050e61101d565b60405161051b9190613f97565b60405180910390f35b34801561053057600080fd5b50610539611027565b6040516105469190613f97565b60405180910390f35b34801561055b57600080fd5b5061056461102d565b6040516105719190613f97565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061402c565b611033565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190614059565b6110ce565b6040516105d79190613f40565b60405180910390f35b3480156105ec57600080fd5b506105f56110fd565b6040516106029190613f97565b60405180910390f35b34801561061757600080fd5b50610620611103565b60405161062d91906140bb565b60405180910390f35b34801561064257600080fd5b5061064b611109565b60405161065891906140f2565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613ee5565b611112565b6040516106959190613f40565b60405180910390f35b3480156106aa57600080fd5b506106b3611149565b6040516106c09190613f40565b60405180910390f35b3480156106d557600080fd5b506106de61115c565b6040516106eb91906140bb565b60405180910390f35b34801561070057600080fd5b50610709611180565b6040516107169190613f40565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613f5b565b611193565b6040516107539190613f40565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613f5b565b6111b3565b6040516107909190613f40565b60405180910390f35b3480156107a557600080fd5b506107ae611209565b6040516107bb91906140bb565b60405180910390f35b3480156107d057600080fd5b506107d961122f565b005b3480156107e757600080fd5b506107f0611254565b6040516107fd9190613f97565b60405180910390f35b34801561081257600080fd5b5061081b61125a565b6040516108289190613f40565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613f5b565b61126d565b6040516108659190613f97565b60405180910390f35b34801561087a57600080fd5b506108836112b5565b005b34801561089157600080fd5b5061089a6112c9565b6040516108a79190613f40565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190614139565b6112f5565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613f5b565b611358565b005b34801561090e57600080fd5b506109176113bb565b60405161092491906140bb565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613f5b565b6113e1565b005b34801561096257600080fd5b5061097d60048036038101906109789190613f5b565b611463565b005b34801561098b57600080fd5b506109a660048036038101906109a19190614179565b61152b565b005b3480156109b457600080fd5b506109bd6115b6565b005b3480156109cb57600080fd5b506109d4611611565b6040516109e191906140bb565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906141cc565b61163b565b005b348015610a1f57600080fd5b50610a28611660565b604051610a359190613e2a565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a609190614139565b6116f2565b005b348015610a7357600080fd5b50610a7c611796565b604051610a899190613f97565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613ee5565b61179c565b604051610ac69190613f40565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af19190613ee5565b611813565b604051610b039190613f40565b60405180910390f35b348015610b1857600080fd5b50610b336004803603810190610b2e9190614139565b611836565b005b348015610b4157600080fd5b50610b5c6004803603810190610b579190613f5b565b6118ad565b005b348015610b6a57600080fd5b50610b856004803603810190610b809190613f5b565b611975565b604051610b929190613f40565b60405180910390f35b348015610ba757600080fd5b50610bb0611995565b604051610bbd9190613f40565b60405180910390f35b348015610bd257600080fd5b50610bed6004803603810190610be891906141f9565b6119a8565b005b348015610bfb57600080fd5b50610c166004803603810190610c119190614139565b611b21565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a9190614179565b611bd2565b005b348015610c4d57600080fd5b50610c686004803603810190610c63919061402c565b611c5d565b005b348015610c7657600080fd5b50610c7f611cf8565b604051610c8c9190613f97565b60405180910390f35b348015610ca157600080fd5b50610cbc6004803603810190610cb7919061402c565b611cfe565b604051610cc99190613f40565b60405180910390f35b348015610cde57600080fd5b50610ce7611ddf565b604051610cf49190613f97565b60405180910390f35b348015610d0957600080fd5b50610d12611de5565b604051610d1f9190613f97565b60405180910390f35b348015610d3457600080fd5b50610d4f6004803603810190610d4a91906141f9565b611deb565b604051610d5c9190613f97565b60405180910390f35b348015610d7157600080fd5b50610d8c6004803603810190610d879190613f5b565b611e72565b005b348015610d9a57600080fd5b50610da3612000565b604051610db09190613f97565b60405180910390f35b348015610dc557600080fd5b50610dce612006565b604051610ddb9190613f97565b60405180910390f35b348015610df057600080fd5b50610e0b6004803603810190610e069190613f5b565b61200c565b005b348015610e1957600080fd5b50610e2261208f565b604051610e2f9190613f97565b60405180910390f35b348015610e4457600080fd5b50610e4d612095565b604051610e5a9190613f97565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e859190613f5b565b61209b565b005b348015610e9857600080fd5b50610ea1612229565b005b348015610eaf57600080fd5b50610eb8612378565b604051610ec59190613f97565b60405180910390f35b348015610eda57600080fd5b50610ef56004803603810190610ef09190613f5b565b61237e565b604051610f029190613f40565b60405180910390f35b606060038054610f1a90614268565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4690614268565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b5050505050905090565b600080610fa86123d4565b9050610fb58185856123dc565b600191505092915050565b601b60009054906101000a900460ff1681565b60196020528060005260406000206000915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b60165481565b61103b6125a5565b670de0b6b3a76400006103e8600561105161101d565b61105b91906142c8565b6110659190614339565b61106f9190614339565b8110156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a8906143dc565b60405180910390fd5b670de0b6b3a7640000816110c591906142c8565b60088190555050565b6000806110d96123d4565b90506110e6858285612623565b6110f18585856126af565b60019150509392505050565b60155481565b61dead81565b60006012905090565b60008061111d6123d4565b905061113e81858561112f8589611deb565b61113991906143fc565b6123dc565b600191505092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112376125a5565b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd6125a5565b6112c7600061333a565b565b60006112d36125a5565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6112fd6125a5565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6113606125a5565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113e96125a5565b60008173ffffffffffffffffffffffffffffffffffffffff164760405161140f90614461565b60006040518083038185875af1925050503d806000811461144c576040519150601f19603f3d011682016040523d82523d6000602084013e611451565b606091505b505090508061145f57600080fd5b5050565b61146b6125a5565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115336125a5565b82600e8190555081600f8190555080601081905550601054600f54600e5461155b91906143fc565b61156591906143fc565b600d819055506005600d5411156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906144c2565b60405180910390fd5b505050565b6115be6125a5565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506000601b60006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116436125a5565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461166f90614268565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90614268565b80156116e85780601f106116bd576101008083540402835291602001916116e8565b820191906000526020600020905b8154815290600101906020018083116116cb57829003601f168201915b5050505050905090565b6116fa6125a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90614554565b60405180910390fd5b6117928282613400565b5050565b60105481565b6000806117a76123d4565b905060006117b58286611deb565b9050838110156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906145e6565b60405180910390fd5b61180782868684036123dc565b60019250505092915050565b60008061181e6123d4565b905061182b8185856126af565b600191505092915050565b61183e6125a5565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061189f8282611b21565b6118a982826112f5565b5050565b6118b56125a5565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6119b06125a5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614652565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a5a91906140bb565b602060405180830381865afa158015611a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9b9190614687565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611ad89291906146b4565b6020604051808303816000875af1158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b91906146f2565b50505050565b611b296125a5565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bc69190613f40565b60405180910390a25050565b611bda6125a5565b826012819055508160138190555080601481905550601454601354601254611c0291906143fc565b611c0c91906143fc565b60118190555060056011541115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f9061476b565b60405180910390fd5b505050565b611c656125a5565b670de0b6b3a76400006103e8600a611c7b61101d565b611c8591906142c8565b611c8f9190614339565b611c999190614339565b811015611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906147fd565b60405180910390fd5b670de0b6b3a764000081611cef91906142c8565b600a8190555050565b60085481565b6000611d086125a5565b620186a06001611d1661101d565b611d2091906142c8565b611d2a9190614339565b821015611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061488f565b60405180910390fd5b6103e86005611d7961101d565b611d8391906142c8565b611d8d9190614339565b821115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690614921565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e7a6125a5565b600b60039054906101000a900460ff1615611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906149b3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f665750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614a45565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b6120146125a5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614ad7565b60405180910390fd5b61208c8161333a565b50565b60135481565b600a5481565b6120a36125a5565b600b60039054906101000a900460ff16156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea906149b3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561218f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614a45565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122316125a5565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161226c91906140bb565b602060405180830381865afa158015612289573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ad9190614687565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016122ea9291906146b4565b6020604051808303816000875af1158015612309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232d91906146f2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612374573d6000803e3d6000fd5b5050565b60175481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614bfb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125989190613f97565b60405180910390a3505050565b6125ad6123d4565b73ffffffffffffffffffffffffffffffffffffffff166125cb611611565b73ffffffffffffffffffffffffffffffffffffffff1614612621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261890614c67565b60405180910390fd5b565b600061262f8484611deb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126a9578181101561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614cd3565b60405180910390fd5b6126a884848484036123dc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614df7565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614e63565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614ecf565b60405180910390fd5b601b60009054906101000a900460ff161561294957601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90614f61565b60405180910390fd5b5b600081036129625761295d838360006134a1565b613335565b600b60009054906101000a900460ff1615612e5d5761297f611611565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ed57506129bd611611565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a265750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a60575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a795750600560149054906101000a900460ff16155b15612e5c57600b60019054906101000a900460ff16612b7357601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b335750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990614fcd565b60405180910390fd5b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c165750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cbd57600854811115612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c579061505f565b60405180910390fd5b600a54612c6c8361126d565b82612c7791906143fc565b1115612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf906150cb565b60405180910390fd5b612e5b565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d605750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612daf57600854811115612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da19061515d565b60405180910390fd5b612e5a565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e5957600a54612e0c8361126d565b82612e1791906143fc565b1115612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906150cb565b60405180910390fd5b5b5b5b5b5b6000612e683061126d565b905060006009548210159050808015612e8d5750600b60029054906101000a900460ff165b8015612ea65750600560149054906101000a900460ff16155b8015612efc5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f525750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fa85750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fec576001600560146101000a81548160ff021916908315150217905550612fd0613717565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130a25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130ac57600090505b6000811561332557601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310f57506000601154115b156131dc5761313c606461312e60115488613a3090919063ffffffff16565b613a4690919063ffffffff16565b90506011546013548261314f91906142c8565b6131599190614339565b6016600082825461316a91906143fc565b925050819055506011546014548261318291906142c8565b61318c9190614339565b6017600082825461319d91906143fc565b92505081905550601154601254826131b591906142c8565b6131bf9190614339565b601560008282546131d091906143fc565b92505081905550613301565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561323757506000600d54115b15613300576132646064613256600d5488613a3090919063ffffffff16565b613a4690919063ffffffff16565b9050600d54600f548261327791906142c8565b6132819190614339565b6016600082825461329291906143fc565b92505081905550600d54601054826132aa91906142c8565b6132b49190614339565b601760008282546132c591906143fc565b92505081905550600d54600e54826132dd91906142c8565b6132e79190614339565b601560008282546132f891906143fc565b925050819055505b5b6000811115613316576133158730836134a1565b5b8085613322919061517d565b94505b6133308787876134a1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350790614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361357f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357690614df7565b60405180910390fd5b61358a838383613a5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360790615223565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136fe9190613f97565b60405180910390a3613711848484613a61565b50505050565b60006137223061126d565b9050600060175460155460165461373991906143fc565b61374391906143fc565b90506000808314806137555750600082145b1561376257505050613a2e565b601460095461377191906142c8565b83111561378a57601460095461378791906142c8565b92505b60006002836016548661379d91906142c8565b6137a79190614339565b6137b19190614339565b905060006137c88286613a6690919063ffffffff16565b905060004790506137d882613a7c565b60006137ed8247613a6690919063ffffffff16565b9050600061383160026016546138039190614339565b8861380e919061517d565b61382360155485613a3090919063ffffffff16565b613a4690919063ffffffff16565b9050600061387560026016546138479190614339565b89613852919061517d565b61386760175486613a3090919063ffffffff16565b613a4690919063ffffffff16565b90506000818385613886919061517d565b613890919061517d565b9050600060168190555060006015819055506000601781905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516138f090614461565b60006040518083038185875af1925050503d806000811461392d576040519150601f19603f3d011682016040523d82523d6000602084013e613932565b606091505b5050809850506000871180156139485750600081115b15613995576139578782613cb9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161398c93929190615243565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139db90614461565b60006040518083038185875af1925050503d8060008114613a18576040519150601f19603f3d011682016040523d82523d6000602084013e613a1d565b606091505b505080985050505050505050505050505b565b60008183613a3e91906142c8565b905092915050565b60008183613a549190614339565b905092915050565b505050565b505050565b60008183613a74919061517d565b905092915050565b6000600267ffffffffffffffff811115613a9957613a9861527a565b5b604051908082528060200260200182016040528015613ac75781602001602082028036833780820191505090505b5090503081600081518110613adf57613ade6152a9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ba891906152ed565b81600181518110613bbc57613bbb6152a9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c21307f0000000000000000000000000000000000000000000000000000000000000000846123dc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c83959493929190615413565b600060405180830381600087803b158015613c9d57600080fd5b505af1158015613cb1573d6000803e3d6000fd5b505050505050565b613ce4307f0000000000000000000000000000000000000000000000000000000000000000846123dc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613d2e611611565b426040518863ffffffff1660e01b8152600401613d509695949392919061546d565b60606040518083038185885af1158015613d6e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d9391906154ce565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd4578082015181840152602081019050613db9565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfc82613d9a565b613e068185613da5565b9350613e16818560208601613db6565b613e1f81613de0565b840191505092915050565b60006020820190508181036000830152613e448184613df1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e7c82613e51565b9050919050565b613e8c81613e71565b8114613e9757600080fd5b50565b600081359050613ea981613e83565b92915050565b6000819050919050565b613ec281613eaf565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b60008060408385031215613efc57613efb613e4c565b5b6000613f0a85828601613e9a565b9250506020613f1b85828601613ed0565b9150509250929050565b60008115159050919050565b613f3a81613f25565b82525050565b6000602082019050613f556000830184613f31565b92915050565b600060208284031215613f7157613f70613e4c565b5b6000613f7f84828501613e9a565b91505092915050565b613f9181613eaf565b82525050565b6000602082019050613fac6000830184613f88565b92915050565b6000819050919050565b6000613fd7613fd2613fcd84613e51565b613fb2565b613e51565b9050919050565b6000613fe982613fbc565b9050919050565b6000613ffb82613fde565b9050919050565b61400b81613ff0565b82525050565b60006020820190506140266000830184614002565b92915050565b60006020828403121561404257614041613e4c565b5b600061405084828501613ed0565b91505092915050565b60008060006060848603121561407257614071613e4c565b5b600061408086828701613e9a565b935050602061409186828701613e9a565b92505060406140a286828701613ed0565b9150509250925092565b6140b581613e71565b82525050565b60006020820190506140d060008301846140ac565b92915050565b600060ff82169050919050565b6140ec816140d6565b82525050565b600060208201905061410760008301846140e3565b92915050565b61411681613f25565b811461412157600080fd5b50565b6000813590506141338161410d565b92915050565b600080604083850312156141505761414f613e4c565b5b600061415e85828601613e9a565b925050602061416f85828601614124565b9150509250929050565b60008060006060848603121561419257614191613e4c565b5b60006141a086828701613ed0565b93505060206141b186828701613ed0565b92505060406141c286828701613ed0565b9150509250925092565b6000602082840312156141e2576141e1613e4c565b5b60006141f084828501614124565b91505092915050565b600080604083850312156142105761420f613e4c565b5b600061421e85828601613e9a565b925050602061422f85828601613e9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428057607f821691505b60208210810361429357614292614239565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142d382613eaf565b91506142de83613eaf565b92508282026142ec81613eaf565b9150828204841483151761430357614302614299565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434482613eaf565b915061434f83613eaf565b92508261435f5761435e61430a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006143c6602f83613da5565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b600061440782613eaf565b915061441283613eaf565b925082820190508082111561442a57614429614299565b5b92915050565b600081905092915050565b50565b600061444b600083614430565b91506144568261443b565b600082019050919050565b600061446c8261443e565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b60006144ac601683613da5565b91506144b782614476565b602082019050919050565b600060208201905081810360008301526144db8161449f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061453e603983613da5565b9150614549826144e2565b604082019050919050565b6000602082019050818103600083015261456d81614531565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145d0602583613da5565b91506145db82614574565b604082019050919050565b600060208201905081810360008301526145ff816145c3565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061463c601a83613da5565b915061464782614606565b602082019050919050565b6000602082019050818103600083015261466b8161462f565b9050919050565b60008151905061468181613eb9565b92915050565b60006020828403121561469d5761469c613e4c565b5b60006146ab84828501614672565b91505092915050565b60006040820190506146c960008301856140ac565b6146d66020830184613f88565b9392505050565b6000815190506146ec8161410d565b92915050565b60006020828403121561470857614707613e4c565b5b6000614716848285016146dd565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000614755601783613da5565b91506147608261471f565b602082019050919050565b6000602082019050818103600083015261478481614748565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b60006147e7602483613da5565b91506147f28261478b565b604082019050919050565b60006020820190508181036000830152614816816147da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614879603583613da5565b91506148848261481d565b604082019050919050565b600060208201905081810360008301526148a88161486c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061490b603483613da5565b9150614916826148af565b604082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061499d602183613da5565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b6000614a2f602e83613da5565b9150614a3a826149d3565b604082019050919050565b60006020820190508181036000830152614a5e81614a22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ac1602683613da5565b9150614acc82614a65565b604082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b53602483613da5565b9150614b5e82614af7565b604082019050919050565b60006020820190508181036000830152614b8281614b46565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614be5602283613da5565b9150614bf082614b89565b604082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c51602083613da5565b9150614c5c82614c1b565b602082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614cbd601d83613da5565b9150614cc882614c87565b602082019050919050565b60006020820190508181036000830152614cec81614cb0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d4f602583613da5565b9150614d5a82614cf3565b604082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614de1602383613da5565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b6000614e4d601283613da5565b9150614e5882614e17565b602082019050919050565b60006020820190508181036000830152614e7c81614e40565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000614eb9601483613da5565b9150614ec482614e83565b602082019050919050565b60006020820190508181036000830152614ee881614eac565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000614f4b602983613da5565b9150614f5682614eef565b604082019050919050565b60006020820190508181036000830152614f7a81614f3e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614fb7601683613da5565b9150614fc282614f81565b602082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615049603583613da5565b915061505482614fed565b604082019050919050565b600060208201905081810360008301526150788161503c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150b5601383613da5565b91506150c08261507f565b602082019050919050565b600060208201905081810360008301526150e4816150a8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615147603683613da5565b9150615152826150eb565b604082019050919050565b600060208201905081810360008301526151768161513a565b9050919050565b600061518882613eaf565b915061519383613eaf565b92508282039050818111156151ab576151aa614299565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061520d602683613da5565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b60006060820190506152586000830186613f88565b6152656020830185613f88565b6152726040830184613f88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152e781613e83565b92915050565b60006020828403121561530357615302613e4c565b5b6000615311848285016152d8565b91505092915050565b6000819050919050565b600061533f61533a6153358461531a565b613fb2565b613eaf565b9050919050565b61534f81615324565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61538a81613e71565b82525050565b600061539c8383615381565b60208301905092915050565b6000602082019050919050565b60006153c082615355565b6153ca8185615360565b93506153d583615371565b8060005b838110156154065781516153ed8882615390565b97506153f8836153a8565b9250506001810190506153d9565b5085935050505092915050565b600060a0820190506154286000830188613f88565b6154356020830187615346565b818103604083015261544781866153b5565b905061545660608301856140ac565b6154636080830184613f88565b9695505050505050565b600060c08201905061548260008301896140ac565b61548f6020830188613f88565b61549c6040830187615346565b6154a96060830186615346565b6154b660808301856140ac565b6154c360a0830184613f88565b979650505050505050565b6000806000606084860312156154e7576154e6613e4c565b5b60006154f586828701614672565b935050602061550686828701614672565b925050604061551786828701614672565b915050925092509256fea2646970667358221220bd693e1bd114c4c79ae3afe15436f8729021027a1daf19199c0e6a589607422264736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638095d564116101f2578063c18bc1951161010d578063f11a24d3116100a0578063f9f92be41161006f578063f9f92be414610e63578063fc6cfa0814610e8c578063fde83a3414610ea3578063fe575a8714610ece576103ce565b8063f11a24d314610db9578063f2fde38b14610de4578063f637434214610e0d578063f8b45b0514610e38576103ce565b8063d85ba063116100dc578063d85ba06314610cfd578063dd62ed3e14610d28578063e19b282314610d65578063e2f4560514610d8e576103ce565b8063c18bc19514610c41578063c8c8ebe414610c6a578063d257b34f14610c95578063d729715f14610cd2576103ce565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610b9b578063bc205ad314610bc6578063c024666814610bef578063c17b5b8c14610c18576103ce565b8063a9059cbb14610acf578063aa0e438814610b0c578063adee28ff14610b35578063b62496f514610b5e576103ce565b806395d89b41116101c157806395d89b4114610a135780639a7a23d614610a3e5780639c2e4ac614610a67578063a457c2d714610a92576103ce565b80638095d5641461097f5780638a8c523c146109a85780638da5cb5b146109bf578063924de9b7146109ea576103ce565b806349bd5a5e116102e257806370a082311161027557806375e3661e1161024457806375e3661e146108d9578063782c4e99146109025780637ca8448a1461092d5780637cb332bb14610956576103ce565b806370a0823114610831578063715018a61461086e578063751039fc146108855780637571336a146108b0576103ce565b806359927044116102b157806359927044146107995780635f189361146107c45780636a486a8e146107db5780636ddd171314610806576103ce565b806349bd5a5e146106c95780634a62bb65146106f45780634e29e5231461071f5780634fbee1931461075c576103ce565b80631a8145bb1161035a57806327c8f8351161032957806327c8f8351461060b578063313ce5671461063657806339509351146106615780633dc599ff1461069e576103ce565b80631a8145bb1461054f578063203e727e1461057a57806323b872dd146105a357806324b9f3c1146105e0576103ce565b8063156c2f3511610396578063156c2f35146104a35780631694505e146104ce57806318160ddd146104f957806319eab04214610524576103ce565b806306fdde03146103d3578063095ea7b3146103fe5780630e922ca71461043b57806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f0b565b6040516103f59190613e2a565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613ee5565b610f9d565b6040516104329190613f40565b60405180910390f35b34801561044757600080fd5b50610450610fc0565b60405161045d9190613f40565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613f5b565b610fd3565b60405161049a9190613f40565b60405180910390f35b3480156104af57600080fd5b506104b8610ff3565b6040516104c59190613f97565b60405180910390f35b3480156104da57600080fd5b506104e3610ff9565b6040516104f09190614011565b60405180910390f35b34801561050557600080fd5b5061050e61101d565b60405161051b9190613f97565b60405180910390f35b34801561053057600080fd5b50610539611027565b6040516105469190613f97565b60405180910390f35b34801561055b57600080fd5b5061056461102d565b6040516105719190613f97565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061402c565b611033565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190614059565b6110ce565b6040516105d79190613f40565b60405180910390f35b3480156105ec57600080fd5b506105f56110fd565b6040516106029190613f97565b60405180910390f35b34801561061757600080fd5b50610620611103565b60405161062d91906140bb565b60405180910390f35b34801561064257600080fd5b5061064b611109565b60405161065891906140f2565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613ee5565b611112565b6040516106959190613f40565b60405180910390f35b3480156106aa57600080fd5b506106b3611149565b6040516106c09190613f40565b60405180910390f35b3480156106d557600080fd5b506106de61115c565b6040516106eb91906140bb565b60405180910390f35b34801561070057600080fd5b50610709611180565b6040516107169190613f40565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613f5b565b611193565b6040516107539190613f40565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613f5b565b6111b3565b6040516107909190613f40565b60405180910390f35b3480156107a557600080fd5b506107ae611209565b6040516107bb91906140bb565b60405180910390f35b3480156107d057600080fd5b506107d961122f565b005b3480156107e757600080fd5b506107f0611254565b6040516107fd9190613f97565b60405180910390f35b34801561081257600080fd5b5061081b61125a565b6040516108289190613f40565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613f5b565b61126d565b6040516108659190613f97565b60405180910390f35b34801561087a57600080fd5b506108836112b5565b005b34801561089157600080fd5b5061089a6112c9565b6040516108a79190613f40565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190614139565b6112f5565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613f5b565b611358565b005b34801561090e57600080fd5b506109176113bb565b60405161092491906140bb565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613f5b565b6113e1565b005b34801561096257600080fd5b5061097d60048036038101906109789190613f5b565b611463565b005b34801561098b57600080fd5b506109a660048036038101906109a19190614179565b61152b565b005b3480156109b457600080fd5b506109bd6115b6565b005b3480156109cb57600080fd5b506109d4611611565b6040516109e191906140bb565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906141cc565b61163b565b005b348015610a1f57600080fd5b50610a28611660565b604051610a359190613e2a565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a609190614139565b6116f2565b005b348015610a7357600080fd5b50610a7c611796565b604051610a899190613f97565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613ee5565b61179c565b604051610ac69190613f40565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af19190613ee5565b611813565b604051610b039190613f40565b60405180910390f35b348015610b1857600080fd5b50610b336004803603810190610b2e9190614139565b611836565b005b348015610b4157600080fd5b50610b5c6004803603810190610b579190613f5b565b6118ad565b005b348015610b6a57600080fd5b50610b856004803603810190610b809190613f5b565b611975565b604051610b929190613f40565b60405180910390f35b348015610ba757600080fd5b50610bb0611995565b604051610bbd9190613f40565b60405180910390f35b348015610bd257600080fd5b50610bed6004803603810190610be891906141f9565b6119a8565b005b348015610bfb57600080fd5b50610c166004803603810190610c119190614139565b611b21565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a9190614179565b611bd2565b005b348015610c4d57600080fd5b50610c686004803603810190610c63919061402c565b611c5d565b005b348015610c7657600080fd5b50610c7f611cf8565b604051610c8c9190613f97565b60405180910390f35b348015610ca157600080fd5b50610cbc6004803603810190610cb7919061402c565b611cfe565b604051610cc99190613f40565b60405180910390f35b348015610cde57600080fd5b50610ce7611ddf565b604051610cf49190613f97565b60405180910390f35b348015610d0957600080fd5b50610d12611de5565b604051610d1f9190613f97565b60405180910390f35b348015610d3457600080fd5b50610d4f6004803603810190610d4a91906141f9565b611deb565b604051610d5c9190613f97565b60405180910390f35b348015610d7157600080fd5b50610d8c6004803603810190610d879190613f5b565b611e72565b005b348015610d9a57600080fd5b50610da3612000565b604051610db09190613f97565b60405180910390f35b348015610dc557600080fd5b50610dce612006565b604051610ddb9190613f97565b60405180910390f35b348015610df057600080fd5b50610e0b6004803603810190610e069190613f5b565b61200c565b005b348015610e1957600080fd5b50610e2261208f565b604051610e2f9190613f97565b60405180910390f35b348015610e4457600080fd5b50610e4d612095565b604051610e5a9190613f97565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e859190613f5b565b61209b565b005b348015610e9857600080fd5b50610ea1612229565b005b348015610eaf57600080fd5b50610eb8612378565b604051610ec59190613f97565b60405180910390f35b348015610eda57600080fd5b50610ef56004803603810190610ef09190613f5b565b61237e565b604051610f029190613f40565b60405180910390f35b606060038054610f1a90614268565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4690614268565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b5050505050905090565b600080610fa86123d4565b9050610fb58185856123dc565b600191505092915050565b601b60009054906101000a900460ff1681565b60196020528060005260406000206000915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b60165481565b61103b6125a5565b670de0b6b3a76400006103e8600561105161101d565b61105b91906142c8565b6110659190614339565b61106f9190614339565b8110156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a8906143dc565b60405180910390fd5b670de0b6b3a7640000816110c591906142c8565b60088190555050565b6000806110d96123d4565b90506110e6858285612623565b6110f18585856126af565b60019150509392505050565b60155481565b61dead81565b60006012905090565b60008061111d6123d4565b905061113e81858561112f8589611deb565b61113991906143fc565b6123dc565b600191505092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000a86894db80a0815b87f25760f31bb00555a22fc981565b600b60009054906101000a900460ff1681565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112376125a5565b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd6125a5565b6112c7600061333a565b565b60006112d36125a5565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6112fd6125a5565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6113606125a5565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113e96125a5565b60008173ffffffffffffffffffffffffffffffffffffffff164760405161140f90614461565b60006040518083038185875af1925050503d806000811461144c576040519150601f19603f3d011682016040523d82523d6000602084013e611451565b606091505b505090508061145f57600080fd5b5050565b61146b6125a5565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115336125a5565b82600e8190555081600f8190555080601081905550601054600f54600e5461155b91906143fc565b61156591906143fc565b600d819055506005600d5411156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906144c2565b60405180910390fd5b505050565b6115be6125a5565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506000601b60006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116436125a5565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461166f90614268565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90614268565b80156116e85780601f106116bd576101008083540402835291602001916116e8565b820191906000526020600020905b8154815290600101906020018083116116cb57829003601f168201915b5050505050905090565b6116fa6125a5565b7f000000000000000000000000a86894db80a0815b87f25760f31bb00555a22fc973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90614554565b60405180910390fd5b6117928282613400565b5050565b60105481565b6000806117a76123d4565b905060006117b58286611deb565b9050838110156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906145e6565b60405180910390fd5b61180782868684036123dc565b60019250505092915050565b60008061181e6123d4565b905061182b8185856126af565b600191505092915050565b61183e6125a5565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061189f8282611b21565b6118a982826112f5565b5050565b6118b56125a5565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6119b06125a5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614652565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a5a91906140bb565b602060405180830381865afa158015611a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9b9190614687565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611ad89291906146b4565b6020604051808303816000875af1158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b91906146f2565b50505050565b611b296125a5565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bc69190613f40565b60405180910390a25050565b611bda6125a5565b826012819055508160138190555080601481905550601454601354601254611c0291906143fc565b611c0c91906143fc565b60118190555060056011541115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f9061476b565b60405180910390fd5b505050565b611c656125a5565b670de0b6b3a76400006103e8600a611c7b61101d565b611c8591906142c8565b611c8f9190614339565b611c999190614339565b811015611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906147fd565b60405180910390fd5b670de0b6b3a764000081611cef91906142c8565b600a8190555050565b60085481565b6000611d086125a5565b620186a06001611d1661101d565b611d2091906142c8565b611d2a9190614339565b821015611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061488f565b60405180910390fd5b6103e86005611d7961101d565b611d8391906142c8565b611d8d9190614339565b821115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690614921565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e7a6125a5565b600b60039054906101000a900460ff1615611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906149b3565b60405180910390fd5b7f000000000000000000000000a86894db80a0815b87f25760f31bb00555a22fc973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611f665750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614a45565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b6120146125a5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614ad7565b60405180910390fd5b61208c8161333a565b50565b60135481565b600a5481565b6120a36125a5565b600b60039054906101000a900460ff16156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea906149b3565b60405180910390fd5b7f000000000000000000000000a86894db80a0815b87f25760f31bb00555a22fc973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561218f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614a45565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122316125a5565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161226c91906140bb565b602060405180830381865afa158015612289573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ad9190614687565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016122ea9291906146b4565b6020604051808303816000875af1158015612309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232d91906146f2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612374573d6000803e3d6000fd5b5050565b60175481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614bfb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125989190613f97565b60405180910390a3505050565b6125ad6123d4565b73ffffffffffffffffffffffffffffffffffffffff166125cb611611565b73ffffffffffffffffffffffffffffffffffffffff1614612621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261890614c67565b60405180910390fd5b565b600061262f8484611deb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126a9578181101561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614cd3565b60405180910390fd5b6126a884848484036123dc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614df7565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614e63565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614ecf565b60405180910390fd5b601b60009054906101000a900460ff161561294957601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90614f61565b60405180910390fd5b5b600081036129625761295d838360006134a1565b613335565b600b60009054906101000a900460ff1615612e5d5761297f611611565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ed57506129bd611611565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a265750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a60575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a795750600560149054906101000a900460ff16155b15612e5c57600b60019054906101000a900460ff16612b7357601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b335750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990614fcd565b60405180910390fd5b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c165750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cbd57600854811115612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c579061505f565b60405180910390fd5b600a54612c6c8361126d565b82612c7791906143fc565b1115612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf906150cb565b60405180910390fd5b612e5b565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d605750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612daf57600854811115612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da19061515d565b60405180910390fd5b612e5a565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e5957600a54612e0c8361126d565b82612e1791906143fc565b1115612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906150cb565b60405180910390fd5b5b5b5b5b5b6000612e683061126d565b905060006009548210159050808015612e8d5750600b60029054906101000a900460ff165b8015612ea65750600560149054906101000a900460ff16155b8015612efc5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f525750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fa85750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fec576001600560146101000a81548160ff021916908315150217905550612fd0613717565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130a25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130ac57600090505b6000811561332557601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310f57506000601154115b156131dc5761313c606461312e60115488613a3090919063ffffffff16565b613a4690919063ffffffff16565b90506011546013548261314f91906142c8565b6131599190614339565b6016600082825461316a91906143fc565b925050819055506011546014548261318291906142c8565b61318c9190614339565b6017600082825461319d91906143fc565b92505081905550601154601254826131b591906142c8565b6131bf9190614339565b601560008282546131d091906143fc565b92505081905550613301565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561323757506000600d54115b15613300576132646064613256600d5488613a3090919063ffffffff16565b613a4690919063ffffffff16565b9050600d54600f548261327791906142c8565b6132819190614339565b6016600082825461329291906143fc565b92505081905550600d54601054826132aa91906142c8565b6132b49190614339565b601760008282546132c591906143fc565b92505081905550600d54600e54826132dd91906142c8565b6132e79190614339565b601560008282546132f891906143fc565b925050819055505b5b6000811115613316576133158730836134a1565b5b8085613322919061517d565b94505b6133308787876134a1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350790614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361357f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357690614df7565b60405180910390fd5b61358a838383613a5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360790615223565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136fe9190613f97565b60405180910390a3613711848484613a61565b50505050565b60006137223061126d565b9050600060175460155460165461373991906143fc565b61374391906143fc565b90506000808314806137555750600082145b1561376257505050613a2e565b601460095461377191906142c8565b83111561378a57601460095461378791906142c8565b92505b60006002836016548661379d91906142c8565b6137a79190614339565b6137b19190614339565b905060006137c88286613a6690919063ffffffff16565b905060004790506137d882613a7c565b60006137ed8247613a6690919063ffffffff16565b9050600061383160026016546138039190614339565b8861380e919061517d565b61382360155485613a3090919063ffffffff16565b613a4690919063ffffffff16565b9050600061387560026016546138479190614339565b89613852919061517d565b61386760175486613a3090919063ffffffff16565b613a4690919063ffffffff16565b90506000818385613886919061517d565b613890919061517d565b9050600060168190555060006015819055506000601781905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516138f090614461565b60006040518083038185875af1925050503d806000811461392d576040519150601f19603f3d011682016040523d82523d6000602084013e613932565b606091505b5050809850506000871180156139485750600081115b15613995576139578782613cb9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161398c93929190615243565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139db90614461565b60006040518083038185875af1925050503d8060008114613a18576040519150601f19603f3d011682016040523d82523d6000602084013e613a1d565b606091505b505080985050505050505050505050505b565b60008183613a3e91906142c8565b905092915050565b60008183613a549190614339565b905092915050565b505050565b505050565b60008183613a74919061517d565b905092915050565b6000600267ffffffffffffffff811115613a9957613a9861527a565b5b604051908082528060200260200182016040528015613ac75781602001602082028036833780820191505090505b5090503081600081518110613adf57613ade6152a9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ba891906152ed565b81600181518110613bbc57613bbb6152a9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c21307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123dc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c83959493929190615413565b600060405180830381600087803b158015613c9d57600080fd5b505af1158015613cb1573d6000803e3d6000fd5b505050505050565b613ce4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123dc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613d2e611611565b426040518863ffffffff1660e01b8152600401613d509695949392919061546d565b60606040518083038185885af1158015613d6e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d9391906154ce565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd4578082015181840152602081019050613db9565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfc82613d9a565b613e068185613da5565b9350613e16818560208601613db6565b613e1f81613de0565b840191505092915050565b60006020820190508181036000830152613e448184613df1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e7c82613e51565b9050919050565b613e8c81613e71565b8114613e9757600080fd5b50565b600081359050613ea981613e83565b92915050565b6000819050919050565b613ec281613eaf565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b60008060408385031215613efc57613efb613e4c565b5b6000613f0a85828601613e9a565b9250506020613f1b85828601613ed0565b9150509250929050565b60008115159050919050565b613f3a81613f25565b82525050565b6000602082019050613f556000830184613f31565b92915050565b600060208284031215613f7157613f70613e4c565b5b6000613f7f84828501613e9a565b91505092915050565b613f9181613eaf565b82525050565b6000602082019050613fac6000830184613f88565b92915050565b6000819050919050565b6000613fd7613fd2613fcd84613e51565b613fb2565b613e51565b9050919050565b6000613fe982613fbc565b9050919050565b6000613ffb82613fde565b9050919050565b61400b81613ff0565b82525050565b60006020820190506140266000830184614002565b92915050565b60006020828403121561404257614041613e4c565b5b600061405084828501613ed0565b91505092915050565b60008060006060848603121561407257614071613e4c565b5b600061408086828701613e9a565b935050602061409186828701613e9a565b92505060406140a286828701613ed0565b9150509250925092565b6140b581613e71565b82525050565b60006020820190506140d060008301846140ac565b92915050565b600060ff82169050919050565b6140ec816140d6565b82525050565b600060208201905061410760008301846140e3565b92915050565b61411681613f25565b811461412157600080fd5b50565b6000813590506141338161410d565b92915050565b600080604083850312156141505761414f613e4c565b5b600061415e85828601613e9a565b925050602061416f85828601614124565b9150509250929050565b60008060006060848603121561419257614191613e4c565b5b60006141a086828701613ed0565b93505060206141b186828701613ed0565b92505060406141c286828701613ed0565b9150509250925092565b6000602082840312156141e2576141e1613e4c565b5b60006141f084828501614124565b91505092915050565b600080604083850312156142105761420f613e4c565b5b600061421e85828601613e9a565b925050602061422f85828601613e9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428057607f821691505b60208210810361429357614292614239565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142d382613eaf565b91506142de83613eaf565b92508282026142ec81613eaf565b9150828204841483151761430357614302614299565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434482613eaf565b915061434f83613eaf565b92508261435f5761435e61430a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006143c6602f83613da5565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b600061440782613eaf565b915061441283613eaf565b925082820190508082111561442a57614429614299565b5b92915050565b600081905092915050565b50565b600061444b600083614430565b91506144568261443b565b600082019050919050565b600061446c8261443e565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b60006144ac601683613da5565b91506144b782614476565b602082019050919050565b600060208201905081810360008301526144db8161449f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061453e603983613da5565b9150614549826144e2565b604082019050919050565b6000602082019050818103600083015261456d81614531565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145d0602583613da5565b91506145db82614574565b604082019050919050565b600060208201905081810360008301526145ff816145c3565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061463c601a83613da5565b915061464782614606565b602082019050919050565b6000602082019050818103600083015261466b8161462f565b9050919050565b60008151905061468181613eb9565b92915050565b60006020828403121561469d5761469c613e4c565b5b60006146ab84828501614672565b91505092915050565b60006040820190506146c960008301856140ac565b6146d66020830184613f88565b9392505050565b6000815190506146ec8161410d565b92915050565b60006020828403121561470857614707613e4c565b5b6000614716848285016146dd565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000614755601783613da5565b91506147608261471f565b602082019050919050565b6000602082019050818103600083015261478481614748565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b60006147e7602483613da5565b91506147f28261478b565b604082019050919050565b60006020820190508181036000830152614816816147da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614879603583613da5565b91506148848261481d565b604082019050919050565b600060208201905081810360008301526148a88161486c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061490b603483613da5565b9150614916826148af565b604082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061499d602183613da5565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b6000614a2f602e83613da5565b9150614a3a826149d3565b604082019050919050565b60006020820190508181036000830152614a5e81614a22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ac1602683613da5565b9150614acc82614a65565b604082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b53602483613da5565b9150614b5e82614af7565b604082019050919050565b60006020820190508181036000830152614b8281614b46565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614be5602283613da5565b9150614bf082614b89565b604082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c51602083613da5565b9150614c5c82614c1b565b602082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614cbd601d83613da5565b9150614cc882614c87565b602082019050919050565b60006020820190508181036000830152614cec81614cb0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d4f602583613da5565b9150614d5a82614cf3565b604082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614de1602383613da5565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b6000614e4d601283613da5565b9150614e5882614e17565b602082019050919050565b60006020820190508181036000830152614e7c81614e40565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000614eb9601483613da5565b9150614ec482614e83565b602082019050919050565b60006020820190508181036000830152614ee881614eac565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000614f4b602983613da5565b9150614f5682614eef565b604082019050919050565b60006020820190508181036000830152614f7a81614f3e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614fb7601683613da5565b9150614fc282614f81565b602082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615049603583613da5565b915061505482614fed565b604082019050919050565b600060208201905081810360008301526150788161503c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150b5601383613da5565b91506150c08261507f565b602082019050919050565b600060208201905081810360008301526150e4816150a8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615147603683613da5565b9150615152826150eb565b604082019050919050565b600060208201905081810360008301526151768161513a565b9050919050565b600061518882613eaf565b915061519383613eaf565b92508282039050818111156151ab576151aa614299565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061520d602683613da5565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b60006060820190506152586000830186613f88565b6152656020830185613f88565b6152726040830184613f88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152e781613e83565b92915050565b60006020828403121561530357615302613e4c565b5b6000615311848285016152d8565b91505092915050565b6000819050919050565b600061533f61533a6153358461531a565b613fb2565b613eaf565b9050919050565b61534f81615324565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61538a81613e71565b82525050565b600061539c8383615381565b60208301905092915050565b6000602082019050919050565b60006153c082615355565b6153ca8185615360565b93506153d583615371565b8060005b838110156154065781516153ed8882615390565b97506153f8836153a8565b9250506001810190506153d9565b5085935050505092915050565b600060a0820190506154286000830188613f88565b6154356020830187615346565b818103604083015261544781866153b5565b905061545660608301856140ac565b6154636080830184613f88565b9695505050505050565b600060c08201905061548260008301896140ac565b61548f6020830188613f88565b61549c6040830187615346565b6154a96060830186615346565b6154b660808301856140ac565b6154c360a0830184613f88565b979650505050505050565b6000806000606084860312156154e7576154e6613e4c565b5b60006154f586828701614672565b935050602061550686828701614672565b925050604061551786828701614672565b915050925092509256fea2646970667358221220bd693e1bd114c4c79ae3afe15436f8729021027a1daf19199c0e6a589607422264736f6c63430008120033

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.