ETH Price: $2,528.84 (+3.59%)

Token

ATH Protocol (ATH)
 

Overview

Max Total Supply

21,000,000 ATH

Holders

160

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,552.464920154226144112 ATH

Value
$0.00
0xb553386947c843ac9887cd8e9a9b76b3a02181a9
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:
Ever

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Ever.sol
/**

* All Time High - algorithmic ERC20 token with constant growth formula

Website: https://athprotocol.com/
Twitter : https://twitter.com/ATHprotocol
Telegram: https://t.me/ATH_Protocol

*/

pragma solidity 0.8.10;

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

interface Hodl {
    function getBalance() external view returns (uint256);
    function sendReward(address to, uint256 amount) external returns (bool result);
}

contract Ever is ERC20, Ownable {
    using SafeMath for uint256;
    Hodl private _hodler;
    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;
    address public _usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public _router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public _uniswapV3Router = 0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45;
    address public _feeWallet;

    uint256 public _supportLevel;
    uint256 public _floorSellFee;
    uint256 public _marketingFee;
    uint256 public _liquidityFee;
    uint256 public _tokensForLiquidity;
    uint256 public _supportPercentBelowATH;
    uint256 public _addLiquidityAtAmount;
    uint256 public _maxWallet;

    bool public _tradingActive;
    bool public _limitsInEffect;
    bool private _isSwappingBack;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) private _isNonUniswapExchange;
    mapping(address => bool) private _isBlackListedSender;
    mapping(address => bool) private _isBlackListed;

    event IsBuy(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event IsSell(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event IsLiquidityOperation(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event LiquidityAdded(uint256 usdcAmount, uint256 tokenAmount);
    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("ATH Protocol", "ATH") {
        _uniswapV2Router = IUniswapV2Router02(_router);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _usdc);
        _supportLevel = 0;
        _supportPercentBelowATH = 5;
        _floorSellFee = 30;
        _marketingFee = 2;
        _liquidityFee = 1;
        _addLiquidityAtAmount = 1000e18;
    }

    function init(address hodler, address owner) public onlyOwner {
        require(owner != address(0), "Address doesn't exist");

        _hodler = Hodl(hodler);
        _feeWallet = address(owner);
        excludeFromFees(address(owner), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        uint256 totalSupply = 21e6 * 1e18;
        _maxWallet = totalSupply * 3 / 100;

        _mint(owner, totalSupply);
    }

    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(!_isBlackListed[to] || !_isBlackListed[from], "Address is blacklisted");
        require(!_isBlackListedSender[msg.sender], "msg.sender is blacklisted");

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

        (bool isSell, bool isBuy, bool isLiquidityOperation) = getTransactionType(from, to, amount);

        if (isLiquidityOperation || _isSwappingBack) {
            super._transfer(from, to, amount);
            return;
        }

        bool isSwap = isBuy || isSell;
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];

        if(!_tradingActive && !isExcludedFromFee && isSwap) require(false, "Trading is not yet active");

        bool shouldTakeFee = _tradingActive && isSwap;
        if (isExcludedFromFee) shouldTakeFee = false;

        (uint buyerRewardInUSDC, uint sellFeeInUSDC, uint tokensForLiquidity, uint tokensForMarketing) = calculateNewLevel(amount, isBuy);

        uint transferableAmount = amount;
        uint tokensToSellForRewards = 0;
        if (shouldTakeFee) {
            if (tokensForMarketing > 0 || tokensForLiquidity > 0) {
                super._transfer(from, _feeWallet, tokensForMarketing);
                super._transfer(from, address(this), tokensForLiquidity);
                _tokensForLiquidity += tokensForLiquidity;
                transferableAmount -= tokensForMarketing.add(tokensForLiquidity);
            }
            if (sellFeeInUSDC > 0) {
                tokensToSellForRewards = getAmountOutForUsdcSell(sellFeeInUSDC);
                super._transfer(from, address(this), tokensToSellForRewards);
                transferableAmount -= tokensToSellForRewards;
            }
        }

        if(_limitsInEffect && (!isExcludedFromFee || !_isExcludedFromMaxWallet[to])) {
            if(isBuy || !isSwap) require(transferableAmount + balanceOf(to) <= _maxWallet, "Max wallet exceeded");
        }

        if (isSell && !_isSwappingBack) {
            _isSwappingBack = true;
            swapBack(tokensToSellForRewards);
            _isSwappingBack = false;
        }

        if (!isSwap && !isLiquidityOperation && !isExcludedFromFee && _tokensForLiquidity >= _addLiquidityAtAmount) {
                bool added = addLiquidity(_tokensForLiquidity);
                if(added) _tokensForLiquidity = 0;
        }

        if (buyerRewardInUSDC > 0) {
            _hodler.sendReward(to, buyerRewardInUSDC);
        }

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

    function getTransactionType(address from, address to, uint256 amount) private returns (bool, bool, bool) {
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        uint newUsdcBalance = ERC20(_usdc).balanceOf(_uniswapV2Pair);

        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        bool isSell = false;
        bool isLiquidityOperation = false;

        if (_isNonUniswapExchange[msg.sender]) {
            isBuy = from == _uniswapV2Pair;
            isSell = to == _uniswapV2Pair;
        } else {
            if ((msg.sender == address(_uniswapV2Router) || msg.sender == address(_uniswapV3Router)) && to == _uniswapV2Pair) {
                if (newUsdcBalance > reserve0) isLiquidityOperation = true;
                else isSell = true;
            }

            if (newUsdcBalance < reserve0 && to != _uniswapV2Pair) {
                if (isBuy) {
                    isLiquidityOperation = true;
                    isBuy = false;
                }
            }
        }

        if (isBuy) emit IsBuy(msg.sender, from, to, amount, newUsdcBalance);
        if (isSell) emit IsSell(msg.sender, from, to, amount, newUsdcBalance);
        if (isLiquidityOperation) emit IsLiquidityOperation(msg.sender, from, to, amount, newUsdcBalance);

        return (isSell, isBuy, isLiquidityOperation);
    }

    function getAmountOutForUsdcSell(uint usdcIn) internal returns (uint tokensReceived) {
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        tokensReceived = getAmountIn(usdcIn, reserve1, reserve0);
    }

    function getNewPrice(bool isBuy, uint amount) internal returns (uint, uint) {
        uint newPrice = 0;
        uint usdcSpent = 0;
        uint usdcReceived = 0;
        uint usdcFee = 0;
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        if (isBuy) {
            usdcSpent = getAmountIn(amount, reserve0, reserve1);
            newPrice = getAmountOut(1e18, reserve1.sub(amount), reserve0.add(usdcSpent));
        } else {
            usdcReceived = getAmountOut(amount, reserve1, reserve0);
            newPrice = getAmountOut(1e18, reserve1.add(amount), reserve0.sub(usdcReceived));
            usdcFee = usdcReceived.mul(_floorSellFee).div(100);
        }
        return (newPrice, usdcFee);
    }

    function calculateNewLevel(uint amount, bool isBuy) internal returns (uint, uint, uint, uint) {
        (uint newPrice, uint usdcFee) = getNewPrice(isBuy, amount);
        uint currentPrice = getCurrentPrice();

        uint buyerRewardInUSDC = 0;
        uint sellFeeInUSDC = 0;
        uint tokensForLiquidity = 0;
        uint tokensForMarketing = 0;

        if (newPrice < _supportLevel) {
            if (isBuy) {
                uint priceMovePercentage = newPrice.sub(currentPrice).mul(100000000).div(_supportLevel.sub(currentPrice));
                uint usdcRewardsBank = _hodler.getBalance();
                if (usdcRewardsBank > 0) {
                    buyerRewardInUSDC = priceMovePercentage.mul(usdcRewardsBank).div(100000000);
                }
            } else {
                sellFeeInUSDC = usdcFee;
            }
        } else if (newPrice >= _supportLevel && currentPrice < _supportLevel) {
            buyerRewardInUSDC = _hodler.getBalance();
        } else {
            uint256 numerator = amount.div(100);
            tokensForLiquidity = numerator.mul(_liquidityFee);
            tokensForMarketing = numerator.mul(_marketingFee);
        }

        if (newPrice > _supportLevel) {
            uint tempSupport = newPrice.sub(newPrice.div(100).mul(_supportPercentBelowATH));
            if (tempSupport > _supportLevel) _supportLevel = tempSupport;
        }

        return (buyerRewardInUSDC, sellFeeInUSDC, tokensForLiquidity, tokensForMarketing);
    }

    function swapBack(uint tokenAmount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0 || tokenAmount == 0) return;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _usdc;

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

        _uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(_hodler),
            block.timestamp
        );
    }

    function getCurrentPrice() public view returns (uint price) {
        (uint256 reserve0, uint256 reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        price = getAmountOut(1e18, reserve1, reserve0);
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    function addLiquidity(uint256 tokenAmount) private returns (bool) {
        if (tokenAmount > balanceOf(address(this))) return false;

        uint256 tokensToBeAdded = tokenAmount.div(2);

        uint256 myUSDCBefore = ERC20(_usdc).balanceOf(address(_hodler));
        _isSwappingBack = true;
        swapBack(tokensToBeAdded);
        _isSwappingBack = false;
        uint256 myUSDCAfter = ERC20(_usdc).balanceOf(address(_hodler));
        uint256 usdcToAdd = myUSDCAfter.sub(myUSDCBefore);
        _hodler.sendReward(address(this), usdcToAdd);

        _approve(address(this), address(_uniswapV2Router), tokensToBeAdded);
        ERC20(_usdc).approve(address(_uniswapV2Router), usdcToAdd);

        _uniswapV2Router.addLiquidity(
            address(_usdc),
            address(this),
            usdcToAdd,
            tokensToBeAdded,
            0,
            0,
            _feeWallet,
            block.timestamp
        );

        emit LiquidityAdded(usdcToAdd, tokensToBeAdded);
        return true;
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _limitsInEffect = true;
        _supportLevel = getCurrentPrice();
    }

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

    function excludeFromMaxWallet(address account, bool excluded) public onlyOwner {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function setLimitsInEffect(bool limitsInEffect) public onlyOwner {
        _limitsInEffect = limitsInEffect;
    }

    function setFeeWallet(address feeWallet) public onlyOwner {
        _feeWallet = feeWallet;
    }

    function setSupportLevel(uint256 supportLevel) public onlyOwner {
        _supportLevel = supportLevel;
    }

    function setNonUniswapExchange(address account, bool exists) public onlyOwner {
        _isNonUniswapExchange[account] = exists;
    }

    function setFloorSellFee(uint256 floorSellFee) public onlyOwner {
        _floorSellFee = floorSellFee;
    }

    function setSupportPercentBelowATH(uint256 supportPercentBelowATH) public onlyOwner {
        _supportPercentBelowATH = supportPercentBelowATH;
    }

    function setAddLiquidityAtAmount(uint256 addLiquidityAtAmount) public onlyOwner {
        _addLiquidityAtAmount = addLiquidityAtAmount;
    }

    function SetUniswapV3Router(address uniswapV3Router) public onlyOwner {
        _uniswapV3Router = uniswapV3Router;
    }

    function setTokensForLiquidity(uint256 tokensForLiquidity) public onlyOwner {
        _tokensForLiquidity = tokensForLiquidity;
    }

    function setBlackListed(address sender, bool exists) public onlyOwner {
        _isBlackListed[sender] = exists;
    }

    function setBlackListedSender(address sender, bool exists) public onlyOwner {
        _isBlackListedSender[sender] = exists;
    }

    function setHodler(address hodler) public onlyOwner {
        _hodler = Hodl(hodler);
    }

    function rescue(address token) public onlyOwner {
        ERC20 Token = ERC20(token);
        uint256 balance = Token.balanceOf(address(this));
        if(balance > 0) Token.transfer(_msgSender(), balance);
    }

    function setFees(uint256 marketingFee, uint256 liquidityFee) public onlyOwner {
        require(marketingFee.add(liquidityFee) <= 10, "Fees can't be greater than 10%");
        _marketingFee = marketingFee;
        _liquidityFee = liquidityFee;
    }

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

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 substraction 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 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsLiquidityOperation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"usdcAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"uniswapV3Router","type":"address"}],"name":"SetUniswapV3Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_addLiquidityAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_floorSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supportLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supportPercentBelowATH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV3Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_usdc","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hodler","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"addLiquidityAtAmount","type":"uint256"}],"name":"setAddLiquidityAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setBlackListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setBlackListedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeWallet","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"floorSellFee","type":"uint256"}],"name":"setFloorSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hodler","type":"address"}],"name":"setHodler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"limitsInEffect","type":"bool"}],"name":"setLimitsInEffect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setNonUniswapExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supportLevel","type":"uint256"}],"name":"setSupportLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supportPercentBelowATH","type":"uint256"}],"name":"setSupportPercentBelowATH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"}],"name":"setTokensForLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507368b3465833fb72a70ecdf485e0e4c7bd8665fc45600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011057600080fd5b506040518060400160405280600c81526020017f4154482050726f746f636f6c00000000000000000000000000000000000000008152506040518060400160405280600381526020017f4154480000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000195929190620004b8565b508060049080519060200190620001ae929190620004b8565b505050620001d1620001c5620003ea60201b60201c565b620003f260201b60201c565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c89190620005d2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200032692919062000615565b6020604051808303816000875af115801562000346573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036c9190620005d2565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055506005601281905550601e600e819055506002600f819055506001601081905550683635c9adc5dea00000601381905550620006a7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004c69062000671565b90600052602060002090601f016020900481019282620004ea576000855562000536565b82601f106200050557805160ff191683800117855562000536565b8280016001018555821562000536579182015b828111156200053557825182559160200191906001019062000518565b5b50905062000545919062000549565b5090565b5b80821115620005645760008160009055506001016200054a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200059a826200056d565b9050919050565b620005ac816200058d565b8114620005b857600080fd5b50565b600081519050620005cc81620005a1565b92915050565b600060208284031215620005eb57620005ea62000568565b5b6000620005fb84828501620005bb565b91505092915050565b6200060f816200058d565b82525050565b60006040820190506200062c600083018562000604565b6200063b602083018462000604565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068a57607f821691505b60208210811415620006a157620006a062000642565b5b50919050565b6154a580620006b76000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c8063791966ec11610167578063c0246668116100ce578063e73b90cd11610087578063e73b90cd146107c7578063eb91d37e146107e5578063edae876f14610803578063eed55a4e14610821578063f09a40161461083d578063f2fde38b14610859576102a0565b8063c02466681461070b578063d06e819b14610727578063d2fcc00114610743578063d8c452391461075f578063dad6a6881461077b578063dd62ed3e14610797576102a0565b80639400d11d116101205780639400d11d146106375780639549535e1461065357806395d89b4114610671578063a457c2d71461068f578063a9059cbb146106bf578063af808ab0146106ef576102a0565b8063791966ec1461059b57806382247ec0146105b9578063839006f2146105d75780638a8c523c146105f35780638da5cb5b146105fd57806390d49b9d1461061b576102a0565b8063395093511161020b578063659419a4116101c4578063659419a4146104ed57806365d248811461050b578063679ca6e9146105275780636bc87c3a1461054357806370a0823114610561578063715018a614610591576102a0565b8063395093511461042b5780633d5d2a211461045b5780634320bcf11461047757806344f59622146104955780635cd8c072146104b3578063646bf7ae146104cf576102a0565b806318160ddd1161025d57806318160ddd1461036757806322976e0d1461038557806323b872dd146103a357806327a14fc2146103d357806327f4d7d5146103ef578063313ce5671461040d576102a0565b8063040362ca146102a5578063058194db146102c357806306fdde03146102e1578063076aad2f146102ff578063095ea7b31461031b5780630b78f9c01461034b575b600080fd5b6102ad610875565b6040516102ba919061419b565b60405180910390f35b6102cb61087b565b6040516102d8919061419b565b60405180910390f35b6102e9610881565b6040516102f6919061424f565b60405180910390f35b610319600480360381019061031491906142a2565b610913565b005b6103356004803603810190610330919061432d565b610999565b6040516103429190614388565b60405180910390f35b610365600480360381019061036091906143a3565b6109b7565b005b61036f610a9b565b60405161037c919061419b565b60405180910390f35b61038d610aa5565b60405161039a919061419b565b60405180910390f35b6103bd60048036038101906103b891906143e3565b610aab565b6040516103ca9190614388565b60405180910390f35b6103ed60048036038101906103e891906142a2565b610ba3565b005b6103f7610cb2565b6040516104049190614388565b60405180910390f35b610415610cc5565b6040516104229190614452565b60405180910390f35b6104456004803603810190610440919061432d565b610cce565b6040516104529190614388565b60405180910390f35b6104756004803603810190610470919061446d565b610d7a565b005b61047f610e3a565b60405161048c91906144a9565b60405180910390f35b61049d610e60565b6040516104aa919061419b565b60405180910390f35b6104cd60048036038101906104c891906144f0565b610e66565b005b6104d7610f3d565b6040516104e4919061419b565b60405180910390f35b6104f5610f43565b60405161050291906144a9565b60405180910390f35b610525600480360381019061052091906142a2565b610f69565b005b610541600480360381019061053c9190614530565b610fef565b005b61054b611088565b604051610558919061419b565b60405180910390f35b61057b6004803603810190610576919061446d565b61108e565b604051610588919061419b565b60405180910390f35b6105996110d6565b005b6105a361115e565b6040516105b091906144a9565b60405180910390f35b6105c1611184565b6040516105ce919061419b565b60405180910390f35b6105f160048036038101906105ec919061446d565b61118a565b005b6105fb61131e565b005b6106056113e0565b60405161061291906144a9565b60405180910390f35b6106356004803603810190610630919061446d565b61140a565b005b610651600480360381019061064c91906142a2565b6114ca565b005b61065b611550565b604051610668919061419b565b60405180910390f35b610679611556565b604051610686919061424f565b60405180910390f35b6106a960048036038101906106a4919061432d565b6115e8565b6040516106b69190614388565b60405180910390f35b6106d960048036038101906106d4919061432d565b6116d3565b6040516106e69190614388565b60405180910390f35b610709600480360381019061070491906144f0565b6116f1565b005b610725600480360381019061072091906144f0565b6117c8565b005b610741600480360381019061073c91906142a2565b61189f565b005b61075d600480360381019061075891906144f0565b611925565b005b6107796004803603810190610774919061446d565b6119fc565b005b610795600480360381019061079091906142a2565b611abc565b005b6107b160048036038101906107ac919061455d565b611b42565b6040516107be919061419b565b60405180910390f35b6107cf611bc9565b6040516107dc9190614388565b60405180910390f35b6107ed611bdc565b6040516107fa919061419b565b60405180910390f35b61080b611cb1565b60405161081891906144a9565b60405180910390f35b61083b600480360381019061083691906144f0565b611cd7565b005b6108576004803603810190610852919061455d565b611dae565b005b610873600480360381019061086e919061446d565b611f7d565b005b60125481565b60135481565b606060038054610890906145cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc906145cc565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b61091b612075565b73ffffffffffffffffffffffffffffffffffffffff166109396113e0565b73ffffffffffffffffffffffffffffffffffffffff161461098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061464a565b60405180910390fd5b8060118190555050565b60006109ad6109a6612075565b848461207d565b6001905092915050565b6109bf612075565b73ffffffffffffffffffffffffffffffffffffffff166109dd6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061464a565b60405180910390fd5b600a610a48828461224890919063ffffffff16565b1115610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906146b6565b60405180910390fd5b81600f81905550806010819055505050565b6000600254905090565b600f5481565b6000610ab884848461225e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b03612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614748565b60405180910390fd5b610b9785610b8f612075565b85840361207d565b60019150509392505050565b610bab612075565b73ffffffffffffffffffffffffffffffffffffffff16610bc96113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c169061464a565b60405180910390fd5b670de0b6b3a76400006103e86005610c35610a9b565b610c3f9190614797565b610c499190614820565b610c539190614820565b811015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c906148c3565b60405180910390fd5b670de0b6b3a764000081610ca99190614797565b60148190555050565b601560009054906101000a900460ff1681565b60006012905090565b6000610d70610cdb612075565b848460016000610ce9612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6b91906148e3565b61207d565b6001905092915050565b610d82612075565b73ffffffffffffffffffffffffffffffffffffffff16610da06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061464a565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b610e6e612075565b73ffffffffffffffffffffffffffffffffffffffff16610e8c6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061464a565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f71612075565b73ffffffffffffffffffffffffffffffffffffffff16610f8f6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061464a565b60405180910390fd5b80600d8190555050565b610ff7612075565b73ffffffffffffffffffffffffffffffffffffffff166110156113e0565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061464a565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110de612075565b73ffffffffffffffffffffffffffffffffffffffff166110fc6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111499061464a565b60405180910390fd5b61115c600061297b565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611192612075565b73ffffffffffffffffffffffffffffffffffffffff166111b06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061464a565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124691906144a9565b602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611287919061494e565b90506000811115611319578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6112b6612075565b836040518363ffffffff1660e01b81526004016112d492919061497b565b6020604051808303816000875af11580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131791906149b9565b505b505050565b611326612075565b73ffffffffffffffffffffffffffffffffffffffff166113446113e0565b73ffffffffffffffffffffffffffffffffffffffff161461139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061464a565b60405180910390fd5b6001601560006101000a81548160ff0219169083151502179055506001601560016101000a81548160ff0219169083151502179055506113d8611bdc565b600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611412612075565b73ffffffffffffffffffffffffffffffffffffffff166114306113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d9061464a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114d2612075565b73ffffffffffffffffffffffffffffffffffffffff166114f06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061464a565b60405180910390fd5b8060138190555050565b600d5481565b606060048054611565906145cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611591906145cc565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905090565b600080600160006115f7612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614a58565b60405180910390fd5b6116c86116bf612075565b8585840361207d565b600191505092915050565b60006116e76116e0612075565b848461225e565b6001905092915050565b6116f9612075565b73ffffffffffffffffffffffffffffffffffffffff166117176113e0565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061464a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117d0612075565b73ffffffffffffffffffffffffffffffffffffffff166117ee6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061464a565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118a7612075565b73ffffffffffffffffffffffffffffffffffffffff166118c56113e0565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119129061464a565b60405180910390fd5b8060128190555050565b61192d612075565b73ffffffffffffffffffffffffffffffffffffffff1661194b6113e0565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061464a565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a04612075565b73ffffffffffffffffffffffffffffffffffffffff16611a226113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061464a565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac4612075565b73ffffffffffffffffffffffffffffffffffffffff16611ae26113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061464a565b60405180910390fd5b80600e8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560019054906101000a900460ff1681565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c729190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150611caa670de0b6b3a76400008284612a41565b9250505090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cdf612075565b73ffffffffffffffffffffffffffffffffffffffff16611cfd6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a9061464a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611db6612075565b73ffffffffffffffffffffffffffffffffffffffff16611dd46113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e219061464a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190614b99565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f278160016117c8565b611f323060016117c8565b611f3f61dead60016117c8565b60006a115eec47f6cf7e3500000090506064600382611f5e9190614797565b611f689190614820565b601481905550611f788282612ab5565b505050565b611f85612075565b73ffffffffffffffffffffffffffffffffffffffff16611fa36113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061464a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090614c2b565b60405180910390fd5b6120728161297b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614d4f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161223b919061419b565b60405180910390a3505050565b6000818361225691906148e3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614de1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614e73565b60405180910390fd5b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806123e15750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790614edf565b60405180910390fd5b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490614f4b565b60405180910390fd5b60008114156124c7576124c283836000612c15565b612976565b60008060006124d7868686612e96565b92509250925080806124f55750601560029054906101000a900460ff165b1561250d57612505868686612c15565b505050612976565b600082806125185750835b90506000601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125bd5750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050601560009054906101000a900460ff161580156125da575080155b80156125e35750815b1561262a576000612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614fb7565b60405180910390fd5b5b6000601560009054906101000a900460ff1680156126455750825b9050811561265257600090505b6000806000806126628b8a61347f565b935093509350935060008b90506000861561272c5760008311806126865750600084115b156126fd576126b88f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612c15565b6126c38f3086612c15565b83601160008282546126d591906148e3565b925050819055506126ef848461224890919063ffffffff16565b826126fa9190614fd7565b91505b600085111561272b5761270f85613756565b905061271c8f3083612c15565b80826127289190614fd7565b91505b5b601560019054906101000a900460ff16801561279b575087158061279a5750601760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b15612809578a806127aa575088155b15612808576014546127bb8f61108e565b836127c691906148e3565b1115612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90615057565b60405180910390fd5b5b5b8b80156128235750601560029054906101000a900460ff16155b15612868576001601560026101000a81548160ff02191690831515021790555061284c81613825565b6000601560026101000a81548160ff0219169083151502179055505b88158015612874575089155b801561287e575087155b801561288e575060135460115410155b156128b35760006128a0601154613a45565b905080156128b15760006011819055505b505b600086111561295e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a418f886040518363ffffffff1660e01b815260040161291992919061497b565b6020604051808303816000875af1158015612938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295c91906149b9565b505b6129698f8f84612c15565b5050505050505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080612a596103e586613f1e90919063ffffffff16565b90506000612a708483613f1e90919063ffffffff16565b90506000612a9b83612a8d6103e889613f1e90919063ffffffff16565b61224890919063ffffffff16565b90508082612aa99190614820565b93505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c906150c3565b60405180910390fd5b612b3160008383613f34565b8060026000828254612b4391906148e3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9891906148e3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612bfd919061419b565b60405180910390a3612c1160008383613f39565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614de1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614e73565b60405180910390fd5b612d00838383613f34565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d90615155565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e1991906148e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e7d919061419b565b60405180910390a3612e90848484613f39565b50505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2f9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612fd391906144a9565b602060405180830381865afa158015612ff0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613014919061494e565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156130c35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b9050600080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131c557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16149250600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16149150613356565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061326e5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80156132c75750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16145b156132e357858411156132dd57600190506132e2565b600191505b5b85841080156133405750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614155b156133555782156133545760019050600092505b5b5b82156133b1573373ffffffffffffffffffffffffffffffffffffffff167f860a37deac811ce967064ae65bd58706e46bfb2d30ce3fac7967c12c70ce8c5b8d8d8d886040516133a89493929190615175565b60405180910390a25b811561340c573373ffffffffffffffffffffffffffffffffffffffff167fa7be8720477542897f75d79b729696a5831033a1154ce589e584bd15900f120c8d8d8d886040516134039493929190615175565b60405180910390a25b8015613467573373ffffffffffffffffffffffffffffffffffffffff167f93514ff650de2ed280446a047fdc4e11536a0242e0ae975dd9bce8c5d24c952d8d8d8d8860405161345e9493929190615175565b60405180910390a25b81838298509850985050505050505093509350939050565b6000806000806000806134928789613f3e565b9150915060006134a0611bdc565b9050600080600080600d548710156135e5578b156135dc5760006135096134d287600d546140d590919063ffffffff16565b6134fb6305f5e1006134ed8a8d6140d590919063ffffffff16565b613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561357a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061359e919061494e565b905060008111156135d5576135d26305f5e1006135c48385613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b95505b50506135e0565b8592505b6136de565b600d5487101580156135f85750600d5485105b1561369557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561366a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061368e919061494e565b93506136dd565b60006136ab60648f6140eb90919063ffffffff16565b90506136c260105482613f1e90919063ffffffff16565b92506136d9600f5482613f1e90919063ffffffff16565b9150505b5b600d5487111561373a57600061372461371560125461370760648c6140eb90919063ffffffff16565b613f1e90919063ffffffff16565b896140d590919063ffffffff16565b9050600d548111156137385780600d819055505b505b838383839a509a509a509a505050505050505092959194509250565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156137c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ec9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff16915061381c848284614101565b92505050919050565b60006138303061108e565b905060008114806138415750600082145b1561384c5750613a42565b6000600267ffffffffffffffff811115613869576138686151ba565b5b6040519080825280602002602001820160405280156138975781602001602082028036833780820191505090505b50905030816000815181106138af576138ae6151e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106139205761391f6151e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561207d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613a0d95949392919061531b565b600060405180830381600087803b158015613a2757600080fd5b505af1158015613a3b573d6000803e3d6000fd5b5050505050505b50565b6000613a503061108e565b821115613a605760009050613f19565b6000613a766002846140eb90919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613af791906144a9565b602060405180830381865afa158015613b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b38919061494e565b90506001601560026101000a81548160ff021916908315150217905550613b5e82613825565b6000601560026101000a81548160ff0219169083151502179055506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613bf891906144a9565b602060405180830381865afa158015613c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c39919061494e565b90506000613c5083836140d590919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a4130836040518363ffffffff1660e01b8152600401613caf92919061497b565b6020604051808303816000875af1158015613cce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf291906149b9565b50613d2030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168661207d565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613d9f92919061497b565b6020604051808303816000875af1158015613dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613de291906149b9565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308488600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518963ffffffff1660e01b8152600401613e91989796959493929190615375565b6060604051808303816000875af1158015613eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ed491906153f3565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8185604051613f08929190615446565b60405180910390a160019450505050505b919050565b60008183613f2c9190614797565b905092915050565b505050565b505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fdb9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150891561405157614011898383614101565b945061404a670de0b6b3a76400006140328b846140d590919063ffffffff16565b614045888661224890919063ffffffff16565b612a41565b95506140c2565b61405c898284612a41565b9350614095670de0b6b3a764000061407d8b8461224890919063ffffffff16565b61409087866140d590919063ffffffff16565b612a41565b95506140bf60646140b1600e5487613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b92505b8583975097505050505050509250929050565b600081836140e39190614fd7565b905092915050565b600081836140f99190614820565b905092915050565b60008061412b6103e861411d8787613f1e90919063ffffffff16565b613f1e90919063ffffffff16565b905060006141566103e561414888876140d590919063ffffffff16565b613f1e90919063ffffffff16565b9050614177600182846141699190614820565b61224890919063ffffffff16565b925050509392505050565b6000819050919050565b61419581614182565b82525050565b60006020820190506141b0600083018461418c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141f05780820151818401526020810190506141d5565b838111156141ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000614221826141b6565b61422b81856141c1565b935061423b8185602086016141d2565b61424481614205565b840191505092915050565b600060208201905081810360008301526142698184614216565b905092915050565b600080fd5b61427f81614182565b811461428a57600080fd5b50565b60008135905061429c81614276565b92915050565b6000602082840312156142b8576142b7614271565b5b60006142c68482850161428d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142fa826142cf565b9050919050565b61430a816142ef565b811461431557600080fd5b50565b60008135905061432781614301565b92915050565b6000806040838503121561434457614343614271565b5b600061435285828601614318565b92505060206143638582860161428d565b9150509250929050565b60008115159050919050565b6143828161436d565b82525050565b600060208201905061439d6000830184614379565b92915050565b600080604083850312156143ba576143b9614271565b5b60006143c88582860161428d565b92505060206143d98582860161428d565b9150509250929050565b6000806000606084860312156143fc576143fb614271565b5b600061440a86828701614318565b935050602061441b86828701614318565b925050604061442c8682870161428d565b9150509250925092565b600060ff82169050919050565b61444c81614436565b82525050565b60006020820190506144676000830184614443565b92915050565b60006020828403121561448357614482614271565b5b600061449184828501614318565b91505092915050565b6144a3816142ef565b82525050565b60006020820190506144be600083018461449a565b92915050565b6144cd8161436d565b81146144d857600080fd5b50565b6000813590506144ea816144c4565b92915050565b6000806040838503121561450757614506614271565b5b600061451585828601614318565b9250506020614526858286016144db565b9150509250929050565b60006020828403121561454657614545614271565b5b6000614554848285016144db565b91505092915050565b6000806040838503121561457457614573614271565b5b600061458285828601614318565b925050602061459385828601614318565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145e457607f821691505b602082108114156145f8576145f761459d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146346020836141c1565b915061463f826145fe565b602082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f466565732063616e27742062652067726561746572207468616e203130250000600082015250565b60006146a0601e836141c1565b91506146ab8261466a565b602082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006147326028836141c1565b915061473d826146d6565b604082019050919050565b6000602082019050818103600083015261476181614725565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a282614182565b91506147ad83614182565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147e6576147e5614768565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061482b82614182565b915061483683614182565b925082614846576148456147f1565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148ad6024836141c1565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b60006148ee82614182565b91506148f983614182565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614768565b5b828201905092915050565b60008151905061494881614276565b92915050565b60006020828403121561496457614963614271565b5b600061497284828501614939565b91505092915050565b6000604082019050614990600083018561449a565b61499d602083018461418c565b9392505050565b6000815190506149b3816144c4565b92915050565b6000602082840312156149cf576149ce614271565b5b60006149dd848285016149a4565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614a426025836141c1565b9150614a4d826149e6565b604082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b614a9b81614a78565b8114614aa657600080fd5b50565b600081519050614ab881614a92565b92915050565b600063ffffffff82169050919050565b614ad781614abe565b8114614ae257600080fd5b50565b600081519050614af481614ace565b92915050565b600080600060608486031215614b1357614b12614271565b5b6000614b2186828701614aa9565b9350506020614b3286828701614aa9565b9250506040614b4386828701614ae5565b9150509250925092565b7f4164647265737320646f65736e27742065786973740000000000000000000000600082015250565b6000614b836015836141c1565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c156026836141c1565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ca76024836141c1565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d396022836141c1565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dcb6025836141c1565b9150614dd682614d6f565b604082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5d6023836141c1565b9150614e6882614e01565b604082019050919050565b60006020820190508181036000830152614e8c81614e50565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b6000614ec96016836141c1565b9150614ed482614e93565b602082019050919050565b60006020820190508181036000830152614ef881614ebc565b9050919050565b7f6d73672e73656e64657220697320626c61636b6c697374656400000000000000600082015250565b6000614f356019836141c1565b9150614f4082614eff565b602082019050919050565b60006020820190508181036000830152614f6481614f28565b9050919050565b7f54726164696e67206973206e6f74207965742061637469766500000000000000600082015250565b6000614fa16019836141c1565b9150614fac82614f6b565b602082019050919050565b60006020820190508181036000830152614fd081614f94565b9050919050565b6000614fe282614182565b9150614fed83614182565b92508282101561500057614fff614768565b5b828203905092915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150416013836141c1565b915061504c8261500b565b602082019050919050565b6000602082019050818103600083015261507081615034565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006150ad601f836141c1565b91506150b882615077565b602082019050919050565b600060208201905081810360008301526150dc816150a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061513f6026836141c1565b915061514a826150e3565b604082019050919050565b6000602082019050818103600083015261516e81615132565b9050919050565b600060808201905061518a600083018761449a565b615197602083018661449a565b6151a4604083018561418c565b6151b1606083018461418c565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061524761524261523d84615218565b615222565b614182565b9050919050565b6152578161522c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615292816142ef565b82525050565b60006152a48383615289565b60208301905092915050565b6000602082019050919050565b60006152c88261525d565b6152d28185615268565b93506152dd83615279565b8060005b8381101561530e5781516152f58882615298565b9750615300836152b0565b9250506001810190506152e1565b5085935050505092915050565b600060a082019050615330600083018861418c565b61533d602083018761524e565b818103604083015261534f81866152bd565b905061535e606083018561449a565b61536b608083018461418c565b9695505050505050565b60006101008201905061538b600083018b61449a565b615398602083018a61449a565b6153a5604083018961418c565b6153b2606083018861418c565b6153bf608083018761524e565b6153cc60a083018661524e565b6153d960c083018561449a565b6153e660e083018461418c565b9998505050505050505050565b60008060006060848603121561540c5761540b614271565b5b600061541a86828701614939565b935050602061542b86828701614939565b925050604061543c86828701614939565b9150509250925092565b600060408201905061545b600083018561418c565b615468602083018461418c565b939250505056fea26469706673582212205f8444102bd5e71b249d08e9b2e209b3404308fa4f23a872b330fc2fca33107d64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c8063791966ec11610167578063c0246668116100ce578063e73b90cd11610087578063e73b90cd146107c7578063eb91d37e146107e5578063edae876f14610803578063eed55a4e14610821578063f09a40161461083d578063f2fde38b14610859576102a0565b8063c02466681461070b578063d06e819b14610727578063d2fcc00114610743578063d8c452391461075f578063dad6a6881461077b578063dd62ed3e14610797576102a0565b80639400d11d116101205780639400d11d146106375780639549535e1461065357806395d89b4114610671578063a457c2d71461068f578063a9059cbb146106bf578063af808ab0146106ef576102a0565b8063791966ec1461059b57806382247ec0146105b9578063839006f2146105d75780638a8c523c146105f35780638da5cb5b146105fd57806390d49b9d1461061b576102a0565b8063395093511161020b578063659419a4116101c4578063659419a4146104ed57806365d248811461050b578063679ca6e9146105275780636bc87c3a1461054357806370a0823114610561578063715018a614610591576102a0565b8063395093511461042b5780633d5d2a211461045b5780634320bcf11461047757806344f59622146104955780635cd8c072146104b3578063646bf7ae146104cf576102a0565b806318160ddd1161025d57806318160ddd1461036757806322976e0d1461038557806323b872dd146103a357806327a14fc2146103d357806327f4d7d5146103ef578063313ce5671461040d576102a0565b8063040362ca146102a5578063058194db146102c357806306fdde03146102e1578063076aad2f146102ff578063095ea7b31461031b5780630b78f9c01461034b575b600080fd5b6102ad610875565b6040516102ba919061419b565b60405180910390f35b6102cb61087b565b6040516102d8919061419b565b60405180910390f35b6102e9610881565b6040516102f6919061424f565b60405180910390f35b610319600480360381019061031491906142a2565b610913565b005b6103356004803603810190610330919061432d565b610999565b6040516103429190614388565b60405180910390f35b610365600480360381019061036091906143a3565b6109b7565b005b61036f610a9b565b60405161037c919061419b565b60405180910390f35b61038d610aa5565b60405161039a919061419b565b60405180910390f35b6103bd60048036038101906103b891906143e3565b610aab565b6040516103ca9190614388565b60405180910390f35b6103ed60048036038101906103e891906142a2565b610ba3565b005b6103f7610cb2565b6040516104049190614388565b60405180910390f35b610415610cc5565b6040516104229190614452565b60405180910390f35b6104456004803603810190610440919061432d565b610cce565b6040516104529190614388565b60405180910390f35b6104756004803603810190610470919061446d565b610d7a565b005b61047f610e3a565b60405161048c91906144a9565b60405180910390f35b61049d610e60565b6040516104aa919061419b565b60405180910390f35b6104cd60048036038101906104c891906144f0565b610e66565b005b6104d7610f3d565b6040516104e4919061419b565b60405180910390f35b6104f5610f43565b60405161050291906144a9565b60405180910390f35b610525600480360381019061052091906142a2565b610f69565b005b610541600480360381019061053c9190614530565b610fef565b005b61054b611088565b604051610558919061419b565b60405180910390f35b61057b6004803603810190610576919061446d565b61108e565b604051610588919061419b565b60405180910390f35b6105996110d6565b005b6105a361115e565b6040516105b091906144a9565b60405180910390f35b6105c1611184565b6040516105ce919061419b565b60405180910390f35b6105f160048036038101906105ec919061446d565b61118a565b005b6105fb61131e565b005b6106056113e0565b60405161061291906144a9565b60405180910390f35b6106356004803603810190610630919061446d565b61140a565b005b610651600480360381019061064c91906142a2565b6114ca565b005b61065b611550565b604051610668919061419b565b60405180910390f35b610679611556565b604051610686919061424f565b60405180910390f35b6106a960048036038101906106a4919061432d565b6115e8565b6040516106b69190614388565b60405180910390f35b6106d960048036038101906106d4919061432d565b6116d3565b6040516106e69190614388565b60405180910390f35b610709600480360381019061070491906144f0565b6116f1565b005b610725600480360381019061072091906144f0565b6117c8565b005b610741600480360381019061073c91906142a2565b61189f565b005b61075d600480360381019061075891906144f0565b611925565b005b6107796004803603810190610774919061446d565b6119fc565b005b610795600480360381019061079091906142a2565b611abc565b005b6107b160048036038101906107ac919061455d565b611b42565b6040516107be919061419b565b60405180910390f35b6107cf611bc9565b6040516107dc9190614388565b60405180910390f35b6107ed611bdc565b6040516107fa919061419b565b60405180910390f35b61080b611cb1565b60405161081891906144a9565b60405180910390f35b61083b600480360381019061083691906144f0565b611cd7565b005b6108576004803603810190610852919061455d565b611dae565b005b610873600480360381019061086e919061446d565b611f7d565b005b60125481565b60135481565b606060038054610890906145cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc906145cc565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b61091b612075565b73ffffffffffffffffffffffffffffffffffffffff166109396113e0565b73ffffffffffffffffffffffffffffffffffffffff161461098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061464a565b60405180910390fd5b8060118190555050565b60006109ad6109a6612075565b848461207d565b6001905092915050565b6109bf612075565b73ffffffffffffffffffffffffffffffffffffffff166109dd6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061464a565b60405180910390fd5b600a610a48828461224890919063ffffffff16565b1115610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906146b6565b60405180910390fd5b81600f81905550806010819055505050565b6000600254905090565b600f5481565b6000610ab884848461225e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b03612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614748565b60405180910390fd5b610b9785610b8f612075565b85840361207d565b60019150509392505050565b610bab612075565b73ffffffffffffffffffffffffffffffffffffffff16610bc96113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c169061464a565b60405180910390fd5b670de0b6b3a76400006103e86005610c35610a9b565b610c3f9190614797565b610c499190614820565b610c539190614820565b811015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c906148c3565b60405180910390fd5b670de0b6b3a764000081610ca99190614797565b60148190555050565b601560009054906101000a900460ff1681565b60006012905090565b6000610d70610cdb612075565b848460016000610ce9612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6b91906148e3565b61207d565b6001905092915050565b610d82612075565b73ffffffffffffffffffffffffffffffffffffffff16610da06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061464a565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b610e6e612075565b73ffffffffffffffffffffffffffffffffffffffff16610e8c6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061464a565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f71612075565b73ffffffffffffffffffffffffffffffffffffffff16610f8f6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061464a565b60405180910390fd5b80600d8190555050565b610ff7612075565b73ffffffffffffffffffffffffffffffffffffffff166110156113e0565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061464a565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110de612075565b73ffffffffffffffffffffffffffffffffffffffff166110fc6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111499061464a565b60405180910390fd5b61115c600061297b565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611192612075565b73ffffffffffffffffffffffffffffffffffffffff166111b06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061464a565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124691906144a9565b602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611287919061494e565b90506000811115611319578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6112b6612075565b836040518363ffffffff1660e01b81526004016112d492919061497b565b6020604051808303816000875af11580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131791906149b9565b505b505050565b611326612075565b73ffffffffffffffffffffffffffffffffffffffff166113446113e0565b73ffffffffffffffffffffffffffffffffffffffff161461139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061464a565b60405180910390fd5b6001601560006101000a81548160ff0219169083151502179055506001601560016101000a81548160ff0219169083151502179055506113d8611bdc565b600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611412612075565b73ffffffffffffffffffffffffffffffffffffffff166114306113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d9061464a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114d2612075565b73ffffffffffffffffffffffffffffffffffffffff166114f06113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061464a565b60405180910390fd5b8060138190555050565b600d5481565b606060048054611565906145cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611591906145cc565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905090565b600080600160006115f7612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614a58565b60405180910390fd5b6116c86116bf612075565b8585840361207d565b600191505092915050565b60006116e76116e0612075565b848461225e565b6001905092915050565b6116f9612075565b73ffffffffffffffffffffffffffffffffffffffff166117176113e0565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061464a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117d0612075565b73ffffffffffffffffffffffffffffffffffffffff166117ee6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061464a565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118a7612075565b73ffffffffffffffffffffffffffffffffffffffff166118c56113e0565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119129061464a565b60405180910390fd5b8060128190555050565b61192d612075565b73ffffffffffffffffffffffffffffffffffffffff1661194b6113e0565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061464a565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a04612075565b73ffffffffffffffffffffffffffffffffffffffff16611a226113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061464a565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac4612075565b73ffffffffffffffffffffffffffffffffffffffff16611ae26113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061464a565b60405180910390fd5b80600e8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560019054906101000a900460ff1681565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c729190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150611caa670de0b6b3a76400008284612a41565b9250505090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cdf612075565b73ffffffffffffffffffffffffffffffffffffffff16611cfd6113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a9061464a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611db6612075565b73ffffffffffffffffffffffffffffffffffffffff16611dd46113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e219061464a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190614b99565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f278160016117c8565b611f323060016117c8565b611f3f61dead60016117c8565b60006a115eec47f6cf7e3500000090506064600382611f5e9190614797565b611f689190614820565b601481905550611f788282612ab5565b505050565b611f85612075565b73ffffffffffffffffffffffffffffffffffffffff16611fa36113e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061464a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090614c2b565b60405180910390fd5b6120728161297b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614d4f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161223b919061419b565b60405180910390a3505050565b6000818361225691906148e3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614de1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614e73565b60405180910390fd5b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806123e15750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790614edf565b60405180910390fd5b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490614f4b565b60405180910390fd5b60008114156124c7576124c283836000612c15565b612976565b60008060006124d7868686612e96565b92509250925080806124f55750601560029054906101000a900460ff165b1561250d57612505868686612c15565b505050612976565b600082806125185750835b90506000601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125bd5750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050601560009054906101000a900460ff161580156125da575080155b80156125e35750815b1561262a576000612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614fb7565b60405180910390fd5b5b6000601560009054906101000a900460ff1680156126455750825b9050811561265257600090505b6000806000806126628b8a61347f565b935093509350935060008b90506000861561272c5760008311806126865750600084115b156126fd576126b88f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612c15565b6126c38f3086612c15565b83601160008282546126d591906148e3565b925050819055506126ef848461224890919063ffffffff16565b826126fa9190614fd7565b91505b600085111561272b5761270f85613756565b905061271c8f3083612c15565b80826127289190614fd7565b91505b5b601560019054906101000a900460ff16801561279b575087158061279a5750601760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b15612809578a806127aa575088155b15612808576014546127bb8f61108e565b836127c691906148e3565b1115612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90615057565b60405180910390fd5b5b5b8b80156128235750601560029054906101000a900460ff16155b15612868576001601560026101000a81548160ff02191690831515021790555061284c81613825565b6000601560026101000a81548160ff0219169083151502179055505b88158015612874575089155b801561287e575087155b801561288e575060135460115410155b156128b35760006128a0601154613a45565b905080156128b15760006011819055505b505b600086111561295e57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a418f886040518363ffffffff1660e01b815260040161291992919061497b565b6020604051808303816000875af1158015612938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295c91906149b9565b505b6129698f8f84612c15565b5050505050505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080612a596103e586613f1e90919063ffffffff16565b90506000612a708483613f1e90919063ffffffff16565b90506000612a9b83612a8d6103e889613f1e90919063ffffffff16565b61224890919063ffffffff16565b90508082612aa99190614820565b93505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c906150c3565b60405180910390fd5b612b3160008383613f34565b8060026000828254612b4391906148e3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9891906148e3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612bfd919061419b565b60405180910390a3612c1160008383613f39565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614de1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614e73565b60405180910390fd5b612d00838383613f34565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d90615155565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e1991906148e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e7d919061419b565b60405180910390a3612e90848484613f39565b50505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2f9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612fd391906144a9565b602060405180830381865afa158015612ff0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613014919061494e565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156130c35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b9050600080601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131c557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16149250600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16149150613356565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061326e5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80156132c75750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16145b156132e357858411156132dd57600190506132e2565b600191505b5b85841080156133405750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614155b156133555782156133545760019050600092505b5b5b82156133b1573373ffffffffffffffffffffffffffffffffffffffff167f860a37deac811ce967064ae65bd58706e46bfb2d30ce3fac7967c12c70ce8c5b8d8d8d886040516133a89493929190615175565b60405180910390a25b811561340c573373ffffffffffffffffffffffffffffffffffffffff167fa7be8720477542897f75d79b729696a5831033a1154ce589e584bd15900f120c8d8d8d886040516134039493929190615175565b60405180910390a25b8015613467573373ffffffffffffffffffffffffffffffffffffffff167f93514ff650de2ed280446a047fdc4e11536a0242e0ae975dd9bce8c5d24c952d8d8d8d8860405161345e9493929190615175565b60405180910390a25b81838298509850985050505050505093509350939050565b6000806000806000806134928789613f3e565b9150915060006134a0611bdc565b9050600080600080600d548710156135e5578b156135dc5760006135096134d287600d546140d590919063ffffffff16565b6134fb6305f5e1006134ed8a8d6140d590919063ffffffff16565b613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561357a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061359e919061494e565b905060008111156135d5576135d26305f5e1006135c48385613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b95505b50506135e0565b8592505b6136de565b600d5487101580156135f85750600d5485105b1561369557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561366a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061368e919061494e565b93506136dd565b60006136ab60648f6140eb90919063ffffffff16565b90506136c260105482613f1e90919063ffffffff16565b92506136d9600f5482613f1e90919063ffffffff16565b9150505b5b600d5487111561373a57600061372461371560125461370760648c6140eb90919063ffffffff16565b613f1e90919063ffffffff16565b896140d590919063ffffffff16565b9050600d548111156137385780600d819055505b505b838383839a509a509a509a505050505050505092959194509250565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156137c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ec9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff16915061381c848284614101565b92505050919050565b60006138303061108e565b905060008114806138415750600082145b1561384c5750613a42565b6000600267ffffffffffffffff811115613869576138686151ba565b5b6040519080825280602002602001820160405280156138975781602001602082028036833780820191505090505b50905030816000815181106138af576138ae6151e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106139205761391f6151e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561207d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613a0d95949392919061531b565b600060405180830381600087803b158015613a2757600080fd5b505af1158015613a3b573d6000803e3d6000fd5b5050505050505b50565b6000613a503061108e565b821115613a605760009050613f19565b6000613a766002846140eb90919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613af791906144a9565b602060405180830381865afa158015613b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b38919061494e565b90506001601560026101000a81548160ff021916908315150217905550613b5e82613825565b6000601560026101000a81548160ff0219169083151502179055506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613bf891906144a9565b602060405180830381865afa158015613c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c39919061494e565b90506000613c5083836140d590919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a4130836040518363ffffffff1660e01b8152600401613caf92919061497b565b6020604051808303816000875af1158015613cce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf291906149b9565b50613d2030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168661207d565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613d9f92919061497b565b6020604051808303816000875af1158015613dbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613de291906149b9565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308488600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518963ffffffff1660e01b8152600401613e91989796959493929190615375565b6060604051808303816000875af1158015613eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ed491906153f3565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8185604051613f08929190615446565b60405180910390a160019450505050505b919050565b60008183613f2c9190614797565b905092915050565b505050565b505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fdb9190614afa565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150891561405157614011898383614101565b945061404a670de0b6b3a76400006140328b846140d590919063ffffffff16565b614045888661224890919063ffffffff16565b612a41565b95506140c2565b61405c898284612a41565b9350614095670de0b6b3a764000061407d8b8461224890919063ffffffff16565b61409087866140d590919063ffffffff16565b612a41565b95506140bf60646140b1600e5487613f1e90919063ffffffff16565b6140eb90919063ffffffff16565b92505b8583975097505050505050509250929050565b600081836140e39190614fd7565b905092915050565b600081836140f99190614820565b905092915050565b60008061412b6103e861411d8787613f1e90919063ffffffff16565b613f1e90919063ffffffff16565b905060006141566103e561414888876140d590919063ffffffff16565b613f1e90919063ffffffff16565b9050614177600182846141699190614820565b61224890919063ffffffff16565b925050509392505050565b6000819050919050565b61419581614182565b82525050565b60006020820190506141b0600083018461418c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141f05780820151818401526020810190506141d5565b838111156141ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000614221826141b6565b61422b81856141c1565b935061423b8185602086016141d2565b61424481614205565b840191505092915050565b600060208201905081810360008301526142698184614216565b905092915050565b600080fd5b61427f81614182565b811461428a57600080fd5b50565b60008135905061429c81614276565b92915050565b6000602082840312156142b8576142b7614271565b5b60006142c68482850161428d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142fa826142cf565b9050919050565b61430a816142ef565b811461431557600080fd5b50565b60008135905061432781614301565b92915050565b6000806040838503121561434457614343614271565b5b600061435285828601614318565b92505060206143638582860161428d565b9150509250929050565b60008115159050919050565b6143828161436d565b82525050565b600060208201905061439d6000830184614379565b92915050565b600080604083850312156143ba576143b9614271565b5b60006143c88582860161428d565b92505060206143d98582860161428d565b9150509250929050565b6000806000606084860312156143fc576143fb614271565b5b600061440a86828701614318565b935050602061441b86828701614318565b925050604061442c8682870161428d565b9150509250925092565b600060ff82169050919050565b61444c81614436565b82525050565b60006020820190506144676000830184614443565b92915050565b60006020828403121561448357614482614271565b5b600061449184828501614318565b91505092915050565b6144a3816142ef565b82525050565b60006020820190506144be600083018461449a565b92915050565b6144cd8161436d565b81146144d857600080fd5b50565b6000813590506144ea816144c4565b92915050565b6000806040838503121561450757614506614271565b5b600061451585828601614318565b9250506020614526858286016144db565b9150509250929050565b60006020828403121561454657614545614271565b5b6000614554848285016144db565b91505092915050565b6000806040838503121561457457614573614271565b5b600061458285828601614318565b925050602061459385828601614318565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145e457607f821691505b602082108114156145f8576145f761459d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146346020836141c1565b915061463f826145fe565b602082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f466565732063616e27742062652067726561746572207468616e203130250000600082015250565b60006146a0601e836141c1565b91506146ab8261466a565b602082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006147326028836141c1565b915061473d826146d6565b604082019050919050565b6000602082019050818103600083015261476181614725565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a282614182565b91506147ad83614182565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147e6576147e5614768565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061482b82614182565b915061483683614182565b925082614846576148456147f1565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148ad6024836141c1565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b60006148ee82614182565b91506148f983614182565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614768565b5b828201905092915050565b60008151905061494881614276565b92915050565b60006020828403121561496457614963614271565b5b600061497284828501614939565b91505092915050565b6000604082019050614990600083018561449a565b61499d602083018461418c565b9392505050565b6000815190506149b3816144c4565b92915050565b6000602082840312156149cf576149ce614271565b5b60006149dd848285016149a4565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614a426025836141c1565b9150614a4d826149e6565b604082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b614a9b81614a78565b8114614aa657600080fd5b50565b600081519050614ab881614a92565b92915050565b600063ffffffff82169050919050565b614ad781614abe565b8114614ae257600080fd5b50565b600081519050614af481614ace565b92915050565b600080600060608486031215614b1357614b12614271565b5b6000614b2186828701614aa9565b9350506020614b3286828701614aa9565b9250506040614b4386828701614ae5565b9150509250925092565b7f4164647265737320646f65736e27742065786973740000000000000000000000600082015250565b6000614b836015836141c1565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c156026836141c1565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ca76024836141c1565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d396022836141c1565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dcb6025836141c1565b9150614dd682614d6f565b604082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5d6023836141c1565b9150614e6882614e01565b604082019050919050565b60006020820190508181036000830152614e8c81614e50565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b6000614ec96016836141c1565b9150614ed482614e93565b602082019050919050565b60006020820190508181036000830152614ef881614ebc565b9050919050565b7f6d73672e73656e64657220697320626c61636b6c697374656400000000000000600082015250565b6000614f356019836141c1565b9150614f4082614eff565b602082019050919050565b60006020820190508181036000830152614f6481614f28565b9050919050565b7f54726164696e67206973206e6f74207965742061637469766500000000000000600082015250565b6000614fa16019836141c1565b9150614fac82614f6b565b602082019050919050565b60006020820190508181036000830152614fd081614f94565b9050919050565b6000614fe282614182565b9150614fed83614182565b92508282101561500057614fff614768565b5b828203905092915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150416013836141c1565b915061504c8261500b565b602082019050919050565b6000602082019050818103600083015261507081615034565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006150ad601f836141c1565b91506150b882615077565b602082019050919050565b600060208201905081810360008301526150dc816150a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061513f6026836141c1565b915061514a826150e3565b604082019050919050565b6000602082019050818103600083015261516e81615132565b9050919050565b600060808201905061518a600083018761449a565b615197602083018661449a565b6151a4604083018561418c565b6151b1606083018461418c565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061524761524261523d84615218565b615222565b614182565b9050919050565b6152578161522c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615292816142ef565b82525050565b60006152a48383615289565b60208301905092915050565b6000602082019050919050565b60006152c88261525d565b6152d28185615268565b93506152dd83615279565b8060005b8381101561530e5781516152f58882615298565b9750615300836152b0565b9250506001810190506152e1565b5085935050505092915050565b600060a082019050615330600083018861418c565b61533d602083018761524e565b818103604083015261534f81866152bd565b905061535e606083018561449a565b61536b608083018461418c565b9695505050505050565b60006101008201905061538b600083018b61449a565b615398602083018a61449a565b6153a5604083018961418c565b6153b2606083018861418c565b6153bf608083018761524e565b6153cc60a083018661524e565b6153d960c083018561449a565b6153e660e083018461418c565b9998505050505050505050565b60008060006060848603121561540c5761540b614271565b5b600061541a86828701614939565b935050602061542b86828701614939565b925050604061543c86828701614939565b9150509250925092565b600060408201905061545b600083018561418c565b615468602083018461418c565b939250505056fea26469706673582212205f8444102bd5e71b249d08e9b2e209b3404308fa4f23a872b330fc2fca33107d64736f6c634300080a0033

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.